8195069: LogCompilation - add basic unit tests
authorecaspole
Wed, 31 Jan 2018 17:45:48 -0500
changeset 48828 5fcc602d36b6
parent 48827 8772acd913e5
child 48829 93de07994202
8195069: LogCompilation - add basic unit tests Summary: Framework and simple junits with static input Reviewed-by: kvn, thartmann
src/utils/LogCompilation/pom.xml
src/utils/LogCompilation/src/test/java/com/sun/hotspot/tools/compiler/TestLogCompilation.java
src/utils/LogCompilation/src/test/resources/hotspot_pid23756.log
src/utils/LogCompilation/src/test/resources/hotspot_pid25109.log
--- a/src/utils/LogCompilation/pom.xml	Wed Jan 31 11:20:36 2018 -0800
+++ b/src/utils/LogCompilation/pom.xml	Wed Jan 31 17:45:48 2018 -0500
@@ -1,5 +1,5 @@
 <!--
- Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
 
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
@@ -72,6 +72,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.7.0</version>
                 <configuration>
                     <source>1.8</source>
                     <target>1.8</target>
@@ -88,6 +89,11 @@
                 <version>3.0.0-M1</version>
             </plugin>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.20.1</version>
+            </plugin>
+            <plugin>
                 <artifactId>maven-antrun-plugin</artifactId>
                 <version>1.8</version>
                 <executions>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/utils/LogCompilation/src/test/java/com/sun/hotspot/tools/compiler/TestLogCompilation.java	Wed Jan 31 17:45:48 2018 -0500
@@ -0,0 +1,125 @@
+/*
+ * Copyright (c) 2018, 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+package com.sun.hotspot.tools.compiler;
+
+import java.util.Arrays;
+import java.util.Collection;
+import org.junit.Test;
+import org.junit.BeforeClass;
+import org.junit.experimental.categories.Category;
+import junit.framework.Assert;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.Parameters;
+import static org.junit.Assert.*;
+
+@RunWith(value = Parameterized.class)
+public class TestLogCompilation {
+
+    String logFile;
+
+    public TestLogCompilation(String logFile) {
+        this.logFile = logFile;
+    }
+
+    @Parameters
+    public static Collection data() {
+        Object[][] data = new Object[][]{
+            // Simply running this jar with jdk-9 no args,
+            // no file (just prints the help)
+            {"./src/test/resources/hotspot_pid23756.log"},
+            // LogCompilation output of running on above file
+            {"./src/test/resources/hotspot_pid25109.log"}
+
+        };
+        return Arrays.asList(data);
+    }
+
+    @Test
+    public void testDashi() throws Exception {
+        String[] args = {"-i",
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+
+    @Test
+    public void testDashiDasht() throws Exception {
+        String[] args = {"-i",
+            "-t",
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+
+    @Test
+    public void testDefault() throws Exception {
+        String[] args = {
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+
+    @Test
+    public void testDashS() throws Exception {
+        String[] args = {"-S",
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+
+    @Test
+    public void testDashU() throws Exception {
+        String[] args = {"-U",
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+
+    @Test
+    public void testDashe() throws Exception {
+        String[] args = {"-e",
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+
+    @Test
+    public void testDashn() throws Exception {
+        String[] args = {"-n",
+            logFile
+        };
+
+        LogCompilation.main(args);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/utils/LogCompilation/src/test/resources/hotspot_pid23756.log	Wed Jan 31 17:45:48 2018 -0500
@@ -0,0 +1,12986 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<hotspot_log version='160 1' process='23756' time_ms='1516226614992'>
+<vm_version>
+<name>
+Java HotSpot(TM) 64-Bit Server VM
+</name>
+<release>
+9+181
+</release>
+<info>
+Java HotSpot(TM) 64-Bit Server VM (9+181) for linux-amd64 JRE (9+181), built on Aug  3 2017 04:03:00 by &quot;javare&quot; with gcc 4.9.2
+</info>
+</vm_version>
+<vm_arguments>
+<args>
+-XX:+UnlockDiagnosticVMOptions -XX:+LogCompilation </args>
+<command>
+target/LogCompilation-1.0-SNAPSHOT.jar
+</command>
+<launcher>
+SUN_STANDARD
+</launcher>
+<properties>
+java.vm.specification.name=Java Virtual Machine Specification
+java.vm.version=9+181
+java.vm.name=Java HotSpot(TM) 64-Bit Server VM
+java.vm.info=mixed mode, aot, sharing
+jdk.debug=release
+sun.boot.library.path=/opt/jdk-9/lib
+java.library.path=/usr/java/packages/lib:/usr/lib64:/lib64:/lib:/usr/lib
+java.home=/opt/jdk-9
+java.class.path=target/LogCompilation-1.0-SNAPSHOT.jar
+jdk.boot.class.path.append=
+java.vm.specification.vendor=Oracle Corporation
+java.vm.specification.version=9
+java.vm.vendor=Oracle Corporation
+sun.java.command=target/LogCompilation-1.0-SNAPSHOT.jar
+sun.java.launcher=SUN_STANDARD
+</properties>
+</vm_arguments>
+<tty>
+<writer thread='23757'/>
+<blob name='MethodHandlesAdapterBlob' size='32000'>
+<sect index='1' size='32000' free='31628'/>
+</blob>
+<writer thread='23805'/>
+<thread_logfile thread='23805' filename='/tmp/hs_c23805_pid23756.log'/>
+<writer thread='23806'/>
+<thread_logfile thread='23806' filename='/tmp/hs_c23806_pid23756.log'/>
+<writer thread='23807'/>
+<thread_logfile thread='23807' filename='/tmp/hs_c23807_pid23756.log'/>
+<writer thread='23808'/>
+<thread_logfile thread='23808' filename='/tmp/hs_c23808_pid23756.log'/>
+<writer thread='23809'/>
+<thread_logfile thread='23809' filename='/tmp/hs_c23809_pid23756.log'/>
+<writer thread='23810'/>
+<thread_logfile thread='23810' filename='/tmp/hs_c23810_pid23756.log'/>
+<writer thread='23811'/>
+<thread_logfile thread='23811' filename='/tmp/hs_c23811_pid23756.log'/>
+<writer thread='23812'/>
+<thread_logfile thread='23812' filename='/tmp/hs_c23812_pid23756.log'/>
+<writer thread='23813'/>
+<thread_logfile thread='23813' filename='/tmp/hs_c23813_pid23756.log'/>
+<writer thread='23814'/>
+<thread_logfile thread='23814' filename='/tmp/hs_c23814_pid23756.log'/>
+<writer thread='23815'/>
+<thread_logfile thread='23815' filename='/tmp/hs_c23815_pid23756.log'/>
+<writer thread='23816'/>
+<thread_logfile thread='23816' filename='/tmp/hs_c23816_pid23756.log'/>
+<writer thread='23817'/>
+<sweeper state='finished' traversals='0'  total_blobs='221' nmethods='0' adapters='129' free_code_cache='248794752' stamp='0.181'/>
+<writer thread='23757'/>
+<task_queued compile_id='1' method='java.lang.StringUTF16 getChar ([BI)C' bytes='60' count='256' iicount='256' level='3' stamp='0.182' comment='tiered' hot_count='256'/>
+<task_queued compile_id='2' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='110' backedge_count='2048' iicount='110' level='3' stamp='0.182' comment='tiered' hot_count='110'/>
+<writer thread='23813'/>
+<nmethod compile_id='1' compiler='c1' level='3' entry='0x00007f5ae96121c0' size='1048' address='0x00007f5ae9612010' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='904' dependencies_offset='1016' nul_chk_table_offset='1024' metadata_offset='864' method='java.lang.StringUTF16 getChar ([BI)C' bytes='60' count='512' iicount='512' stamp='0.184'/>
+<writer thread='23814'/>
+<nmethod compile_id='2' compiler='c1' level='3' entry='0x00007f5ae9612640' size='1152' address='0x00007f5ae9612490' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='968' scopes_pcs_offset='1032' dependencies_offset='1128' nul_chk_table_offset='1136' metadata_offset='960' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='115' backedge_count='2260' iicount='115' stamp='0.184'/>
+<writer thread='23757'/>
+<task_queued compile_id='3' method='java.lang.StringLatin1 equals ([B[B)Z' bytes='36' count='256' backedge_count='316' iicount='256' level='3' stamp='0.185' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='3' compiler='c1' level='3' entry='0x00007f5ae9612b40' size='1344' address='0x00007f5ae9612990' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1184' dependencies_offset='1312' nul_chk_table_offset='1320' metadata_offset='1120' method='java.lang.StringLatin1 equals ([B[B)Z' bytes='36' count='256' backedge_count='325' iicount='256' stamp='0.186'/>
+<writer thread='23757'/>
+<task_queued compile_id='4' method='java.lang.String coder ()B' bytes='15' count='640' iicount='640' level='3' stamp='0.188' comment='tiered' hot_count='640'/>
+<writer thread='23816'/>
+<nmethod compile_id='4' compiler='c1' level='3' entry='0x00007f5ae96130c0' size='880' address='0x00007f5ae9612f10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.String coder ()B' bytes='15' count='646' iicount='646' stamp='0.189'/>
+<writer thread='23757'/>
+<task_queued compile_id='5' method='java.lang.String isLatin1 ()Z' bytes='19' count='896' iicount='896' level='3' stamp='0.189' comment='tiered' hot_count='896'/>
+<writer thread='23813'/>
+<nmethod compile_id='5' compiler='c1' level='3' entry='0x00007f5ae9613440' size='976' address='0x00007f5ae9613290' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='920' dependencies_offset='968' metadata_offset='896' method='java.lang.String isLatin1 ()Z' bytes='19' count='935' iicount='935' stamp='0.190'/>
+<writer thread='23757'/>
+<task_queued compile_id='6' method='java.lang.String charAt (I)C' bytes='25' count='512' iicount='512' level='3' stamp='0.195' comment='tiered' hot_count='512'/>
+<task_queued compile_id='7' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='512' iicount='512' level='3' stamp='0.195' comment='tiered' hot_count='512'/>
+<writer thread='23815'/>
+<nmethod compile_id='7' compiler='c1' level='3' entry='0x00007f5ae9613860' size='1240' address='0x00007f5ae9613690' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1104' dependencies_offset='1216' nul_chk_table_offset='1224' metadata_offset='1048' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='622' iicount='622' stamp='0.196'/>
+<writer thread='23814'/>
+<nmethod compile_id='6' compiler='c1' level='3' entry='0x00007f5ae9613da0' size='2400' address='0x00007f5ae9613b90' relocation_offset='368' insts_offset='528' stub_offset='1744' scopes_data_offset='1976' scopes_pcs_offset='2144' dependencies_offset='2368' nul_chk_table_offset='2376' metadata_offset='1928' method='java.lang.String charAt (I)C' bytes='25' count='660' iicount='660' stamp='0.196'/>
+<writer thread='23757'/>
+<task_queued compile_id='8' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='384' iicount='384' level='3' stamp='0.200' comment='tiered' hot_count='384'/>
+<writer thread='23816'/>
+<nmethod compile_id='8' compiler='c1' level='3' entry='0x00007f5ae9614720' size='2784' address='0x00007f5ae9614510' relocation_offset='368' insts_offset='528' stub_offset='2288' scopes_data_offset='2496' scopes_pcs_offset='2600' dependencies_offset='2760' nul_chk_table_offset='2768' metadata_offset='2472' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='429' iicount='429' stamp='0.201'/>
+<writer thread='23757'/>
+<task_queued compile_id='9' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='768' iicount='768' level='3' stamp='0.203' comment='tiered' hot_count='768'/>
+<writer thread='23813'/>
+<nmethod compile_id='9' compiler='c1' level='3' entry='0x00007f5ae96151c0' size='872' address='0x00007f5ae9615010' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='800' dependencies_offset='864' metadata_offset='768' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='776' iicount='776' stamp='0.204'/>
+<writer thread='23757'/>
+<task_queued compile_id='10' method='java.lang.String hashCode ()I' bytes='49' count='256' iicount='256' level='3' stamp='0.207' comment='tiered' hot_count='256'/>
+<task_queued compile_id='11' method='java.lang.Math floorMod (II)I' bytes='10' count='256' iicount='256' level='3' stamp='0.207' comment='tiered' hot_count='256'/>
+<task_queued compile_id='12' method='java.lang.Math floorDiv (II)I' bytes='22' count='256' iicount='256' level='3' stamp='0.207' comment='tiered' hot_count='256'/>
+<task_queued compile_id='13' method='java.util.ImmutableCollections$SetN probe (Ljava/lang/Object;)I' bytes='60' count='256' backedge_count='125' iicount='256' level='3' stamp='0.208' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='10' compiler='c1' level='3' entry='0x00007f5ae9615580' size='1912' address='0x00007f5ae9615390' relocation_offset='368' insts_offset='496' stub_offset='1456' scopes_data_offset='1648' scopes_pcs_offset='1744' dependencies_offset='1888' nul_chk_table_offset='1896' metadata_offset='1624' method='java.lang.String hashCode ()I' bytes='49' count='635' iicount='635' stamp='0.208'/>
+<writer thread='23814'/>
+<nmethod compile_id='11' compiler='c1' level='3' entry='0x00007f5ae9615d40' size='1176' address='0x00007f5ae9615b90' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1008' scopes_pcs_offset='1072' dependencies_offset='1152' nul_chk_table_offset='1160' metadata_offset='992' method='java.lang.Math floorMod (II)I' bytes='10' count='317' iicount='317' stamp='0.208'/>
+<writer thread='23813'/>
+<nmethod compile_id='12' compiler='c1' level='3' entry='0x00007f5ae9616240' size='1024' address='0x00007f5ae9616090' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='936' dependencies_offset='1000' nul_chk_table_offset='1008' metadata_offset='896' method='java.lang.Math floorDiv (II)I' bytes='22' count='317' iicount='317' stamp='0.208'/>
+<writer thread='23816'/>
+<nmethod compile_id='13' compiler='c1' level='3' entry='0x00007f5ae9616700' size='2520' address='0x00007f5ae9616510' relocation_offset='368' insts_offset='496' stub_offset='1840' scopes_data_offset='2048' scopes_pcs_offset='2224' dependencies_offset='2464' nul_chk_table_offset='2472' metadata_offset='2024' method='java.util.ImmutableCollections$SetN probe (Ljava/lang/Object;)I' bytes='60' count='426' backedge_count='285' iicount='426' stamp='0.209'/>
+<writer thread='23757'/>
+<task_queued compile_id='14' method='java.util.ImmutableCollections$Set0 hashCode ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.210' comment='tiered' hot_count='128'/>
+<task_queued compile_id='15' method='java.util.Objects equals (Ljava/lang/Object;Ljava/lang/Object;)Z' bytes='23' count='256' iicount='256' level='3' stamp='0.210' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='14' compiler='c1' level='1' entry='0x00007f5af0a731c0' size='752' address='0x00007f5af0a73010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set0 hashCode ()I' bytes='2' count='177' iicount='177' stamp='0.211'/>
+<writer thread='23757'/>
+<task_queued compile_id='16' method='java.util.Collections emptySet ()Ljava/util/Set;' bytes='4' count='256' iicount='256' level='3' stamp='0.211' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='15' compiler='c1' level='3' entry='0x00007f5ae96170c0' size='1280' address='0x00007f5ae9616f10' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1152' scopes_pcs_offset='1176' dependencies_offset='1256' nul_chk_table_offset='1264' metadata_offset='1144' method='java.util.Objects equals (Ljava/lang/Object;Ljava/lang/Object;)Z' bytes='23' count='289' iicount='289' stamp='0.211'/>
+<writer thread='23757'/>
+<task_queued compile_id='17' method='java.util.Collections$EmptySet hashCode ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.211' comment='tiered' hot_count='128'/>
+<writer thread='23815'/>
+<nmethod compile_id='16' compiler='c1' level='3' entry='0x00007f5ae9617640' size='808' address='0x00007f5ae9617490' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='744' scopes_pcs_offset='752' dependencies_offset='800' metadata_offset='736' method='java.util.Collections emptySet ()Ljava/util/Set;' bytes='4' count='268' iicount='268' stamp='0.211'/>
+<nmethod compile_id='17' compiler='c1' level='1' entry='0x00007f5af0a734c0' size='752' address='0x00007f5af0a73310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptySet hashCode ()I' bytes='2' count='151' iicount='151' stamp='0.212'/>
+<writer thread='23757'/>
+<task_queued compile_id='18' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='256' iicount='256' level='3' stamp='0.212' comment='tiered' hot_count='256'/>
+<task_queued compile_id='19' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;Z)V' bytes='20' count='256' iicount='256' level='3' stamp='0.212' comment='tiered' hot_count='256'/>
+<task_queued compile_id='20' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='782' backedge_count='18626' iicount='782' stamp='0.212' comment='tiered' hot_count='782'/>
+<task_queued compile_id='21' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='256' iicount='256' level='3' stamp='0.212' comment='tiered' hot_count='256'/>
+<task_queued compile_id='22' method='java.lang.module.ModuleDescriptor$Exports hashCode ()I' bytes='38' count='256' iicount='256' level='3' stamp='0.212' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='19' compiler='c1' level='3' entry='0x00007f5ae96179c0' size='1328' address='0x00007f5ae9617810' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1200' scopes_pcs_offset='1256' dependencies_offset='1320' metadata_offset='1184' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;Z)V' bytes='20' count='331' iicount='331' stamp='0.213'/>
+<writer thread='23814'/>
+<nmethod compile_id='18' compiler='c1' level='3' entry='0x00007f5ae9617f60' size='1504' address='0x00007f5ae9617d90' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1336' scopes_pcs_offset='1416' dependencies_offset='1496' metadata_offset='1312' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='331' iicount='331' stamp='0.213'/>
+<writer thread='23816'/>
+<nmethod compile_id='21' compiler='c1' level='3' entry='0x00007f5ae9618540' size='1128' address='0x00007f5ae9618390' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1024' dependencies_offset='1120' metadata_offset='984' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='346' iicount='346' stamp='0.213'/>
+<writer thread='23815'/>
+<nmethod compile_id='22' compiler='c1' level='3' entry='0x00007f5ae96189e0' size='1728' address='0x00007f5ae9618810' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1472' scopes_pcs_offset='1544' dependencies_offset='1688' nul_chk_table_offset='1696' metadata_offset='1464' method='java.lang.module.ModuleDescriptor$Exports hashCode ()I' bytes='38' count='316' iicount='316' stamp='0.213'/>
+<writer thread='23757'/>
+<task_queued compile_id='23' method='java.util.AbstractCollection &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.213' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='23' compiler='c1' level='3' entry='0x00007f5ae96190c0' size='992' address='0x00007f5ae9618f10' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='888' scopes_pcs_offset='920' dependencies_offset='984' metadata_offset='864' method='java.util.AbstractCollection &lt;init&gt; ()V' bytes='5' count='294' iicount='295' stamp='0.214'/>
+<writer thread='23757'/>
+<task_queued compile_id='24' method='java.util.AbstractSet &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.214' comment='tiered' hot_count='256'/>
+<task_queued compile_id='25' method='java.util.ImmutableCollections$AbstractImmutableSet &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.214' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='24' compiler='c1' level='3' entry='0x00007f5ae96194c0' size='1120' address='0x00007f5ae9619310' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.util.AbstractSet &lt;init&gt; ()V' bytes='5' count='298' iicount='298' stamp='0.214'/>
+<writer thread='23816'/>
+<nmethod compile_id='25' compiler='c1' level='3' entry='0x00007f5ae9619940' size='1256' address='0x00007f5ae9619790' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1096' scopes_pcs_offset='1152' dependencies_offset='1248' metadata_offset='1056' method='java.util.ImmutableCollections$AbstractImmutableSet &lt;init&gt; ()V' bytes='5' count='312' iicount='312' stamp='0.214'/>
+<writer thread='23757'/>
+<task_queued compile_id='26' method='java.util.Set of ([Ljava/lang/Object;)Ljava/util/Set;' bytes='66' count='256' iicount='256' level='3' stamp='0.214' comment='tiered' hot_count='256'/>
+<task_queued compile_id='27' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='12' count='256' iicount='256' level='3' stamp='0.215' comment='tiered' hot_count='256'/>
+<task_queued compile_id='28' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='13' count='256' iicount='256' level='3' stamp='0.215' comment='tiered' hot_count='256'/>
+<task_queued compile_id='29' method='java.util.Collections$EmptySet contains (Ljava/lang/Object;)Z' bytes='2' count='128' iicount='128' level='1' stamp='0.215' comment='tiered' hot_count='128'/>
+<task_queued compile_id='30' method='java.util.ImmutableCollections$SetN &lt;init&gt; ([Ljava/lang/Object;)V' bytes='90' count='161' backedge_count='2048' iicount='161' level='3' stamp='0.215' comment='tiered' hot_count='161'/>
+<task_queued compile_id='31' method='java.lang.module.ModuleDescriptor$Exports equals (Ljava/lang/Object;)Z' bytes='62' count='256' iicount='256' level='3' stamp='0.215' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='28' compiler='c1' level='3' entry='0x00007f5ae9619e60' size='1792' address='0x00007f5ae9619c90' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1536' scopes_pcs_offset='1672' dependencies_offset='1784' metadata_offset='1504' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='13' count='305' iicount='305' stamp='0.215'/>
+<writer thread='23814'/>
+<nmethod compile_id='29' compiler='c1' level='1' entry='0x00007f5af0a737c0' size='752' address='0x00007f5af0a73610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptySet contains (Ljava/lang/Object;)Z' bytes='2' count='132' iicount='132' stamp='0.215'/>
+<writer thread='23813'/>
+<nmethod compile_id='27' compiler='c1' level='3' entry='0x00007f5ae961a5e0' size='1904' address='0x00007f5ae961a410' relocation_offset='368' insts_offset='464' stub_offset='1424' scopes_data_offset='1616' scopes_pcs_offset='1768' dependencies_offset='1896' metadata_offset='1568' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='12' count='305' iicount='305' stamp='0.215'/>
+<writer thread='23757'/>
+<task_queued compile_id='32' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='11' count='256' iicount='256' level='3' stamp='0.215' comment='tiered' hot_count='256'/>
+<task_queued compile_id='33' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='15' count='256' iicount='256' level='3' stamp='0.215' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='26' compiler='c1' level='3' entry='0x00007f5ae961adc0' size='3104' address='0x00007f5ae961ab90' relocation_offset='368' insts_offset='560' stub_offset='2256' scopes_data_offset='2520' scopes_pcs_offset='2728' dependencies_offset='3080' nul_chk_table_offset='3088' metadata_offset='2456' method='java.util.Set of ([Ljava/lang/Object;)Ljava/util/Set;' bytes='66' count='309' iicount='309' stamp='0.216'/>
+<writer thread='23757'/>
+<task_queued compile_id='34' method='java.util.ImmutableCollections$Set1 hashCode ()I' bytes='8' count='256' iicount='256' level='3' stamp='0.216' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='32' compiler='c1' level='3' entry='0x00007f5ae961ba00' size='2104' address='0x00007f5ae961b810' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1792' scopes_pcs_offset='1952' dependencies_offset='2096' oops_offset='1728' metadata_offset='1736' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='11' count='303' iicount='303' stamp='0.216'/>
+<writer thread='23812'/>
+<nmethod compile_id='20' compiler='c2' level='4' entry='0x00007f5af0a73aa0' size='856' address='0x00007f5af0a73910' relocation_offset='368' insts_offset='400' stub_offset='688' scopes_data_offset='720' scopes_pcs_offset='768' dependencies_offset='832' nul_chk_table_offset='840' metadata_offset='712' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='2097' backedge_count='65738' iicount='2097' stamp='0.216'/>
+<make_not_entrant thread='23812' compile_id='2' compiler='c1' level='3' stamp='0.216'/>
+<writer thread='23815'/>
+<nmethod compile_id='33' compiler='c1' level='3' entry='0x00007f5ae961c260' size='1928' address='0x00007f5ae961c090' relocation_offset='368' insts_offset='464' stub_offset='1456' scopes_data_offset='1648' scopes_pcs_offset='1792' dependencies_offset='1920' oops_offset='1600' metadata_offset='1608' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='15' count='306' iicount='306' stamp='0.216'/>
+<writer thread='23757'/>
+<task_queued compile_id='35' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='7' count='256' iicount='256' level='3' stamp='0.216' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='34' compiler='c1' level='3' entry='0x00007f5ae961ca40' size='1120' address='0x00007f5ae961c890' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.ImmutableCollections$Set1 hashCode ()I' bytes='8' count='284' iicount='284' stamp='0.216'/>
+<writer thread='23814'/>
+<nmethod compile_id='31' compiler='c1' level='3' entry='0x00007f5ae961cf40' size='3488' address='0x00007f5ae961cd10' relocation_offset='368' insts_offset='560' stub_offset='2864' scopes_data_offset='3080' scopes_pcs_offset='3216' dependencies_offset='3440' nul_chk_table_offset='3448' metadata_offset='3064' method='java.lang.module.ModuleDescriptor$Exports equals (Ljava/lang/Object;)Z' bytes='62' count='296' iicount='296' stamp='0.216'/>
+<writer thread='23757'/>
+<task_queued compile_id='36' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='51' count='256' iicount='256' level='3' stamp='0.217' comment='tiered' hot_count='256'/>
+<task_queued compile_id='37' method='java.lang.module.ModuleDescriptor$1 newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='13' count='256' iicount='256' level='3' stamp='0.217' comment='tiered' hot_count='256'/>
+<task_queued compile_id='38' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='256' iicount='256' level='3' stamp='0.217' comment='tiered' hot_count='256'/>
+<task_queued compile_id='39' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;Z)V' bytes='25' count='256' iicount='256' level='3' stamp='0.217' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='35' compiler='c1' level='3' entry='0x00007f5ae961dcc0' size='896' address='0x00007f5ae961db10' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='800' scopes_pcs_offset='824' dependencies_offset='888' metadata_offset='792' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='7' count='262' iicount='262' stamp='0.217'/>
+<writer thread='23757'/>
+<task_queued compile_id='40' method='java.lang.module.ModuleDescriptor$Requires hashCode ()I' bytes='63' count='256' iicount='256' level='3' stamp='0.217' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='38' compiler='c1' level='3' entry='0x00007f5ae961e0e0' size='1536' address='0x00007f5ae961df10' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1368' scopes_pcs_offset='1448' dependencies_offset='1528' metadata_offset='1344' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='338' iicount='339' stamp='0.217'/>
+<writer thread='23813'/>
+<nmethod compile_id='37' compiler='c1' level='3' entry='0x00007f5ae961e760' size='1792' address='0x00007f5ae961e590' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1536' scopes_pcs_offset='1672' dependencies_offset='1784' metadata_offset='1504' method='java.lang.module.ModuleDescriptor$1 newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='13' count='349' iicount='349' stamp='0.217'/>
+<writer thread='23816'/>
+<nmethod compile_id='30' compiler='c1' level='3' entry='0x00007f5ae961f000' size='6744' address='0x00007f5ae961ed10' relocation_offset='368' insts_offset='752' stub_offset='5168' scopes_data_offset='5560' scopes_pcs_offset='6072' dependencies_offset='6696' nul_chk_table_offset='6704' oops_offset='5448' metadata_offset='5456' method='java.util.ImmutableCollections$SetN &lt;init&gt; ([Ljava/lang/Object;)V' bytes='90' count='219' backedge_count='3037' iicount='219' stamp='0.217'/>
+<writer thread='23814'/>
+<nmethod compile_id='39' compiler='c1' level='3' entry='0x00007f5ae9620940' size='1360' address='0x00007f5ae9620790' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1232' scopes_pcs_offset='1288' dependencies_offset='1352' metadata_offset='1216' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;Z)V' bytes='25' count='349' iicount='349' stamp='0.218'/>
+<writer thread='23815'/>
+<nmethod compile_id='36' compiler='c1' level='3' entry='0x00007f5ae9620f20' size='3088' address='0x00007f5ae9620d10' relocation_offset='368' insts_offset='528' stub_offset='2352' scopes_data_offset='2592' scopes_pcs_offset='2832' dependencies_offset='3056' nul_chk_table_offset='3064' metadata_offset='2536' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='51' count='349' iicount='349' stamp='0.218'/>
+<writer thread='23813'/>
+<nmethod compile_id='40' compiler='c1' level='3' entry='0x00007f5ae9621b80' size='2424' address='0x00007f5ae9621990' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2040' scopes_pcs_offset='2160' dependencies_offset='2368' nul_chk_table_offset='2376' metadata_offset='2024' method='java.lang.module.ModuleDescriptor$Requires hashCode ()I' bytes='63' count='283' iicount='283' stamp='0.218'/>
+<writer thread='23757'/>
+<task_queued compile_id='41' method='java.lang.module.ModuleDescriptor name ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.221' comment='tiered' hot_count='128'/>
+<task_queued compile_id='42' method='java.nio.Buffer checkIndex (I)I' bytes='22' count='256' iicount='256' level='3' stamp='0.221' comment='tiered' hot_count='256'/>
+<task_queued compile_id='43' method='java.nio.DirectLongBufferU ix (I)J' bytes='10' count='256' iicount='256' level='3' stamp='0.221' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='41' compiler='c1' level='1' entry='0x00007f5af0a73e40' size='752' address='0x00007f5af0a73c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor name ()Ljava/lang/String;' bytes='5' count='168' iicount='168' stamp='0.221'/>
+<writer thread='23814'/>
+<nmethod compile_id='43' compiler='c1' level='3' entry='0x00007f5ae9622540' size='880' address='0x00007f5ae9622390' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.nio.DirectLongBufferU ix (I)J' bytes='10' count='350' iicount='350' stamp='0.221'/>
+<writer thread='23816'/>
+<nmethod compile_id='42' compiler='c1' level='3' entry='0x00007f5ae96228e0' size='1200' address='0x00007f5ae9622710' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1096' dependencies_offset='1192' metadata_offset='1048' method='java.nio.Buffer checkIndex (I)I' bytes='22' count='370' iicount='370' stamp='0.221'/>
+<writer thread='23757'/>
+<nmethod compile_id='44' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a74160' size='984' address='0x00007f5af0a73f90' relocation_offset='368' consts_offset='984' insts_offset='464' method='java.lang.System arraycopy (Ljava/lang/Object;ILjava/lang/Object;II)V' bytes='0' count='256' iicount='256' stamp='0.221'/>
+<task_queued compile_id='45' method='java.lang.String length ()I' bytes='11' count='256' iicount='256' level='3' stamp='0.221' comment='tiered' hot_count='256'/>
+<task_queued compile_id='46' method='java.lang.module.ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='128' iicount='128' level='1' stamp='0.222' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='45' compiler='c1' level='3' entry='0x00007f5ae9622dc0' size='1216' address='0x00007f5ae9622c10' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1072' scopes_pcs_offset='1112' dependencies_offset='1192' nul_chk_table_offset='1200' metadata_offset='1056' method='java.lang.String length ()I' bytes='11' count='311' iicount='311' stamp='0.222'/>
+<writer thread='23757'/>
+<task_queued compile_id='47' method='java.net.URI hash (ILjava/lang/String;)I' bytes='33' count='256' iicount='256' level='3' stamp='0.222' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='46' compiler='c1' level='1' entry='0x00007f5af0a74540' size='752' address='0x00007f5af0a74390' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='243' iicount='243' stamp='0.222'/>
+<writer thread='23757'/>
+<task_queued compile_id='48' method='java.net.URI toLower (C)I' bytes='19' count='256' iicount='256' level='3' stamp='0.222' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='48' compiler='c1' level='3' entry='0x00007f5ae96232c0' size='944' address='0x00007f5ae9623110' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.net.URI toLower (C)I' bytes='19' count='297' iicount='297' stamp='0.222'/>
+<writer thread='23814'/>
+<nmethod compile_id='47' compiler='c1' level='3' entry='0x00007f5ae9623720' size='2488' address='0x00007f5ae9623510' relocation_offset='368' insts_offset='528' stub_offset='1904' scopes_data_offset='2152' scopes_pcs_offset='2288' dependencies_offset='2464' nul_chk_table_offset='2472' metadata_offset='2120' method='java.net.URI hash (ILjava/lang/String;)I' bytes='33' count='396' iicount='396' stamp='0.223'/>
+<writer thread='23757'/>
+<task_queued compile_id='49' method='java.lang.StringLatin1 canEncode (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.225' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='49' compiler='c1' level='3' entry='0x00007f5ae96240c0' size='912' address='0x00007f5ae9623f10' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.StringLatin1 canEncode (I)Z' bytes='13' count='283' iicount='283' stamp='0.225'/>
+<writer thread='23757'/>
+<task_queued compile_id='50' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='3584' iicount='3584' level='1' stamp='0.227' comment='tiered' hot_count='3584'/>
+<writer thread='23813'/>
+<nmethod compile_id='50' compiler='c1' level='1' entry='0x00007f5af0a74840' size='784' address='0x00007f5af0a74690' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='728' dependencies_offset='776' metadata_offset='704' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='3673' iicount='3673' stamp='0.227'/>
+<make_not_entrant thread='23813' compile_id='9' compiler='c1' level='3' stamp='0.227'/>
+<writer thread='23757'/>
+<task_queued compile_id='51' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='640' iicount='640' level='3' stamp='0.230' comment='tiered' hot_count='640'/>
+<task_queued compile_id='52' method='jdk.internal.misc.Unsafe getObjectAcquire (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='7' count='640' iicount='640' level='3' stamp='0.230' comment='tiered' hot_count='640'/>
+<nmethod compile_id='53' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a74be0' size='1104' address='0x00007f5af0a74a10' relocation_offset='368' consts_offset='1104' insts_offset='464' method='jdk.internal.misc.Unsafe getObjectVolatile (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='0' count='640' iicount='640' stamp='0.230'/>
+<writer thread='23814'/>
+<nmethod compile_id='52' compiler='c1' level='3' entry='0x00007f5ae96244c0' size='952' address='0x00007f5ae9624310' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='896' dependencies_offset='944' metadata_offset='864' method='jdk.internal.misc.Unsafe getObjectAcquire (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='7' count='640' iicount='640' stamp='0.230'/>
+<writer thread='23815'/>
+<nmethod compile_id='51' compiler='c1' level='3' entry='0x00007f5ae96248c0' size='1376' address='0x00007f5ae9624710' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1240' scopes_pcs_offset='1288' dependencies_offset='1368' oops_offset='1216' metadata_offset='1224' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='641' iicount='642' stamp='0.230'/>
+<writer thread='23757'/>
+<task_queued compile_id='54' method='java.util.concurrent.ConcurrentHashMap spread (I)I' bytes='10' count='256' iicount='256' level='3' stamp='0.230' comment='tiered' hot_count='256'/>
+<task_queued compile_id='55' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='256' backedge_count='139' iicount='256' level='3' stamp='0.230' comment='tiered' hot_count='256'/>
+<nmethod compile_id='56' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a75060' size='1016' address='0x00007f5af0a74e90' relocation_offset='368' consts_offset='1016' insts_offset='464' method='jdk.internal.misc.Unsafe compareAndSetObject (Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z' bytes='0' count='256' iicount='256' stamp='0.231'/>
+<task_queued compile_id='57' method='java.util.concurrent.ConcurrentHashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;)V' bytes='20' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<task_queued compile_id='58' method='java.util.concurrent.ConcurrentHashMap casTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z' bytes='21' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='54' compiler='c1' level='3' entry='0x00007f5ae9624e40' size='848' address='0x00007f5ae9624c90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.util.concurrent.ConcurrentHashMap spread (I)I' bytes='10' count='344' iicount='344' stamp='0.231'/>
+<writer thread='23757'/>
+<task_queued compile_id='59' method='java.util.concurrent.ConcurrentHashMap putVal (Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;' bytes='432' count='256' backedge_count='23' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<task_queued compile_id='60' method='java.util.concurrent.ConcurrentHashMap addCount (JI)V' bytes='289' count='256' backedge_count='3' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<nmethod compile_id='61' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a754e0' size='976' address='0x00007f5af0a75310' relocation_offset='368' consts_offset='976' insts_offset='464' method='jdk.internal.misc.Unsafe compareAndSetLong (Ljava/lang/Object;JJJ)Z' bytes='0' count='256' iicount='256' stamp='0.231'/>
+<writer thread='23814'/>
+<nmethod compile_id='55' compiler='c1' level='3' entry='0x00007f5ae96251c0' size='1296' address='0x00007f5ae9625010' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1096' scopes_pcs_offset='1136' dependencies_offset='1264' nul_chk_table_offset='1272' metadata_offset='1088' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='321' backedge_count='160' iicount='321' stamp='0.231'/>
+<writer thread='23813'/>
+<nmethod compile_id='57' compiler='c1' level='3' entry='0x00007f5ae9625740' size='1224' address='0x00007f5ae9625590' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1152' dependencies_offset='1216' metadata_offset='1088' method='java.util.concurrent.ConcurrentHashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;)V' bytes='20' count='277' iicount='277' stamp='0.231'/>
+<writer thread='23815'/>
+<nmethod compile_id='58' compiler='c1' level='3' entry='0x00007f5ae9625c40' size='984' address='0x00007f5ae9625a90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='928' dependencies_offset='976' metadata_offset='896' method='java.util.concurrent.ConcurrentHashMap casTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z' bytes='21' count='274' iicount='274' stamp='0.231'/>
+<writer thread='23757'/>
+<task_queued compile_id='62' method='java.util.ImmutableCollections$SetN$1 next ()Ljava/lang/Object;' bytes='35' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='62' compiler='c1' level='3' entry='0x00007f5ae9626060' size='1392' address='0x00007f5ae9625e90' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1144' scopes_pcs_offset='1200' dependencies_offset='1360' nul_chk_table_offset='1368' metadata_offset='1128' method='java.util.ImmutableCollections$SetN$1 next ()Ljava/lang/Object;' bytes='35' count='320' iicount='320' stamp='0.232'/>
+<writer thread='23757'/>
+<task_queued compile_id='63' method='java.util.ImmutableCollections$SetN size ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.232' comment='tiered' hot_count='128'/>
+<task_queued compile_id='64' method='java.lang.module.ModuleDescriptor exports ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.232' comment='tiered' hot_count='128'/>
+<writer thread='23814'/>
+<nmethod compile_id='63' compiler='c1' level='1' entry='0x00007f5af0a758c0' size='752' address='0x00007f5af0a75710' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$SetN size ()I' bytes='5' count='136' iicount='136' stamp='0.233'/>
+<writer thread='23815'/>
+<nmethod compile_id='64' compiler='c1' level='1' entry='0x00007f5af0a75bc0' size='752' address='0x00007f5af0a75a10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor exports ()Ljava/util/Set;' bytes='5' count='169' iicount='169' stamp='0.233'/>
+<writer thread='23813'/>
+<nmethod compile_id='60' compiler='c1' level='3' entry='0x00007f5ae9626660' size='4016' address='0x00007f5ae9626410' relocation_offset='368' insts_offset='592' stub_offset='3088' scopes_data_offset='3376' scopes_pcs_offset='3704' dependencies_offset='3976' nul_chk_table_offset='3984' metadata_offset='3352' method='java.util.concurrent.ConcurrentHashMap addCount (JI)V' bytes='289' count='259' backedge_count='3' iicount='259' stamp='0.233'/>
+<writer thread='23816'/>
+<nmethod compile_id='59' compiler='c1' level='3' entry='0x00007f5ae96277a0' size='12584' address='0x00007f5ae9627410' relocation_offset='368' insts_offset='912' stub_offset='9584' scopes_data_offset='9968' scopes_pcs_offset='11456' dependencies_offset='12192' handler_table_offset='12200' nul_chk_table_offset='12536' oops_offset='9896' metadata_offset='9904' method='java.util.concurrent.ConcurrentHashMap putVal (Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;' bytes='432' count='259' backedge_count='23' iicount='259' stamp='0.235'/>
+<writer thread='23757'/>
+<task_queued compile_id='65' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='256' iicount='256' level='3' stamp='0.235' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='65' compiler='c1' level='3' entry='0x00007f5ae962a740' size='1152' address='0x00007f5ae962a590' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1048' dependencies_offset='1128' nul_chk_table_offset='1136' metadata_offset='1016' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='297' iicount='297' stamp='0.235'/>
+<writer thread='23757'/>
+<task_queued compile_id='66' method='java.util.ImmutableCollections$MapN probe (Ljava/lang/Object;)I' bytes='64' count='256' backedge_count='132' iicount='256' level='3' stamp='0.235' comment='tiered' hot_count='256'/>
+<task_queued compile_id='67' method='java.lang.module.ModuleDescriptor$Requires modifiers ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.236' comment='tiered' hot_count='128'/>
+<task_queued compile_id='68' method='java.lang.module.ModuleDescriptor$Requires name ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.236' comment='tiered' hot_count='128'/>
+<task_queued compile_id='69' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='256' backedge_count='14' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<task_queued compile_id='70' method='java.util.HashMap containsKey (Ljava/lang/Object;)Z' bytes='18' count='256' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='68' compiler='c1' level='1' entry='0x00007f5af0a75ec0' size='752' address='0x00007f5af0a75d10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Requires name ()Ljava/lang/String;' bytes='5' count='162' iicount='162' stamp='0.236'/>
+<writer thread='23815'/>
+<nmethod compile_id='67' compiler='c1' level='1' entry='0x00007f5af0a761c0' size='752' address='0x00007f5af0a76010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Requires modifiers ()Ljava/util/Set;' bytes='5' count='175' iicount='175' stamp='0.236'/>
+<writer thread='23757'/>
+<task_queued compile_id='71' method='java.util.HashMap put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='256' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<task_queued compile_id='72' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='256' backedge_count='38' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<task_queued compile_id='73' method='java.util.HashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V' bytes='26' count='256' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='66' compiler='c1' level='3' entry='0x00007f5ae962ac80' size='2520' address='0x00007f5ae962aa90' relocation_offset='368' insts_offset='496' stub_offset='1840' scopes_data_offset='2048' scopes_pcs_offset='2224' dependencies_offset='2464' nul_chk_table_offset='2472' metadata_offset='2024' method='java.util.ImmutableCollections$MapN probe (Ljava/lang/Object;)I' bytes='64' count='371' backedge_count='154' iicount='371' stamp='0.236'/>
+<writer thread='23757'/>
+<task_queued compile_id='74' method='java.util.ImmutableCollections$Set1 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.236' comment='tiered' hot_count='128'/>
+<task_queued compile_id='75' method='java.util.HashMap newNode (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;' bytes='13' count='256' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<task_queued compile_id='76' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='256' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='70' compiler='c1' level='3' entry='0x00007f5ae962b660' size='1720' address='0x00007f5ae962b490' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1496' scopes_pcs_offset='1584' dependencies_offset='1696' nul_chk_table_offset='1704' metadata_offset='1480' method='java.util.HashMap containsKey (Ljava/lang/Object;)Z' bytes='18' count='281' iicount='281' stamp='0.237'/>
+<writer thread='23816'/>
+<nmethod compile_id='69' compiler='c1' level='3' entry='0x00007f5ae962bdc0' size='3536' address='0x00007f5ae962bb90' relocation_offset='368' insts_offset='560' stub_offset='2832' scopes_data_offset='3040' scopes_pcs_offset='3216' dependencies_offset='3472' nul_chk_table_offset='3480' metadata_offset='3032' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='362' backedge_count='14' iicount='362' stamp='0.237'/>
+<writer thread='23813'/>
+<nmethod compile_id='71' compiler='c1' level='3' entry='0x00007f5ae962cb60' size='1680' address='0x00007f5ae962c990' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1432' scopes_pcs_offset='1544' dependencies_offset='1656' nul_chk_table_offset='1664' metadata_offset='1416' method='java.util.HashMap put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='364' iicount='364' stamp='0.237'/>
+<writer thread='23757'/>
+<task_queued compile_id='77' method='java.lang.module.ModuleDescriptor provides ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.237' comment='tiered' hot_count='128'/>
+<task_queued compile_id='78' method='java.util.Collections$1 hasNext ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.237' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='76' compiler='c1' level='3' entry='0x00007f5ae962d240' size='848' address='0x00007f5ae962d090' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='378' iicount='378' stamp='0.237'/>
+<writer thread='23815'/>
+<nmethod compile_id='73' compiler='c1' level='3' entry='0x00007f5ae962d5c0' size='1320' address='0x00007f5ae962d410' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1208' scopes_pcs_offset='1248' dependencies_offset='1312' metadata_offset='1184' method='java.util.HashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V' bytes='26' count='381' iicount='381' stamp='0.237'/>
+<writer thread='23813'/>
+<nmethod compile_id='74' compiler='c1' level='1' entry='0x00007f5af0a764c0' size='752' address='0x00007f5af0a76310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set1 size ()I' bytes='2' count='155' iicount='155' stamp='0.237'/>
+<writer thread='23816'/>
+<nmethod compile_id='75' compiler='c1' level='3' entry='0x00007f5ae962db60' size='1640' address='0x00007f5ae962d990' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1432' scopes_pcs_offset='1536' dependencies_offset='1632' metadata_offset='1408' method='java.util.HashMap newNode (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;' bytes='13' count='378' iicount='378' stamp='0.237'/>
+<writer thread='23813'/>
+<nmethod compile_id='77' compiler='c1' level='1' entry='0x00007f5af0a767c0' size='752' address='0x00007f5af0a76610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor provides ()Ljava/util/Set;' bytes='5' count='142' iicount='142' stamp='0.238'/>
+<writer thread='23815'/>
+<nmethod compile_id='78' compiler='c1' level='1' entry='0x00007f5af0a76ac0' size='752' address='0x00007f5af0a76910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$1 hasNext ()Z' bytes='5' count='128' iicount='128' stamp='0.238'/>
+<writer thread='23814'/>
+<nmethod compile_id='72' compiler='c1' level='3' entry='0x00007f5ae962e2e0' size='6888' address='0x00007f5ae962e010' relocation_offset='368' insts_offset='720' stub_offset='5424' scopes_data_offset='5744' scopes_pcs_offset='6280' dependencies_offset='6776' nul_chk_table_offset='6784' metadata_offset='5736' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='448' backedge_count='51' iicount='448' stamp='0.238'/>
+<writer thread='23757'/>
+<task_queued compile_id='79' method='java.util.AbstractCollection isEmpty ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.238' comment='tiered' hot_count='256'/>
+<task_queued compile_id='80' method='java.lang.module.Resolver isTracing ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.238' comment='tiered' hot_count='256'/>
+<task_queued compile_id='81' method='java.lang.String hashCode ()I' bytes='49' count='5493' iicount='5493' stamp='0.238' comment='tiered' hot_count='5493'/>
+<writer thread='23814'/>
+<nmethod compile_id='79' compiler='c1' level='3' entry='0x00007f5ae962fcc0' size='1152' address='0x00007f5ae962fb10' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1080' dependencies_offset='1144' metadata_offset='1048' method='java.util.AbstractCollection isEmpty ()Z' bytes='13' count='291' iicount='291' stamp='0.239'/>
+<writer thread='23757'/>
+<task_queued compile_id='82' method='java.util.HashMap$HashIterator hasNext ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='80' compiler='c1' level='3' entry='0x00007f5ae96301c0' size='944' address='0x00007f5ae9630010' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.module.Resolver isTracing ()Z' bytes='13' count='314' iicount='314' stamp='0.239'/>
+<writer thread='23757'/>
+<task_queued compile_id='83' method='java.util.Optional ofNullable (Ljava/lang/Object;)Ljava/util/Optional;' bytes='15' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='82' compiler='c1' level='3' entry='0x00007f5ae96305c0' size='944' address='0x00007f5ae9630410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.HashMap$HashIterator hasNext ()Z' bytes='13' count='265' iicount='265' stamp='0.239'/>
+<writer thread='23757'/>
+<task_queued compile_id='84' method='java.util.Optional of (Ljava/lang/Object;)Ljava/util/Optional;' bytes='9' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='85' method='java.util.Optional &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='86' method='java.util.ImmutableCollections$MapN get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='21' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='87' method='java.util.Optional orElse (Ljava/lang/Object;)Ljava/lang/Object;' bytes='16' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='88' method='jdk.internal.module.SystemModuleFinder find (Ljava/lang/String;)Ljava/util/Optional;' bytes='22' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='89' method='java.lang.module.Resolver findWithBeforeFinder (Ljava/lang/String;)Ljava/lang/module/ModuleReference;' bytes='18' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='90' method='java.util.ImmutableCollections$Set0 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.239' comment='tiered' hot_count='128'/>
+<task_queued compile_id='91' method='java.util.HashSet add (Ljava/lang/Object;)Z' bytes='20' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='85' compiler='c1' level='3' entry='0x00007f5ae96309e0' size='1576' address='0x00007f5ae9630810' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1360' scopes_pcs_offset='1440' dependencies_offset='1568' metadata_offset='1336' method='java.util.Optional &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='277' iicount='277' stamp='0.239'/>
+<writer thread='23814'/>
+<nmethod compile_id='83' compiler='c1' level='3' entry='0x00007f5ae9631080' size='2160' address='0x00007f5ae9630e90' relocation_offset='368' insts_offset='496' stub_offset='1616' scopes_data_offset='1832' scopes_pcs_offset='1960' dependencies_offset='2152' metadata_offset='1784' method='java.util.Optional ofNullable (Ljava/lang/Object;)Ljava/util/Optional;' bytes='15' count='277' iicount='277' stamp='0.239'/>
+<writer thread='23757'/>
+<task_queued compile_id='92' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='86' compiler='c1' level='3' entry='0x00007f5ae96318c0' size='1128' address='0x00007f5ae9631710' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='1008' dependencies_offset='1104' nul_chk_table_offset='1112' metadata_offset='952' method='java.util.ImmutableCollections$MapN get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='21' count='275' iicount='275' stamp='0.239'/>
+<writer thread='23757'/>
+<nmethod compile_id='93' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a76de0' size='984' address='0x00007f5af0a76c10' relocation_offset='368' consts_offset='984' insts_offset='464' method='java.lang.Object hashCode ()I' bytes='0' count='256' iicount='256' stamp='0.239'/>
+<writer thread='23813'/>
+<nmethod compile_id='84' compiler='c1' level='3' entry='0x00007f5ae9631d60' size='1800' address='0x00007f5ae9631b90' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1528' scopes_pcs_offset='1632' dependencies_offset='1792' metadata_offset='1496' method='java.util.Optional of (Ljava/lang/Object;)Ljava/util/Optional;' bytes='9' count='277' iicount='277' stamp='0.240'/>
+<writer thread='23757'/>
+<task_queued compile_id='94' method='java.util.HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node;' bytes='100' count='256' backedge_count='523' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='87' compiler='c1' level='3' entry='0x00007f5ae96324c0' size='944' address='0x00007f5ae9632310' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.Optional orElse (Ljava/lang/Object;)Ljava/lang/Object;' bytes='16' count='274' iicount='274' stamp='0.240'/>
+<writer thread='23757'/>
+<task_queued compile_id='95' method='jdk.internal.module.ModuleReferenceImpl hashCode ()I' bytes='56' count='384' iicount='384' level='3' stamp='0.240' comment='tiered' hot_count='384'/>
+<writer thread='23816'/>
+<nmethod compile_id='89' compiler='c1' level='3' entry='0x00007f5ae96328e0' size='1784' address='0x00007f5ae9632710' relocation_offset='368' insts_offset='464' stub_offset='1392' scopes_data_offset='1576' scopes_pcs_offset='1624' dependencies_offset='1752' nul_chk_table_offset='1760' metadata_offset='1560' method='java.lang.module.Resolver findWithBeforeFinder (Ljava/lang/String;)Ljava/lang/module/ModuleReference;' bytes='18' count='271' iicount='271' stamp='0.240'/>
+<writer thread='23757'/>
+<task_queued compile_id='96' method='java.lang.module.ResolvedModule hashCode ()I' bytes='16' count='256' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='91' compiler='c1' level='3' entry='0x00007f5ae9633080' size='2128' address='0x00007f5ae9632e90' relocation_offset='368' insts_offset='496' stub_offset='1616' scopes_data_offset='1832' scopes_pcs_offset='1952' dependencies_offset='2096' nul_chk_table_offset='2104' oops_offset='1800' metadata_offset='1808' method='java.util.HashSet add (Ljava/lang/Object;)Z' bytes='20' count='478' iicount='478' stamp='0.240'/>
+<writer thread='23757'/>
+<task_queued compile_id='97' method='java.lang.module.ModuleDescriptor requires ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.240' comment='tiered' hot_count='128'/>
+<task_queued compile_id='98' method='java.lang.module.ModuleDescriptor isAutomatic ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.240' comment='tiered' hot_count='128'/>
+<task_queued compile_id='99' method='java.lang.module.Resolver computeIfAbsent (Ljava/util/Map;Ljava/lang/String;Ljava/lang/module/Configuration;Ljava/lang/module/ModuleReference;)Ljava/lang/module/ResolvedModule;' bytes='42' count='256' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='94' compiler='c1' level='3' entry='0x00007f5ae9633900' size='2312' address='0x00007f5ae9633710' relocation_offset='368' insts_offset='496' stub_offset='1744' scopes_data_offset='1936' scopes_pcs_offset='2032' dependencies_offset='2272' nul_chk_table_offset='2280' metadata_offset='1928' method='java.util.HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node;' bytes='100' count='298' backedge_count='566' iicount='298' stamp='0.240'/>
+<writer thread='23757'/>
+<task_queued compile_id='100' method='java.util.ImmutableCollections$Set1 contains (Ljava/lang/Object;)Z' bytes='9' count='256' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<task_queued compile_id='101' method='java.lang.Enum equals (Ljava/lang/Object;)Z' bytes='11' count='256' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='92' compiler='c1' level='3' entry='0x00007f5ae9634260' size='1760' address='0x00007f5ae9634090' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1496' scopes_pcs_offset='1600' dependencies_offset='1728' nul_chk_table_offset='1736' metadata_offset='1480' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='679' iicount='679' stamp='0.240'/>
+<writer thread='23815'/>
+<nmethod compile_id='88' compiler='c1' level='3' entry='0x00007f5ae96349c0' size='3344' address='0x00007f5ae9634790' relocation_offset='368' insts_offset='560' stub_offset='2544' scopes_data_offset='2800' scopes_pcs_offset='3000' dependencies_offset='3320' nul_chk_table_offset='3328' metadata_offset='2744' method='jdk.internal.module.SystemModuleFinder find (Ljava/lang/String;)Ljava/util/Optional;' bytes='22' count='273' iicount='273' stamp='0.240'/>
+<writer thread='23816'/>
+<nmethod compile_id='95' compiler='c1' level='3' entry='0x00007f5ae9635700' size='2240' address='0x00007f5ae9635510' relocation_offset='368' insts_offset='496' stub_offset='1680' scopes_data_offset='1912' scopes_pcs_offset='2024' dependencies_offset='2200' nul_chk_table_offset='2208' metadata_offset='1880' method='jdk.internal.module.ModuleReferenceImpl hashCode ()I' bytes='56' count='632' iicount='632' stamp='0.241'/>
+<writer thread='23814'/>
+<nmethod compile_id='96' compiler='c1' level='3' entry='0x00007f5ae9635fe0' size='1424' address='0x00007f5ae9635e10' relocation_offset='368' insts_offset='464' stub_offset='1040' scopes_data_offset='1232' scopes_pcs_offset='1280' dependencies_offset='1392' nul_chk_table_offset='1400' metadata_offset='1224' method='java.lang.module.ResolvedModule hashCode ()I' bytes='16' count='458' iicount='458' stamp='0.241'/>
+<writer thread='23813'/>
+<nmethod compile_id='97' compiler='c1' level='1' entry='0x00007f5af0a771c0' size='752' address='0x00007f5af0a77010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor requires ()Ljava/util/Set;' bytes='5' count='154' iicount='154' stamp='0.241'/>
+<writer thread='23816'/>
+<nmethod compile_id='98' compiler='c1' level='1' entry='0x00007f5af0a774c0' size='752' address='0x00007f5af0a77310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor isAutomatic ()Z' bytes='5' count='154' iicount='154' stamp='0.241'/>
+<writer thread='23757'/>
+<task_queued compile_id='102' method='java.util.HashMap$KeyIterator next ()Ljava/lang/Object;' bytes='8' count='256' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='90' compiler='c1' level='1' entry='0x00007f5af0a777c0' size='752' address='0x00007f5af0a77610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set0 size ()I' bytes='2' count='130' iicount='130' stamp='0.241'/>
+<writer thread='23813'/>
+<nmethod compile_id='101' compiler='c1' level='3' entry='0x00007f5ae96365c0' size='944' address='0x00007f5ae9636410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.Enum equals (Ljava/lang/Object;)Z' bytes='11' count='274' iicount='274' stamp='0.241'/>
+<writer thread='23814'/>
+<nmethod compile_id='100' compiler='c1' level='3' entry='0x00007f5ae96369c0' size='1128' address='0x00007f5ae9636810' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1024' dependencies_offset='1104' nul_chk_table_offset='1112' metadata_offset='984' method='java.util.ImmutableCollections$Set1 contains (Ljava/lang/Object;)Z' bytes='9' count='274' iicount='274' stamp='0.241'/>
+<writer thread='23757'/>
+<task_queued compile_id='103' method='java.util.HashMap$HashIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='79' count='256' backedge_count='595' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<task_queued compile_id='104' method='java.util.HashSet iterator ()Ljava/util/Iterator;' bytes='13' count='256' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<task_queued compile_id='105' method='java.util.HashMap keySet ()Ljava/util/Set;' bytes='25' count='256' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<task_queued compile_id='106' method='java.util.HashMap$KeySet iterator ()Ljava/util/Iterator;' bytes='12' count='256' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<task_queued compile_id='107' method='java.util.HashMap$KeyIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='11' count='256' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='102' compiler='c1' level='3' entry='0x00007f5ae9636e40' size='1096' address='0x00007f5ae9636c90' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1072' nul_chk_table_offset='1080' metadata_offset='952' method='java.util.HashMap$KeyIterator next ()Ljava/lang/Object;' bytes='8' count='439' iicount='439' stamp='0.241'/>
+<writer thread='23815'/>
+<nmethod compile_id='99' compiler='c1' level='3' entry='0x00007f5ae9637340' size='3432' address='0x00007f5ae9637110' relocation_offset='368' insts_offset='560' stub_offset='2576' scopes_data_offset='2824' scopes_pcs_offset='3120' dependencies_offset='3408' nul_chk_table_offset='3416' metadata_offset='2792' method='java.lang.module.Resolver computeIfAbsent (Ljava/util/Map;Ljava/lang/String;Ljava/lang/module/Configuration;Ljava/lang/module/ModuleReference;)Ljava/lang/module/ResolvedModule;' bytes='42' count='312' iicount='312' stamp='0.241'/>
+<writer thread='23814'/>
+<nmethod compile_id='104' compiler='c1' level='3' entry='0x00007f5ae9638060' size='1376' address='0x00007f5ae9637e90' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1200' scopes_pcs_offset='1232' dependencies_offset='1344' nul_chk_table_offset='1352' metadata_offset='1192' method='java.util.HashSet iterator ()Ljava/util/Iterator;' bytes='13' count='496' iicount='496' stamp='0.242'/>
+<writer thread='23757'/>
+<task_queued compile_id='108' method='java.util.HashMap$ValueIterator next ()Ljava/lang/Object;' bytes='8' count='256' iicount='256' level='3' stamp='0.242' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='105' compiler='c1' level='3' entry='0x00007f5ae96385e0' size='1800' address='0x00007f5ae9638410' relocation_offset='368' insts_offset='464' stub_offset='1392' scopes_data_offset='1576' scopes_pcs_offset='1664' dependencies_offset='1792' metadata_offset='1536' method='java.util.HashMap keySet ()Ljava/util/Set;' bytes='25' count='581' iicount='582' stamp='0.242'/>
+<writer thread='23814'/>
+<nmethod compile_id='107' compiler='c1' level='3' entry='0x00007f5ae9638d40' size='1024' address='0x00007f5ae9638b90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='928' scopes_pcs_offset='952' dependencies_offset='1016' metadata_offset='920' method='java.util.HashMap$KeyIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='11' count='593' iicount='593' stamp='0.242'/>
+<writer thread='23816'/>
+<nmethod compile_id='103' compiler='c1' level='3' entry='0x00007f5ae96391e0' size='1880' address='0x00007f5ae9639010' relocation_offset='368' insts_offset='464' stub_offset='1456' scopes_data_offset='1624' scopes_pcs_offset='1704' dependencies_offset='1848' nul_chk_table_offset='1856' metadata_offset='1600' method='java.util.HashMap$HashIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='79' count='619' backedge_count='1054' iicount='620' stamp='0.242'/>
+<writer thread='23815'/>
+<nmethod compile_id='106' compiler='c1' level='3' entry='0x00007f5ae9639960' size='1360' address='0x00007f5ae9639790' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1192' scopes_pcs_offset='1256' dependencies_offset='1352' metadata_offset='1176' method='java.util.HashMap$KeySet iterator ()Ljava/util/Iterator;' bytes='12' count='651' iicount='651' stamp='0.242'/>
+<writer thread='23814'/>
+<nmethod compile_id='108' compiler='c1' level='3' entry='0x00007f5ae9639ec0' size='1096' address='0x00007f5ae9639d10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1072' nul_chk_table_offset='1080' metadata_offset='952' method='java.util.HashMap$ValueIterator next ()Ljava/lang/Object;' bytes='8' count='293' iicount='293' stamp='0.242'/>
+<writer thread='23757'/>
+<task_queued compile_id='109' method='java.util.KeyValueHolder getKey ()Ljava/lang/Object;' bytes='5' count='128' iicount='128' level='1' stamp='0.243' comment='tiered' hot_count='128'/>
+<task_queued compile_id='110' method='java.util.KeyValueHolder getValue ()Ljava/lang/Object;' bytes='5' count='128' iicount='128' level='1' stamp='0.243' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='109' compiler='c1' level='1' entry='0x00007f5af0a77ac0' size='752' address='0x00007f5af0a77910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.KeyValueHolder getKey ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' stamp='0.243'/>
+<writer thread='23816'/>
+<nmethod compile_id='110' compiler='c1' level='1' entry='0x00007f5af0a77dc0' size='752' address='0x00007f5af0a77c10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.KeyValueHolder getValue ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' stamp='0.243'/>
+<writer thread='23811'/>
+<nmethod compile_id='81' compiler='c2' level='4' entry='0x00007f5af0a780a0' size='1024' address='0x00007f5af0a77f10' relocation_offset='368' insts_offset='400' stub_offset='816' scopes_data_offset='856' scopes_pcs_offset='920' dependencies_offset='1000' nul_chk_table_offset='1008' metadata_offset='840' method='java.lang.String hashCode ()I' bytes='49' count='6415' iicount='6415' stamp='0.243'/>
+<make_not_entrant thread='23811' compile_id='10' compiler='c1' level='3' stamp='0.243'/>
+<writer thread='23757'/>
+<task_queued compile_id='111' method='java.lang.module.ResolvedModule reference ()Ljava/lang/module/ModuleReference;' bytes='5' count='128' iicount='128' level='1' stamp='0.243' comment='tiered' hot_count='128'/>
+<task_queued compile_id='112' method='java.util.HashSet contains (Ljava/lang/Object;)Z' bytes='9' count='256' iicount='256' level='3' stamp='0.243' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='111' compiler='c1' level='1' entry='0x00007f5af0a78540' size='752' address='0x00007f5af0a78390' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ResolvedModule reference ()Ljava/lang/module/ModuleReference;' bytes='5' count='156' iicount='156' stamp='0.243'/>
+<writer thread='23757'/>
+<task_queued compile_id='113' method='java.lang.String indexOf (II)I' bytes='29' count='255' iicount='255' level='3' stamp='0.243' comment='tiered' hot_count='255'/>
+<task_queued compile_id='114' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='255' backedge_count='2241' iicount='255' level='3' stamp='0.243' comment='tiered' hot_count='255'/>
+<task_queued compile_id='115' method='java.lang.String indexOf (I)I' bytes='7' count='247' iicount='247' level='3' stamp='0.243' comment='tiered' hot_count='247'/>
+<task_queued compile_id='116' method='java.util.concurrent.ConcurrentHashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='8' count='256' iicount='256' level='3' stamp='0.243' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='112' compiler='c1' level='3' entry='0x00007f5ae963a380' size='2072' address='0x00007f5ae963a190' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1792' scopes_pcs_offset='1896' dependencies_offset='2040' nul_chk_table_offset='2048' metadata_offset='1768' method='java.util.HashSet contains (Ljava/lang/Object;)Z' bytes='9' count='264' iicount='264' stamp='0.244'/>
+<writer thread='23816'/>
+<nmethod compile_id='113' compiler='c1' level='3' entry='0x00007f5ae963abe0' size='1368' address='0x00007f5ae963aa10' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1208' scopes_pcs_offset='1264' dependencies_offset='1360' metadata_offset='1192' method='java.lang.String indexOf (II)I' bytes='29' count='295' iicount='295' stamp='0.244'/>
+<writer thread='23813'/>
+<nmethod compile_id='114' compiler='c1' level='3' entry='0x00007f5ae963b160' size='1728' address='0x00007f5ae963af90' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1488' scopes_pcs_offset='1576' dependencies_offset='1704' nul_chk_table_offset='1712' metadata_offset='1472' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='295' backedge_count='2559' iicount='295' stamp='0.244'/>
+<writer thread='23815'/>
+<nmethod compile_id='116' compiler='c1' level='3' entry='0x00007f5ae963b840' size='1072' address='0x00007f5ae963b690' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='968' scopes_pcs_offset='1000' dependencies_offset='1064' metadata_offset='952' method='java.util.concurrent.ConcurrentHashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='8' count='577' iicount='577' stamp='0.244'/>
+<writer thread='23757'/>
+<task_queued compile_id='117' method='java.lang.module.ModuleDescriptor packages ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.244' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='117' compiler='c1' level='1' entry='0x00007f5af0a78840' size='752' address='0x00007f5af0a78690' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor packages ()Ljava/util/Set;' bytes='5' count='135' iicount='135' stamp='0.244'/>
+<writer thread='23814'/>
+<nmethod compile_id='115' compiler='c1' level='3' entry='0x00007f5ae963bce0' size='1640' address='0x00007f5ae963bb10' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1440' scopes_pcs_offset='1520' dependencies_offset='1632' metadata_offset='1416' method='java.lang.String indexOf (I)I' bytes='7' count='316' iicount='316' stamp='0.244'/>
+<writer thread='23757'/>
+<task_queued compile_id='118' method='java.lang.Math min (II)I' bytes='11' count='256' iicount='256' level='3' stamp='0.244' comment='tiered' hot_count='256'/>
+<task_queued compile_id='119' method='java.lang.String isLatin1 ()Z' bytes='19' count='6656' iicount='6656' stamp='0.244' comment='tiered' hot_count='6656'/>
+<writer thread='23815'/>
+<nmethod compile_id='118' compiler='c1' level='3' entry='0x00007f5ae963c340' size='912' address='0x00007f5ae963c190' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.Math min (II)I' bytes='11' count='264' iicount='264' stamp='0.244'/>
+<writer thread='23757'/>
+<task_queued compile_id='120' method='jdk.internal.misc.Unsafe putObjectRelease (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='9' count='256' iicount='256' level='3' stamp='0.244' comment='tiered' hot_count='256'/>
+<nmethod compile_id='121' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a78b60' size='960' address='0x00007f5af0a78990' relocation_offset='368' consts_offset='960' insts_offset='464' method='jdk.internal.misc.Unsafe putObjectVolatile (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='0' count='256' iicount='256' stamp='0.244'/>
+<task_queued compile_id='122' method='java.util.concurrent.ConcurrentHashMap setTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V' bytes='20' count='256' iicount='256' level='3' stamp='0.245' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='120' compiler='c1' level='3' entry='0x00007f5ae963c740' size='952' address='0x00007f5ae963c590' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='896' dependencies_offset='944' metadata_offset='864' method='jdk.internal.misc.Unsafe putObjectRelease (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='9' count='296' iicount='296' stamp='0.245'/>
+<writer thread='23811'/>
+<nmethod compile_id='119' compiler='c2' level='4' entry='0x00007f5af0a78f20' size='568' address='0x00007f5af0a78d90' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='520' scopes_pcs_offset='528' dependencies_offset='560' method='java.lang.String isLatin1 ()Z' bytes='19' count='6717' iicount='6717' stamp='0.245'/>
+<make_not_entrant thread='23811' compile_id='5' compiler='c1' level='3' stamp='0.245'/>
+<writer thread='23815'/>
+<nmethod compile_id='122' compiler='c1' level='3' entry='0x00007f5ae963cb40' size='1232' address='0x00007f5ae963c990' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1160' dependencies_offset='1224' oops_offset='1088' metadata_offset='1096' method='java.util.concurrent.ConcurrentHashMap setTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V' bytes='20' count='294' iicount='294' stamp='0.245'/>
+<writer thread='23757'/>
+<task_queued compile_id='123' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='256' iicount='256' level='3' stamp='0.245' comment='tiered' hot_count='256'/>
+<task_queued compile_id='124' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='256' iicount='256' level='3' stamp='0.245' comment='tiered' hot_count='256'/>
+<task_queued compile_id='125' method='java.lang.module.ResolvedModule name ()Ljava/lang/String;' bytes='11' count='256' iicount='256' level='3' stamp='0.245' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='124' compiler='c1' level='3' entry='0x00007f5ae963d040' size='1000' address='0x00007f5ae963ce90' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='872' dependencies_offset='968' nul_chk_table_offset='976' metadata_offset='832' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='260' iicount='260' stamp='0.245'/>
+<writer thread='23813'/>
+<nmethod compile_id='123' compiler='c1' level='3' entry='0x00007f5ae963d4a0' size='2480' address='0x00007f5ae963d290' relocation_offset='368' insts_offset='528' stub_offset='1872' scopes_data_offset='2024' scopes_pcs_offset='2080' dependencies_offset='2416' nul_chk_table_offset='2424' metadata_offset='2016' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='260' iicount='260' stamp='0.245'/>
+<writer thread='23816'/>
+<nmethod compile_id='125' compiler='c1' level='3' entry='0x00007f5ae963de40' size='1312' address='0x00007f5ae963dc90' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1168' scopes_pcs_offset='1200' dependencies_offset='1280' nul_chk_table_offset='1288' metadata_offset='1152' method='java.lang.module.ResolvedModule name ()Ljava/lang/String;' bytes='11' count='316' iicount='316' stamp='0.245'/>
+<writer thread='23757'/>
+<task_queued compile_id='126' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='5378' backedge_count='2610' iicount='5378' stamp='0.246' comment='tiered' hot_count='5378'/>
+<task_queued compile_id='127' method='java.lang.module.ModuleDescriptor$Version toString ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.246' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='127' compiler='c1' level='1' entry='0x00007f5af0a791c0' size='752' address='0x00007f5af0a79010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Version toString ()Ljava/lang/String;' bytes='5' count='136' iicount='136' stamp='0.246'/>
+<writer thread='23757'/>
+<task_queued compile_id='128' method='java.util.ImmutableCollections$Set2$1 hasNext ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.247' comment='tiered' hot_count='256'/>
+<task_queued compile_id='129' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='256' iicount='256' level='3' stamp='0.247' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='128' compiler='c1' level='3' entry='0x00007f5ae963e3c0' size='944' address='0x00007f5ae963e210' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.ImmutableCollections$Set2$1 hasNext ()Z' bytes='14' count='256' iicount='256' stamp='0.247'/>
+<writer thread='23805'/>
+<nmethod compile_id='126' compiler='c2' level='4' entry='0x00007f5af0a794a0' size='768' address='0x00007f5af0a79310' relocation_offset='368' insts_offset='400' stub_offset='592' scopes_data_offset='624' scopes_pcs_offset='656' dependencies_offset='736' nul_chk_table_offset='744' metadata_offset='616' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='6514' backedge_count='3168' iicount='6514' stamp='0.247'/>
+<make_not_entrant thread='23805' compile_id='55' compiler='c1' level='3' stamp='0.247'/>
+<writer thread='23815'/>
+<nmethod compile_id='129' compiler='c1' level='3' entry='0x00007f5ae963e800' size='2040' address='0x00007f5ae963e610' relocation_offset='368' insts_offset='496' stub_offset='1520' scopes_data_offset='1728' scopes_pcs_offset='1872' dependencies_offset='2016' nul_chk_table_offset='2024' metadata_offset='1704' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='301' iicount='301' stamp='0.248'/>
+<writer thread='23757'/>
+<task_queued compile_id='130' method='java.util.HashMap &lt;init&gt; ()V' bytes='11' count='256' iicount='256' level='3' stamp='0.248' comment='tiered' hot_count='256'/>
+<task_queued compile_id='131' method='java.util.Collections$EmptyMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='2' count='128' iicount='128' level='1' stamp='0.248' comment='tiered' hot_count='128'/>
+<task_queued compile_id='132' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='1385' iicount='1385' level='1' stamp='0.248' comment='tiered' hot_count='1385'/>
+<writer thread='23813'/>
+<nmethod compile_id='131' compiler='c1' level='1' entry='0x00007f5af0a79840' size='752' address='0x00007f5af0a79690' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptyMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='2' count='134' iicount='134' stamp='0.248'/>
+<writer thread='23757'/>
+<task_queued compile_id='133' method='java.util.HashSet &lt;init&gt; ()V' bytes='16' count='256' iicount='256' level='3' stamp='0.248' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='130' compiler='c1' level='3' entry='0x00007f5ae963f040' size='1120' address='0x00007f5ae963ee90' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.util.HashMap &lt;init&gt; ()V' bytes='11' count='302' iicount='302' stamp='0.248'/>
+<writer thread='23814'/>
+<nmethod compile_id='132' compiler='c1' level='1' entry='0x00007f5af0a79b40' size='752' address='0x00007f5af0a79990' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='1482' iicount='1482' stamp='0.248'/>
+<make_not_entrant thread='23814' compile_id='76' compiler='c1' level='3' stamp='0.248'/>
+<writer thread='23757'/>
+<task_queued compile_id='134' method='java.util.HashMap resize ()[Ljava/util/HashMap$Node;' bytes='356' count='282' backedge_count='1174' iicount='282' level='3' stamp='0.249' comment='tiered' hot_count='282'/>
+<task_queued compile_id='135' method='java.lang.module.ModuleDescriptor$Exports isQualified ()Z' bytes='18' count='256' iicount='256' level='3' stamp='0.249' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='133' compiler='c1' level='3' entry='0x00007f5ae963f4e0' size='1896' address='0x00007f5ae963f310' relocation_offset='368' insts_offset='464' stub_offset='1424' scopes_data_offset='1624' scopes_pcs_offset='1728' dependencies_offset='1888' metadata_offset='1568' method='java.util.HashSet &lt;init&gt; ()V' bytes='16' count='288' iicount='288' stamp='0.249'/>
+<writer thread='23757'/>
+<task_queued compile_id='136' method='java.lang.module.ModuleDescriptor$Exports source ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.249' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='135' compiler='c1' level='3' entry='0x00007f5ae963fc40' size='1216' address='0x00007f5ae963fa90' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1112' dependencies_offset='1192' nul_chk_table_offset='1200' metadata_offset='1080' method='java.lang.module.ModuleDescriptor$Exports isQualified ()Z' bytes='18' count='311' iicount='311' stamp='0.249'/>
+<writer thread='23757'/>
+<task_queued compile_id='137' method='java.util.Collections$EmptySet isEmpty ()Z' bytes='2' count='128' iicount='128' level='1' stamp='0.249' comment='tiered' hot_count='128'/>
+<writer thread='23814'/>
+<nmethod compile_id='136' compiler='c1' level='1' entry='0x00007f5af0a79e40' size='752' address='0x00007f5af0a79c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Exports source ()Ljava/lang/String;' bytes='5' count='152' iicount='152' stamp='0.249'/>
+<nmethod compile_id='137' compiler='c1' level='1' entry='0x00007f5af0a7a140' size='752' address='0x00007f5af0a79f90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptySet isEmpty ()Z' bytes='2' count='163' iicount='163' stamp='0.249'/>
+<writer thread='23757'/>
+<task_queued compile_id='138' method='java.lang.module.ResolvedModule configuration ()Ljava/lang/module/Configuration;' bytes='5' count='128' iicount='128' level='1' stamp='0.250' comment='tiered' hot_count='128'/>
+<task_queued compile_id='139' method='java.util.ArrayList access$000 (Ljava/util/ArrayList;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.250' comment='tiered' hot_count='128'/>
+<task_queued compile_id='140' method='java.util.ImmutableCollections$Set2$1 next ()Ljava/lang/Object;' bytes='49' count='256' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='134' compiler='c1' level='3' entry='0x00007f5ae9640260' size='7136' address='0x00007f5ae963ff90' relocation_offset='368' consts_offset='688' insts_offset='720' stub_offset='5872' scopes_data_offset='6048' scopes_pcs_offset='6384' dependencies_offset='6976' nul_chk_table_offset='6984' metadata_offset='6040' method='java.util.HashMap resize ()[Ljava/util/HashMap$Node;' bytes='356' count='386' backedge_count='1394' iicount='386' stamp='0.250'/>
+<nmethod compile_id='139' compiler='c1' level='1' entry='0x00007f5af0a7a440' size='768' address='0x00007f5af0a7a290' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.ArrayList access$000 (Ljava/util/ArrayList;)I' bytes='5' count='167' iicount='167' stamp='0.250'/>
+<writer thread='23815'/>
+<nmethod compile_id='138' compiler='c1' level='1' entry='0x00007f5af0a7a7c0' size='752' address='0x00007f5af0a7a610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ResolvedModule configuration ()Ljava/lang/module/Configuration;' bytes='5' count='169' iicount='169' stamp='0.250'/>
+<writer thread='23813'/>
+<nmethod compile_id='140' compiler='c1' level='3' entry='0x00007f5ae9641d60' size='1328' address='0x00007f5ae9641b90' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1120' scopes_pcs_offset='1168' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1112' method='java.util.ImmutableCollections$Set2$1 next ()Ljava/lang/Object;' bytes='49' count='270' iicount='270' stamp='0.250'/>
+<writer thread='23757'/>
+<task_queued compile_id='141' method='java.lang.module.ModuleDescriptor$Exports targets ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.250' comment='tiered' hot_count='128'/>
+<task_queued compile_id='142' method='java.util.ImmutableCollections$SetN iterator ()Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<task_queued compile_id='143' method='java.util.ImmutableCollections$SetN$1 &lt;init&gt; (Ljava/util/ImmutableCollections$SetN;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<task_queued compile_id='144' method='java.lang.Module findModule (Ljava/lang/String;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)Ljava/lang/Module;' bytes='93' count='256' backedge_count='36' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='141' compiler='c1' level='1' entry='0x00007f5af0a7aac0' size='752' address='0x00007f5af0a7a910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Exports targets ()Ljava/util/Set;' bytes='5' count='146' iicount='146' stamp='0.250'/>
+<writer thread='23757'/>
+<nmethod compile_id='145' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7ade0' size='984' address='0x00007f5af0a7ac10' relocation_offset='368' consts_offset='984' insts_offset='464' method='java.lang.Module addExports0 (Ljava/lang/Module;Ljava/lang/String;Ljava/lang/Module;)V' bytes='0' count='256' iicount='256' stamp='0.250'/>
+<writer thread='23815'/>
+<nmethod compile_id='143' compiler='c1' level='3' entry='0x00007f5ae96422c0' size='1128' address='0x00007f5ae9642110' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1016' scopes_pcs_offset='1056' dependencies_offset='1120' metadata_offset='992' method='java.util.ImmutableCollections$SetN$1 &lt;init&gt; (Ljava/util/ImmutableCollections$SetN;)V' bytes='15' count='262' iicount='262' stamp='0.250'/>
+<writer thread='23816'/>
+<nmethod compile_id='142' compiler='c1' level='3' entry='0x00007f5ae9642740' size='1344' address='0x00007f5ae9642590' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1240' dependencies_offset='1336' metadata_offset='1152' method='java.util.ImmutableCollections$SetN iterator ()Ljava/util/Iterator;' bytes='9' count='263' iicount='263' stamp='0.250'/>
+<writer thread='23757'/>
+<task_queued compile_id='146' method='java.util.HashMap isEmpty ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<task_queued compile_id='147' method='java.lang.module.ModuleDescriptor isOpen ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.250' comment='tiered' hot_count='128'/>
+<writer thread='23815'/>
+<nmethod compile_id='146' compiler='c1' level='3' entry='0x00007f5ae9642cc0' size='944' address='0x00007f5ae9642b10' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.HashMap isEmpty ()Z' bytes='13' count='279' iicount='279' stamp='0.251'/>
+<writer thread='23813'/>
+<nmethod compile_id='147' compiler='c1' level='1' entry='0x00007f5af0a7b1c0' size='752' address='0x00007f5af0a7b010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor isOpen ()Z' bytes='5' count='131' iicount='131' stamp='0.251'/>
+<writer thread='23757'/>
+<task_queued compile_id='148' method='java.util.Collections$UnmodifiableCollection$1 hasNext ()Z' bytes='10' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<task_queued compile_id='149' method='java.util.ImmutableCollections$Set1 iterator ()Ljava/util/Iterator;' bytes='8' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<task_queued compile_id='150' method='java.util.Collections singletonIterator (Ljava/lang/Object;)Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<task_queued compile_id='151' method='java.util.Collections$1 &lt;init&gt; (Ljava/lang/Object;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<task_queued compile_id='152' method='java.util.Collections$1 next ()Ljava/lang/Object;' bytes='25' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='148' compiler='c1' level='3' entry='0x00007f5ae96430c0' size='1120' address='0x00007f5ae9642f10' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.Collections$UnmodifiableCollection$1 hasNext ()Z' bytes='10' count='280' iicount='280' stamp='0.251'/>
+<writer thread='23814'/>
+<nmethod compile_id='144' compiler='c1' level='3' entry='0x00007f5ae96435e0' size='4456' address='0x00007f5ae9643390' relocation_offset='368' insts_offset='592' stub_offset='3504' scopes_data_offset='3768' scopes_pcs_offset='4040' dependencies_offset='4392' nul_chk_table_offset='4400' metadata_offset='3752' method='java.lang.Module findModule (Ljava/lang/String;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)Ljava/lang/Module;' bytes='93' count='477' backedge_count='82' iicount='477' stamp='0.251'/>
+<writer thread='23813'/>
+<nmethod compile_id='150' compiler='c1' level='3' entry='0x00007f5ae96446c0' size='1312' address='0x00007f5ae9644510' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1144' scopes_pcs_offset='1208' dependencies_offset='1304' metadata_offset='1120' method='java.util.Collections singletonIterator (Ljava/lang/Object;)Ljava/util/Iterator;' bytes='9' count='273' iicount='273' stamp='0.251'/>
+<writer thread='23757'/>
+<nmethod compile_id='153' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7b4e0' size='960' address='0x00007f5af0a7b310' relocation_offset='368' consts_offset='960' insts_offset='464' method='java.lang.Module addExportsToAll0 (Ljava/lang/Module;Ljava/lang/String;)V' bytes='0' count='256' iicount='256' stamp='0.251'/>
+<writer thread='23816'/>
+<nmethod compile_id='151' compiler='c1' level='3' entry='0x00007f5ae9644c40' size='1096' address='0x00007f5ae9644a90' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1024' dependencies_offset='1088' metadata_offset='960' method='java.util.Collections$1 &lt;init&gt; (Ljava/lang/Object;)V' bytes='15' count='273' iicount='273' stamp='0.251'/>
+<writer thread='23814'/>
+<nmethod compile_id='152' compiler='c1' level='3' entry='0x00007f5ae96450c0' size='1096' address='0x00007f5ae9644f10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1088' metadata_offset='952' method='java.util.Collections$1 next ()Ljava/lang/Object;' bytes='25' count='276' iicount='276' stamp='0.251'/>
+<writer thread='23815'/>
+<nmethod compile_id='149' compiler='c1' level='3' entry='0x00007f5ae9645560' size='1512' address='0x00007f5ae9645390' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1312' scopes_pcs_offset='1392' dependencies_offset='1504' metadata_offset='1280' method='java.util.ImmutableCollections$Set1 iterator ()Ljava/util/Iterator;' bytes='8' count='278' iicount='278' stamp='0.251'/>
+<writer thread='23757'/>
+<task_queued compile_id='154' method='java.util.Collections$UnmodifiableCollection$1 next ()Ljava/lang/Object;' bytes='10' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<nmethod compile_id='155' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7b8e0' size='960' address='0x00007f5af0a7b710' relocation_offset='368' consts_offset='960' insts_offset='464' method='java.lang.Module addReads0 (Ljava/lang/Module;Ljava/lang/Module;)V' bytes='0' count='256' iicount='256' stamp='0.251'/>
+<writer thread='23815'/>
+<nmethod compile_id='154' compiler='c1' level='3' entry='0x00007f5ae9645b40' size='1120' address='0x00007f5ae9645990' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.Collections$UnmodifiableCollection$1 next ()Ljava/lang/Object;' bytes='10' count='257' iicount='257' stamp='0.252'/>
+<writer thread='23757'/>
+<task_queued compile_id='156' method='java.util.ImmutableCollections$Set2 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.252' comment='tiered' hot_count='128'/>
+<task_queued compile_id='157' method='java.lang.reflect.Field getName ()Ljava/lang/String;' bytes='5' count='256' iicount='256' level='1' stamp='0.252' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='156' compiler='c1' level='1' entry='0x00007f5af0a7bcc0' size='752' address='0x00007f5af0a7bb10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set2 size ()I' bytes='2' count='130' iicount='130' stamp='0.252'/>
+<writer thread='23757'/>
+<task_queued compile_id='158' method='jdk.internal.module.ModuleReferenceImpl moduleResolution ()Ljdk/internal/module/ModuleResolution;' bytes='5' count='128' iicount='128' level='1' stamp='0.253' comment='tiered' hot_count='128'/>
+<writer thread='23815'/>
+<nmethod compile_id='157' compiler='c1' level='1' entry='0x00007f5af0a7bfc0' size='752' address='0x00007f5af0a7be10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.reflect.Field getName ()Ljava/lang/String;' bytes='5' count='270' iicount='270' stamp='0.253'/>
+<writer thread='23816'/>
+<nmethod compile_id='158' compiler='c1' level='1' entry='0x00007f5af0a7c2c0' size='752' address='0x00007f5af0a7c110' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.module.ModuleReferenceImpl moduleResolution ()Ljdk/internal/module/ModuleResolution;' bytes='5' count='148' iicount='148' stamp='0.253'/>
+<writer thread='23757'/>
+<task_queued compile_id='159' method='java.util.Map entry (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;' bytes='10' count='256' iicount='256' level='3' stamp='0.253' comment='tiered' hot_count='256'/>
+<task_queued compile_id='160' method='java.util.KeyValueHolder &lt;init&gt; (Ljava/lang/Object;Ljava/lang/Object;)V' bytes='21' count='256' iicount='256' level='3' stamp='0.253' comment='tiered' hot_count='256'/>
+<task_queued compile_id='161' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='6402' iicount='6402' stamp='0.253' comment='tiered' hot_count='6402'/>
+<writer thread='23813'/>
+<nmethod compile_id='160' compiler='c1' level='3' entry='0x00007f5ae9646000' size='2160' address='0x00007f5ae9645e10' relocation_offset='368' insts_offset='496' stub_offset='1616' scopes_data_offset='1824' scopes_pcs_offset='1960' dependencies_offset='2152' metadata_offset='1800' method='java.util.KeyValueHolder &lt;init&gt; (Ljava/lang/Object;Ljava/lang/Object;)V' bytes='21' count='280' iicount='280' stamp='0.254'/>
+<writer thread='23814'/>
+<nmethod compile_id='159' compiler='c1' level='3' entry='0x00007f5ae96468a0' size='2440' address='0x00007f5ae9646690' relocation_offset='368' insts_offset='528' stub_offset='1808' scopes_data_offset='2024' scopes_pcs_offset='2208' dependencies_offset='2432' metadata_offset='1992' method='java.util.Map entry (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;' bytes='10' count='280' iicount='280' stamp='0.254'/>
+<writer thread='23757'/>
+<task_queued compile_id='162' method='java.util.Collections$EmptyIterator hasNext ()Z' bytes='2' count='128' iicount='128' level='1' stamp='0.254' comment='tiered' hot_count='128'/>
+<task_queued compile_id='163' method='jdk.internal.module.ModuleBootstrap$2 hasNext ()Z' bytes='30' count='256' iicount='256' level='3' stamp='0.254' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='162' compiler='c1' level='1' entry='0x00007f5af0a7c5c0' size='752' address='0x00007f5af0a7c410' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptyIterator hasNext ()Z' bytes='2' count='132' iicount='132' stamp='0.254'/>
+<writer thread='23757'/>
+<task_queued compile_id='164' method='jdk.internal.module.ModuleBootstrap$2 next ()Ljava/lang/Object;' bytes='52' count='256' iicount='256' level='3' stamp='0.254' comment='tiered' hot_count='256'/>
+<task_queued compile_id='165' method='java.util.HashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='256' iicount='256' level='3' stamp='0.254' comment='tiered' hot_count='256'/>
+<nmethod compile_id='166' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7c8e0' size='960' address='0x00007f5af0a7c710' relocation_offset='368' consts_offset='960' insts_offset='464' method='java.lang.Module addExportsToAllUnnamed0 (Ljava/lang/Module;Ljava/lang/String;)V' bytes='0' count='256' iicount='256' stamp='0.254'/>
+<task_queued compile_id='167' method='java.lang.Module getDescriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='128' iicount='128' level='1' stamp='0.254' comment='tiered' hot_count='128'/>
+<writer thread='23805'/>
+<nmethod compile_id='161' compiler='c2' level='4' entry='0x00007f5af0a7cca0' size='736' address='0x00007f5af0a7cb10' relocation_offset='368' insts_offset='400' stub_offset='560' scopes_data_offset='592' scopes_pcs_offset='624' dependencies_offset='688' handler_table_offset='696' nul_chk_table_offset='720' metadata_offset='584' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='6692' iicount='6692' stamp='0.255'/>
+<make_not_entrant thread='23805' compile_id='65' compiler='c1' level='3' stamp='0.255'/>
+<writer thread='23757'/>
+<task_queued compile_id='168' method='java.util.ImmutableCollections$Set0 instance ()Ljava/util/ImmutableCollections$Set0;' bytes='4' count='232' iicount='232' level='3' stamp='0.255' comment='tiered' hot_count='232'/>
+<writer thread='23813'/>
+<nmethod compile_id='163' compiler='c1' level='3' entry='0x00007f5ae9647260' size='1544' address='0x00007f5ae9647090' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1360' scopes_pcs_offset='1400' dependencies_offset='1512' nul_chk_table_offset='1520' metadata_offset='1352' method='jdk.internal.module.ModuleBootstrap$2 hasNext ()Z' bytes='30' count='457' iicount='457' stamp='0.255'/>
+<writer thread='23815'/>
+<nmethod compile_id='164' compiler='c1' level='3' entry='0x00007f5ae9647920' size='2264' address='0x00007f5ae9647710' relocation_offset='368' insts_offset='528' stub_offset='1680' scopes_data_offset='1920' scopes_pcs_offset='1992' dependencies_offset='2216' nul_chk_table_offset='2224' metadata_offset='1912' method='jdk.internal.module.ModuleBootstrap$2 next ()Ljava/lang/Object;' bytes='52' count='460' iicount='460' stamp='0.255'/>
+<writer thread='23816'/>
+<nmethod compile_id='165' compiler='c1' level='3' entry='0x00007f5ae96481e0' size='1680' address='0x00007f5ae9648010' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1432' scopes_pcs_offset='1544' dependencies_offset='1656' nul_chk_table_offset='1664' metadata_offset='1416' method='java.util.HashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='492' iicount='492' stamp='0.255'/>
+<writer thread='23814'/>
+<nmethod compile_id='168' compiler='c1' level='3' entry='0x00007f5ae96488c0' size='808' address='0x00007f5ae9648710' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='744' scopes_pcs_offset='752' dependencies_offset='800' metadata_offset='736' method='java.util.ImmutableCollections$Set0 instance ()Ljava/util/ImmutableCollections$Set0;' bytes='4' count='238' iicount='238' stamp='0.255'/>
+<writer thread='23816'/>
+<nmethod compile_id='167' compiler='c1' level='1' entry='0x00007f5af0a7cfc0' size='752' address='0x00007f5af0a7ce10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Module getDescriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='146' iicount='146' stamp='0.255'/>
+<writer thread='23757'/>
+<task_queued compile_id='169' method='java.lang.Character toLowerCase (I)I' bytes='9' count='256' iicount='256' level='3' stamp='0.258' comment='tiered' hot_count='256'/>
+<task_queued compile_id='170' method='java.lang.CharacterDataLatin1 toLowerCase (I)I' bytes='39' count='256' iicount='256' level='3' stamp='0.258' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='169' compiler='c1' level='3' entry='0x00007f5ae9648c60' size='1192' address='0x00007f5ae9648a90' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1040' scopes_pcs_offset='1072' dependencies_offset='1168' nul_chk_table_offset='1176' metadata_offset='1032' method='java.lang.Character toLowerCase (I)I' bytes='9' count='256' iicount='256' stamp='0.258'/>
+<writer thread='23815'/>
+<nmethod compile_id='170' compiler='c1' level='3' entry='0x00007f5ae9649140' size='1328' address='0x00007f5ae9648f90' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1184' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1088' method='java.lang.CharacterDataLatin1 toLowerCase (I)I' bytes='39' count='256' iicount='256' stamp='0.258'/>
+<writer thread='23757'/>
+<task_queued compile_id='171' method='java.util.zip.ZipUtils SH ([BI)I' bytes='21' count='256' iicount='256' level='3' stamp='0.279' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='171' compiler='c1' level='3' entry='0x00007f5ae96496c0' size='1016' address='0x00007f5ae9649510' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='872' dependencies_offset='984' nul_chk_table_offset='992' metadata_offset='832' method='java.util.zip.ZipUtils SH ([BI)I' bytes='21' count='259' iicount='259' stamp='0.280'/>
+<writer thread='23757'/>
+<task_queued compile_id='172' method='java.util.jar.Attributes$Name isValid (C)Z' bytes='32' count='256' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<task_queued compile_id='173' method='java.util.jar.Attributes$Name isAlpha (C)Z' bytes='30' count='256' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='173' compiler='c1' level='3' entry='0x00007f5ae9649b40' size='1072' address='0x00007f5ae9649990' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1000' scopes_pcs_offset='1016' dependencies_offset='1064' metadata_offset='992' method='java.util.jar.Attributes$Name isAlpha (C)Z' bytes='30' count='368' iicount='368' stamp='0.281'/>
+<writer thread='23816'/>
+<nmethod compile_id='172' compiler='c1' level='3' entry='0x00007f5ae9649fe0' size='1784' address='0x00007f5ae9649e10' relocation_offset='368' insts_offset='464' stub_offset='1488' scopes_data_offset='1656' scopes_pcs_offset='1696' dependencies_offset='1776' metadata_offset='1632' method='java.util.jar.Attributes$Name isValid (C)Z' bytes='32' count='368' iicount='368' stamp='0.281'/>
+<writer thread='23757'/>
+<task_queued compile_id='174' method='java.lang.String &lt;init&gt; ([BB)V' bytes='15' count='284' iicount='284' level='3' stamp='0.283' comment='tiered' hot_count='284'/>
+<nmethod compile_id='175' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7d2a0' size='424' address='0x00007f5af0a7d110' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.283'/>
+<writer thread='23815'/>
+<nmethod compile_id='174' compiler='c1' level='3' entry='0x00007f5ae964a740' size='1080' address='0x00007f5ae964a590' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1008' dependencies_offset='1072' metadata_offset='960' method='java.lang.String &lt;init&gt; ([BB)V' bytes='15' count='285' iicount='285' stamp='0.284'/>
+<writer thread='23757'/>
+<task_queued compile_id='176' method='sun.nio.fs.UnixPath checkNotNul (Ljava/lang/String;C)V' bytes='16' count='256' iicount='256' level='3' stamp='0.286' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='176' compiler='c1' level='3' entry='0x00007f5ae964abc0' size='1104' address='0x00007f5ae964aa10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='1000' dependencies_offset='1096' metadata_offset='952' method='sun.nio.fs.UnixPath checkNotNul (Ljava/lang/String;C)V' bytes='16' count='266' iicount='266' stamp='0.287'/>
+<writer thread='23757'/>
+<task_queued compile_id='177' method='java.lang.System getSecurityManager ()Ljava/lang/SecurityManager;' bytes='4' count='256' iicount='256' level='3' stamp='0.307' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='177' compiler='c1' level='3' entry='0x00007f5ae964b040' size='840' address='0x00007f5ae964ae90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='784' dependencies_offset='832' metadata_offset='768' method='java.lang.System getSecurityManager ()Ljava/lang/SecurityManager;' bytes='4' count='259' iicount='259' stamp='0.308'/>
+<writer thread='23757'/>
+<task_queued compile_id='178' method='java.lang.AbstractStringBuilder putStringAt (ILjava/lang/String;)V' bytes='29' count='256' iicount='256' level='3' stamp='0.309' comment='tiered' hot_count='256'/>
+<task_queued compile_id='179' method='java.lang.AbstractStringBuilder getCoder ()B' bytes='15' count='256' iicount='256' level='3' stamp='0.309' comment='tiered' hot_count='256'/>
+<task_queued compile_id='180' method='java.lang.String getBytes ([BIB)V' bytes='44' count='256' iicount='256' level='3' stamp='0.309' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='179' compiler='c1' level='3' entry='0x00007f5ae964b3c0' size='880' address='0x00007f5ae964b210' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.AbstractStringBuilder getCoder ()B' bytes='15' count='259' iicount='259' stamp='0.309'/>
+<writer thread='23816'/>
+<nmethod compile_id='178' compiler='c1' level='3' entry='0x00007f5ae964b760' size='1936' address='0x00007f5ae964b590' relocation_offset='368' insts_offset='464' stub_offset='1488' scopes_data_offset='1696' scopes_pcs_offset='1784' dependencies_offset='1912' nul_chk_table_offset='1920' metadata_offset='1672' method='java.lang.AbstractStringBuilder putStringAt (ILjava/lang/String;)V' bytes='29' count='259' iicount='259' stamp='0.310'/>
+<writer thread='23814'/>
+<nmethod compile_id='180' compiler='c1' level='3' entry='0x00007f5ae964bf80' size='1824' address='0x00007f5ae964bd90' relocation_offset='368' insts_offset='496' stub_offset='1328' scopes_data_offset='1536' scopes_pcs_offset='1648' dependencies_offset='1792' nul_chk_table_offset='1800' metadata_offset='1512' method='java.lang.String getBytes ([BIB)V' bytes='44' count='259' iicount='259' stamp='0.310'/>
+<writer thread='23757'/>
+<task_queued compile_id='181' method='java.lang.StringLatin1 lastIndexOf ([BII)I' bytes='40' count='128' backedge_count='1898' iicount='128' level='3' stamp='0.312' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='181' compiler='c1' level='3' entry='0x00007f5ae964c6e0' size='1792' address='0x00007f5ae964c510' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1528' scopes_pcs_offset='1624' dependencies_offset='1768' nul_chk_table_offset='1776' metadata_offset='1504' method='java.lang.StringLatin1 lastIndexOf ([BII)I' bytes='40' count='133' backedge_count='1972' iicount='133' stamp='0.313'/>
+<writer thread='23757'/>
+<task_queued compile_id='182' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='271' iicount='271' level='3' stamp='0.316' comment='tiered' hot_count='271'/>
+<task_queued compile_id='183' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='271' iicount='271' level='3' stamp='0.316' comment='tiered' hot_count='271'/>
+<writer thread='23815'/>
+<nmethod compile_id='182' compiler='c1' level='3' entry='0x00007f5ae964ce40' size='936' address='0x00007f5ae964cc90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='281' iicount='281' stamp='0.317'/>
+<writer thread='23816'/>
+<nmethod compile_id='183' compiler='c1' level='3' entry='0x00007f5ae964d2a0' size='3032' address='0x00007f5ae964d090' relocation_offset='368' insts_offset='528' stub_offset='2320' scopes_data_offset='2576' scopes_pcs_offset='2776' dependencies_offset='3000' nul_chk_table_offset='3008' metadata_offset='2536' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='281' iicount='281' stamp='0.317'/>
+<writer thread='23757'/>
+<task_queued compile_id='184' method='java.lang.reflect.Method getName ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.319' comment='tiered' hot_count='128'/>
+<writer thread='23814'/>
+<nmethod compile_id='184' compiler='c1' level='1' entry='0x00007f5af0a7d4c0' size='752' address='0x00007f5af0a7d310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.reflect.Method getName ()Ljava/lang/String;' bytes='5' count='434' iicount='434' stamp='0.319'/>
+<writer thread='23757'/>
+<nmethod compile_id='185' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7d7a0' size='432' address='0x00007f5af0a7d610' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.321'/>
+<task_queued compile_id='186' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='283' iicount='283' level='3' stamp='0.322' comment='tiered' hot_count='283'/>
+<task_queued compile_id='187' method='java.lang.Enum ordinal ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.323' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='186' compiler='c1' level='3' entry='0x00007f5ae964df20' size='5184' address='0x00007f5ae964dc90' relocation_offset='368' insts_offset='656' stub_offset='3888' scopes_data_offset='4256' scopes_pcs_offset='4712' dependencies_offset='5160' nul_chk_table_offset='5168' oops_offset='4168' metadata_offset='4176' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='284' iicount='284' stamp='0.323'/>
+<writer thread='23757'/>
+<task_queued compile_id='188' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='25' count='256' iicount='256' level='3' stamp='0.323' comment='tiered' hot_count='256'/>
+<writer thread='23815'/>
+<nmethod compile_id='187' compiler='c1' level='1' entry='0x00007f5af0a7d9c0' size='752' address='0x00007f5af0a7d810' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Enum ordinal ()I' bytes='5' count='133' iicount='133' stamp='0.323'/>
+<writer thread='23757'/>
+<nmethod compile_id='189' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7dca0' size='424' address='0x00007f5af0a7db10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (IILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.323'/>
+<task_queued compile_id='190' method='java.lang.AbstractStringBuilder isLatin1 ()Z' bytes='19' count='277' iicount='277' level='3' stamp='0.323' comment='tiered' hot_count='277'/>
+<task_queued compile_id='191' method='java.util.concurrent.ConcurrentHashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='162' count='256' backedge_count='6' iicount='256' level='3' stamp='0.323' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='188' compiler='c1' level='3' entry='0x00007f5ae964f2c0' size='1312' address='0x00007f5ae964f110' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1208' scopes_pcs_offset='1240' dependencies_offset='1304' metadata_offset='1184' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='25' count='271' iicount='271' stamp='0.323'/>
+<writer thread='23815'/>
+<nmethod compile_id='190' compiler='c1' level='3' entry='0x00007f5ae964f840' size='976' address='0x00007f5ae964f690' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='920' dependencies_offset='968' metadata_offset='896' method='java.lang.AbstractStringBuilder isLatin1 ()Z' bytes='19' count='277' iicount='277' stamp='0.324'/>
+<writer thread='23757'/>
+<task_queued compile_id='192' method='java.lang.Class getClassLoader0 ()Ljava/lang/ClassLoader;' bytes='5' count='128' iicount='128' level='1' stamp='0.324' comment='tiered' hot_count='128'/>
+<writer thread='23816'/>
+<nmethod compile_id='192' compiler='c1' level='1' entry='0x00007f5af0a7dec0' size='752' address='0x00007f5af0a7dd10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Class getClassLoader0 ()Ljava/lang/ClassLoader;' bytes='5' count='128' iicount='128' stamp='0.324'/>
+<writer thread='23813'/>
+<nmethod compile_id='191' compiler='c1' level='3' entry='0x00007f5ae964fce0' size='4720' address='0x00007f5ae964fa90' relocation_offset='368' insts_offset='592' stub_offset='3664' scopes_data_offset='3920' scopes_pcs_offset='4288' dependencies_offset='4656' nul_chk_table_offset='4664' oops_offset='3880' metadata_offset='3888' method='java.util.concurrent.ConcurrentHashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='162' count='268' backedge_count='6' iicount='268' stamp='0.324'/>
+<writer thread='23757'/>
+<nmethod compile_id='193' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7e1a0' size='440' address='0x00007f5af0a7e010' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.324'/>
+<nmethod compile_id='194' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7e3a0' size='432' address='0x00007f5af0a7e210' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.324'/>
+<nmethod compile_id='195' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7e5e0' size='944' address='0x00007f5af0a7e410' relocation_offset='368' consts_offset='944' insts_offset='464' method='java.lang.Class isPrimitive ()Z' bytes='0' count='256' iicount='256' stamp='0.325'/>
+<nmethod compile_id='196' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7e9a0' size='424' address='0x00007f5af0a7e810' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.327'/>
+<task_queued compile_id='197' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry hashCode ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.327' comment='tiered' hot_count='128'/>
+<writer thread='23814'/>
+<nmethod compile_id='197' compiler='c1' level='1' entry='0x00007f5af0a7ebc0' size='752' address='0x00007f5af0a7ea10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry hashCode ()I' bytes='5' count='145' iicount='145' stamp='0.327'/>
+<writer thread='23757'/>
+<task_queued compile_id='198' method='java.lang.StringLatin1 newString ([BII)Ljava/lang/String;' bytes='17' count='283' iicount='283' level='3' stamp='0.328' comment='tiered' hot_count='283'/>
+<nmethod compile_id='199' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7eea0' size='424' address='0x00007f5af0a7ed10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.328'/>
+<nmethod compile_id='200' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7f0a0' size='440' address='0x00007f5af0a7ef10' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.328'/>
+<nmethod compile_id='201' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7f2a0' size='424' address='0x00007f5af0a7f110' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.328'/>
+<task_queued compile_id='202' method='java.lang.invoke.MethodType returnType ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.328' comment='tiered' hot_count='128'/>
+<writer thread='23815'/>
+<nmethod compile_id='198' compiler='c1' level='3' entry='0x00007f5ae9650ee0' size='1464' address='0x00007f5ae9650d10' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1264' scopes_pcs_offset='1344' dependencies_offset='1456' metadata_offset='1240' method='java.lang.StringLatin1 newString ([BII)Ljava/lang/String;' bytes='17' count='287' iicount='287' stamp='0.328'/>
+<nmethod compile_id='202' compiler='c1' level='1' entry='0x00007f5af0a7f4c0' size='752' address='0x00007f5af0a7f310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodType returnType ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' stamp='0.329'/>
+<writer thread='23757'/>
+<nmethod compile_id='203' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7f7e0' size='944' address='0x00007f5af0a7f610' relocation_offset='368' consts_offset='944' insts_offset='464' method='java.lang.Class isArray ()Z' bytes='0' count='256' iicount='256' stamp='0.329'/>
+<nmethod compile_id='204' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7fba0' size='424' address='0x00007f5af0a7fa10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.330'/>
+<task_queued compile_id='205' method='java.lang.invoke.MethodTypeForm canonicalize (Ljava/lang/Class;I)Ljava/lang/Class;' bytes='233' count='256' iicount='256' level='3' stamp='0.330' comment='tiered' hot_count='256'/>
+<task_queued compile_id='206' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;)V' bytes='7' count='256' iicount='256' level='3' stamp='0.330' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='206' compiler='c1' level='3' entry='0x00007f5ae96514e0' size='1424' address='0x00007f5ae9651310' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1280' scopes_pcs_offset='1336' dependencies_offset='1416' metadata_offset='1248' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;)V' bytes='7' count='256' iicount='256' stamp='0.330'/>
+<writer thread='23757'/>
+<nmethod compile_id='207' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7fda0' size='440' address='0x00007f5af0a7fc10' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.331'/>
+<writer thread='23816'/>
+<nmethod compile_id='205' compiler='c1' level='3' entry='0x00007f5ae9651b80' size='4160' address='0x00007f5ae9651910' relocation_offset='368' insts_offset='624' stub_offset='3376' scopes_data_offset='3632' scopes_pcs_offset='3824' dependencies_offset='4096' nul_chk_table_offset='4104' oops_offset='3592' metadata_offset='3600' method='java.lang.invoke.MethodTypeForm canonicalize (Ljava/lang/Class;I)Ljava/lang/Class;' bytes='233' count='259' iicount='259' stamp='0.331'/>
+<writer thread='23757'/>
+<nmethod compile_id='208' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a7ffa0' size='440' address='0x00007f5af0a7fe10' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.334'/>
+<task_queued compile_id='209' method='java.lang.ref.ReferenceQueue poll ()Ljava/lang/ref/Reference;' bytes='28' count='256' iicount='256' level='3' stamp='0.334' comment='tiered' hot_count='256'/>
+<task_queued compile_id='210' method='java.lang.invoke.MemberName testFlags (II)Z' bytes='16' count='256' iicount='256' level='3' stamp='0.334' comment='tiered' hot_count='256'/>
+<writer thread='23814'/>
+<nmethod compile_id='209' compiler='c1' level='3' entry='0x00007f5ae9652b60' size='1584' address='0x00007f5ae9652990' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1376' scopes_pcs_offset='1440' dependencies_offset='1536' handler_table_offset='1544' nul_chk_table_offset='1568' metadata_offset='1368' method='java.lang.ref.ReferenceQueue poll ()Ljava/lang/ref/Reference;' bytes='28' count='263' iicount='263' stamp='0.334'/>
+<writer thread='23757'/>
+<task_queued compile_id='211' method='java.lang.String charAt (I)C' bytes='25' count='5632' iicount='5632' stamp='0.334' comment='tiered' hot_count='5632'/>
+<writer thread='23815'/>
+<nmethod compile_id='210' compiler='c1' level='3' entry='0x00007f5ae96531c0' size='944' address='0x00007f5ae9653010' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.MemberName testFlags (II)Z' bytes='16' count='269' iicount='269' stamp='0.334'/>
+<writer thread='23757'/>
+<nmethod compile_id='212' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a801a0' size='424' address='0x00007f5af0a80010' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.335'/>
+<task_queued compile_id='213' method='java.lang.invoke.MethodType checkPtype (Ljava/lang/Class;)V' bytes='19' count='256' iicount='256' level='3' stamp='0.335' comment='tiered' hot_count='256'/>
+<nmethod compile_id='214' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a803a0' size='440' address='0x00007f5af0a80210' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.335'/>
+<writer thread='23814'/>
+<nmethod compile_id='213' compiler='c1' level='3' entry='0x00007f5ae9653600' size='1816' address='0x00007f5ae9653410' relocation_offset='368' insts_offset='496' stub_offset='1328' scopes_data_offset='1544' scopes_pcs_offset='1632' dependencies_offset='1808' oops_offset='1512' metadata_offset='1520' method='java.lang.invoke.MethodType checkPtype (Ljava/lang/Class;)V' bytes='19' count='265' iicount='265' stamp='0.335'/>
+<writer thread='23806'/>
+<nmethod compile_id='211' compiler='c2' level='4' entry='0x00007f5af0a805a0' size='784' address='0x00007f5af0a80410' relocation_offset='368' insts_offset='400' stub_offset='592' scopes_data_offset='632' scopes_pcs_offset='680' dependencies_offset='760' nul_chk_table_offset='768' metadata_offset='616' method='java.lang.String charAt (I)C' bytes='25' count='6370' iicount='6370' stamp='0.335'/>
+<make_not_entrant thread='23806' compile_id='6' compiler='c1' level='3' stamp='0.335'/>
+<writer thread='23757'/>
+<nmethod compile_id='215' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a80960' size='1080' address='0x00007f5af0a80790' relocation_offset='368' consts_offset='1080' insts_offset='464' method='java.lang.Object getClass ()Ljava/lang/Class;' bytes='0' count='256' iicount='256' stamp='0.336'/>
+<task_queued compile_id='216' method='java.lang.invoke.MemberName getDeclaringClass ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.336' comment='tiered' hot_count='128'/>
+<task_queued compile_id='217' method='java.lang.invoke.MethodType hashCode ()I' bytes='53' count='256' backedge_count='830' iicount='256' level='3' stamp='0.336' comment='tiered' hot_count='256'/>
+<task_queued compile_id='218' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet expungeStaleElements ()V' bytes='27' count='256' iicount='256' level='3' stamp='0.336' comment='tiered' hot_count='256'/>
+<task_queued compile_id='219' method='java.lang.StringBuilder append (C)Ljava/lang/StringBuilder;' bytes='8' count='256' iicount='256' level='3' stamp='0.336' comment='tiered' hot_count='256'/>
+<task_queued compile_id='220' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='256' iicount='256' level='3' stamp='0.336' comment='tiered' hot_count='256'/>
+<task_queued compile_id='221' method='java.lang.invoke.MemberName isInvocable ()Z' bytes='7' count='256' iicount='256' level='3' stamp='0.336' comment='tiered' hot_count='256'/>
+<task_queued compile_id='222' method='java.lang.invoke.MemberName testAnyFlags (I)Z' bytes='15' count='256' iicount='256' level='3' stamp='0.336' comment='tiered' hot_count='256'/>
+<writer thread='23816'/>
+<nmethod compile_id='219' compiler='c1' level='3' entry='0x00007f5ae9653d40' size='936' address='0x00007f5ae9653b90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.lang.StringBuilder append (C)Ljava/lang/StringBuilder;' bytes='8' count='257' iicount='257' stamp='0.337'/>
+<writer thread='23815'/>
+<nmethod compile_id='217' compiler='c1' level='3' entry='0x00007f5ae9654160' size='1752' address='0x00007f5ae9653f90' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1424' scopes_pcs_offset='1552' dependencies_offset='1712' nul_chk_table_offset='1720' metadata_offset='1416' method='java.lang.invoke.MethodType hashCode ()I' bytes='53' count='265' backedge_count='849' iicount='265' stamp='0.337'/>
+<writer thread='23814'/>
+<nmethod compile_id='221' compiler='c1' level='3' entry='0x00007f5ae9654840' size='1328' address='0x00007f5ae9654690' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1240' dependencies_offset='1320' metadata_offset='1152' method='java.lang.invoke.MemberName isInvocable ()Z' bytes='7' count='265' iicount='265' stamp='0.337'/>
+<writer thread='23813'/>
+<nmethod compile_id='218' compiler='c1' level='3' entry='0x00007f5ae9654e00' size='2392' address='0x00007f5ae9654c10' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2008' scopes_pcs_offset='2136' dependencies_offset='2328' handler_table_offset='2336' nul_chk_table_offset='2360' metadata_offset='1992' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet expungeStaleElements ()V' bytes='27' count='265' iicount='265' stamp='0.337'/>
+<writer thread='23816'/>
+<nmethod compile_id='222' compiler='c1' level='3' entry='0x00007f5ae9655740' size='1184' address='0x00007f5ae9655590' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1072' scopes_pcs_offset='1112' dependencies_offset='1176' metadata_offset='1056' method='java.lang.invoke.MemberName testAnyFlags (I)Z' bytes='15' count='280' iicount='280' stamp='0.337'/>
+<writer thread='23814'/>
+<nmethod compile_id='216' compiler='c1' level='1' entry='0x00007f5af0a80dc0' size='752' address='0x00007f5af0a80c10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MemberName getDeclaringClass ()Ljava/lang/Class;' bytes='5' count='152' iicount='152' stamp='0.337'/>
+<writer thread='23815'/>
+<nmethod compile_id='220' compiler='c1' level='3' entry='0x00007f5ae9655cc0' size='3144' address='0x00007f5ae9655a90' relocation_offset='368' insts_offset='560' stub_offset='2384' scopes_data_offset='2632' scopes_pcs_offset='2848' dependencies_offset='3104' nul_chk_table_offset='3112' metadata_offset='2584' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='279' iicount='279' stamp='0.337'/>
+<writer thread='23757'/>
+<task_queued compile_id='223' method='jdk.internal.org.objectweb.asm.Item set (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='219' count='256' iicount='256' level='3' stamp='0.338' comment='tiered' hot_count='256'/>
+<task_queued compile_id='224' method='jdk.internal.org.objectweb.asm.ClassWriter get (Ljdk/internal/org/objectweb/asm/Item;)Ljdk/internal/org/objectweb/asm/Item;' bytes='49' count='256' backedge_count='3' iicount='256' level='3' stamp='0.338' comment='tiered' hot_count='256'/>
+<writer thread='23813'/>
+<nmethod compile_id='224' compiler='c1' level='3' entry='0x00007f5ae96568e0' size='1720' address='0x00007f5ae9656710' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1408' scopes_pcs_offset='1496' dependencies_offset='1672' nul_chk_table_offset='1680' metadata_offset='1400' method='jdk.internal.org.objectweb.asm.ClassWriter get (Ljdk/internal/org/objectweb/asm/Item;)Ljdk/internal/org/objectweb/asm/Item;' bytes='49' count='283' backedge_count='5' iicount='283' stamp='0.339'/>
+<writer thread='23816'/>
+<nmethod compile_id='223' compiler='c1' level='3' entry='0x00007f5ae9657020' size='3024' address='0x00007f5ae9656e10' relocation_offset='368' insts_offset='528' stub_offset='2256' scopes_data_offset='2512' scopes_pcs_offset='2720' dependencies_offset='2960' nul_chk_table_offset='2968' metadata_offset='2504' method='jdk.internal.org.objectweb.asm.Item set (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='219' count='291' iicount='291' stamp='0.339'/>
+<writer thread='23757'/>
+<nmethod compile_id='225' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a810a0' size='424' address='0x00007f5af0a80f10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (ILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.339'/>
+<task_queued compile_id='226' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='256' iicount='256' level='3' stamp='0.339' comment='tiered' hot_count='256'/>
+<nmethod compile_id='227' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a812a0' size='440' address='0x00007f5af0a81110' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (I)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.339'/>
+<nmethod compile_id='228' compile_kind='c2n' compiler='' level='0' entry='0x00007f5af0a814a0' size='424' address='0x00007f5af0a81310' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;ILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.340'/>
+<writer thread='23814'/>
+<nmethod compile_id='226' compiler='c1' level='3' entry='0x00007f5ae9657bc0' size='936' address='0x00007f5ae9657a10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='832' dependencies_offset='912' nul_chk_table_offset='920' metadata_offset='800' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='265' iicount='265' stamp='0.340'/>
+<writer thread='23757'/>
+<task_queued compile_id='229' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='105' backedge_count='3072' iicount='105' level='3' stamp='0.341' comment='tiered' hot_count='105'/>
+<task_queued compile_id='230' method='java.nio.Buffer position ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.342' comment='tiered' hot_count='128'/>
+<writer thread='23813'/>
+<nmethod compile_id='230' compiler='c1' level='1' entry='0x00007f5af0a816c0' size='752' address='0x00007f5af0a81510' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.nio.Buffer position ()I' bytes='5' count='147' iicount='147' stamp='0.342'/>
+<writer thread='23815'/>
+<nmethod compile_id='229' compiler='c1' level='3' entry='0x00007f5ae9658080' size='4864' address='0x00007f5ae9657e10' relocation_offset='368' insts_offset='624' stub_offset='3600' scopes_data_offset='3824' scopes_pcs_offset='4336' dependencies_offset='4832' nul_chk_table_offset='4840' metadata_offset='3784' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='105' backedge_count='3096' iicount='105' stamp='0.342'/>
+<tty_done stamp='0.344'/>
+</tty>
+<compilation_log thread='23816'>
+<start_compile_thread name='C1 CompilerThread11' thread='23816' process='23756' stamp='0.180'/>
+<task compile_id='4' method='java.lang.String coder ()B' bytes='15' count='641' iicount='643' level='3' stamp='0.188'>
+<phase name='setup' stamp='0.188'>
+<phase_done name='setup' stamp='0.188'/>
+</phase>
+<phase name='buildIR' stamp='0.188'>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='coder' return='973' flags='0' bytes='15' iicount='646'/>
+<parse method='1093'  stamp='0.188'>
+<phase name='parse_hir' stamp='0.188'>
+<phase_done name='parse_hir' stamp='0.189'/>
+</phase>
+<parse_done stamp='0.189'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.189'>
+<phase_done name='optimize_blocks' stamp='0.189'/>
+</phase>
+<phase name='gvn' stamp='0.189'>
+<phase_done name='gvn' stamp='0.189'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.189'>
+<phase_done name='rangeCheckElimination' stamp='0.189'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.189'>
+<phase_done name='optimize_null_checks' stamp='0.189'/>
+</phase>
+<phase_done name='buildIR' stamp='0.189'/>
+</phase>
+<phase name='emit_lir' stamp='0.189'>
+<phase name='lirGeneration' stamp='0.189'>
+<phase_done name='lirGeneration' stamp='0.189'/>
+</phase>
+<phase name='linearScan' stamp='0.189'>
+<phase_done name='linearScan' stamp='0.189'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.189'/>
+</phase>
+<phase name='codeemit' stamp='0.189'>
+<phase_done name='codeemit' stamp='0.189'/>
+</phase>
+<phase name='codeinstall' stamp='0.189'>
+<phase_done name='codeinstall' stamp='0.189'/>
+</phase>
+<code_cache total_blobs='255' nmethods='4' adapters='136' free_code_cache='248771584'/>
+<task_done success='1' nmsize='368' count='646' stamp='0.189'/>
+</task>
+<task compile_id='8' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='413' iicount='414' level='3' stamp='0.200'>
+<phase name='setup' stamp='0.200'>
+<phase_done name='setup' stamp='0.200'/>
+</phase>
+<phase name='buildIR' stamp='0.200'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' iicount='428'/>
+<parse method='1093'  stamp='0.200'>
+<phase name='parse_hir' stamp='0.200'>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='849'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.200'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.200'/>
+</parse>
+<bc code='183' bci='31'/>
+<method id='1098' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='1166'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.200'/>
+</parse>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='3' compiler='c1' level='3' iicount='321'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='59'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='equals' return='969' arguments='1085 1085' flags='9' bytes='44' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.201'/>
+</phase>
+<parse_done stamp='0.201'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.201'>
+<phase_done name='optimize_blocks' stamp='0.201'/>
+</phase>
+<phase name='gvn' stamp='0.201'>
+<phase_done name='gvn' stamp='0.201'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.201'>
+<phase_done name='rangeCheckElimination' stamp='0.201'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.201'>
+<phase_done name='optimize_null_checks' stamp='0.201'/>
+</phase>
+<phase_done name='buildIR' stamp='0.201'/>
+</phase>
+<phase name='emit_lir' stamp='0.201'>
+<phase name='lirGeneration' stamp='0.201'>
+<phase_done name='lirGeneration' stamp='0.201'/>
+</phase>
+<phase name='linearScan' stamp='0.201'>
+<phase_done name='linearScan' stamp='0.201'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.201'/>
+</phase>
+<phase name='codeemit' stamp='0.201'>
+<phase_done name='codeemit' stamp='0.201'/>
+</phase>
+<phase name='codeinstall' stamp='0.201'>
+<phase_done name='codeinstall' stamp='0.201'/>
+</phase>
+<code_cache total_blobs='301' nmethods='8' adapters='153' free_code_cache='248763648'/>
+<task_done success='1' nmsize='1944' count='429' inlined_bytes='49' stamp='0.201'/>
+</task>
+<task compile_id='13' method='java.util.ImmutableCollections$SetN probe (Ljava/lang/Object;)I' bytes='60' count='266' backedge_count='133' iicount='266' level='3' stamp='0.208'>
+<phase name='setup' stamp='0.208'>
+<phase_done name='setup' stamp='0.208'/>
+</phase>
+<phase name='buildIR' stamp='0.208'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1094' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='60' iicount='266'/>
+<parse method='1094'  stamp='0.208'>
+<phase name='parse_hir' stamp='0.208'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='12'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='13'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='floorMod' return='975' arguments='975 975' flags='9' bytes='10' iicount='317'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='3'/>
+<method id='1103' holder='1100' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' iicount='317'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.208'/>
+</parse>
+<parse_done stamp='0.208'/>
+</parse>
+<bc code='182' bci='35'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.208'/>
+</phase>
+<parse_done stamp='0.208'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.208'>
+<phase_done name='optimize_blocks' stamp='0.208'/>
+</phase>
+<phase name='gvn' stamp='0.208'>
+<phase_done name='gvn' stamp='0.208'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.208'>
+<phase_done name='rangeCheckElimination' stamp='0.208'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.208'>
+<phase_done name='optimize_null_checks' stamp='0.208'/>
+</phase>
+<phase_done name='buildIR' stamp='0.208'/>
+</phase>
+<phase name='emit_lir' stamp='0.208'>
+<phase name='lirGeneration' stamp='0.208'>
+<phase_done name='lirGeneration' stamp='0.208'/>
+</phase>
+<phase name='linearScan' stamp='0.208'>
+<phase_done name='linearScan' stamp='0.208'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.208'/>
+</phase>
+<phase name='codeemit' stamp='0.208'>
+<phase_done name='codeemit' stamp='0.209'/>
+</phase>
+<phase name='codeinstall' stamp='0.209'>
+<phase_done name='codeinstall' stamp='0.209'/>
+</phase>
+<code_cache total_blobs='311' nmethods='13' adapters='158' free_code_cache='248753024'/>
+<task_done success='1' nmsize='1528' count='426' backedge_count='285' inlined_bytes='32' stamp='0.209'/>
+</task>
+<task compile_id='21' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='257' iicount='257' level='3' stamp='0.212'>
+<phase name='setup' stamp='0.212'>
+<phase_done name='setup' stamp='0.212'/>
+</phase>
+<phase name='buildIR' stamp='0.212'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Objects' flags='17'/>
+<method id='1094' holder='1093' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' iicount='257'/>
+<parse method='1094'  stamp='0.212'>
+<phase name='parse_hir' stamp='0.212'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1096' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.212'/>
+</phase>
+<parse_done stamp='0.212'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.212'>
+<phase_done name='optimize_blocks' stamp='0.212'/>
+</phase>
+<phase name='gvn' stamp='0.212'>
+<phase_done name='gvn' stamp='0.212'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.212'>
+<phase_done name='rangeCheckElimination' stamp='0.212'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.212'>
+<phase_done name='optimize_null_checks' stamp='0.212'/>
+</phase>
+<phase_done name='buildIR' stamp='0.212'/>
+</phase>
+<phase name='emit_lir' stamp='0.212'>
+<phase name='lirGeneration' stamp='0.212'>
+<phase_done name='lirGeneration' stamp='0.212'/>
+</phase>
+<phase name='linearScan' stamp='0.212'>
+<phase_done name='linearScan' stamp='0.212'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.212'/>
+</phase>
+<phase name='codeemit' stamp='0.212'>
+<phase_done name='codeemit' stamp='0.213'/>
+</phase>
+<phase name='codeinstall' stamp='0.213'>
+<phase_done name='codeinstall' stamp='0.213'/>
+</phase>
+<code_cache total_blobs='319' nmethods='20' adapters='158' free_code_cache='248743040'/>
+<task_done success='1' nmsize='552' count='348' stamp='0.213'/>
+</task>
+<task compile_id='25' method='java.util.ImmutableCollections$AbstractImmutableSet &lt;init&gt; ()V' bytes='5' count='266' iicount='267' level='3' stamp='0.214'>
+<phase name='setup' stamp='0.214'>
+<phase_done name='setup' stamp='0.214'/>
+</phase>
+<phase name='buildIR' stamp='0.214'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.ImmutableCollections$AbstractImmutableSet' flags='1032'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='0' bytes='5' iicount='271'/>
+<parse method='1094'  stamp='0.214'>
+<phase name='parse_hir' stamp='0.214'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractSet' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='282'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='1099' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='335'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1823'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.214'/>
+</parse>
+<parse_done stamp='0.214'/>
+</parse>
+<parse_done stamp='0.214'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.214'/>
+</phase>
+<parse_done stamp='0.214'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.214'>
+<phase_done name='optimize_blocks' stamp='0.214'/>
+</phase>
+<phase name='gvn' stamp='0.214'>
+<phase_done name='gvn' stamp='0.214'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.214'>
+<phase_done name='rangeCheckElimination' stamp='0.214'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.214'>
+<phase_done name='optimize_null_checks' stamp='0.214'/>
+</phase>
+<phase_done name='buildIR' stamp='0.214'/>
+</phase>
+<phase name='emit_lir' stamp='0.214'>
+<phase name='lirGeneration' stamp='0.214'>
+<phase_done name='lirGeneration' stamp='0.214'/>
+</phase>
+<phase name='linearScan' stamp='0.214'>
+<phase_done name='linearScan' stamp='0.214'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.214'/>
+</phase>
+<phase name='codeemit' stamp='0.214'>
+<phase_done name='codeemit' stamp='0.214'/>
+</phase>
+<phase name='codeinstall' stamp='0.214'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.214'/>
+</phase>
+<code_cache total_blobs='323' nmethods='24' adapters='158' free_code_cache='248737792'/>
+<task_done success='1' nmsize='624' count='315' inlined_bytes='11' stamp='0.214'/>
+</task>
+<task compile_id='28' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='13' count='268' iicount='268' level='3' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983 1094' flags='1' bytes='13' iicount='268'/>
+<parse method='1096'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1093' flags='4096' bytes='10' compile_id='18' compiler='c1' level='3' iicount='519'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<method id='1100' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='19' compiler='c1' level='3' iicount='519'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2110'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.215'/>
+</phase>
+<parse_done stamp='0.215'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.215'>
+<phase_done name='optimize_blocks' stamp='0.215'/>
+</phase>
+<phase name='gvn' stamp='0.215'>
+<phase_done name='gvn' stamp='0.215'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.215'>
+<phase_done name='rangeCheckElimination' stamp='0.215'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.215'>
+<phase_done name='optimize_null_checks' stamp='0.215'/>
+</phase>
+<phase_done name='buildIR' stamp='0.215'/>
+</phase>
+<phase name='emit_lir' stamp='0.215'>
+<phase name='lirGeneration' stamp='0.215'>
+<phase_done name='lirGeneration' stamp='0.215'/>
+</phase>
+<phase name='linearScan' stamp='0.215'>
+<phase_done name='linearScan' stamp='0.215'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.215'/>
+</phase>
+<phase name='codeemit' stamp='0.215'>
+<phase_done name='codeemit' stamp='0.215'/>
+</phase>
+<phase name='codeinstall' stamp='0.215'>
+<phase_done name='codeinstall' stamp='0.215'/>
+</phase>
+<code_cache total_blobs='324' nmethods='25' adapters='158' free_code_cache='248735872'/>
+<task_done success='1' nmsize='1040' count='305' inlined_bytes='31' stamp='0.215'/>
+</task>
+<task compile_id='30' method='java.util.ImmutableCollections$SetN &lt;init&gt; ([Ljava/lang/Object;)V' bytes='90' count='167' backedge_count='2266' iicount='167' level='3' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<type id='977' name='void'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='128' bytes='90' iicount='167'/>
+<parse method='1095'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<bc code='183' bci='1'/>
+<klass id='1097' name='java.util.ImmutableCollections$AbstractImmutableSet' flags='1032'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' flags='0' bytes='5' compile_id='25' compiler='c1' level='3' iicount='383'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='1100' name='java.util.AbstractSet' flags='1025'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='384'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='1103' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='452'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1106' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2202'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<bc code='183' bci='35'/>
+<type id='975' name='int'/>
+<method id='1108' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='60' compile_id='13' compiler='c1' level='3' iicount='2358'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='53'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1112' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='9'/>
+<call method='1112' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1114' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' iicount='9'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='182' bci='58'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1117' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' iicount='15'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<method id='1119' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' iicount='15'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='182' bci='62'/>
+<method id='1121' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<method id='1123' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='10'/>
+<method id='1126' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='182' bci='65'/>
+<method id='1127' holder='1050' name='toString' return='983' flags='1' bytes='35' iicount='9'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1129' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' iicount='21'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1132' name='java.lang.StringLatin1' flags='16'/>
+<method id='1133' holder='1132' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' iicount='27'/>
+<call method='1133' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='184' bci='9'/>
+<klass id='1135' name='java.util.Arrays' flags='1'/>
+<method id='1136' holder='1135' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' iicount='27'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1138' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' iicount='28'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1140' name='java.lang.StringUTF16' flags='16'/>
+<method id='1141' holder='1140' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='183' bci='68'/>
+<klass id='1111' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1143' holder='1111' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.217'/>
+</phase>
+<parse_done stamp='0.217'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.217'>
+<phase_done name='optimize_blocks' stamp='0.217'/>
+</phase>
+<phase name='gvn' stamp='0.217'>
+<phase_done name='gvn' stamp='0.217'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.217'>
+<phase_done name='rangeCheckElimination' stamp='0.217'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.217'>
+<phase_done name='optimize_null_checks' stamp='0.217'/>
+</phase>
+<phase_done name='buildIR' stamp='0.217'/>
+</phase>
+<phase name='emit_lir' stamp='0.217'>
+<phase name='lirGeneration' stamp='0.217'>
+<phase_done name='lirGeneration' stamp='0.217'/>
+</phase>
+<phase name='linearScan' stamp='0.217'>
+<phase_done name='linearScan' stamp='0.217'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.217'/>
+</phase>
+<phase name='codeemit' stamp='0.217'>
+<phase_done name='codeemit' stamp='0.217'/>
+</phase>
+<phase name='codeinstall' stamp='0.217'>
+<phase_done name='codeinstall' stamp='0.217'/>
+</phase>
+<code_cache total_blobs='338' nmethods='37' adapters='158' free_code_cache='248708736'/>
+<task_done success='1' nmsize='4696' count='219' backedge_count='3037' inlined_bytes='149' stamp='0.217'/>
+</task>
+<task compile_id='42' method='java.nio.Buffer checkIndex (I)I' bytes='22' count='274' iicount='274' level='3' stamp='0.221'>
+<phase name='setup' stamp='0.221'>
+<phase_done name='setup' stamp='0.221'/>
+</phase>
+<phase name='buildIR' stamp='0.221'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='checkIndex' return='975' arguments='975' flags='16' bytes='22' iicount='280'/>
+<parse method='1093'  stamp='0.221'>
+<phase name='parse_hir' stamp='0.221'>
+<bc code='183' bci='16'/>
+<type id='977' name='void'/>
+<klass id='1095' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1096' holder='1095' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.221'/>
+</phase>
+<parse_done stamp='0.221'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.221'>
+<phase_done name='optimize_blocks' stamp='0.221'/>
+</phase>
+<phase name='gvn' stamp='0.221'>
+<phase_done name='gvn' stamp='0.221'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.221'>
+<phase_done name='rangeCheckElimination' stamp='0.221'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.221'>
+<phase_done name='optimize_null_checks' stamp='0.221'/>
+</phase>
+<phase_done name='buildIR' stamp='0.221'/>
+</phase>
+<phase name='emit_lir' stamp='0.221'>
+<phase name='lirGeneration' stamp='0.221'>
+<phase_done name='lirGeneration' stamp='0.221'/>
+</phase>
+<phase name='linearScan' stamp='0.221'>
+<phase_done name='linearScan' stamp='0.221'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.221'/>
+</phase>
+<phase name='codeemit' stamp='0.221'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='344' nmethods='43' adapters='158' free_code_cache='248698624'/>
+<task_done success='1' nmsize='584' count='374' stamp='0.221'/>
+</task>
+<task compile_id='49' method='java.lang.StringLatin1 canEncode (I)Z' bytes='13' count='283' iicount='283' level='3' stamp='0.225'>
+<phase name='setup' stamp='0.225'>
+<phase_done name='setup' stamp='0.225'/>
+</phase>
+<phase name='buildIR' stamp='0.225'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' iicount='283'/>
+<parse method='1094'  stamp='0.225'>
+<phase name='parse_hir' stamp='0.225'>
+<phase_done name='parse_hir' stamp='0.225'/>
+</phase>
+<parse_done stamp='0.225'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.225'>
+<phase_done name='optimize_blocks' stamp='0.225'/>
+</phase>
+<phase name='gvn' stamp='0.225'>
+<phase_done name='gvn' stamp='0.225'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.225'>
+<phase_done name='rangeCheckElimination' stamp='0.225'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.225'>
+<phase_done name='optimize_null_checks' stamp='0.225'/>
+</phase>
+<phase_done name='buildIR' stamp='0.225'/>
+</phase>
+<phase name='emit_lir' stamp='0.225'>
+<phase name='lirGeneration' stamp='0.225'>
+<phase_done name='lirGeneration' stamp='0.225'/>
+</phase>
+<phase name='linearScan' stamp='0.225'>
+<phase_done name='linearScan' stamp='0.225'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.225'/>
+</phase>
+<phase name='codeemit' stamp='0.225'>
+<phase_done name='codeemit' stamp='0.225'/>
+</phase>
+<phase name='codeinstall' stamp='0.225'>
+<phase_done name='codeinstall' stamp='0.225'/>
+</phase>
+<code_cache total_blobs='352' nmethods='49' adapters='160' free_code_cache='248689664'/>
+<task_done success='1' nmsize='400' count='283' stamp='0.225'/>
+</task>
+<task compile_id='54' method='java.util.concurrent.ConcurrentHashMap spread (I)I' bytes='10' count='310' iicount='310' level='3' stamp='0.230'>
+<phase name='setup' stamp='0.230'>
+<phase_done name='setup' stamp='0.230'/>
+</phase>
+<phase name='buildIR' stamp='0.230'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='spread' return='975' arguments='975' flags='24' bytes='10' iicount='315'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='360' nmethods='55' adapters='162' free_code_cache='248681856'/>
+<task_done success='1' nmsize='336' count='344' stamp='0.231'/>
+</task>
+<task compile_id='59' method='java.util.concurrent.ConcurrentHashMap putVal (Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;' bytes='432' count='259' backedge_count='23' iicount='259' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='putVal' return='982' arguments='982 982 969' flags='16' bytes='432' iicount='259'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='182' bci='17'/>
+<type id='975' name='int'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='20'/>
+<method id='1097' holder='1093' name='spread' return='975' arguments='975' flags='24' bytes='10' compile_id='54' compiler='c1' level='3' iicount='351'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='184' bci='69'/>
+<klass id='1099' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1100' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<method id='1101' holder='1093' name='tabAt' return='1099' arguments='1100 975' flags='24' bytes='22' compile_id='51' compiler='c1' level='3' iicount='806'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='15'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1105' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' compile_id='52' compiler='c1' level='3' iicount='806'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='182' bci='3'/>
+<method id='1107' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='53' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.232'/>
+</parse>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='183' bci='91'/>
+<type id='977' name='void'/>
+<method id='1108' holder='1099' name='&lt;init&gt;' return='977' arguments='975 982 982' flags='0' bytes='20' compile_id='57' compiler='c1' level='3' iicount='277'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='1'/>
+<method id='1110' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3684'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.232'/>
+</parse>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='184' bci='94'/>
+<method id='1112' holder='1093' name='casTabAt' return='969' arguments='1100 975 1099 1099' flags='24' bytes='21' compile_id='58' compiler='c1' level='3' iicount='274'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='17'/>
+<method id='1114' holder='1051' name='compareAndSetObject' return='969' arguments='982 976 982 982' flags='273' bytes='0' compile_id='56' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='182' bci='120'/>
+<method id='1115' holder='1093' name='helpTransfer' return='1100' arguments='1100 1099' flags='16' bytes='130' iicount='1'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='159'/>
+<method id='1117' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='192'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='15'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='182' bci='3'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.232'/>
+</parse>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='182' bci='242'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='293'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='1'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.232'/>
+</parse>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='182' bci='331'/>
+<klass id='1119' name='java.util.concurrent.ConcurrentHashMap$TreeNode' unloaded='1'/>
+<klass id='1118' name='java.util.concurrent.ConcurrentHashMap$TreeBin' unloaded='1'/>
+<method id='1120' holder='1118' name='putTreeVal' return='1119' arguments='975 982 982' unloaded='1'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='374'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1122' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1124' holder='1122' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1124' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='409'/>
+<method id='1125' holder='1093' name='treeifyBin' return='977' arguments='1100 975' flags='18' bytes='164' iicount='1'/>
+<call method='1125' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='427'/>
+<method id='1127' holder='1093' name='addCount' return='977' arguments='976 975' flags='18' bytes='289' iicount='259'/>
+<call method='1127' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='49'/>
+<method id='1129' holder='1093' name='initTable' return='1100' flags='18' bytes='112' iicount='5'/>
+<call method='1129' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1131' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.233'/>
+</phase>
+<parse_done stamp='0.233'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.233'>
+<phase_done name='optimize_blocks' stamp='0.233'/>
+</phase>
+<phase name='gvn' stamp='0.233'>
+<phase_done name='gvn' stamp='0.233'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.233'>
+<phase_done name='rangeCheckElimination' stamp='0.233'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.233'>
+<phase_done name='optimize_null_checks' stamp='0.233'/>
+</phase>
+<phase_done name='buildIR' stamp='0.233'/>
+</phase>
+<phase name='emit_lir' stamp='0.233'>
+<phase name='lirGeneration' stamp='0.233'>
+<phase_done name='lirGeneration' stamp='0.233'/>
+</phase>
+<phase name='linearScan' stamp='0.233'>
+<phase_done name='linearScan' stamp='0.234'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.234'/>
+</phase>
+<phase name='codeemit' stamp='0.234'>
+<phase_done name='codeemit' stamp='0.235'/>
+</phase>
+<phase name='codeinstall' stamp='0.235'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.235'/>
+</phase>
+<code_cache total_blobs='369' nmethods='64' adapters='162' free_code_cache='248657408'/>
+<task_done success='1' nmsize='8984' count='259' backedge_count='23' inlined_bytes='131' stamp='0.235'/>
+</task>
+<task compile_id='65' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='256' iicount='256' level='3' stamp='0.235'>
+<phase name='setup' stamp='0.235'>
+<phase_done name='setup' stamp='0.235'/>
+</phase>
+<phase name='buildIR' stamp='0.235'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' iicount='256'/>
+<parse method='1094'  stamp='0.235'>
+<phase name='parse_hir' stamp='0.235'>
+<bc code='182' bci='9'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.235'/>
+</phase>
+<parse_done stamp='0.235'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.235'>
+<phase_done name='optimize_blocks' stamp='0.235'/>
+</phase>
+<phase name='gvn' stamp='0.235'>
+<phase_done name='gvn' stamp='0.235'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.235'>
+<phase_done name='rangeCheckElimination' stamp='0.235'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.235'>
+<phase_done name='optimize_null_checks' stamp='0.235'/>
+</phase>
+<phase_done name='buildIR' stamp='0.235'/>
+</phase>
+<phase name='emit_lir' stamp='0.235'>
+<phase name='lirGeneration' stamp='0.235'>
+<phase_done name='lirGeneration' stamp='0.235'/>
+</phase>
+<phase name='linearScan' stamp='0.235'>
+<phase_done name='linearScan' stamp='0.235'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.235'/>
+</phase>
+<phase name='codeemit' stamp='0.235'>
+<phase_done name='codeemit' stamp='0.235'/>
+</phase>
+<phase name='codeinstall' stamp='0.235'>
+<phase_done name='codeinstall' stamp='0.235'/>
+</phase>
+<code_cache total_blobs='370' nmethods='65' adapters='162' free_code_cache='248656128'/>
+<task_done success='1' nmsize='584' count='299' stamp='0.235'/>
+</task>
+<task compile_id='69' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='259' backedge_count='14' iicount='259' level='3' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='getNode' return='1094' arguments='975 982' flags='16' bytes='148' iicount='264'/>
+<parse method='1095'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<bc code='182' bci='59'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='94'/>
+<klass id='1099' name='java.util.HashMap$TreeNode' flags='24'/>
+<method id='1100' holder='1099' name='getTreeNode' return='1099' arguments='975 982' flags='16' bytes='22' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='126'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.236'/>
+</phase>
+<parse_done stamp='0.236'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.236'>
+<phase_done name='optimize_blocks' stamp='0.236'/>
+</phase>
+<phase name='gvn' stamp='0.236'>
+<phase_done name='gvn' stamp='0.236'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.236'>
+<phase_done name='rangeCheckElimination' stamp='0.236'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.236'>
+<phase_done name='optimize_null_checks' stamp='0.236'/>
+</phase>
+<phase_done name='buildIR' stamp='0.236'/>
+</phase>
+<phase name='emit_lir' stamp='0.236'>
+<phase name='lirGeneration' stamp='0.236'>
+<phase_done name='lirGeneration' stamp='0.236'/>
+</phase>
+<phase name='linearScan' stamp='0.236'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='375' nmethods='70' adapters='162' free_code_cache='248646656'/>
+<task_done success='1' nmsize='2472' count='363' backedge_count='14' stamp='0.237'/>
+</task>
+<task compile_id='75' method='java.util.HashMap newNode (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;' bytes='13' count='361' iicount='361' level='3' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='newNode' return='1094' arguments='975 982 982 1094' flags='0' bytes='13' iicount='361'/>
+<parse method='1095'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1094' name='&lt;init&gt;' return='977' arguments='975 982 982 1094' flags='0' bytes='26' iicount='367'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3743'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.237'/>
+</parse>
+<parse_done stamp='0.237'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='380' nmethods='75' adapters='162' free_code_cache='248640128'/>
+<task_done success='1' nmsize='944' count='378' inlined_bytes='27' stamp='0.237'/>
+</task>
+<task compile_id='85' method='java.util.Optional &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='261' iicount='261' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' iicount='264'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3882'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1098' name='java.util.Objects' flags='17'/>
+<method id='1099' holder='1098' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='1946'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1101' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.239'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='387' nmethods='82' adapters='162' free_code_cache='248626688'/>
+<task_done success='1' nmsize='872' count='277' inlined_bytes='15' stamp='0.239'/>
+</task>
+<task compile_id='89' method='java.lang.module.Resolver findWithBeforeFinder (Ljava/lang/String;)Ljava/lang/module/ModuleReference;' bytes='18' count='271' iicount='271' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<klass id='1094' name='java.lang.module.ModuleReference' flags='1025'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.Resolver' flags='16'/>
+<method id='1095' holder='1093' name='findWithBeforeFinder' return='1094' arguments='983' flags='2' bytes='18' iicount='271'/>
+<parse method='1095'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='185' bci='5'/>
+<klass id='1098' name='java.util.Optional' flags='17'/>
+<klass id='1097' name='java.lang.module.ModuleFinder' flags='1537'/>
+<method id='1099' holder='1097' name='find' return='1098' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='11'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='1098' name='orElse' return='982' arguments='982' flags='1' bytes='16' iicount='274'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.240'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='393' nmethods='88' adapters='162' free_code_cache='248617472'/>
+<task_done success='1' nmsize='1096' count='271' inlined_bytes='16' stamp='0.240'/>
+</task>
+<task compile_id='95' method='jdk.internal.module.ModuleReferenceImpl hashCode ()I' bytes='56' count='435' iicount='435' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.module.ModuleReferenceImpl' flags='1'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='56' iicount='439'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='182' bci='10'/>
+<klass id='1097' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<klass id='1096' name='java.lang.module.ModuleReference' flags='1025'/>
+<method id='1098' holder='1096' name='descriptor' return='1097' flags='17' bytes='5' compile_id='46' compiler='c1' level='1' iicount='243'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='13'/>
+<method id='1100' holder='1097' name='hashCode' return='975' flags='1' bytes='170' iicount='238'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='184' bci='25'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1103' name='java.util.Objects' flags='17'/>
+<method id='1104' holder='1103' name='hashCode' return='975' arguments='982' flags='9' bytes='13' iicount='198'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='5'/>
+<method id='1106' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='38'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.240'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='398' nmethods='93' adapters='162' free_code_cache='248605312'/>
+<task_done success='1' nmsize='1384' count='633' inlined_bytes='31' stamp='0.241'/>
+</task>
+<task compile_id='98' method='java.lang.module.ModuleDescriptor isAutomatic ()Z' bytes='5' count='154' iicount='154' level='1' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='isAutomatic' return='969' flags='1' bytes='5' iicount='154'/>
+<parse method='1094'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='401' nmethods='96' adapters='162' free_code_cache='248602240'/>
+<task_done success='1' nmsize='272' count='154' stamp='0.241'/>
+</task>
+<task compile_id='90' method='java.util.ImmutableCollections$Set0 size ()I' bytes='2' count='130' iicount='130' level='1' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='2' iicount='130'/>
+<parse method='1094'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='402' nmethods='97' adapters='162' free_code_cache='248601472'/>
+<task_done success='1' nmsize='272' count='130' stamp='0.241'/>
+</task>
+<task compile_id='103' method='java.util.HashMap$HashIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='79' count='292' backedge_count='643' iicount='292' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.HashMap' flags='1'/>
+<klass id='1093' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='79' iicount='331'/>
+<parse method='1095'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='4711'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.241'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.242'/>
+</phase>
+<phase name='linearScan' stamp='0.242'>
+<phase_done name='linearScan' stamp='0.242'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.242'/>
+</phase>
+<phase name='codeemit' stamp='0.242'>
+<phase_done name='codeemit' stamp='0.242'/>
+</phase>
+<phase name='codeinstall' stamp='0.242'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='410' nmethods='105' adapters='162' free_code_cache='248588288'/>
+<task_done success='1' nmsize='1136' count='635' backedge_count='1086' inlined_bytes='1' stamp='0.242'/>
+</task>
+<task compile_id='110' method='java.util.KeyValueHolder getValue ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' level='1' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1094' holder='1093' name='getValue' return='982' flags='1' bytes='5' iicount='176'/>
+<parse method='1094'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.243'/>
+</phase>
+<code_cache total_blobs='416' nmethods='109' adapters='162' free_code_cache='248572416'/>
+<task_done success='1' nmsize='272' count='176' stamp='0.243'/>
+</task>
+<task compile_id='113' method='java.lang.String indexOf (II)I' bytes='29' count='259' iicount='259' level='3' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='259'/>
+<parse method='1093'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='6476'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='271'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='420' nmethods='113' adapters='162' free_code_cache='248578688'/>
+<task_done success='1' nmsize='728' count='295' inlined_bytes='19' stamp='0.244'/>
+</task>
+<task compile_id='124' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='260' iicount='260' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' iicount='260'/>
+<parse method='1094'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='432' nmethods='123' adapters='162' free_code_cache='248567296'/>
+<task_done success='1' nmsize='400' count='260' stamp='0.245'/>
+</task>
+<task compile_id='125' method='java.lang.module.ResolvedModule name ()Ljava/lang/String;' bytes='11' count='308' iicount='308' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1094' holder='1093' name='name' return='983' flags='1' bytes='11' iicount='309'/>
+<parse method='1094'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<bc code='182' bci='1'/>
+<klass id='1096' name='java.lang.module.ModuleReference' flags='1025'/>
+<method id='1097' holder='1093' name='reference' return='1096' flags='1' bytes='5' compile_id='111' compiler='c1' level='1' iicount='156'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='182' bci='4'/>
+<klass id='1099' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1100' holder='1096' name='descriptor' return='1099' flags='17' bytes='5' compile_id='46' compiler='c1' level='1' iicount='243'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1102' holder='1099' name='name' return='983' flags='1' bytes='5' compile_id='41' compiler='c1' level='1' iicount='168'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1102'>
+<parse_done stamp='0.245'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<dependency type='leaf_type' ctxk='1099'/>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='434' nmethods='125' adapters='162' free_code_cache='248563328'/>
+<task_done success='1' nmsize='720' count='316' inlined_bytes='15' stamp='0.245'/>
+</task>
+<task compile_id='130' method='java.util.HashMap &lt;init&gt; ()V' bytes='11' count='266' iicount='266' level='3' stamp='0.248'>
+<phase name='setup' stamp='0.248'>
+<phase_done name='setup' stamp='0.248'/>
+</phase>
+<phase name='buildIR' stamp='0.248'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='11' iicount='266'/>
+<parse method='1094'  stamp='0.248'>
+<phase name='parse_hir' stamp='0.248'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractMap' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='315'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='6550'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.248'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.248'/>
+</phase>
+<parse_done stamp='0.248'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.248'>
+<phase_done name='optimize_blocks' stamp='0.248'/>
+</phase>
+<phase name='gvn' stamp='0.248'>
+<phase_done name='gvn' stamp='0.248'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.248'>
+<phase_done name='rangeCheckElimination' stamp='0.248'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.248'>
+<phase_done name='optimize_null_checks' stamp='0.248'/>
+</phase>
+<phase_done name='buildIR' stamp='0.248'/>
+</phase>
+<phase name='emit_lir' stamp='0.248'>
+<phase name='lirGeneration' stamp='0.248'>
+<phase_done name='lirGeneration' stamp='0.248'/>
+</phase>
+<phase name='linearScan' stamp='0.248'>
+<phase_done name='linearScan' stamp='0.248'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.248'/>
+</phase>
+<phase name='codeemit' stamp='0.248'>
+<phase_done name='codeemit' stamp='0.248'/>
+</phase>
+<phase name='codeinstall' stamp='0.248'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.248'/>
+</phase>
+<code_cache total_blobs='442' nmethods='131' adapters='162' free_code_cache='248556544'/>
+<task_done success='1' nmsize='528' count='306' inlined_bytes='6' stamp='0.248'/>
+</task>
+<task compile_id='134' method='java.util.HashMap resize ()[Ljava/util/HashMap$Node;' bytes='356' count='287' backedge_count='1174' iicount='287' level='3' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<klass id='1095' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1096' holder='1093' name='resize' return='1095' flags='16' bytes='356' iicount='288'/>
+<parse method='1096'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<bc code='182' bci='217'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1098' name='java.util.HashMap$TreeNode' flags='24'/>
+<method id='1099' holder='1098' name='split' return='977' arguments='1093 1095 975 975' flags='16' bytes='218' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='448' nmethods='137' adapters='162' free_code_cache='248543872'/>
+<task_done success='1' nmsize='5352' count='387' backedge_count='1414' stamp='0.250'/>
+</task>
+<task compile_id='139' method='java.util.ArrayList access$000 (Ljava/util/ArrayList;)I' bytes='5' count='167' iicount='167' level='1' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='access$000' return='975' arguments='1093' flags='4104' bytes='5' iicount='167'/>
+<parse method='1094'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='449' nmethods='138' adapters='162' free_code_cache='248542976'/>
+<task_done success='1' nmsize='240' count='167' stamp='0.250'/>
+</task>
+<task compile_id='142' method='java.util.ImmutableCollections$SetN iterator ()Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='9' iicount='256'/>
+<parse method='1095'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='1093' flags='0' bytes='15' iicount='258'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='7592'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='455' nmethods='144' adapters='162' free_code_cache='248536448'/>
+<task_done success='1' nmsize='720' count='263' inlined_bytes='16' stamp='0.250'/>
+</task>
+<task compile_id='148' method='java.util.Collections$UnmodifiableCollection$1 hasNext ()Z' bytes='10' count='265' iicount='265' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$UnmodifiableCollection$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='10' iicount='265'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Iterator' flags='1537'/>
+<method id='1097' holder='1096' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='458' nmethods='147' adapters='162' free_code_cache='248533504'/>
+<task_done success='1' nmsize='552' count='280' stamp='0.251'/>
+</task>
+<task compile_id='151' method='java.util.Collections$1 &lt;init&gt; (Ljava/lang/Object;)V' bytes='15' count='267' iicount='267' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$1' flags='0'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='15' iicount='267'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='183' bci='6'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='8227'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.251'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='462' nmethods='151' adapters='162' free_code_cache='248525440'/>
+<task_done success='1' nmsize='528' count='274' inlined_bytes='1' stamp='0.251'/>
+</task>
+<task compile_id='158' method='jdk.internal.module.ModuleReferenceImpl moduleResolution ()Ljdk/internal/module/ModuleResolution;' bytes='5' count='148' iicount='148' level='1' stamp='0.253'>
+<phase name='setup' stamp='0.253'>
+<phase_done name='setup' stamp='0.253'/>
+</phase>
+<phase name='buildIR' stamp='0.253'>
+<klass id='1094' name='jdk.internal.module.ModuleResolution' flags='17'/>
+<klass id='1093' name='jdk.internal.module.ModuleReferenceImpl' flags='1'/>
+<method id='1095' holder='1093' name='moduleResolution' return='1094' flags='1' bytes='5' iicount='148'/>
+<parse method='1095'  stamp='0.253'>
+<phase name='parse_hir' stamp='0.253'>
+<phase_done name='parse_hir' stamp='0.253'/>
+</phase>
+<parse_done stamp='0.253'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.253'>
+<phase_done name='optimize_blocks' stamp='0.253'/>
+</phase>
+<phase name='gvn' stamp='0.253'>
+<phase_done name='gvn' stamp='0.253'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.253'>
+<phase_done name='rangeCheckElimination' stamp='0.253'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.253'>
+<phase_done name='optimize_null_checks' stamp='0.253'/>
+</phase>
+<phase_done name='buildIR' stamp='0.253'/>
+</phase>
+<phase name='emit_lir' stamp='0.253'>
+<phase name='lirGeneration' stamp='0.253'>
+<phase_done name='lirGeneration' stamp='0.253'/>
+</phase>
+<phase name='linearScan' stamp='0.253'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.253'/>
+</phase>
+<code_cache total_blobs='469' nmethods='158' adapters='162' free_code_cache='248518272'/>
+<task_done success='1' nmsize='272' count='148' stamp='0.253'/>
+</task>
+<task compile_id='165' method='java.util.HashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='269' iicount='269' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='putIfAbsent' return='982' arguments='982 982' flags='1' bytes='13' iicount='284'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='6654'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='72' compiler='c1' level='3' iicount='3071'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.255'/>
+</phase>
+<parse_done stamp='0.255'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.255'>
+<phase_done name='optimize_blocks' stamp='0.255'/>
+</phase>
+<phase name='gvn' stamp='0.255'>
+<phase_done name='gvn' stamp='0.255'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.255'>
+<phase_done name='rangeCheckElimination' stamp='0.255'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.255'>
+<phase_done name='optimize_null_checks' stamp='0.255'/>
+</phase>
+<phase_done name='buildIR' stamp='0.255'/>
+</phase>
+<phase name='emit_lir' stamp='0.255'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='480' nmethods='166' adapters='162' free_code_cache='248504320'/>
+<task_done success='1' nmsize='952' count='492' inlined_bytes='20' stamp='0.255'/>
+</task>
+<task compile_id='167' method='java.lang.Module getDescriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='135' iicount='135' level='1' stamp='0.255'>
+<phase name='setup' stamp='0.255'>
+<phase_done name='setup' stamp='0.255'/>
+</phase>
+<phase name='buildIR' stamp='0.255'>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<klass id='1019' name='java.lang.Module' flags='17'/>
+<method id='1094' holder='1019' name='getDescriptor' return='1093' flags='1' bytes='5' iicount='136'/>
+<parse method='1094'  stamp='0.255'>
+<phase name='parse_hir' stamp='0.255'>
+<phase_done name='parse_hir' stamp='0.255'/>
+</phase>
+<parse_done stamp='0.255'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.255'>
+<phase_done name='optimize_blocks' stamp='0.255'/>
+</phase>
+<phase name='gvn' stamp='0.255'>
+<phase_done name='gvn' stamp='0.255'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.255'>
+<phase_done name='rangeCheckElimination' stamp='0.255'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.255'>
+<phase_done name='optimize_null_checks' stamp='0.255'/>
+</phase>
+<phase_done name='buildIR' stamp='0.255'/>
+</phase>
+<phase name='emit_lir' stamp='0.255'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='481' nmethods='168' adapters='162' free_code_cache='248503552'/>
+<task_done success='1' nmsize='272' count='146' stamp='0.255'/>
+</task>
+<task compile_id='172' method='java.util.jar.Attributes$Name isValid (C)Z' bytes='32' count='331' iicount='331' level='3' stamp='0.281'>
+<phase name='setup' stamp='0.281'>
+<phase_done name='setup' stamp='0.281'/>
+</phase>
+<phase name='buildIR' stamp='0.281'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.jar.Attributes$Name' flags='9'/>
+<method id='1094' holder='1093' name='isValid' return='969' arguments='970' flags='10' bytes='32' iicount='331'/>
+<parse method='1094'  stamp='0.281'>
+<phase name='parse_hir' stamp='0.281'>
+<bc code='184' bci='1'/>
+<method id='1096' holder='1093' name='isAlpha' return='969' arguments='970' flags='10' bytes='30' iicount='349'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.281'/>
+</parse>
+<bc code='184' bci='8'/>
+<method id='1098' holder='1093' name='isDigit' return='969' arguments='970' flags='10' bytes='18' iicount='23'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.281'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.281'/>
+</phase>
+<parse_done stamp='0.281'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.281'>
+<phase_done name='optimize_blocks' stamp='0.281'/>
+</phase>
+<phase name='gvn' stamp='0.281'>
+<phase_done name='gvn' stamp='0.281'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.281'>
+<phase_done name='rangeCheckElimination' stamp='0.281'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.281'>
+<phase_done name='optimize_null_checks' stamp='0.281'/>
+</phase>
+<phase_done name='buildIR' stamp='0.281'/>
+</phase>
+<phase name='emit_lir' stamp='0.281'>
+<phase name='lirGeneration' stamp='0.281'>
+<phase_done name='lirGeneration' stamp='0.281'/>
+</phase>
+<phase name='linearScan' stamp='0.281'>
+<phase_done name='linearScan' stamp='0.281'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.281'/>
+</phase>
+<phase name='codeemit' stamp='0.281'>
+<phase_done name='codeemit' stamp='0.281'/>
+</phase>
+<phase name='codeinstall' stamp='0.281'>
+<phase_done name='codeinstall' stamp='0.281'/>
+</phase>
+<code_cache total_blobs='518' nmethods='173' adapters='194' free_code_cache='248478720'/>
+<task_done success='1' nmsize='1168' count='368' inlined_bytes='48' stamp='0.281'/>
+</task>
+<task compile_id='178' method='java.lang.AbstractStringBuilder putStringAt (ILjava/lang/String;)V' bytes='29' count='256' iicount='256' level='3' stamp='0.309'>
+<phase name='setup' stamp='0.309'>
+<phase_done name='setup' stamp='0.309'/>
+</phase>
+<phase name='buildIR' stamp='0.309'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='putStringAt' return='977' arguments='975 983' flags='18' bytes='29' iicount='256'/>
+<parse method='1093'  stamp='0.309'>
+<phase name='parse_hir' stamp='0.309'>
+<bc code='182' bci='1'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='1048' name='getCoder' return='973' flags='16' bytes='15' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.309'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1098' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='8510'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.309'/>
+</parse>
+<bc code='183' bci='12'/>
+<method id='1100' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='25'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1102' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' iicount='259'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.309'/>
+</phase>
+<parse_done stamp='0.309'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.309'>
+<phase_done name='optimize_blocks' stamp='0.309'/>
+</phase>
+<phase name='gvn' stamp='0.309'>
+<phase_done name='gvn' stamp='0.309'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.309'>
+<phase_done name='rangeCheckElimination' stamp='0.309'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.309'>
+<phase_done name='optimize_null_checks' stamp='0.309'/>
+</phase>
+<phase_done name='buildIR' stamp='0.309'/>
+</phase>
+<phase name='emit_lir' stamp='0.309'>
+<phase name='lirGeneration' stamp='0.309'>
+<phase_done name='lirGeneration' stamp='0.309'/>
+</phase>
+<phase name='linearScan' stamp='0.309'>
+<phase_done name='linearScan' stamp='0.310'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.310'/>
+</phase>
+<phase name='codeemit' stamp='0.310'>
+<phase_done name='codeemit' stamp='0.310'/>
+</phase>
+<phase name='codeinstall' stamp='0.310'>
+<phase_done name='codeinstall' stamp='0.310'/>
+</phase>
+<code_cache total_blobs='528' nmethods='179' adapters='198' free_code_cache='248469248'/>
+<task_done success='1' nmsize='1208' count='259' inlined_bytes='30' stamp='0.310'/>
+</task>
+<task compile_id='183' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='281' iicount='281' level='3' stamp='0.317'>
+<phase name='setup' stamp='0.317'>
+<phase_done name='setup' stamp='0.317'/>
+</phase>
+<phase name='buildIR' stamp='0.317'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' iicount='281'/>
+<parse method='1093'  stamp='0.317'>
+<phase name='parse_hir' stamp='0.317'>
+<bc code='183' bci='5'/>
+<method id='1095' holder='1048' name='appendNull' return='1048' flags='2' bytes='83' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1097' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='1685'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1099' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='8888'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.317'/>
+</parse>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<method id='1102' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='129' compiler='c1' level='3' iicount='413'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<method id='1104' holder='1048' name='putStringAt' return='977' arguments='975 983' flags='18' bytes='29' compile_id='178' compiler='c1' level='3' iicount='281'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='1'/>
+<method id='1106' holder='1048' name='getCoder' return='973' flags='16' bytes='15' compile_id='179' compiler='c1' level='3' iicount='281'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='183' bci='12'/>
+<method id='1108' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='25'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1110' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' compile_id='180' compiler='c1' level='3' iicount='281'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.317'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.317'/>
+</phase>
+<parse_done stamp='0.317'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.317'>
+<phase_done name='optimize_blocks' stamp='0.317'/>
+</phase>
+<phase name='gvn' stamp='0.317'>
+<phase_done name='gvn' stamp='0.317'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.317'>
+<phase_done name='rangeCheckElimination' stamp='0.317'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.317'>
+<phase_done name='optimize_null_checks' stamp='0.317'/>
+</phase>
+<phase_done name='buildIR' stamp='0.317'/>
+</phase>
+<phase name='emit_lir' stamp='0.317'>
+<phase name='lirGeneration' stamp='0.317'>
+<phase_done name='lirGeneration' stamp='0.317'/>
+</phase>
+<phase name='linearScan' stamp='0.317'>
+<phase_done name='linearScan' stamp='0.317'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.317'/>
+</phase>
+<phase name='codeemit' stamp='0.317'>
+<phase_done name='codeemit' stamp='0.317'/>
+</phase>
+<phase name='codeinstall' stamp='0.317'>
+<phase_done name='codeinstall' stamp='0.317'/>
+</phase>
+<code_cache total_blobs='532' nmethods='183' adapters='198' free_code_cache='248461312'/>
+<task_done success='1' nmsize='2008' count='281' inlined_bytes='85' stamp='0.317'/>
+</task>
+<task compile_id='192' method='java.lang.Class getClassLoader0 ()Ljava/lang/ClassLoader;' bytes='5' count='128' iicount='128' level='1' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' iicount='128'/>
+<parse method='1093'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='562' nmethods='191' adapters='220' free_code_cache='248435328'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.324'/>
+</task>
+<task compile_id='205' method='java.lang.invoke.MethodTypeForm canonicalize (Ljava/lang/Class;I)Ljava/lang/Class;' bytes='233' count='259' iicount='259' level='3' stamp='0.330'>
+<phase name='setup' stamp='0.330'>
+<phase_done name='setup' stamp='0.330'/>
+</phase>
+<phase name='buildIR' stamp='0.330'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1094' holder='1093' name='canonicalize' return='984' arguments='984 975' flags='8' bytes='233' iicount='259'/>
+<parse method='1094'  stamp='0.330'>
+<phase name='parse_hir' stamp='0.330'>
+<bc code='182' bci='10'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='195' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='53'/>
+<klass id='1099' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1100' holder='1099' name='asPrimitiveType' return='984' arguments='984' flags='9' bytes='20' iicount='1'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='184' bci='1'/>
+<method id='1102' holder='1099' name='findWrapperType' return='1099' arguments='984' flags='8' bytes='25' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='4'/>
+<method id='1107' holder='1099' name='hashWrap' return='975' arguments='984' flags='10' bytes='62' iicount='10'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='10'/>
+<method id='1109' holder='1099' name='primitiveType' return='984' flags='1' bytes='5' iicount='4'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='14'/>
+<method id='1111' holder='1099' name='forceType' return='984' arguments='984 984' flags='8' bytes='165' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='149'/>
+<method id='1118' holder='1099' name='asWrapperType' return='984' arguments='984' flags='9' bytes='18' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='182' bci='1'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='8'/>
+<method id='1120' holder='1099' name='forPrimitiveType' return='1099' arguments='984' flags='9' bytes='49' iicount='54'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='12'/>
+<method id='1122' holder='1099' name='wrapperType' return='984' arguments='984' flags='1' bytes='52' iicount='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.330'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.330'/>
+</phase>
+<parse_done stamp='0.330'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.330'>
+<phase_done name='optimize_blocks' stamp='0.330'/>
+</phase>
+<phase name='gvn' stamp='0.330'>
+<phase_done name='gvn' stamp='0.330'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.330'>
+<phase_done name='rangeCheckElimination' stamp='0.330'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.331'>
+<phase_done name='optimize_null_checks' stamp='0.331'/>
+</phase>
+<phase_done name='buildIR' stamp='0.331'/>
+</phase>
+<phase name='emit_lir' stamp='0.331'>
+<phase name='lirGeneration' stamp='0.331'>
+<phase_done name='lirGeneration' stamp='0.331'/>
+</phase>
+<phase name='linearScan' stamp='0.331'>
+<phase_done name='linearScan' stamp='0.331'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.331'/>
+</phase>
+<phase name='codeemit' stamp='0.331'>
+<phase_done name='codeemit' stamp='0.331'/>
+</phase>
+<phase name='codeinstall' stamp='0.331'>
+<phase_done name='codeinstall' stamp='0.331'/>
+</phase>
+<code_cache total_blobs='583' nmethods='207' adapters='225' free_code_cache='248412928'/>
+<task_done success='1' nmsize='2968' count='259' inlined_bytes='68' stamp='0.331'/>
+</task>
+<task compile_id='219' method='java.lang.StringBuilder append (C)Ljava/lang/StringBuilder;' bytes='8' count='256' iicount='256' level='3' stamp='0.336'>
+<phase name='setup' stamp='0.336'>
+<phase_done name='setup' stamp='0.336'/>
+</phase>
+<phase name='buildIR' stamp='0.336'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<type id='970' name='char'/>
+<method id='1093' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' iicount='257'/>
+<parse method='1093'  stamp='0.336'>
+<phase name='parse_hir' stamp='0.336'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' iicount='257'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.336'/>
+</phase>
+<parse_done stamp='0.336'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.336'>
+<phase_done name='optimize_blocks' stamp='0.336'/>
+</phase>
+<phase name='gvn' stamp='0.336'>
+<phase_done name='gvn' stamp='0.336'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.336'>
+<phase_done name='rangeCheckElimination' stamp='0.336'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.336'>
+<phase_done name='optimize_null_checks' stamp='0.336'/>
+</phase>
+<phase_done name='buildIR' stamp='0.336'/>
+</phase>
+<phase name='emit_lir' stamp='0.336'>
+<phase name='lirGeneration' stamp='0.336'>
+<phase_done name='lirGeneration' stamp='0.336'/>
+</phase>
+<phase name='linearScan' stamp='0.336'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='601' nmethods='216' adapters='232' free_code_cache='248399616'/>
+<task_done success='1' nmsize='392' count='257' stamp='0.337'/>
+</task>
+<task compile_id='222' method='java.lang.invoke.MemberName testAnyFlags (I)Z' bytes='15' count='263' iicount='263' level='3' stamp='0.337'>
+<phase name='setup' stamp='0.337'>
+<phase_done name='setup' stamp='0.337'/>
+</phase>
+<phase name='buildIR' stamp='0.337'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' iicount='265'/>
+<parse method='1093'  stamp='0.337'>
+<phase name='parse_hir' stamp='0.337'>
+<bc code='183' bci='3'/>
+<method id='1095' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='210' compiler='c1' level='3' iicount='403'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.337'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='605' nmethods='220' adapters='232' free_code_cache='248392704'/>
+<task_done success='1' nmsize='624' count='281' inlined_bytes='16' stamp='0.337'/>
+</task>
+<task compile_id='223' method='jdk.internal.org.objectweb.asm.Item set (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='219' count='276' iicount='276' level='3' stamp='0.339'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1094' holder='1093' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' iicount='276'/>
+<parse method='1094'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<bc code='182' bci='180'/>
+<method id='1096' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6415'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='184'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='166'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='199'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='203'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='209'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.339'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.339'/>
+</phase>
+<phase name='codeemit' stamp='0.339'>
+<phase_done name='codeemit' stamp='0.339'/>
+</phase>
+<phase name='codeinstall' stamp='0.339'>
+<phase_done name='codeinstall' stamp='0.339'/>
+</phase>
+<code_cache total_blobs='611' nmethods='224' adapters='234' free_code_cache='248382592'/>
+<task_done success='1' nmsize='1976' count='291' stamp='0.339'/>
+</task>
+</compilation_log>
+<compilation_log thread='23815'>
+<start_compile_thread name='C1 CompilerThread10' thread='23815' process='23756' stamp='0.180'/>
+<task compile_id='3' method='java.lang.StringLatin1 equals ([B[B)Z' bytes='36' count='256' backedge_count='325' iicount='256' level='3' stamp='0.185'>
+<phase name='setup' stamp='0.185'>
+<phase_done name='setup' stamp='0.185'/>
+</phase>
+<phase name='buildIR' stamp='0.186'>
+<type id='969' name='boolean'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' iicount='256'/>
+<parse method='1094'  stamp='0.186'>
+<phase name='parse_hir' stamp='0.186'>
+<phase_done name='parse_hir' stamp='0.186'/>
+</phase>
+<parse_done stamp='0.186'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.186'>
+<phase_done name='optimize_blocks' stamp='0.186'/>
+</phase>
+<phase name='gvn' stamp='0.186'>
+<phase_done name='gvn' stamp='0.186'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.186'>
+<phase_done name='rangeCheckElimination' stamp='0.186'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.186'>
+<phase_done name='optimize_null_checks' stamp='0.186'/>
+</phase>
+<phase_done name='buildIR' stamp='0.186'/>
+</phase>
+<phase name='emit_lir' stamp='0.186'>
+<phase name='lirGeneration' stamp='0.186'>
+<phase_done name='lirGeneration' stamp='0.186'/>
+</phase>
+<phase name='linearScan' stamp='0.186'>
+<phase_done name='linearScan' stamp='0.186'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.186'/>
+</phase>
+<phase name='codeemit' stamp='0.186'>
+<phase_done name='codeemit' stamp='0.186'/>
+</phase>
+<phase name='codeinstall' stamp='0.186'>
+<phase_done name='codeinstall' stamp='0.186'/>
+</phase>
+<code_cache total_blobs='239' nmethods='3' adapters='135' free_code_cache='248785536'/>
+<task_done success='1' nmsize='688' count='256' backedge_count='325' stamp='0.186'/>
+</task>
+<task compile_id='7' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='566' iicount='566' level='3' stamp='0.195'>
+<phase name='setup' stamp='0.195'>
+<phase_done name='setup' stamp='0.195'/>
+</phase>
+<phase name='buildIR' stamp='0.195'>
+<type id='970' name='char'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' iicount='588'/>
+<parse method='1094'  stamp='0.195'>
+<phase name='parse_hir' stamp='0.195'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.195'/>
+</phase>
+<parse_done stamp='0.195'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.195'>
+<phase_done name='optimize_blocks' stamp='0.195'/>
+</phase>
+<phase name='gvn' stamp='0.195'>
+<phase_done name='gvn' stamp='0.195'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.195'>
+<phase_done name='rangeCheckElimination' stamp='0.195'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.195'>
+<phase_done name='optimize_null_checks' stamp='0.195'/>
+</phase>
+<phase_done name='buildIR' stamp='0.195'/>
+</phase>
+<phase name='emit_lir' stamp='0.195'>
+<phase name='lirGeneration' stamp='0.195'>
+<phase_done name='lirGeneration' stamp='0.195'/>
+</phase>
+<phase name='linearScan' stamp='0.195'>
+<phase_done name='linearScan' stamp='0.195'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.195'/>
+</phase>
+<phase name='codeemit' stamp='0.195'>
+<phase_done name='codeemit' stamp='0.196'/>
+</phase>
+<phase name='codeinstall' stamp='0.196'>
+<phase_done name='codeinstall' stamp='0.196'/>
+</phase>
+<code_cache total_blobs='298' nmethods='6' adapters='151' free_code_cache='248769408'/>
+<task_done success='1' nmsize='584' count='622' stamp='0.196'/>
+</task>
+<task compile_id='10' method='java.lang.String hashCode ()I' bytes='49' count='323' iicount='323' level='3' stamp='0.207'>
+<phase name='setup' stamp='0.207'>
+<phase_done name='setup' stamp='0.207'/>
+</phase>
+<phase name='buildIR' stamp='0.207'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='hashCode' return='975' flags='1' bytes='49' iicount='349'/>
+<parse method='1093'  stamp='0.207'>
+<phase name='parse_hir' stamp='0.207'>
+<bc code='183' bci='19'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='1323'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.207'/>
+</parse>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='2' compiler='c1' level='3' iicount='257'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='39'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='hashCode' return='975' arguments='1085' flags='9' bytes='33' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='20'/>
+<type id='970' name='char'/>
+<method id='1104' holder='1101' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='1' compiler='c1' level='3' iicount='512'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.207'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.208'/>
+</phase>
+<parse_done stamp='0.208'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.208'>
+<phase_done name='optimize_blocks' stamp='0.208'/>
+</phase>
+<phase name='gvn' stamp='0.208'>
+<phase_done name='gvn' stamp='0.208'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.208'>
+<phase_done name='rangeCheckElimination' stamp='0.208'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.208'>
+<phase_done name='optimize_null_checks' stamp='0.208'/>
+</phase>
+<phase_done name='buildIR' stamp='0.208'/>
+</phase>
+<phase name='emit_lir' stamp='0.208'>
+<phase name='lirGeneration' stamp='0.208'>
+<phase_done name='lirGeneration' stamp='0.208'/>
+</phase>
+<phase name='linearScan' stamp='0.208'>
+<phase_done name='linearScan' stamp='0.208'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.208'/>
+</phase>
+<phase name='codeemit' stamp='0.208'>
+<phase_done name='codeemit' stamp='0.208'/>
+</phase>
+<phase name='codeinstall' stamp='0.208'>
+<phase_done name='codeinstall' stamp='0.208'/>
+</phase>
+<code_cache total_blobs='308' nmethods='10' adapters='158' free_code_cache='248758016'/>
+<task_done success='1' nmsize='1128' count='635' inlined_bytes='52' stamp='0.208'/>
+</task>
+<task compile_id='14' method='java.util.ImmutableCollections$Set0 hashCode ()I' bytes='2' count='140' iicount='140' level='1' stamp='0.210'>
+<phase name='setup' stamp='0.210'>
+<phase_done name='setup' stamp='0.210'/>
+</phase>
+<phase name='buildIR' stamp='0.210'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='2' iicount='145'/>
+<parse method='1094'  stamp='0.210'>
+<phase name='parse_hir' stamp='0.210'>
+<phase_done name='parse_hir' stamp='0.210'/>
+</phase>
+<parse_done stamp='0.210'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.210'>
+<phase_done name='optimize_blocks' stamp='0.210'/>
+</phase>
+<phase name='gvn' stamp='0.210'>
+<phase_done name='gvn' stamp='0.210'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.210'>
+<phase_done name='rangeCheckElimination' stamp='0.210'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.210'>
+<phase_done name='optimize_null_checks' stamp='0.210'/>
+</phase>
+<phase_done name='buildIR' stamp='0.210'/>
+</phase>
+<phase name='emit_lir' stamp='0.210'>
+<phase name='lirGeneration' stamp='0.210'>
+<phase_done name='lirGeneration' stamp='0.210'/>
+</phase>
+<phase name='linearScan' stamp='0.210'>
+<phase_done name='linearScan' stamp='0.210'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.210'/>
+</phase>
+<phase name='codeemit' stamp='0.210'>
+<phase_done name='codeemit' stamp='0.211'/>
+</phase>
+<phase name='codeinstall' stamp='0.211'>
+<phase_done name='codeinstall' stamp='0.211'/>
+</phase>
+<code_cache total_blobs='313' nmethods='14' adapters='158' free_code_cache='248750208'/>
+<task_done success='1' nmsize='272' count='177' stamp='0.211'/>
+</task>
+<task compile_id='15' method='java.util.Objects equals (Ljava/lang/Object;Ljava/lang/Object;)Z' bytes='23' count='281' iicount='281' level='3' stamp='0.211'>
+<phase name='setup' stamp='0.211'>
+<phase_done name='setup' stamp='0.211'/>
+</phase>
+<phase name='buildIR' stamp='0.211'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Objects' flags='17'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982 982' flags='9' bytes='23' iicount='281'/>
+<parse method='1094'  stamp='0.211'>
+<phase name='parse_hir' stamp='0.211'>
+<bc code='182' bci='11'/>
+<method id='1096' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.211'/>
+</phase>
+<parse_done stamp='0.211'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.211'>
+<phase_done name='optimize_blocks' stamp='0.211'/>
+</phase>
+<phase name='gvn' stamp='0.211'>
+<phase_done name='gvn' stamp='0.211'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.211'>
+<phase_done name='rangeCheckElimination' stamp='0.211'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.211'>
+<phase_done name='optimize_null_checks' stamp='0.211'/>
+</phase>
+<phase_done name='buildIR' stamp='0.211'/>
+</phase>
+<phase name='emit_lir' stamp='0.211'>
+<phase name='lirGeneration' stamp='0.211'>
+<phase_done name='lirGeneration' stamp='0.211'/>
+</phase>
+<phase name='linearScan' stamp='0.211'>
+<phase_done name='linearScan' stamp='0.211'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.211'/>
+</phase>
+<phase name='codeemit' stamp='0.211'>
+<phase_done name='codeemit' stamp='0.211'/>
+</phase>
+<phase name='codeinstall' stamp='0.211'>
+<phase_done name='codeinstall' stamp='0.211'/>
+</phase>
+<code_cache total_blobs='314' nmethods='15' adapters='158' free_code_cache='248748800'/>
+<task_done success='1' nmsize='712' count='289' stamp='0.211'/>
+</task>
+<task compile_id='16' method='java.util.Collections emptySet ()Ljava/util/Set;' bytes='4' count='268' iicount='268' level='3' stamp='0.211'>
+<phase name='setup' stamp='0.211'>
+<phase_done name='setup' stamp='0.211'/>
+</phase>
+<phase name='buildIR' stamp='0.211'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.util.Collections' flags='1'/>
+<method id='1095' holder='1093' name='emptySet' return='1094' flags='25' bytes='4' iicount='268'/>
+<parse method='1095'  stamp='0.211'>
+<phase name='parse_hir' stamp='0.211'>
+<phase_done name='parse_hir' stamp='0.211'/>
+</phase>
+<parse_done stamp='0.211'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.211'>
+<phase_done name='optimize_blocks' stamp='0.211'/>
+</phase>
+<phase name='gvn' stamp='0.211'>
+<phase_done name='gvn' stamp='0.211'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.211'>
+<phase_done name='rangeCheckElimination' stamp='0.211'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.211'>
+<phase_done name='optimize_null_checks' stamp='0.211'/>
+</phase>
+<phase_done name='buildIR' stamp='0.211'/>
+</phase>
+<phase name='emit_lir' stamp='0.211'>
+<phase name='lirGeneration' stamp='0.211'>
+<phase_done name='lirGeneration' stamp='0.211'/>
+</phase>
+<phase name='linearScan' stamp='0.211'>
+<phase_done name='linearScan' stamp='0.211'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.211'/>
+</phase>
+<phase name='codeemit' stamp='0.211'>
+<phase_done name='codeemit' stamp='0.211'/>
+</phase>
+<phase name='codeinstall' stamp='0.211'>
+<phase_done name='codeinstall' stamp='0.211'/>
+</phase>
+<code_cache total_blobs='315' nmethods='16' adapters='158' free_code_cache='248747904'/>
+<task_done success='1' nmsize='304' count='268' stamp='0.211'/>
+</task>
+<task compile_id='17' method='java.util.Collections$EmptySet hashCode ()I' bytes='2' count='151' iicount='151' level='1' stamp='0.211'>
+<phase name='setup' stamp='0.211'>
+<phase_done name='setup' stamp='0.211'/>
+</phase>
+<phase name='buildIR' stamp='0.211'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Collections$EmptySet' flags='10'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='2' iicount='151'/>
+<parse method='1094'  stamp='0.211'>
+<phase name='parse_hir' stamp='0.211'>
+<phase_done name='parse_hir' stamp='0.211'/>
+</phase>
+<parse_done stamp='0.211'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.211'>
+<phase_done name='optimize_blocks' stamp='0.211'/>
+</phase>
+<phase name='gvn' stamp='0.211'>
+<phase_done name='gvn' stamp='0.211'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.211'>
+<phase_done name='rangeCheckElimination' stamp='0.211'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.211'>
+<phase_done name='optimize_null_checks' stamp='0.211'/>
+</phase>
+<phase_done name='buildIR' stamp='0.211'/>
+</phase>
+<phase name='emit_lir' stamp='0.211'>
+<phase name='lirGeneration' stamp='0.211'>
+<phase_done name='lirGeneration' stamp='0.211'/>
+</phase>
+<phase name='linearScan' stamp='0.211'>
+<phase_done name='linearScan' stamp='0.211'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.211'/>
+</phase>
+<phase name='codeemit' stamp='0.211'>
+<phase_done name='codeemit' stamp='0.211'/>
+</phase>
+<phase name='codeinstall' stamp='0.211'>
+<phase_done name='codeinstall' stamp='0.212'/>
+</phase>
+<code_cache total_blobs='316' nmethods='17' adapters='158' free_code_cache='248747136'/>
+<task_done success='1' nmsize='272' count='151' stamp='0.212'/>
+</task>
+<task compile_id='22' method='java.lang.module.ModuleDescriptor$Exports hashCode ()I' bytes='38' count='279' iicount='279' level='3' stamp='0.212'>
+<phase name='setup' stamp='0.212'>
+<phase_done name='setup' stamp='0.212'/>
+</phase>
+<phase name='buildIR' stamp='0.212'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='38' iicount='282'/>
+<parse method='1094'  stamp='0.212'>
+<phase name='parse_hir' stamp='0.212'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Set' flags='1537'/>
+<method id='1097' holder='1096' name='hashCode' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1098' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='1670'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='31'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.212'/>
+</phase>
+<parse_done stamp='0.212'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.212'>
+<phase_done name='optimize_blocks' stamp='0.212'/>
+</phase>
+<phase name='gvn' stamp='0.212'>
+<phase_done name='gvn' stamp='0.213'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.213'>
+<phase_done name='rangeCheckElimination' stamp='0.213'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.213'>
+<phase_done name='optimize_null_checks' stamp='0.213'/>
+</phase>
+<phase_done name='buildIR' stamp='0.213'/>
+</phase>
+<phase name='emit_lir' stamp='0.213'>
+<phase name='lirGeneration' stamp='0.213'>
+<phase_done name='lirGeneration' stamp='0.213'/>
+</phase>
+<phase name='linearScan' stamp='0.213'>
+<phase_done name='linearScan' stamp='0.213'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.213'/>
+</phase>
+<phase name='codeemit' stamp='0.213'>
+<phase_done name='codeemit' stamp='0.213'/>
+</phase>
+<phase name='codeinstall' stamp='0.213'>
+<phase_done name='codeinstall' stamp='0.213'/>
+</phase>
+<code_cache total_blobs='320' nmethods='21' adapters='158' free_code_cache='248741248'/>
+<task_done success='1' nmsize='1000' count='316' stamp='0.213'/>
+</task>
+<task compile_id='26' method='java.util.Set of ([Ljava/lang/Object;)Ljava/util/Set;' bytes='66' count='265' iicount='265' level='3' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<klass id='1093' name='java.util.Set' flags='1537'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1095' holder='1093' name='of' return='1093' arguments='1094' flags='137' bytes='66' iicount='265'/>
+<parse method='1095'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<bc code='184' bci='28'/>
+<klass id='1097' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1098' holder='1097' name='instance' return='1097' flags='8' bytes='4' iicount='103'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.215'/>
+</parse>
+<bc code='183' bci='39'/>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1102' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1103' holder='1102' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='13' iicount='132'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<klass id='1105' name='java.util.ImmutableCollections$AbstractImmutableSet' flags='1032'/>
+<method id='1106' holder='1105' name='&lt;init&gt;' return='977' flags='0' bytes='5' compile_id='25' compiler='c1' level='3' iicount='370'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='1'/>
+<klass id='1108' name='java.util.AbstractSet' flags='1025'/>
+<method id='1109' holder='1108' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='372'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='1'/>
+<klass id='1111' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1112' holder='1111' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='437'/>
+<call method='1112' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='1'/>
+<method id='1114' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2148'/>
+<call method='1114' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1116' name='java.util.Objects' flags='17'/>
+<method id='1117' holder='1116' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='583'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1119' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<bc code='183' bci='53'/>
+<klass id='1121' name='java.util.ImmutableCollections$Set2' flags='24'/>
+<method id='1122' holder='1121' name='&lt;init&gt;' return='977' arguments='982 982' flags='0' bytes='72' iicount='76'/>
+<call method='1122' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='62'/>
+<klass id='1124' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1125' holder='1124' name='&lt;init&gt;' return='977' arguments='1094' flags='128' bytes='90' iicount='166'/>
+<call method='1125' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.215'/>
+</phase>
+<parse_done stamp='0.215'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.215'>
+<phase_done name='optimize_blocks' stamp='0.215'/>
+</phase>
+<phase name='gvn' stamp='0.215'>
+<phase_done name='gvn' stamp='0.215'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.215'>
+<phase_done name='rangeCheckElimination' stamp='0.215'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.215'>
+<phase_done name='optimize_null_checks' stamp='0.215'/>
+</phase>
+<phase_done name='buildIR' stamp='0.215'/>
+</phase>
+<phase name='emit_lir' stamp='0.215'>
+<phase name='lirGeneration' stamp='0.215'>
+<phase_done name='lirGeneration' stamp='0.215'/>
+</phase>
+<phase name='linearScan' stamp='0.215'>
+<phase_done name='linearScan' stamp='0.216'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.216'/>
+</phase>
+<phase name='codeemit' stamp='0.216'>
+<phase_done name='codeemit' stamp='0.216'/>
+</phase>
+<phase name='codeinstall' stamp='0.216'>
+<phase_done name='codeinstall' stamp='0.216'/>
+</phase>
+<code_cache total_blobs='327' nmethods='28' adapters='158' free_code_cache='248729984'/>
+<task_done success='1' nmsize='1896' count='309' inlined_bytes='47' stamp='0.216'/>
+</task>
+<task compile_id='33' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='15' count='272' iicount='272' level='3' stamp='0.216'>
+<phase name='setup' stamp='0.216'>
+<phase_done name='setup' stamp='0.216'/>
+</phase>
+<phase name='buildIR' stamp='0.216'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983' flags='1' bytes='15' iicount='272'/>
+<parse method='1096'  stamp='0.216'>
+<phase name='parse_hir' stamp='0.216'>
+<bc code='184' bci='6'/>
+<klass id='1098' name='java.util.Collections' flags='1'/>
+<method id='1099' holder='1098' name='emptySet' return='1094' flags='25' bytes='4' compile_id='16' compiler='c1' level='3' iicount='716'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1104' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1093' flags='4096' bytes='10' compile_id='18' compiler='c1' level='3' iicount='636'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='6'/>
+<method id='1106' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='19' compiler='c1' level='3' iicount='636'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1108' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2312'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.216'/>
+</phase>
+<parse_done stamp='0.216'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.216'>
+<phase_done name='optimize_blocks' stamp='0.216'/>
+</phase>
+<phase name='gvn' stamp='0.216'>
+<phase_done name='gvn' stamp='0.216'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.216'>
+<phase_done name='rangeCheckElimination' stamp='0.216'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.216'>
+<phase_done name='optimize_null_checks' stamp='0.216'/>
+</phase>
+<phase_done name='buildIR' stamp='0.216'/>
+</phase>
+<phase name='emit_lir' stamp='0.216'>
+<phase name='lirGeneration' stamp='0.216'>
+<phase_done name='lirGeneration' stamp='0.216'/>
+</phase>
+<phase name='linearScan' stamp='0.216'>
+<phase_done name='linearScan' stamp='0.216'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.216'/>
+</phase>
+<phase name='codeemit' stamp='0.216'>
+<phase_done name='codeemit' stamp='0.216'/>
+</phase>
+<phase name='codeinstall' stamp='0.216'>
+<phase_done name='codeinstall' stamp='0.216'/>
+</phase>
+<code_cache total_blobs='332' nmethods='31' adapters='158' free_code_cache='248724864'/>
+<task_done success='1' nmsize='1136' count='306' inlined_bytes='35' stamp='0.216'/>
+</task>
+<task compile_id='36' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='51' count='258' iicount='258' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newRequires' return='1095' arguments='1094 983 983' flags='9' bytes='51' iicount='262'/>
+<parse method='1096'  stamp='0.217'>
+<phase name='parse_hir' stamp='0.217'>
+<bc code='182' bci='19'/>
+<klass id='1099' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<method id='1101' holder='1099' name='toString' return='983' flags='1' bytes='5' iicount='83'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.217'/>
+</parse>
+<bc code='182' bci='22'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='8' compiler='c1' level='3' iicount='1918'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='35'/>
+<method id='1105' holder='1099' name='parse' return='1099' arguments='983' flags='9' bytes='9' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1099' name='&lt;init&gt;' return='977' arguments='983' flags='2' bytes='488' iicount='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.217'/>
+</parse>
+<bc code='185' bci='45'/>
+<klass id='1109' name='jdk.internal.misc.JavaLangModuleAccess' flags='1537'/>
+<method id='1111' holder='1109' name='newRequires' return='1095' arguments='1094 983 1099' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1098' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<method id='1112' holder='1098' name='newRequires' return='1095' arguments='1094 983 1099' flags='1' bytes='13' iicount='322'/>
+<parse method='1112'>
+<bc code='183' bci='9'/>
+<method id='1114' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1099 969 1098' flags='4096' bytes='10' iicount='338'/>
+<call method='1114' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='6'/>
+<method id='1116' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1099 969' flags='2' bytes='25' iicount='347'/>
+<call method='1116' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='183' bci='1'/>
+<method id='1118' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2664'/>
+<call method='1118' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.217'/>
+</parse>
+<parse_done stamp='0.217'/>
+</parse>
+<parse_done stamp='0.217'/>
+</parse>
+<parse_done stamp='0.217'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.217'/>
+</phase>
+<parse_done stamp='0.217'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.217'>
+<phase_done name='optimize_blocks' stamp='0.217'/>
+</phase>
+<phase name='gvn' stamp='0.217'>
+<phase_done name='gvn' stamp='0.217'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.217'>
+<phase_done name='rangeCheckElimination' stamp='0.217'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.217'>
+<phase_done name='optimize_null_checks' stamp='0.217'/>
+</phase>
+<phase_done name='buildIR' stamp='0.217'/>
+</phase>
+<phase name='emit_lir' stamp='0.217'>
+<phase name='lirGeneration' stamp='0.217'>
+<phase_done name='lirGeneration' stamp='0.217'/>
+</phase>
+<phase name='linearScan' stamp='0.217'>
+<phase_done name='linearScan' stamp='0.218'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.218'/>
+</phase>
+<phase name='codeemit' stamp='0.218'>
+<phase_done name='codeemit' stamp='0.218'/>
+</phase>
+<phase name='codeinstall' stamp='0.218'>
+<dependency type='leaf_type' ctxk='1098'/>
+<phase_done name='codeinstall' stamp='0.218'/>
+</phase>
+<code_cache total_blobs='340' nmethods='39' adapters='158' free_code_cache='248704128'/>
+<task_done success='1' nmsize='2008' count='349' inlined_bytes='63' stamp='0.218'/>
+</task>
+<task compile_id='41' method='java.lang.module.ModuleDescriptor name ()Ljava/lang/String;' bytes='5' count='141' iicount='141' level='1' stamp='0.221'>
+<phase name='setup' stamp='0.221'>
+<phase_done name='setup' stamp='0.221'/>
+</phase>
+<phase name='buildIR' stamp='0.221'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='name' return='983' flags='1' bytes='5' iicount='144'/>
+<parse method='1094'  stamp='0.221'>
+<phase name='parse_hir' stamp='0.221'>
+<phase_done name='parse_hir' stamp='0.221'/>
+</phase>
+<parse_done stamp='0.221'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.221'>
+<phase_done name='optimize_blocks' stamp='0.221'/>
+</phase>
+<phase name='gvn' stamp='0.221'>
+<phase_done name='gvn' stamp='0.221'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.221'>
+<phase_done name='rangeCheckElimination' stamp='0.221'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.221'>
+<phase_done name='optimize_null_checks' stamp='0.221'/>
+</phase>
+<phase_done name='buildIR' stamp='0.221'/>
+</phase>
+<phase name='emit_lir' stamp='0.221'>
+<phase name='lirGeneration' stamp='0.221'>
+<phase_done name='lirGeneration' stamp='0.221'/>
+</phase>
+<phase name='linearScan' stamp='0.221'>
+<phase_done name='linearScan' stamp='0.221'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.221'/>
+</phase>
+<phase name='codeemit' stamp='0.221'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='342' nmethods='41' adapters='158' free_code_cache='248700800'/>
+<task_done success='1' nmsize='272' count='168' stamp='0.221'/>
+</task>
+<task compile_id='46' method='java.lang.module.ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='153' iicount='153' level='1' stamp='0.222'>
+<phase name='setup' stamp='0.222'>
+<phase_done name='setup' stamp='0.222'/>
+</phase>
+<phase name='buildIR' stamp='0.222'>
+<klass id='1094' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<klass id='1093' name='java.lang.module.ModuleReference' flags='1025'/>
+<method id='1095' holder='1093' name='descriptor' return='1094' flags='17' bytes='5' iicount='183'/>
+<parse method='1095'  stamp='0.222'>
+<phase name='parse_hir' stamp='0.222'>
+<phase_done name='parse_hir' stamp='0.222'/>
+</phase>
+<parse_done stamp='0.222'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.222'>
+<phase_done name='optimize_blocks' stamp='0.222'/>
+</phase>
+<phase name='gvn' stamp='0.222'>
+<phase_done name='gvn' stamp='0.222'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.222'>
+<phase_done name='rangeCheckElimination' stamp='0.222'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.222'>
+<phase_done name='optimize_null_checks' stamp='0.222'/>
+</phase>
+<phase_done name='buildIR' stamp='0.222'/>
+</phase>
+<phase name='emit_lir' stamp='0.222'>
+<phase name='lirGeneration' stamp='0.222'>
+<phase_done name='lirGeneration' stamp='0.222'/>
+</phase>
+<phase name='linearScan' stamp='0.222'>
+<phase_done name='linearScan' stamp='0.222'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.222'/>
+</phase>
+<phase name='codeemit' stamp='0.222'>
+<phase_done name='codeemit' stamp='0.222'/>
+</phase>
+<phase name='codeinstall' stamp='0.222'>
+<phase_done name='codeinstall' stamp='0.222'/>
+</phase>
+<code_cache total_blobs='347' nmethods='46' adapters='158' free_code_cache='248695552'/>
+<task_done success='1' nmsize='272' count='243' stamp='0.222'/>
+</task>
+<task compile_id='48' method='java.net.URI toLower (C)I' bytes='19' count='261' iicount='261' level='3' stamp='0.222'>
+<phase name='setup' stamp='0.222'>
+<phase_done name='setup' stamp='0.222'/>
+</phase>
+<phase name='buildIR' stamp='0.222'>
+<type id='975' name='int'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.net.URI' flags='17'/>
+<method id='1094' holder='1093' name='toLower' return='975' arguments='970' flags='10' bytes='19' iicount='276'/>
+<parse method='1094'  stamp='0.222'>
+<phase name='parse_hir' stamp='0.222'>
+<phase_done name='parse_hir' stamp='0.222'/>
+</phase>
+<parse_done stamp='0.222'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.222'>
+<phase_done name='optimize_blocks' stamp='0.222'/>
+</phase>
+<phase name='gvn' stamp='0.222'>
+<phase_done name='gvn' stamp='0.222'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.222'>
+<phase_done name='rangeCheckElimination' stamp='0.222'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.222'>
+<phase_done name='optimize_null_checks' stamp='0.222'/>
+</phase>
+<phase_done name='buildIR' stamp='0.222'/>
+</phase>
+<phase name='emit_lir' stamp='0.222'>
+<phase name='lirGeneration' stamp='0.222'>
+<phase_done name='lirGeneration' stamp='0.222'/>
+</phase>
+<phase name='linearScan' stamp='0.222'>
+<phase_done name='linearScan' stamp='0.222'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.222'/>
+</phase>
+<phase name='codeemit' stamp='0.222'>
+<phase_done name='codeemit' stamp='0.222'/>
+</phase>
+<phase name='codeinstall' stamp='0.222'>
+<phase_done name='codeinstall' stamp='0.222'/>
+</phase>
+<code_cache total_blobs='348' nmethods='47' adapters='158' free_code_cache='248694528'/>
+<task_done success='1' nmsize='432' count='297' stamp='0.222'/>
+</task>
+<task compile_id='51' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='640' iicount='640' level='3' stamp='0.230'>
+<phase name='setup' stamp='0.230'>
+<phase_done name='setup' stamp='0.230'/>
+</phase>
+<phase name='buildIR' stamp='0.230'>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='tabAt' return='1094' arguments='1095 975' flags='24' bytes='22' iicount='640'/>
+<parse method='1096'  stamp='0.230'>
+<phase name='parse_hir' stamp='0.230'>
+<bc code='182' bci='15'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' iicount='640'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='3'/>
+<method id='1102' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='53' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.230'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<phase_done name='codeinstall' stamp='0.230'/>
+</phase>
+<code_cache total_blobs='358' nmethods='53' adapters='162' free_code_cache='248683904'/>
+<task_done success='1' nmsize='784' count='651' inlined_bytes='7' stamp='0.230'/>
+</task>
+<task compile_id='58' method='java.util.concurrent.ConcurrentHashMap casTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z' bytes='21' count='262' iicount='263' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='969' name='boolean'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='casTabAt' return='969' arguments='1095 975 1094 1094' flags='24' bytes='21' iicount='270'/>
+<parse method='1096'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='182' bci='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='compareAndSetObject' return='969' arguments='982 976 982 982' flags='273' bytes='0' compile_id='56' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='364' nmethods='59' adapters='162' free_code_cache='248677120'/>
+<task_done success='1' nmsize='464' count='274' stamp='0.231'/>
+</task>
+<task compile_id='62' method='java.util.ImmutableCollections$SetN$1 next ()Ljava/lang/Object;' bytes='35' count='290' iicount='294' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='35' iicount='320'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='hasNext' return='969' flags='1' bytes='47' compile_id='55' compiler='c1' level='3' iicount='642'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.232'/>
+</phase>
+<phase name='codeinstall' stamp='0.232'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.232'/>
+</phase>
+<code_cache total_blobs='365' nmethods='60' adapters='162' free_code_cache='248675712'/>
+<task_done success='1' nmsize='664' count='320' stamp='0.232'/>
+</task>
+<task compile_id='64' method='java.lang.module.ModuleDescriptor exports ()Ljava/util/Set;' bytes='5' count='135' iicount='135' level='1' stamp='0.232'>
+<phase name='setup' stamp='0.232'>
+<phase_done name='setup' stamp='0.232'/>
+</phase>
+<phase name='buildIR' stamp='0.232'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='exports' return='1094' flags='1' bytes='5' iicount='143'/>
+<parse method='1095'  stamp='0.232'>
+<phase name='parse_hir' stamp='0.232'>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.233'>
+<phase_done name='optimize_blocks' stamp='0.233'/>
+</phase>
+<phase name='gvn' stamp='0.233'>
+<phase_done name='gvn' stamp='0.233'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.233'>
+<phase_done name='rangeCheckElimination' stamp='0.233'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.233'>
+<phase_done name='optimize_null_checks' stamp='0.233'/>
+</phase>
+<phase_done name='buildIR' stamp='0.233'/>
+</phase>
+<phase name='emit_lir' stamp='0.233'>
+<phase name='lirGeneration' stamp='0.233'>
+<phase_done name='lirGeneration' stamp='0.233'/>
+</phase>
+<phase name='linearScan' stamp='0.233'>
+<phase_done name='linearScan' stamp='0.233'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.233'/>
+</phase>
+<phase name='codeemit' stamp='0.233'>
+<phase_done name='codeemit' stamp='0.233'/>
+</phase>
+<phase name='codeinstall' stamp='0.233'>
+<phase_done name='codeinstall' stamp='0.233'/>
+</phase>
+<code_cache total_blobs='367' nmethods='62' adapters='162' free_code_cache='248674176'/>
+<task_done success='1' nmsize='272' count='169' stamp='0.233'/>
+</task>
+<task compile_id='67' method='java.lang.module.ModuleDescriptor$Requires modifiers ()Ljava/util/Set;' bytes='5' count='141' iicount='141' level='1' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1095' holder='1093' name='modifiers' return='1094' flags='1' bytes='5' iicount='141'/>
+<parse method='1095'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<phase_done name='parse_hir' stamp='0.236'/>
+</phase>
+<parse_done stamp='0.236'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.236'>
+<phase_done name='optimize_blocks' stamp='0.236'/>
+</phase>
+<phase name='gvn' stamp='0.236'>
+<phase_done name='gvn' stamp='0.236'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.236'>
+<phase_done name='rangeCheckElimination' stamp='0.236'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.236'>
+<phase_done name='optimize_null_checks' stamp='0.236'/>
+</phase>
+<phase_done name='buildIR' stamp='0.236'/>
+</phase>
+<phase name='emit_lir' stamp='0.236'>
+<phase name='lirGeneration' stamp='0.236'>
+<phase_done name='lirGeneration' stamp='0.236'/>
+</phase>
+<phase name='linearScan' stamp='0.236'>
+<phase_done name='linearScan' stamp='0.236'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.236'/>
+</phase>
+<phase name='codeemit' stamp='0.236'>
+<phase_done name='codeemit' stamp='0.236'/>
+</phase>
+<phase name='codeinstall' stamp='0.236'>
+<phase_done name='codeinstall' stamp='0.236'/>
+</phase>
+<code_cache total_blobs='372' nmethods='67' adapters='162' free_code_cache='248654592'/>
+<task_done success='1' nmsize='272' count='176' stamp='0.236'/>
+</task>
+<task compile_id='70' method='java.util.HashMap containsKey (Ljava/lang/Object;)Z' bytes='18' count='281' iicount='281' level='3' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='containsKey' return='969' arguments='982' flags='1' bytes='18' iicount='281'/>
+<parse method='1094'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='557'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.236'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1100' name='java.util.HashMap$Node' flags='8'/>
+<method id='1101' holder='1093' name='getNode' return='1100' arguments='975 982' flags='16' bytes='148' iicount='301'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.236'/>
+</phase>
+<parse_done stamp='0.236'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.236'>
+<phase_done name='optimize_blocks' stamp='0.236'/>
+</phase>
+<phase name='gvn' stamp='0.236'>
+<phase_done name='gvn' stamp='0.236'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.236'>
+<phase_done name='rangeCheckElimination' stamp='0.236'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.236'>
+<phase_done name='optimize_null_checks' stamp='0.236'/>
+</phase>
+<phase_done name='buildIR' stamp='0.236'/>
+</phase>
+<phase name='emit_lir' stamp='0.236'>
+<phase name='lirGeneration' stamp='0.236'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='374' nmethods='69' adapters='162' free_code_cache='248650240'/>
+<task_done success='1' nmsize='1016' count='281' inlined_bytes='20' stamp='0.237'/>
+</task>
+<task compile_id='73' method='java.util.HashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V' bytes='26' count='364' iicount='364' level='3' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap$Node' flags='8'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975 982 982 1093' flags='0' bytes='26' iicount='364'/>
+<parse method='1094'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3738'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.237'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='378' nmethods='73' adapters='162' free_code_cache='248642560'/>
+<task_done success='1' nmsize='752' count='381' inlined_bytes='1' stamp='0.237'/>
+</task>
+<task compile_id='78' method='java.util.Collections$1 hasNext ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.238'/>
+</phase>
+<phase name='gvn' stamp='0.238'>
+<phase_done name='gvn' stamp='0.238'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.238'>
+<phase_done name='rangeCheckElimination' stamp='0.238'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.238'>
+<phase_done name='optimize_null_checks' stamp='0.238'/>
+</phase>
+<phase_done name='buildIR' stamp='0.238'/>
+</phase>
+<phase name='emit_lir' stamp='0.238'>
+<phase name='lirGeneration' stamp='0.238'>
+<phase_done name='lirGeneration' stamp='0.238'/>
+</phase>
+<phase name='linearScan' stamp='0.238'>
+<phase_done name='linearScan' stamp='0.238'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.238'/>
+</phase>
+<phase name='codeemit' stamp='0.238'>
+<phase_done name='codeemit' stamp='0.238'/>
+</phase>
+<phase name='codeinstall' stamp='0.238'>
+<phase_done name='codeinstall' stamp='0.238'/>
+</phase>
+<code_cache total_blobs='382' nmethods='77' adapters='162' free_code_cache='248638592'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.238'/>
+</task>
+<task compile_id='80' method='java.lang.module.Resolver isTracing ()Z' bytes='13' count='259' iicount='259' level='3' stamp='0.238'>
+<phase name='setup' stamp='0.238'>
+<phase_done name='setup' stamp='0.238'/>
+</phase>
+<phase name='buildIR' stamp='0.238'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.Resolver' flags='16'/>
+<method id='1094' holder='1093' name='isTracing' return='969' flags='2' bytes='13' iicount='263'/>
+<parse method='1094'  stamp='0.238'>
+<phase name='parse_hir' stamp='0.238'>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='385' nmethods='80' adapters='162' free_code_cache='248629376'/>
+<task_done success='1' nmsize='432' count='314' stamp='0.239'/>
+</task>
+<task compile_id='86' method='java.util.ImmutableCollections$MapN get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='21' count='275' iicount='275' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$MapN' flags='24'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='21' iicount='275'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='183' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='64' compile_id='66' compiler='c1' level='3' iicount='424'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='389' nmethods='84' adapters='162' free_code_cache='248623360'/>
+<task_done success='1' nmsize='520' count='275' stamp='0.239'/>
+</task>
+<task compile_id='88' method='jdk.internal.module.SystemModuleFinder find (Ljava/lang/String;)Ljava/util/Optional;' bytes='22' count='273' iicount='273' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<klass id='1094' name='java.util.Optional' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.SystemModuleFinder' flags='1'/>
+<method id='1095' holder='1093' name='find' return='1094' arguments='983' flags='1' bytes='22' iicount='273'/>
+<parse method='1095'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='184' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1097' name='java.util.Objects' flags='17'/>
+<method id='1098' holder='1097' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='2056'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1100' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='185' bci='10'/>
+<klass id='1102' name='java.util.Map' flags='1537'/>
+<method id='1103' holder='1102' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='18'/>
+<method id='1105' holder='1094' name='ofNullable' return='1094' arguments='982' flags='9' bytes='15' compile_id='83' compiler='c1' level='3' iicount='277'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='4'/>
+<method id='1107' holder='1094' name='empty' return='1094' flags='9' bytes='6' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='11'/>
+<method id='1111' holder='1094' name='of' return='1094' arguments='982' flags='9' bytes='9' compile_id='84' compiler='c1' level='3' iicount='277'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='5'/>
+<method id='1113' holder='1094' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' compile_id='85' compiler='c1' level='3' iicount='277'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='4283'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='6'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='8'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='397' nmethods='92' adapters='162' free_code_cache='248607616'/>
+<task_done success='1' nmsize='2184' count='273' inlined_bytes='72' stamp='0.240'/>
+</task>
+<task compile_id='99' method='java.lang.module.Resolver computeIfAbsent (Ljava/util/Map;Ljava/lang/String;Ljava/lang/module/Configuration;Ljava/lang/module/ModuleReference;)Ljava/lang/module/ResolvedModule;' bytes='42' count='312' iicount='312' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<klass id='1097' name='java.lang.module.ResolvedModule' flags='17'/>
+<klass id='1094' name='java.util.Map' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.Configuration' flags='17'/>
+<klass id='1096' name='java.lang.module.ModuleReference' flags='1025'/>
+<klass id='1093' name='java.lang.module.Resolver' flags='16'/>
+<method id='1098' holder='1093' name='computeIfAbsent' return='1097' arguments='1094 983 1095 1096' flags='2' bytes='42' iicount='312'/>
+<parse method='1098'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='185' bci='2'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='1094' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='24'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1097' name='&lt;init&gt;' return='977' arguments='1095 1096' flags='0' bytes='27' iicount='77'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='4617'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.241'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1105' name='java.util.Objects' flags='17'/>
+<method id='1106' holder='1105' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='2198'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1108' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.241'/>
+</parse>
+<bc code='184' bci='17'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='8'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.241'/>
+</parse>
+<parse_done stamp='0.241'/>
+</parse>
+<bc code='185' bci='33'/>
+<method id='1110' holder='1094' name='put' return='982' arguments='982 982' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='406' nmethods='101' adapters='162' free_code_cache='248594688'/>
+<task_done success='1' nmsize='2232' count='312' inlined_bytes='56' stamp='0.242'/>
+</task>
+<task compile_id='106' method='java.util.HashMap$KeySet iterator ()Ljava/util/Iterator;' bytes='12' count='497' iicount='497' level='3' stamp='0.242'>
+<phase name='setup' stamp='0.242'>
+<phase_done name='setup' stamp='0.242'/>
+</phase>
+<phase name='buildIR' stamp='0.242'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.HashMap$KeySet' flags='16'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='17' bytes='12' iicount='502'/>
+<parse method='1095'  stamp='0.242'>
+<phase name='parse_hir' stamp='0.242'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.HashMap' flags='1'/>
+<klass id='1097' name='java.util.HashMap$KeyIterator' flags='16'/>
+<method id='1099' holder='1097' name='&lt;init&gt;' return='977' arguments='1098' flags='0' bytes='11' iicount='514'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='7'/>
+<klass id='1101' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' arguments='1098' flags='0' bytes='79' iicount='522'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.242'/>
+</phase>
+<parse_done stamp='0.242'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.242'>
+<phase_done name='optimize_blocks' stamp='0.242'/>
+</phase>
+<phase name='gvn' stamp='0.242'>
+<phase_done name='gvn' stamp='0.242'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.242'>
+<phase_done name='rangeCheckElimination' stamp='0.242'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.242'>
+<phase_done name='optimize_null_checks' stamp='0.242'/>
+</phase>
+<phase_done name='buildIR' stamp='0.242'/>
+</phase>
+<phase name='emit_lir' stamp='0.242'>
+<phase name='lirGeneration' stamp='0.242'>
+<phase_done name='lirGeneration' stamp='0.242'/>
+</phase>
+<phase name='linearScan' stamp='0.242'>
+<phase_done name='linearScan' stamp='0.242'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.242'/>
+</phase>
+<phase name='codeemit' stamp='0.242'>
+<phase_done name='codeemit' stamp='0.242'/>
+</phase>
+<phase name='codeinstall' stamp='0.242'>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='411' nmethods='106' adapters='162' free_code_cache='248586880'/>
+<task_done success='1' nmsize='712' count='656' inlined_bytes='11' stamp='0.242'/>
+</task>
+<task compile_id='111' method='java.lang.module.ResolvedModule reference ()Ljava/lang/module/ModuleReference;' bytes='5' count='154' iicount='154' level='1' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<klass id='1094' name='java.lang.module.ModuleReference' flags='1025'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1095' holder='1093' name='reference' return='1094' flags='1' bytes='5' iicount='154'/>
+<parse method='1095'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.243'/>
+</phase>
+<code_cache total_blobs='418' nmethods='111' adapters='162' free_code_cache='248582272'/>
+<task_done success='1' nmsize='272' count='156' stamp='0.243'/>
+</task>
+<task compile_id='116' method='java.util.concurrent.ConcurrentHashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='8' count='277' iicount='278' level='3' stamp='0.243'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='putIfAbsent' return='982' arguments='982 982' flags='1' bytes='8' iicount='293'/>
+<parse method='1094'  stamp='0.244'>
+<phase name='parse_hir' stamp='0.244'>
+<bc code='182' bci='4'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='putVal' return='982' arguments='982 982 969' flags='16' bytes='432' compile_id='59' compiler='c1' level='3' iicount='444'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='422' nmethods='115' adapters='162' free_code_cache='248575744'/>
+<task_done success='1' nmsize='520' count='577' stamp='0.244'/>
+</task>
+<task compile_id='118' method='java.lang.Math min (II)I' bytes='11' count='256' iicount='256' level='3' stamp='0.244'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='min' return='975' arguments='975 975' flags='9' bytes='11' iicount='257'/>
+<parse method='1094'  stamp='0.244'>
+<phase name='parse_hir' stamp='0.244'>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='425' nmethods='118' adapters='162' free_code_cache='248572288'/>
+<task_done success='1' nmsize='400' count='264' stamp='0.244'/>
+</task>
+<task compile_id='122' method='java.util.concurrent.ConcurrentHashMap setTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V' bytes='20' count='288' iicount='288' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<type id='977' name='void'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='setTabAt' return='977' arguments='1095 975 1094' flags='24' bytes='20' iicount='294'/>
+<parse method='1096'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<bc code='182' bci='16'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='putObjectRelease' return='977' arguments='982 976 982' flags='17' bytes='9' iicount='296'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='5'/>
+<method id='1102' holder='1051' name='putObjectVolatile' return='977' arguments='982 976 982' flags='257' bytes='0' compile_id='121' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.245'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='431' nmethods='122' adapters='162' free_code_cache='248568320'/>
+<task_done success='1' nmsize='656' count='294' inlined_bytes='9' stamp='0.245'/>
+</task>
+<task compile_id='129' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='259' iicount='259' level='3' stamp='0.247'>
+<phase name='setup' stamp='0.247'>
+<phase_done name='setup' stamp='0.247'/>
+</phase>
+<phase name='buildIR' stamp='0.247'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' iicount='259'/>
+<parse method='1093'  stamp='0.247'>
+<phase name='parse_hir' stamp='0.247'>
+<bc code='183' bci='24'/>
+<method id='1095' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' iicount='62'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1097' name='java.util.Arrays' flags='1'/>
+<method id='1098' holder='1097' name='copyOf' return='1085' arguments='1085 975' flags='9' bytes='19' iicount='179'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='11'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='118' compiler='c1' level='3' iicount='396'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.247'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1103' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.247'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.247'/>
+</phase>
+<parse_done stamp='0.247'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.247'>
+<phase_done name='optimize_blocks' stamp='0.247'/>
+</phase>
+<phase name='gvn' stamp='0.247'>
+<phase_done name='gvn' stamp='0.247'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.247'>
+<phase_done name='rangeCheckElimination' stamp='0.247'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.247'>
+<phase_done name='optimize_null_checks' stamp='0.247'/>
+</phase>
+<phase_done name='buildIR' stamp='0.247'/>
+</phase>
+<phase name='emit_lir' stamp='0.247'>
+<phase name='lirGeneration' stamp='0.247'>
+<phase_done name='lirGeneration' stamp='0.247'/>
+</phase>
+<phase name='linearScan' stamp='0.247'>
+<phase_done name='linearScan' stamp='0.248'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.248'/>
+</phase>
+<phase name='codeemit' stamp='0.248'>
+<phase_done name='codeemit' stamp='0.248'/>
+</phase>
+<phase name='codeinstall' stamp='0.248'>
+<phase_done name='codeinstall' stamp='0.248'/>
+</phase>
+<code_cache total_blobs='440' nmethods='129' adapters='162' free_code_cache='248558464'/>
+<task_done success='1' nmsize='1208' count='301' inlined_bytes='30' stamp='0.248'/>
+</task>
+<task compile_id='133' method='java.util.HashSet &lt;init&gt; ()V' bytes='16' count='257' iicount='257' level='3' stamp='0.248'>
+<phase name='setup' stamp='0.248'>
+<phase_done name='setup' stamp='0.248'/>
+</phase>
+<phase name='buildIR' stamp='0.248'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='16' iicount='263'/>
+<parse method='1094'  stamp='0.248'>
+<phase name='parse_hir' stamp='0.248'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractSet' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='937'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='1099' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='1040'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='6681'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='183' bci='9'/>
+<klass id='1104' name='java.util.HashMap' flags='1'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' flags='1' bytes='11' compile_id='130' compiler='c1' level='3' iicount='317'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<klass id='1107' name='java.util.AbstractMap' flags='1025'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='358'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.249'/>
+</phase>
+<phase name='codeinstall' stamp='0.249'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.249'/>
+</phase>
+<code_cache total_blobs='444' nmethods='133' adapters='162' free_code_cache='248553856'/>
+<task_done success='1' nmsize='1104' count='289' inlined_bytes='28' stamp='0.249'/>
+</task>
+<task compile_id='138' method='java.lang.module.ResolvedModule configuration ()Ljava/lang/module/Configuration;' bytes='5' count='160' iicount='160' level='1' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<klass id='1094' name='java.lang.module.Configuration' flags='17'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1095' holder='1093' name='configuration' return='1094' flags='1' bytes='5' iicount='161'/>
+<parse method='1095'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='450' nmethods='139' adapters='162' free_code_cache='248542208'/>
+<task_done success='1' nmsize='272' count='169' stamp='0.250'/>
+</task>
+<task compile_id='143' method='java.util.ImmutableCollections$SetN$1 &lt;init&gt; (Ljava/util/ImmutableCollections$SetN;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='15' iicount='256'/>
+<parse method='1095'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='7575'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.250'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='454' nmethods='143' adapters='162' free_code_cache='248537856'/>
+<task_done success='1' nmsize='560' count='262' inlined_bytes='1' stamp='0.250'/>
+</task>
+<task compile_id='146' method='java.util.HashMap isEmpty ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='isEmpty' return='969' flags='1' bytes='13' iicount='258'/>
+<parse method='1094'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='456' nmethods='145' adapters='162' free_code_cache='248535424'/>
+<task_done success='1' nmsize='432' count='281' stamp='0.251'/>
+</task>
+<task compile_id='149' method='java.util.ImmutableCollections$Set1 iterator ()Ljava/util/Iterator;' bytes='8' count='260' iicount='260' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='8' iicount='260'/>
+<parse method='1095'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='184' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1097' name='java.util.Collections' flags='1'/>
+<method id='1098' holder='1097' name='singletonIterator' return='1094' arguments='982' flags='8' bytes='9' iicount='267'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.util.Collections$1' flags='0'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='15' iicount='267'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='6'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='8220'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='464' nmethods='153' adapters='162' free_code_cache='248522752'/>
+<task_done success='1' nmsize='816' count='279' inlined_bytes='25' stamp='0.251'/>
+</task>
+<task compile_id='154' method='java.util.Collections$UnmodifiableCollection$1 next ()Ljava/lang/Object;' bytes='10' count='256' iicount='256' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$UnmodifiableCollection$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='10' iicount='256'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Iterator' flags='1537'/>
+<method id='1097' holder='1096' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.252'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.252'/>
+</phase>
+<phase name='codeemit' stamp='0.252'>
+<phase_done name='codeemit' stamp='0.252'/>
+</phase>
+<phase name='codeinstall' stamp='0.252'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='466' nmethods='155' adapters='162' free_code_cache='248520576'/>
+<task_done success='1' nmsize='552' count='257' stamp='0.252'/>
+</task>
+<task compile_id='157' method='java.lang.reflect.Field getName ()Ljava/lang/String;' bytes='5' count='270' iicount='270' level='1' stamp='0.252'>
+<phase name='setup' stamp='0.252'>
+<phase_done name='setup' stamp='0.252'/>
+</phase>
+<phase name='buildIR' stamp='0.252'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1021' name='java.lang.reflect.Field' flags='17'/>
+<method id='1093' holder='1021' name='getName' return='983' flags='1' bytes='5' iicount='270'/>
+<parse method='1093'  stamp='0.252'>
+<phase name='parse_hir' stamp='0.252'>
+<phase_done name='parse_hir' stamp='0.252'/>
+</phase>
+<parse_done stamp='0.252'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.252'>
+<phase_done name='optimize_blocks' stamp='0.252'/>
+</phase>
+<phase name='gvn' stamp='0.252'>
+<phase_done name='gvn' stamp='0.252'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.252'>
+<phase_done name='rangeCheckElimination' stamp='0.252'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.252'>
+<phase_done name='optimize_null_checks' stamp='0.252'/>
+</phase>
+<phase_done name='buildIR' stamp='0.252'/>
+</phase>
+<phase name='emit_lir' stamp='0.252'>
+<phase name='lirGeneration' stamp='0.252'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.253'/>
+</phase>
+<code_cache total_blobs='468' nmethods='157' adapters='162' free_code_cache='248519040'/>
+<task_done success='1' nmsize='272' count='270' stamp='0.253'/>
+</task>
+<task compile_id='164' method='jdk.internal.module.ModuleBootstrap$2 next ()Ljava/lang/Object;' bytes='52' count='262' iicount='262' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='jdk.internal.module.ModuleBootstrap$2' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='52' iicount='276'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='185' bci='4'/>
+<type id='969' name='boolean'/>
+<klass id='1097' name='java.util.Iterator' flags='1537'/>
+<method id='1098' holder='1097' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='16'/>
+<method id='1099' holder='1097' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='26'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='38'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='48'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.255'/>
+</phase>
+<parse_done stamp='0.255'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.255'>
+<phase_done name='optimize_blocks' stamp='0.255'/>
+</phase>
+<phase name='gvn' stamp='0.255'>
+<phase_done name='gvn' stamp='0.255'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.255'>
+<phase_done name='rangeCheckElimination' stamp='0.255'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.255'>
+<phase_done name='optimize_null_checks' stamp='0.255'/>
+</phase>
+<phase_done name='buildIR' stamp='0.255'/>
+</phase>
+<phase name='emit_lir' stamp='0.255'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='478' nmethods='165' adapters='162' free_code_cache='248507008'/>
+<task_done success='1' nmsize='1384' count='465' stamp='0.255'/>
+</task>
+<task compile_id='170' method='java.lang.CharacterDataLatin1 toLowerCase (I)I' bytes='39' count='256' iicount='256' level='3' stamp='0.258'>
+<phase name='setup' stamp='0.258'>
+<phase_done name='setup' stamp='0.258'/>
+</phase>
+<phase name='buildIR' stamp='0.258'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='toLowerCase' return='975' arguments='975' flags='0' bytes='39' iicount='256'/>
+<parse method='1094'  stamp='0.258'>
+<phase name='parse_hir' stamp='0.258'>
+<bc code='182' bci='4'/>
+<method id='1096' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='124' compiler='c1' level='3' iicount='272'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.258'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.258'/>
+</phase>
+<parse_done stamp='0.258'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.258'>
+<phase_done name='optimize_blocks' stamp='0.258'/>
+</phase>
+<phase name='gvn' stamp='0.258'>
+<phase_done name='gvn' stamp='0.258'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.258'>
+<phase_done name='rangeCheckElimination' stamp='0.258'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.258'>
+<phase_done name='optimize_null_checks' stamp='0.258'/>
+</phase>
+<phase_done name='buildIR' stamp='0.258'/>
+</phase>
+<phase name='emit_lir' stamp='0.258'>
+<phase name='lirGeneration' stamp='0.258'>
+<phase_done name='lirGeneration' stamp='0.258'/>
+</phase>
+<phase name='linearScan' stamp='0.258'>
+<phase_done name='linearScan' stamp='0.258'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.258'/>
+</phase>
+<phase name='codeemit' stamp='0.258'>
+<phase_done name='codeemit' stamp='0.258'/>
+</phase>
+<phase name='codeinstall' stamp='0.258'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.258'/>
+</phase>
+<code_cache total_blobs='484' nmethods='170' adapters='163' free_code_cache='248500352'/>
+<task_done success='1' nmsize='656' count='256' inlined_bytes='11' stamp='0.258'/>
+</task>
+<task compile_id='174' method='java.lang.String &lt;init&gt; ([BB)V' bytes='15' count='285' iicount='285' level='3' stamp='0.283'>
+<phase name='setup' stamp='0.283'>
+<phase_done name='setup' stamp='0.283'/>
+</phase>
+<phase name='buildIR' stamp='0.283'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' iicount='285'/>
+<parse method='1093'  stamp='0.283'>
+<phase name='parse_hir' stamp='0.283'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='9918'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.284'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.284'/>
+</phase>
+<parse_done stamp='0.284'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.284'>
+<phase_done name='optimize_blocks' stamp='0.284'/>
+</phase>
+<phase name='gvn' stamp='0.284'>
+<phase_done name='gvn' stamp='0.284'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.284'>
+<phase_done name='rangeCheckElimination' stamp='0.284'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.284'>
+<phase_done name='optimize_null_checks' stamp='0.284'/>
+</phase>
+<phase_done name='buildIR' stamp='0.284'/>
+</phase>
+<phase name='emit_lir' stamp='0.284'>
+<phase name='lirGeneration' stamp='0.284'>
+<phase_done name='lirGeneration' stamp='0.284'/>
+</phase>
+<phase name='linearScan' stamp='0.284'>
+<phase_done name='linearScan' stamp='0.284'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.284'/>
+</phase>
+<phase name='codeemit' stamp='0.284'>
+<phase_done name='codeemit' stamp='0.284'/>
+</phase>
+<phase name='codeinstall' stamp='0.284'>
+<phase_done name='codeinstall' stamp='0.284'/>
+</phase>
+<code_cache total_blobs='521' nmethods='175' adapters='195' free_code_cache='248476416'/>
+<task_done success='1' nmsize='528' count='285' inlined_bytes='1' stamp='0.284'/>
+</task>
+<task compile_id='179' method='java.lang.AbstractStringBuilder getCoder ()B' bytes='15' count='256' iicount='256' level='3' stamp='0.309'>
+<phase name='setup' stamp='0.309'>
+<phase_done name='setup' stamp='0.309'/>
+</phase>
+<phase name='buildIR' stamp='0.309'>
+<type id='973' name='byte'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='getCoder' return='973' flags='16' bytes='15' iicount='256'/>
+<parse method='1093'  stamp='0.309'>
+<phase name='parse_hir' stamp='0.309'>
+<phase_done name='parse_hir' stamp='0.309'/>
+</phase>
+<parse_done stamp='0.309'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.309'>
+<phase_done name='optimize_blocks' stamp='0.309'/>
+</phase>
+<phase name='gvn' stamp='0.309'>
+<phase_done name='gvn' stamp='0.309'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.309'>
+<phase_done name='rangeCheckElimination' stamp='0.309'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.309'>
+<phase_done name='optimize_null_checks' stamp='0.309'/>
+</phase>
+<phase_done name='buildIR' stamp='0.309'/>
+</phase>
+<phase name='emit_lir' stamp='0.309'>
+<phase name='lirGeneration' stamp='0.309'>
+<phase_done name='lirGeneration' stamp='0.309'/>
+</phase>
+<phase name='linearScan' stamp='0.309'>
+<phase_done name='linearScan' stamp='0.309'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.309'/>
+</phase>
+<phase name='codeemit' stamp='0.309'>
+<phase_done name='codeemit' stamp='0.309'/>
+</phase>
+<phase name='codeinstall' stamp='0.309'>
+<phase_done name='codeinstall' stamp='0.309'/>
+</phase>
+<code_cache total_blobs='527' nmethods='178' adapters='198' free_code_cache='248471296'/>
+<task_done success='1' nmsize='368' count='259' stamp='0.309'/>
+</task>
+<task compile_id='182' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='281' iicount='281' level='3' stamp='0.317'>
+<phase name='setup' stamp='0.317'>
+<phase_done name='setup' stamp='0.317'/>
+</phase>
+<phase name='buildIR' stamp='0.317'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' iicount='281'/>
+<parse method='1093'  stamp='0.317'>
+<phase name='parse_hir' stamp='0.317'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' iicount='281'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.317'/>
+</phase>
+<parse_done stamp='0.317'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.317'>
+<phase_done name='optimize_blocks' stamp='0.317'/>
+</phase>
+<phase name='gvn' stamp='0.317'>
+<phase_done name='gvn' stamp='0.317'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.317'>
+<phase_done name='rangeCheckElimination' stamp='0.317'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.317'>
+<phase_done name='optimize_null_checks' stamp='0.317'/>
+</phase>
+<phase_done name='buildIR' stamp='0.317'/>
+</phase>
+<phase name='emit_lir' stamp='0.317'>
+<phase name='lirGeneration' stamp='0.317'>
+<phase_done name='lirGeneration' stamp='0.317'/>
+</phase>
+<phase name='linearScan' stamp='0.317'>
+<phase_done name='linearScan' stamp='0.317'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.317'/>
+</phase>
+<phase name='codeemit' stamp='0.317'>
+<phase_done name='codeemit' stamp='0.317'/>
+</phase>
+<phase name='codeinstall' stamp='0.317'>
+<phase_done name='codeinstall' stamp='0.317'/>
+</phase>
+<code_cache total_blobs='531' nmethods='182' adapters='198' free_code_cache='248464384'/>
+<task_done success='1' nmsize='392' count='281' stamp='0.317'/>
+</task>
+<task compile_id='187' method='java.lang.Enum ordinal ()I' bytes='5' count='133' iicount='133' level='1' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Enum' flags='1025'/>
+<method id='1094' holder='1093' name='ordinal' return='975' flags='17' bytes='5' iicount='133'/>
+<parse method='1094'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='558' nmethods='187' adapters='220' free_code_cache='248439040'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.323'/>
+</task>
+<task compile_id='190' method='java.lang.AbstractStringBuilder isLatin1 ()Z' bytes='19' count='277' iicount='277' level='3' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='969' name='boolean'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' iicount='277'/>
+<parse method='1093'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='561' nmethods='190' adapters='220' free_code_cache='248436096'/>
+<task_done success='1' nmsize='464' count='277' stamp='0.324'/>
+</task>
+<task compile_id='198' method='java.lang.StringLatin1 newString ([BII)Ljava/lang/String;' bytes='17' count='283' iicount='283' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' iicount='284'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='184' bci='9'/>
+<klass id='1096' name='java.util.Arrays' flags='1'/>
+<method id='1097' holder='1096' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='186' compiler='c1' level='3' iicount='301'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1099' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='174' compiler='c1' level='3' iicount='448'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='10344'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.328'/>
+</phase>
+<parse_done stamp='0.328'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.328'>
+<phase_done name='optimize_blocks' stamp='0.328'/>
+</phase>
+<phase name='gvn' stamp='0.328'>
+<phase_done name='gvn' stamp='0.328'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.328'>
+<phase_done name='rangeCheckElimination' stamp='0.328'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.328'>
+<phase_done name='optimize_null_checks' stamp='0.328'/>
+</phase>
+<phase_done name='buildIR' stamp='0.328'/>
+</phase>
+<phase name='emit_lir' stamp='0.328'>
+<phase name='lirGeneration' stamp='0.328'>
+<phase_done name='lirGeneration' stamp='0.328'/>
+</phase>
+<phase name='linearScan' stamp='0.328'>
+<phase_done name='linearScan' stamp='0.328'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.328'/>
+</phase>
+<phase name='codeemit' stamp='0.328'>
+<phase_done name='codeemit' stamp='0.328'/>
+</phase>
+<phase name='codeinstall' stamp='0.328'>
+<phase_done name='codeinstall' stamp='0.328'/>
+</phase>
+<code_cache total_blobs='576' nmethods='201' adapters='224' free_code_cache='248422016'/>
+<task_done success='1' nmsize='776' count='287' inlined_bytes='16' stamp='0.328'/>
+</task>
+<task compile_id='202' method='java.lang.invoke.MethodType returnType ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.328'>
+<phase name='setup' stamp='0.329'>
+<phase_done name='setup' stamp='0.329'/>
+</phase>
+<phase name='buildIR' stamp='0.329'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='returnType' return='984' flags='1' bytes='5' iicount='128'/>
+<parse method='1093'  stamp='0.329'>
+<phase name='parse_hir' stamp='0.329'>
+<phase_done name='parse_hir' stamp='0.329'/>
+</phase>
+<parse_done stamp='0.329'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.329'>
+<phase_done name='optimize_blocks' stamp='0.329'/>
+</phase>
+<phase name='gvn' stamp='0.329'>
+<phase_done name='gvn' stamp='0.329'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.329'>
+<phase_done name='rangeCheckElimination' stamp='0.329'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.329'>
+<phase_done name='optimize_null_checks' stamp='0.329'/>
+</phase>
+<phase_done name='buildIR' stamp='0.329'/>
+</phase>
+<phase name='emit_lir' stamp='0.329'>
+<phase name='lirGeneration' stamp='0.329'>
+<phase_done name='lirGeneration' stamp='0.329'/>
+</phase>
+<phase name='linearScan' stamp='0.329'>
+<phase_done name='linearScan' stamp='0.329'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.329'/>
+</phase>
+<phase name='codeemit' stamp='0.329'>
+<phase_done name='codeemit' stamp='0.329'/>
+</phase>
+<phase name='codeinstall' stamp='0.329'>
+<phase_done name='codeinstall' stamp='0.329'/>
+</phase>
+<code_cache total_blobs='577' nmethods='202' adapters='224' free_code_cache='248421248'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.329'/>
+</task>
+<task compile_id='210' method='java.lang.invoke.MemberName testFlags (II)Z' bytes='16' count='256' iicount='256' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' iicount='258'/>
+<parse method='1093'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='593' nmethods='210' adapters='232' free_code_cache='248405632'/>
+<task_done success='1' nmsize='432' count='269' stamp='0.334'/>
+</task>
+<task compile_id='217' method='java.lang.invoke.MethodType hashCode ()I' bytes='53' count='259' backedge_count='833' iicount='259' level='3' stamp='0.336'>
+<phase name='setup' stamp='0.336'>
+<phase_done name='setup' stamp='0.336'/>
+</phase>
+<phase name='buildIR' stamp='0.336'>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='hashCode' return='975' flags='1' bytes='53' iicount='259'/>
+<parse method='1093'  stamp='0.336'>
+<phase name='parse_hir' stamp='0.336'>
+<bc code='182' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='40'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.336'/>
+</phase>
+<parse_done stamp='0.336'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.336'>
+<phase_done name='optimize_blocks' stamp='0.336'/>
+</phase>
+<phase name='gvn' stamp='0.336'>
+<phase_done name='gvn' stamp='0.336'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.336'>
+<phase_done name='rangeCheckElimination' stamp='0.336'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.336'>
+<phase_done name='optimize_null_checks' stamp='0.336'/>
+</phase>
+<phase_done name='buildIR' stamp='0.336'/>
+</phase>
+<phase name='emit_lir' stamp='0.336'>
+<phase name='lirGeneration' stamp='0.336'>
+<phase_done name='lirGeneration' stamp='0.336'/>
+</phase>
+<phase name='linearScan' stamp='0.336'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='602' nmethods='217' adapters='232' free_code_cache='248397824'/>
+<task_done success='1' nmsize='952' count='265' backedge_count='849' stamp='0.337'/>
+</task>
+<task compile_id='220' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='257' iicount='257' level='3' stamp='0.337'>
+<phase name='setup' stamp='0.337'>
+<phase_done name='setup' stamp='0.337'/>
+</phase>
+<phase name='buildIR' stamp='0.337'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<type id='970' name='char'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' iicount='258'/>
+<parse method='1093'  stamp='0.337'>
+<phase name='parse_hir' stamp='0.337'>
+<bc code='183' bci='7'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='129' compiler='c1' level='3' iicount='709'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='11'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='190' compiler='c1' level='3' iicount='527'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='184' bci='18'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='49' compiler='c1' level='3' iicount='2001'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='46'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='183' bci='53'/>
+<method id='1103' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='72'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1105' name='java.lang.StringUTF16' flags='16'/>
+<method id='1106' holder='1105' name='putCharSB' return='977' arguments='1085 975 975' flags='9' bytes='12' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='2'/>
+<method id='1108' holder='1105' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='2'/>
+<method id='1110' holder='1105' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='184' bci='5'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1112' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1112' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='184' bci='8'/>
+<method id='1114' holder='1105' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.337'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='607' nmethods='222' adapters='232' free_code_cache='248388736'/>
+<task_done success='1' nmsize='2024' count='279' inlined_bytes='77' stamp='0.337'/>
+</task>
+<task compile_id='229' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='105' backedge_count='3096' iicount='105' level='3' stamp='0.341'>
+<phase name='setup' stamp='0.341'>
+<phase_done name='setup' stamp='0.341'/>
+</phase>
+<phase name='buildIR' stamp='0.341'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='replace' return='983' arguments='1085 970 970' flags='9' bytes='196' iicount='105'/>
+<parse method='1094'  stamp='0.341'>
+<phase name='parse_hir' stamp='0.341'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='49' compiler='c1' level='3' iicount='2289'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='184' bci='41'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='183' bci='121'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1098' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='174' compiler='c1' level='3' iicount='740'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='10887'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='184' bci='126'/>
+<klass id='1102' name='java.lang.StringUTF16' flags='16'/>
+<method id='1103' holder='1102' name='newBytesFor' return='1085' arguments='975' flags='9' bytes='61' iicount='1'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='138'/>
+<method id='1105' holder='1093' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='10' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='6'/>
+<method id='1107' holder='1102' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='42' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='184' bci='174'/>
+<method id='1109' holder='1102' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='190'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.342'/>
+</parse>
+<parse_done stamp='0.342'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.342'/>
+</phase>
+<parse_done stamp='0.342'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.342'>
+<phase_done name='optimize_blocks' stamp='0.342'/>
+</phase>
+<phase name='gvn' stamp='0.342'>
+<phase_done name='gvn' stamp='0.342'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.342'>
+<phase_done name='rangeCheckElimination' stamp='0.342'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.342'>
+<phase_done name='optimize_null_checks' stamp='0.342'/>
+</phase>
+<phase_done name='buildIR' stamp='0.342'/>
+</phase>
+<phase name='emit_lir' stamp='0.342'>
+<phase name='lirGeneration' stamp='0.342'>
+<phase_done name='lirGeneration' stamp='0.342'/>
+</phase>
+<phase name='linearScan' stamp='0.342'>
+<phase_done name='linearScan' stamp='0.342'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.342'/>
+</phase>
+<phase name='codeemit' stamp='0.342'>
+<phase_done name='codeemit' stamp='0.342'/>
+</phase>
+<phase name='codeinstall' stamp='0.342'>
+<phase_done name='codeinstall' stamp='0.342'/>
+</phase>
+<code_cache total_blobs='617' nmethods='230' adapters='234' free_code_cache='248374272'/>
+<task_done success='1' nmsize='3160' count='105' backedge_count='3096' inlined_bytes='68' stamp='0.342'/>
+</task>
+</compilation_log>
+<compilation_log thread='23814'>
+<start_compile_thread name='C1 CompilerThread9' thread='23814' process='23756' stamp='0.179'/>
+<task compile_id='2' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='111' backedge_count='2080' iicount='111' level='3' stamp='0.182'>
+<phase name='setup' stamp='0.182'>
+<phase_done name='setup' stamp='0.182'/>
+</phase>
+<phase name='buildIR' stamp='0.182'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' iicount='113'/>
+<parse method='1094'  stamp='0.182'>
+<phase name='parse_hir' stamp='0.182'>
+<phase_done name='parse_hir' stamp='0.182'/>
+</phase>
+<parse_done stamp='0.182'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.182'>
+<phase_done name='optimize_blocks' stamp='0.182'/>
+</phase>
+<phase name='gvn' stamp='0.182'>
+<phase_done name='gvn' stamp='0.182'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.183'>
+<phase_done name='rangeCheckElimination' stamp='0.183'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.183'>
+<phase_done name='optimize_null_checks' stamp='0.183'/>
+</phase>
+<phase_done name='buildIR' stamp='0.183'/>
+</phase>
+<phase name='emit_lir' stamp='0.183'>
+<phase name='lirGeneration' stamp='0.183'>
+<phase_done name='lirGeneration' stamp='0.184'/>
+</phase>
+<phase name='linearScan' stamp='0.184'>
+<phase_done name='linearScan' stamp='0.184'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.184'/>
+</phase>
+<phase name='codeemit' stamp='0.184'>
+<phase_done name='codeemit' stamp='0.184'/>
+</phase>
+<phase name='codeinstall' stamp='0.184'>
+<phase_done name='codeinstall' stamp='0.184'/>
+</phase>
+<code_cache total_blobs='228' nmethods='2' adapters='131' free_code_cache='248790528'/>
+<task_done success='1' nmsize='528' count='115' backedge_count='2260' stamp='0.184'/>
+</task>
+<task compile_id='6' method='java.lang.String charAt (I)C' bytes='25' count='533' iicount='534' level='3' stamp='0.195'>
+<phase name='setup' stamp='0.195'>
+<phase_done name='setup' stamp='0.195'/>
+</phase>
+<phase name='buildIR' stamp='0.195'>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' iicount='562'/>
+<parse method='1093'  stamp='0.195'>
+<phase name='parse_hir' stamp='0.195'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='1046'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.195'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' iicount='622'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.195'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='184' bci='2'/>
+<method id='1106' holder='1103' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='2'/>
+<method id='1108' holder='1103' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.195'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1110' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.196'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1112' holder='1103' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='1' compiler='c1' level='3' iicount='512'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.196'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.196'/>
+</phase>
+<parse_done stamp='0.196'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.196'>
+<phase_done name='optimize_blocks' stamp='0.196'/>
+</phase>
+<phase name='gvn' stamp='0.196'>
+<phase_done name='gvn' stamp='0.196'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.196'>
+<phase_done name='rangeCheckElimination' stamp='0.196'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.196'>
+<phase_done name='optimize_null_checks' stamp='0.196'/>
+</phase>
+<phase_done name='buildIR' stamp='0.196'/>
+</phase>
+<phase name='emit_lir' stamp='0.196'>
+<phase name='lirGeneration' stamp='0.196'>
+<phase_done name='lirGeneration' stamp='0.196'/>
+</phase>
+<phase name='linearScan' stamp='0.196'>
+<phase_done name='linearScan' stamp='0.196'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.196'/>
+</phase>
+<phase name='codeemit' stamp='0.196'>
+<phase_done name='codeemit' stamp='0.196'/>
+</phase>
+<phase name='codeinstall' stamp='0.196'>
+<phase_done name='codeinstall' stamp='0.196'/>
+</phase>
+<code_cache total_blobs='300' nmethods='7' adapters='153' free_code_cache='248766464'/>
+<task_done success='1' nmsize='1400' count='660' inlined_bytes='72' stamp='0.196'/>
+</task>
+<task compile_id='11' method='java.lang.Math floorMod (II)I' bytes='10' count='303' iicount='303' level='3' stamp='0.208'>
+<phase name='setup' stamp='0.208'>
+<phase_done name='setup' stamp='0.208'/>
+</phase>
+<phase name='buildIR' stamp='0.208'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='floorMod' return='975' arguments='975 975' flags='9' bytes='10' iicount='306'/>
+<parse method='1094'  stamp='0.208'>
+<phase name='parse_hir' stamp='0.208'>
+<bc code='184' bci='3'/>
+<method id='1096' holder='1093' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' iicount='317'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.208'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.208'/>
+</phase>
+<parse_done stamp='0.208'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.208'>
+<phase_done name='optimize_blocks' stamp='0.208'/>
+</phase>
+<phase name='gvn' stamp='0.208'>
+<phase_done name='gvn' stamp='0.208'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.208'>
+<phase_done name='rangeCheckElimination' stamp='0.208'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.208'>
+<phase_done name='optimize_null_checks' stamp='0.208'/>
+</phase>
+<phase_done name='buildIR' stamp='0.208'/>
+</phase>
+<phase name='emit_lir' stamp='0.208'>
+<phase name='lirGeneration' stamp='0.208'>
+<phase_done name='lirGeneration' stamp='0.208'/>
+</phase>
+<phase name='linearScan' stamp='0.208'>
+<phase_done name='linearScan' stamp='0.208'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.208'/>
+</phase>
+<phase name='codeemit' stamp='0.208'>
+<phase_done name='codeemit' stamp='0.208'/>
+</phase>
+<phase name='codeinstall' stamp='0.208'>
+<phase_done name='codeinstall' stamp='0.208'/>
+</phase>
+<code_cache total_blobs='309' nmethods='11' adapters='158' free_code_cache='248756736'/>
+<task_done success='1' nmsize='560' count='317' inlined_bytes='22' stamp='0.208'/>
+</task>
+<task compile_id='18' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='273' iicount='273' level='3' stamp='0.212'>
+<phase name='setup' stamp='0.212'>
+<phase_done name='setup' stamp='0.212'/>
+</phase>
+<phase name='buildIR' stamp='0.212'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1095' flags='4096' bytes='10' iicount='290'/>
+<parse method='1096'  stamp='0.212'>
+<phase name='parse_hir' stamp='0.212'>
+<bc code='183' bci='6'/>
+<method id='1098' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' iicount='290'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1376'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.212'/>
+</parse>
+<parse_done stamp='0.212'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.212'/>
+</phase>
+<parse_done stamp='0.212'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.212'>
+<phase_done name='optimize_blocks' stamp='0.212'/>
+</phase>
+<phase name='gvn' stamp='0.212'>
+<phase_done name='gvn' stamp='0.212'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.212'>
+<phase_done name='rangeCheckElimination' stamp='0.212'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.212'>
+<phase_done name='optimize_null_checks' stamp='0.212'/>
+</phase>
+<phase_done name='buildIR' stamp='0.212'/>
+</phase>
+<phase name='emit_lir' stamp='0.212'>
+<phase name='lirGeneration' stamp='0.212'>
+<phase_done name='lirGeneration' stamp='0.212'/>
+</phase>
+<phase name='linearScan' stamp='0.212'>
+<phase_done name='linearScan' stamp='0.212'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.213'/>
+</phase>
+<phase name='codeemit' stamp='0.213'>
+<phase_done name='codeemit' stamp='0.213'/>
+</phase>
+<phase name='codeinstall' stamp='0.213'>
+<phase_done name='codeinstall' stamp='0.213'/>
+</phase>
+<code_cache total_blobs='318' nmethods='19' adapters='158' free_code_cache='248744192'/>
+<task_done success='1' nmsize='848' count='331' inlined_bytes='21' stamp='0.213'/>
+</task>
+<task compile_id='23' method='java.util.AbstractCollection &lt;init&gt; ()V' bytes='5' count='267' iicount='267' level='3' stamp='0.213'>
+<phase name='setup' stamp='0.213'>
+<phase_done name='setup' stamp='0.213'/>
+</phase>
+<phase name='buildIR' stamp='0.213'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='270'/>
+<parse method='1094'  stamp='0.213'>
+<phase name='parse_hir' stamp='0.213'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1642'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.214'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.214'/>
+</phase>
+<parse_done stamp='0.214'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.214'>
+<phase_done name='optimize_blocks' stamp='0.214'/>
+</phase>
+<phase name='gvn' stamp='0.214'>
+<phase_done name='gvn' stamp='0.214'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.214'>
+<phase_done name='rangeCheckElimination' stamp='0.214'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.214'>
+<phase_done name='optimize_null_checks' stamp='0.214'/>
+</phase>
+<phase_done name='buildIR' stamp='0.214'/>
+</phase>
+<phase name='emit_lir' stamp='0.214'>
+<phase name='lirGeneration' stamp='0.214'>
+<phase_done name='lirGeneration' stamp='0.214'/>
+</phase>
+<phase name='linearScan' stamp='0.214'>
+<phase_done name='linearScan' stamp='0.214'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.214'/>
+</phase>
+<phase name='codeemit' stamp='0.214'>
+<phase_done name='codeemit' stamp='0.214'/>
+</phase>
+<phase name='codeinstall' stamp='0.214'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.214'/>
+</phase>
+<code_cache total_blobs='321' nmethods='22' adapters='158' free_code_cache='248740224'/>
+<task_done success='1' nmsize='432' count='297' inlined_bytes='1' stamp='0.214'/>
+</task>
+<task compile_id='29' method='java.util.Collections$EmptySet contains (Ljava/lang/Object;)Z' bytes='2' count='128' iicount='128' level='1' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$EmptySet' flags='10'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='982' flags='1' bytes='2' iicount='128'/>
+<parse method='1094'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<phase_done name='parse_hir' stamp='0.215'/>
+</phase>
+<parse_done stamp='0.215'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.215'>
+<phase_done name='optimize_blocks' stamp='0.215'/>
+</phase>
+<phase name='gvn' stamp='0.215'>
+<phase_done name='gvn' stamp='0.215'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.215'>
+<phase_done name='rangeCheckElimination' stamp='0.215'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.215'>
+<phase_done name='optimize_null_checks' stamp='0.215'/>
+</phase>
+<phase_done name='buildIR' stamp='0.215'/>
+</phase>
+<phase name='emit_lir' stamp='0.215'>
+<phase name='lirGeneration' stamp='0.215'>
+<phase_done name='lirGeneration' stamp='0.215'/>
+</phase>
+<phase name='linearScan' stamp='0.215'>
+<phase_done name='linearScan' stamp='0.215'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.215'/>
+</phase>
+<phase name='codeemit' stamp='0.215'>
+<phase_done name='codeemit' stamp='0.215'/>
+</phase>
+<phase name='codeinstall' stamp='0.215'>
+<phase_done name='codeinstall' stamp='0.215'/>
+</phase>
+<code_cache total_blobs='325' nmethods='26' adapters='158' free_code_cache='248735104'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.215'/>
+</task>
+<task compile_id='31' method='java.lang.module.ModuleDescriptor$Exports equals (Ljava/lang/Object;)Z' bytes='62' count='264' iicount='264' level='3' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982' flags='1' bytes='62' iicount='264'/>
+<parse method='1094'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<bc code='184' bci='22'/>
+<klass id='1097' name='java.util.Objects' flags='17'/>
+<method id='1098' holder='1097' name='equals' return='969' arguments='982 982' flags='9' bytes='23' compile_id='15' compiler='c1' level='3' iicount='546'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<method id='1100' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='184' bci='36'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='184' bci='50'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.216'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.216'/>
+</phase>
+<parse_done stamp='0.216'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.216'>
+<phase_done name='optimize_blocks' stamp='0.216'/>
+</phase>
+<phase name='gvn' stamp='0.216'>
+<phase_done name='gvn' stamp='0.216'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.216'>
+<phase_done name='rangeCheckElimination' stamp='0.216'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.216'>
+<phase_done name='optimize_null_checks' stamp='0.216'/>
+</phase>
+<phase_done name='buildIR' stamp='0.216'/>
+</phase>
+<phase name='emit_lir' stamp='0.216'>
+<phase name='lirGeneration' stamp='0.216'>
+<phase_done name='lirGeneration' stamp='0.216'/>
+</phase>
+<phase name='linearScan' stamp='0.216'>
+<phase_done name='linearScan' stamp='0.216'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.216'/>
+</phase>
+<phase name='codeemit' stamp='0.216'>
+<phase_done name='codeemit' stamp='0.216'/>
+</phase>
+<phase name='codeinstall' stamp='0.216'>
+<phase_done name='codeinstall' stamp='0.216'/>
+</phase>
+<code_cache total_blobs='334' nmethods='33' adapters='158' free_code_cache='248720128'/>
+<task_done success='1' nmsize='2504' count='296' inlined_bytes='69' stamp='0.216'/>
+</task>
+<task compile_id='35' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='7' count='256' iicount='256' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newRequires' return='1095' arguments='1094 983' flags='9' bytes='7' iicount='256'/>
+<parse method='1096'  stamp='0.217'>
+<phase name='parse_hir' stamp='0.217'>
+<bc code='184' bci='3'/>
+<method id='1098' holder='1093' name='newRequires' return='1095' arguments='1094 983 983' flags='9' bytes='51' iicount='256'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.217'/>
+</phase>
+<parse_done stamp='0.217'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.217'>
+<phase_done name='optimize_blocks' stamp='0.217'/>
+</phase>
+<phase name='gvn' stamp='0.217'>
+<phase_done name='gvn' stamp='0.217'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.217'>
+<phase_done name='rangeCheckElimination' stamp='0.217'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.217'>
+<phase_done name='optimize_null_checks' stamp='0.217'/>
+</phase>
+<phase_done name='buildIR' stamp='0.217'/>
+</phase>
+<phase name='emit_lir' stamp='0.217'>
+<phase name='lirGeneration' stamp='0.217'>
+<phase_done name='lirGeneration' stamp='0.217'/>
+</phase>
+<phase name='linearScan' stamp='0.217'>
+<phase_done name='linearScan' stamp='0.217'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.217'/>
+</phase>
+<phase name='codeemit' stamp='0.217'>
+<phase_done name='codeemit' stamp='0.217'/>
+</phase>
+<phase name='codeinstall' stamp='0.217'>
+<phase_done name='codeinstall' stamp='0.217'/>
+</phase>
+<code_cache total_blobs='335' nmethods='34' adapters='158' free_code_cache='248719104'/>
+<task_done success='1' nmsize='360' count='262' stamp='0.217'/>
+</task>
+<task compile_id='38' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='262' iicount='262' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<type id='969' name='boolean'/>
+<klass id='1096' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1097' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969 1096' flags='4096' bytes='10' iicount='267'/>
+<parse method='1097'  stamp='0.217'>
+<phase name='parse_hir' stamp='0.217'>
+<bc code='183' bci='6'/>
+<method id='1099' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969' flags='2' bytes='25' iicount='284'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2528'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.217'/>
+</parse>
+<parse_done stamp='0.217'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.217'/>
+</phase>
+<parse_done stamp='0.217'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.217'>
+<phase_done name='optimize_blocks' stamp='0.217'/>
+</phase>
+<phase name='gvn' stamp='0.217'>
+<phase_done name='gvn' stamp='0.217'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.217'>
+<phase_done name='rangeCheckElimination' stamp='0.217'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.217'>
+<phase_done name='optimize_null_checks' stamp='0.217'/>
+</phase>
+<phase_done name='buildIR' stamp='0.217'/>
+</phase>
+<phase name='emit_lir' stamp='0.217'>
+<phase name='lirGeneration' stamp='0.217'>
+<phase_done name='lirGeneration' stamp='0.217'/>
+</phase>
+<phase name='linearScan' stamp='0.217'>
+<phase_done name='linearScan' stamp='0.217'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.217'/>
+</phase>
+<phase name='codeemit' stamp='0.217'>
+<phase_done name='codeemit' stamp='0.217'/>
+</phase>
+<phase name='codeinstall' stamp='0.217'>
+<phase_done name='codeinstall' stamp='0.217'/>
+</phase>
+<code_cache total_blobs='336' nmethods='35' adapters='158' free_code_cache='248717440'/>
+<task_done success='1' nmsize='880' count='347' inlined_bytes='26' stamp='0.217'/>
+</task>
+<task compile_id='39' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;Z)V' bytes='25' count='349' iicount='349' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969' flags='2' bytes='25' iicount='349'/>
+<parse method='1096'  stamp='0.217'>
+<phase name='parse_hir' stamp='0.217'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2678'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.217'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.217'/>
+</phase>
+<parse_done stamp='0.217'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.217'>
+<phase_done name='optimize_blocks' stamp='0.218'/>
+</phase>
+<phase name='gvn' stamp='0.218'>
+<phase_done name='gvn' stamp='0.218'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.218'>
+<phase_done name='rangeCheckElimination' stamp='0.218'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.218'>
+<phase_done name='optimize_null_checks' stamp='0.218'/>
+</phase>
+<phase_done name='buildIR' stamp='0.218'/>
+</phase>
+<phase name='emit_lir' stamp='0.218'>
+<phase name='lirGeneration' stamp='0.218'>
+<phase_done name='lirGeneration' stamp='0.218'/>
+</phase>
+<phase name='linearScan' stamp='0.218'>
+<phase_done name='linearScan' stamp='0.218'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.218'/>
+</phase>
+<phase name='codeemit' stamp='0.218'>
+<phase_done name='codeemit' stamp='0.218'/>
+</phase>
+<phase name='codeinstall' stamp='0.218'>
+<phase_done name='codeinstall' stamp='0.218'/>
+</phase>
+<code_cache total_blobs='339' nmethods='38' adapters='158' free_code_cache='248707328'/>
+<task_done success='1' nmsize='784' count='349' inlined_bytes='1' stamp='0.218'/>
+</task>
+<task compile_id='43' method='java.nio.DirectLongBufferU ix (I)J' bytes='10' count='278' iicount='278' level='3' stamp='0.221'>
+<phase name='setup' stamp='0.221'>
+<phase_done name='setup' stamp='0.221'/>
+</phase>
+<phase name='buildIR' stamp='0.221'>
+<type id='976' name='long'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.DirectLongBufferU' flags='0'/>
+<method id='1094' holder='1093' name='ix' return='976' arguments='975' flags='2' bytes='10' iicount='283'/>
+<parse method='1094'  stamp='0.221'>
+<phase name='parse_hir' stamp='0.221'>
+<phase_done name='parse_hir' stamp='0.221'/>
+</phase>
+<parse_done stamp='0.221'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.221'>
+<phase_done name='optimize_blocks' stamp='0.221'/>
+</phase>
+<phase name='gvn' stamp='0.221'>
+<phase_done name='gvn' stamp='0.221'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.221'>
+<phase_done name='rangeCheckElimination' stamp='0.221'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.221'>
+<phase_done name='optimize_null_checks' stamp='0.221'/>
+</phase>
+<phase_done name='buildIR' stamp='0.221'/>
+</phase>
+<phase name='emit_lir' stamp='0.221'>
+<phase name='lirGeneration' stamp='0.221'>
+<phase_done name='lirGeneration' stamp='0.221'/>
+</phase>
+<phase name='linearScan' stamp='0.221'>
+<phase_done name='linearScan' stamp='0.221'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.221'/>
+</phase>
+<phase name='codeemit' stamp='0.221'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='343' nmethods='42' adapters='158' free_code_cache='248699904'/>
+<task_done success='1' nmsize='368' count='356' stamp='0.221'/>
+</task>
+<task compile_id='47' method='java.net.URI hash (ILjava/lang/String;)I' bytes='33' count='332' iicount='332' level='3' stamp='0.222'>
+<phase name='setup' stamp='0.222'>
+<phase_done name='setup' stamp='0.222'/>
+</phase>
+<phase name='buildIR' stamp='0.222'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.net.URI' flags='17'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='975 983' flags='10' bytes='33' iicount='340'/>
+<parse method='1094'  stamp='0.222'>
+<phase name='parse_hir' stamp='0.222'>
+<bc code='182' bci='9'/>
+<method id='1096' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' iicount='117'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='3'/>
+<method id='1098' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='127'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='5340'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.222'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1103' name='java.lang.StringLatin1' flags='16'/>
+<method id='1104' holder='1103' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='127'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1106' name='java.lang.StringUTF16' flags='16'/>
+<method id='1107' holder='1106' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.222'/>
+</parse>
+<parse_done stamp='0.222'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1109' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='4478'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='29'/>
+<method id='1111' holder='1093' name='normalizedHash' return='975' arguments='975 983' flags='10' bytes='84' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.222'/>
+</phase>
+<parse_done stamp='0.222'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.222'>
+<phase_done name='optimize_blocks' stamp='0.222'/>
+</phase>
+<phase name='gvn' stamp='0.222'>
+<phase_done name='gvn' stamp='0.222'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.222'>
+<phase_done name='rangeCheckElimination' stamp='0.222'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.222'>
+<phase_done name='optimize_null_checks' stamp='0.222'/>
+</phase>
+<phase_done name='buildIR' stamp='0.222'/>
+</phase>
+<phase name='emit_lir' stamp='0.222'>
+<phase name='lirGeneration' stamp='0.222'>
+<phase_done name='lirGeneration' stamp='0.222'/>
+</phase>
+<phase name='linearScan' stamp='0.222'>
+<phase_done name='linearScan' stamp='0.223'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.223'/>
+</phase>
+<phase name='codeemit' stamp='0.223'>
+<phase_done name='codeemit' stamp='0.223'/>
+</phase>
+<phase name='codeinstall' stamp='0.223'>
+<phase_done name='codeinstall' stamp='0.223'/>
+</phase>
+<code_cache total_blobs='349' nmethods='48' adapters='158' free_code_cache='248691968'/>
+<task_done success='1' nmsize='1592' count='396' inlined_bytes='55' stamp='0.223'/>
+</task>
+<task compile_id='52' method='jdk.internal.misc.Unsafe getObjectAcquire (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='7' count='640' iicount='640' level='3' stamp='0.230'>
+<phase name='setup' stamp='0.230'>
+<phase_done name='setup' stamp='0.230'/>
+</phase>
+<phase name='buildIR' stamp='0.230'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1093' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' iicount='640'/>
+<parse method='1093'  stamp='0.230'>
+<phase name='parse_hir' stamp='0.230'>
+<bc code='182' bci='3'/>
+<method id='1095' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='53' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<phase_done name='codeinstall' stamp='0.230'/>
+</phase>
+<code_cache total_blobs='357' nmethods='52' adapters='162' free_code_cache='248685312'/>
+<task_done success='1' nmsize='432' count='640' stamp='0.230'/>
+</task>
+<task compile_id='55' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='258' backedge_count='139' iicount='258' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='47' iicount='258'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='362' nmethods='57' adapters='162' free_code_cache='248679424'/>
+<task_done success='1' nmsize='656' count='321' backedge_count='160' stamp='0.231'/>
+</task>
+<task compile_id='63' method='java.util.ImmutableCollections$SetN size ()I' bytes='5' count='133' iicount='133' level='1' stamp='0.232'>
+<phase name='setup' stamp='0.232'>
+<phase_done name='setup' stamp='0.232'/>
+</phase>
+<phase name='buildIR' stamp='0.232'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='5' iicount='134'/>
+<parse method='1094'  stamp='0.232'>
+<phase name='parse_hir' stamp='0.232'>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.232'>
+<phase_done name='lirGeneration' stamp='0.233'/>
+</phase>
+<phase name='linearScan' stamp='0.233'>
+<phase_done name='linearScan' stamp='0.233'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.233'/>
+</phase>
+<phase name='codeemit' stamp='0.233'>
+<phase_done name='codeemit' stamp='0.233'/>
+</phase>
+<phase name='codeinstall' stamp='0.233'>
+<phase_done name='codeinstall' stamp='0.233'/>
+</phase>
+<code_cache total_blobs='366' nmethods='61' adapters='162' free_code_cache='248674944'/>
+<task_done success='1' nmsize='272' count='136' stamp='0.233'/>
+</task>
+<task compile_id='66' method='java.util.ImmutableCollections$MapN probe (Ljava/lang/Object;)I' bytes='64' count='286' backedge_count='136' iicount='287' level='3' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$MapN' flags='24'/>
+<method id='1094' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='64' iicount='291'/>
+<parse method='1094'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='15'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='floorMod' return='975' arguments='975 975' flags='9' bytes='10' compile_id='11' compiler='c1' level='3' iicount='3450'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='3'/>
+<method id='1103' holder='1100' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' compile_id='12' compiler='c1' level='3' iicount='3452'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.236'/>
+</parse>
+<parse_done stamp='0.236'/>
+</parse>
+<bc code='182' bci='39'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.236'/>
+</phase>
+<parse_done stamp='0.236'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.236'>
+<phase_done name='optimize_blocks' stamp='0.236'/>
+</phase>
+<phase name='gvn' stamp='0.236'>
+<phase_done name='gvn' stamp='0.236'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.236'>
+<phase_done name='rangeCheckElimination' stamp='0.236'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.236'>
+<phase_done name='optimize_null_checks' stamp='0.236'/>
+</phase>
+<phase_done name='buildIR' stamp='0.236'/>
+</phase>
+<phase name='emit_lir' stamp='0.236'>
+<phase name='lirGeneration' stamp='0.236'>
+<phase_done name='lirGeneration' stamp='0.236'/>
+</phase>
+<phase name='linearScan' stamp='0.236'>
+<phase_done name='linearScan' stamp='0.236'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.236'/>
+</phase>
+<phase name='codeemit' stamp='0.236'>
+<phase_done name='codeemit' stamp='0.236'/>
+</phase>
+<phase name='codeinstall' stamp='0.236'>
+<phase_done name='codeinstall' stamp='0.236'/>
+</phase>
+<code_cache total_blobs='373' nmethods='68' adapters='162' free_code_cache='248652032'/>
+<task_done success='1' nmsize='1528' count='371' backedge_count='154' inlined_bytes='32' stamp='0.236'/>
+</task>
+<task compile_id='72' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='256' backedge_count='38' iicount='256' level='3' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' iicount='256'/>
+<parse method='1094'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<bc code='182' bci='20'/>
+<klass id='1097' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1098' holder='1093' name='resize' return='1097' flags='16' bytes='356' iicount='23'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='56'/>
+<klass id='1096' name='java.util.HashMap$Node' flags='8'/>
+<method id='1100' holder='1093' name='newNode' return='1096' arguments='975 982 982 1096' flags='0' bytes='13' iicount='281'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='91'/>
+<method id='1101' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='123'/>
+<klass id='1102' name='java.util.HashMap$TreeNode' flags='24'/>
+<method id='1103' holder='1102' name='putTreeVal' return='1102' arguments='1093 1097 975 982 982' flags='16' bytes='314' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='152'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='169'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='treeifyBin' return='977' arguments='1097 975' flags='16' bytes='110' iicount='1'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='203'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='253'/>
+<method id='1106' holder='1093' name='afterNodeAccess' return='977' arguments='1096' flags='0' bytes='1' iicount='1'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='288'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='295'/>
+<method id='1107' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' iicount='378'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.238'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.238'/>
+</phase>
+<phase name='codeemit' stamp='0.238'>
+<phase_done name='codeemit' stamp='0.238'/>
+</phase>
+<phase name='codeinstall' stamp='0.238'>
+<phase_done name='codeinstall' stamp='0.238'/>
+</phase>
+<code_cache total_blobs='383' nmethods='78' adapters='162' free_code_cache='248631680'/>
+<task_done success='1' nmsize='5016' count='448' backedge_count='51' stamp='0.238'/>
+</task>
+<task compile_id='79' method='java.util.AbstractCollection isEmpty ()Z' bytes='13' count='260' iicount='261' level='3' stamp='0.238'>
+<phase name='setup' stamp='0.238'>
+<phase_done name='setup' stamp='0.238'/>
+</phase>
+<phase name='buildIR' stamp='0.238'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1094' holder='1093' name='isEmpty' return='969' flags='1' bytes='13' iicount='273'/>
+<parse method='1094'  stamp='0.238'>
+<phase name='parse_hir' stamp='0.238'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.238'/>
+</phase>
+<parse_done stamp='0.238'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.238'>
+<phase_done name='optimize_blocks' stamp='0.238'/>
+</phase>
+<phase name='gvn' stamp='0.238'>
+<phase_done name='gvn' stamp='0.238'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.238'>
+<phase_done name='rangeCheckElimination' stamp='0.238'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.238'>
+<phase_done name='optimize_null_checks' stamp='0.238'/>
+</phase>
+<phase_done name='buildIR' stamp='0.238'/>
+</phase>
+<phase name='emit_lir' stamp='0.238'>
+<phase name='lirGeneration' stamp='0.238'>
+<phase_done name='lirGeneration' stamp='0.238'/>
+</phase>
+<phase name='linearScan' stamp='0.238'>
+<phase_done name='linearScan' stamp='0.238'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.238'/>
+</phase>
+<phase name='codeemit' stamp='0.238'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='384' nmethods='79' adapters='162' free_code_cache='248630400'/>
+<task_done success='1' nmsize='616' count='291' stamp='0.239'/>
+</task>
+<task compile_id='83' method='java.util.Optional ofNullable (Ljava/lang/Object;)Ljava/util/Optional;' bytes='15' count='256' iicount='256' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1094' holder='1093' name='ofNullable' return='1093' arguments='982' flags='9' bytes='15' iicount='256'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='184' bci='4'/>
+<method id='1096' holder='1093' name='empty' return='1093' flags='9' bytes='6' iicount='1'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='184' bci='11'/>
+<method id='1100' holder='1093' name='of' return='1093' arguments='982' flags='9' bytes='9' iicount='259'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1102' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' iicount='260'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<method id='1104' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3880'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1106' name='java.util.Objects' flags='17'/>
+<method id='1107' holder='1106' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='1922'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1109' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.239'/>
+</parse>
+<parse_done stamp='0.239'/>
+</parse>
+<parse_done stamp='0.239'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='388' nmethods='83' adapters='162' free_code_cache='248624512'/>
+<task_done success='1' nmsize='1288' count='277' inlined_bytes='43' stamp='0.239'/>
+</task>
+<task compile_id='87' method='java.util.Optional orElse (Ljava/lang/Object;)Ljava/lang/Object;' bytes='16' count='274' iicount='274' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<method id='1094' holder='1093' name='orElse' return='982' arguments='982' flags='1' bytes='16' iicount='274'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='392' nmethods='87' adapters='162' free_code_cache='248619392'/>
+<task_done success='1' nmsize='432' count='274' stamp='0.240'/>
+</task>
+<task compile_id='94' method='java.util.HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node;' bytes='100' count='267' backedge_count='528' iicount='267' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<klass id='1093' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1095' holder='1093' name='nextNode' return='1094' flags='16' bytes='100' iicount='268'/>
+<parse method='1095'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='183' bci='23'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='35'/>
+<klass id='1100' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='395' nmethods='90' adapters='162' free_code_cache='248612864'/>
+<task_done success='1' nmsize='1432' count='298' backedge_count='566' stamp='0.240'/>
+</task>
+<task compile_id='96' method='java.lang.module.ResolvedModule hashCode ()I' bytes='16' count='388' iicount='388' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='16' iicount='388'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='182' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='11'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='399' nmethods='94' adapters='162' free_code_cache='248603776'/>
+<task_done success='1' nmsize='760' count='458' stamp='0.241'/>
+</task>
+<task compile_id='100' method='java.util.ImmutableCollections$Set1 contains (Ljava/lang/Object;)Z' bytes='9' count='274' iicount='274' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='982' flags='1' bytes='9' iicount='274'/>
+<parse method='1094'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='182' bci='5'/>
+<method id='1096' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='404' nmethods='99' adapters='162' free_code_cache='248599296'/>
+<task_done success='1' nmsize='552' count='274' stamp='0.241'/>
+</task>
+<task compile_id='104' method='java.util.HashSet iterator ()Ljava/util/Iterator;' bytes='13' count='297' iicount='297' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='13' iicount='325'/>
+<parse method='1095'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='182' bci='4'/>
+<klass id='1099' name='java.util.Set' flags='1537'/>
+<klass id='1097' name='java.util.HashMap' flags='1'/>
+<method id='1100' holder='1097' name='keySet' return='1099' flags='1' bytes='25' iicount='360'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='7'/>
+<method id='1101' holder='1099' name='iterator' return='1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='407' nmethods='102' adapters='162' free_code_cache='248593280'/>
+<task_done success='1' nmsize='728' count='498' stamp='0.242'/>
+</task>
+<task compile_id='107' method='java.util.HashMap$KeyIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='11' count='502' iicount='503' level='3' stamp='0.242'>
+<phase name='setup' stamp='0.242'>
+<phase_done name='setup' stamp='0.242'/>
+</phase>
+<phase name='buildIR' stamp='0.242'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.HashMap' flags='1'/>
+<klass id='1093' name='java.util.HashMap$KeyIterator' flags='16'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='11' iicount='511'/>
+<parse method='1095'  stamp='0.242'>
+<phase name='parse_hir' stamp='0.242'>
+<bc code='183' bci='7'/>
+<klass id='1097' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='79' iicount='518'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.242'/>
+</phase>
+<parse_done stamp='0.242'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.242'>
+<phase_done name='optimize_blocks' stamp='0.242'/>
+</phase>
+<phase name='gvn' stamp='0.242'>
+<phase_done name='gvn' stamp='0.242'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.242'>
+<phase_done name='rangeCheckElimination' stamp='0.242'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.242'>
+<phase_done name='optimize_null_checks' stamp='0.242'/>
+</phase>
+<phase_done name='buildIR' stamp='0.242'/>
+</phase>
+<phase name='emit_lir' stamp='0.242'>
+<phase name='lirGeneration' stamp='0.242'>
+<phase_done name='lirGeneration' stamp='0.242'/>
+</phase>
+<phase name='linearScan' stamp='0.242'>
+<phase_done name='linearScan' stamp='0.242'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.242'/>
+</phase>
+<phase name='codeemit' stamp='0.242'>
+<phase_done name='codeemit' stamp='0.242'/>
+</phase>
+<phase name='codeinstall' stamp='0.242'>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='409' nmethods='104' adapters='162' free_code_cache='248590208'/>
+<task_done success='1' nmsize='488' count='596' stamp='0.242'/>
+</task>
+<task compile_id='108' method='java.util.HashMap$ValueIterator next ()Ljava/lang/Object;' bytes='8' count='278' iicount='278' level='3' stamp='0.242'>
+<phase name='setup' stamp='0.242'>
+<phase_done name='setup' stamp='0.242'/>
+</phase>
+<phase name='buildIR' stamp='0.242'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap$ValueIterator' flags='16'/>
+<method id='1094' holder='1093' name='next' return='982' flags='17' bytes='8' iicount='284'/>
+<parse method='1094'  stamp='0.242'>
+<phase name='parse_hir' stamp='0.242'>
+<bc code='182' bci='1'/>
+<klass id='1097' name='java.util.HashMap$Node' flags='8'/>
+<klass id='1096' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1098' holder='1096' name='nextNode' return='1097' flags='16' bytes='100' compile_id='94' compiler='c1' level='3' iicount='1092'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.242'/>
+</phase>
+<parse_done stamp='0.242'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.242'>
+<phase_done name='optimize_blocks' stamp='0.242'/>
+</phase>
+<phase name='gvn' stamp='0.242'>
+<phase_done name='gvn' stamp='0.242'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.242'>
+<phase_done name='rangeCheckElimination' stamp='0.242'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.242'>
+<phase_done name='optimize_null_checks' stamp='0.242'/>
+</phase>
+<phase_done name='buildIR' stamp='0.242'/>
+</phase>
+<phase name='emit_lir' stamp='0.242'>
+<phase name='lirGeneration' stamp='0.242'>
+<phase_done name='lirGeneration' stamp='0.242'/>
+</phase>
+<phase name='linearScan' stamp='0.242'>
+<phase_done name='linearScan' stamp='0.242'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.242'/>
+</phase>
+<phase name='codeemit' stamp='0.242'>
+<phase_done name='codeemit' stamp='0.242'/>
+</phase>
+<phase name='codeinstall' stamp='0.242'>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='412' nmethods='107' adapters='162' free_code_cache='248585728'/>
+<task_done success='1' nmsize='520' count='293' stamp='0.242'/>
+</task>
+<task compile_id='112' method='java.util.HashSet contains (Ljava/lang/Object;)Z' bytes='9' count='264' iicount='264' level='3' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='982' flags='1' bytes='9' iicount='264'/>
+<parse method='1094'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<bc code='182' bci='5'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1097' holder='1096' name='containsKey' return='969' arguments='982' flags='1' bytes='18' compile_id='70' compiler='c1' level='3' iicount='638'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='3009'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='182' bci='9'/>
+<method id='1102' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1103' name='java.util.HashMap$Node' flags='8'/>
+<method id='1104' holder='1096' name='getNode' return='1103' arguments='975 982' flags='16' bytes='148' compile_id='69' compiler='c1' level='3' iicount='1864'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='419' nmethods='112' adapters='162' free_code_cache='248580096'/>
+<task_done success='1' nmsize='1272' count='264' inlined_bytes='38' stamp='0.244'/>
+</task>
+<task compile_id='115' method='java.lang.String indexOf (I)I' bytes='7' count='276' iicount='276' level='3' stamp='0.244'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' iicount='278'/>
+<parse method='1093'  stamp='0.244'>
+<phase name='parse_hir' stamp='0.244'>
+<bc code='182' bci='3'/>
+<method id='1095' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='290'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='6544'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' compile_id='114' compiler='c1' level='3' iicount='297'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='424' nmethods='117' adapters='162' free_code_cache='248573312'/>
+<task_done success='1' nmsize='952' count='318' inlined_bytes='48' stamp='0.244'/>
+</task>
+<task compile_id='120' method='jdk.internal.misc.Unsafe putObjectRelease (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='9' count='256' iicount='256' level='3' stamp='0.244'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1093' holder='1051' name='putObjectRelease' return='977' arguments='982 976 982' flags='17' bytes='9' iicount='256'/>
+<parse method='1093'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<bc code='182' bci='5'/>
+<method id='1095' holder='1051' name='putObjectVolatile' return='977' arguments='982 976 982' flags='257' bytes='0' compile_id='121' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='429' nmethods='120' adapters='162' free_code_cache='248558848'/>
+<task_done success='1' nmsize='432' count='296' stamp='0.245'/>
+</task>
+<task compile_id='128' method='java.util.ImmutableCollections$Set2$1 hasNext ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.247'>
+<phase name='setup' stamp='0.247'>
+<phase_done name='setup' stamp='0.247'/>
+</phase>
+<phase name='buildIR' stamp='0.247'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set2$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='14' iicount='256'/>
+<parse method='1094'  stamp='0.247'>
+<phase name='parse_hir' stamp='0.247'>
+<phase_done name='parse_hir' stamp='0.247'/>
+</phase>
+<parse_done stamp='0.247'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.247'>
+<phase_done name='optimize_blocks' stamp='0.247'/>
+</phase>
+<phase name='gvn' stamp='0.247'>
+<phase_done name='gvn' stamp='0.247'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.247'>
+<phase_done name='rangeCheckElimination' stamp='0.247'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.247'>
+<phase_done name='optimize_null_checks' stamp='0.247'/>
+</phase>
+<phase_done name='buildIR' stamp='0.247'/>
+</phase>
+<phase name='emit_lir' stamp='0.247'>
+<phase name='lirGeneration' stamp='0.247'>
+<phase_done name='lirGeneration' stamp='0.247'/>
+</phase>
+<phase name='linearScan' stamp='0.247'>
+<phase_done name='linearScan' stamp='0.247'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.247'/>
+</phase>
+<phase name='codeemit' stamp='0.247'>
+<phase_done name='codeemit' stamp='0.247'/>
+</phase>
+<phase name='codeinstall' stamp='0.247'>
+<phase_done name='codeinstall' stamp='0.247'/>
+</phase>
+<code_cache total_blobs='436' nmethods='127' adapters='162' free_code_cache='248561536'/>
+<task_done success='1' nmsize='432' count='256' stamp='0.247'/>
+</task>
+<task compile_id='132' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='1386' iicount='1386' level='1' stamp='0.248'>
+<phase name='setup' stamp='0.248'>
+<phase_done name='setup' stamp='0.248'/>
+</phase>
+<phase name='buildIR' stamp='0.248'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='76' compiler='c1' level='3' iicount='1390'/>
+<parse method='1094'  stamp='0.248'>
+<phase name='parse_hir' stamp='0.248'>
+<phase_done name='parse_hir' stamp='0.248'/>
+</phase>
+<parse_done stamp='0.248'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.248'>
+<phase_done name='optimize_blocks' stamp='0.248'/>
+</phase>
+<phase name='gvn' stamp='0.248'>
+<phase_done name='gvn' stamp='0.248'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.248'>
+<phase_done name='rangeCheckElimination' stamp='0.248'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.248'>
+<phase_done name='optimize_null_checks' stamp='0.248'/>
+</phase>
+<phase_done name='buildIR' stamp='0.248'/>
+</phase>
+<phase name='emit_lir' stamp='0.248'>
+<phase name='lirGeneration' stamp='0.248'>
+<phase_done name='lirGeneration' stamp='0.248'/>
+</phase>
+<phase name='linearScan' stamp='0.248'>
+<phase_done name='linearScan' stamp='0.248'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.248'/>
+</phase>
+<phase name='codeemit' stamp='0.248'>
+<phase_done name='codeemit' stamp='0.248'/>
+</phase>
+<phase name='codeinstall' stamp='0.248'>
+<phase_done name='codeinstall' stamp='0.248'/>
+</phase>
+<code_cache total_blobs='443' nmethods='132' adapters='162' free_code_cache='248555776'/>
+<task_done success='1' nmsize='272' count='1485' stamp='0.248'/>
+</task>
+<task compile_id='136' method='java.lang.module.ModuleDescriptor$Exports source ()Ljava/lang/String;' bytes='5' count='132' iicount='132' level='1' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='source' return='983' flags='1' bytes='5' iicount='142'/>
+<parse method='1094'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.249'/>
+</phase>
+<phase name='codeinstall' stamp='0.249'>
+<phase_done name='codeinstall' stamp='0.249'/>
+</phase>
+<code_cache total_blobs='446' nmethods='135' adapters='162' free_code_cache='248551808'/>
+<task_done success='1' nmsize='272' count='153' stamp='0.249'/>
+</task>
+<task compile_id='137' method='java.util.Collections$EmptySet isEmpty ()Z' bytes='2' count='135' iicount='135' level='1' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$EmptySet' flags='10'/>
+<method id='1094' holder='1093' name='isEmpty' return='969' flags='1' bytes='2' iicount='137'/>
+<parse method='1094'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.249'/>
+</phase>
+<phase name='codeinstall' stamp='0.249'>
+<phase_done name='codeinstall' stamp='0.249'/>
+</phase>
+<code_cache total_blobs='447' nmethods='136' adapters='162' free_code_cache='248551040'/>
+<task_done success='1' nmsize='272' count='163' stamp='0.249'/>
+</task>
+<task compile_id='144' method='java.lang.Module findModule (Ljava/lang/String;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)Ljava/lang/Module;' bytes='93' count='263' backedge_count='36' iicount='263' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<klass id='1019' name='java.lang.Module' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.util.Map' flags='1537'/>
+<klass id='1094' name='java.util.List' flags='1537'/>
+<method id='1095' holder='1019' name='findModule' return='1019' arguments='983 1093 1093 1094' flags='10' bytes='93' iicount='283'/>
+<parse method='1095'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<bc code='185' bci='2'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='1093' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='19'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='35'/>
+<klass id='1098' name='java.util.Iterator' flags='1537'/>
+<method id='1099' holder='1094' name='iterator' return='1098' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='44'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1098' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='54'/>
+<method id='1101' holder='1098' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='67'/>
+<klass id='1103' name='java.util.Optional' flags='17'/>
+<klass id='1102' name='java.lang.ModuleLayer' flags='17'/>
+<method id='1104' holder='1102' name='findModule' return='1103' arguments='983' flags='1' bytes='87' iicount='42'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='71'/>
+<method id='1106' holder='1103' name='orElse' return='982' arguments='982' flags='1' bytes='16' compile_id='87' compiler='c1' level='3' iicount='471'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.250'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='459' nmethods='148' adapters='162' free_code_cache='248529024'/>
+<task_done success='1' nmsize='3160' count='479' backedge_count='83' inlined_bytes='16' stamp='0.251'/>
+</task>
+<task compile_id='152' method='java.util.Collections$1 next ()Ljava/lang/Object;' bytes='25' count='267' iicount='267' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='25' iicount='268'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='463' nmethods='152' adapters='162' free_code_cache='248524288'/>
+<task_done success='1' nmsize='520' count='276' stamp='0.251'/>
+</task>
+<task compile_id='156' method='java.util.ImmutableCollections$Set2 size ()I' bytes='2' count='129' iicount='129' level='1' stamp='0.252'>
+<phase name='setup' stamp='0.252'>
+<phase_done name='setup' stamp='0.252'/>
+</phase>
+<phase name='buildIR' stamp='0.252'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set2' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='2' iicount='129'/>
+<parse method='1094'  stamp='0.252'>
+<phase name='parse_hir' stamp='0.252'>
+<phase_done name='parse_hir' stamp='0.252'/>
+</phase>
+<parse_done stamp='0.252'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.252'>
+<phase_done name='optimize_blocks' stamp='0.252'/>
+</phase>
+<phase name='gvn' stamp='0.252'>
+<phase_done name='gvn' stamp='0.252'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.252'>
+<phase_done name='rangeCheckElimination' stamp='0.252'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.252'>
+<phase_done name='optimize_null_checks' stamp='0.252'/>
+</phase>
+<phase_done name='buildIR' stamp='0.252'/>
+</phase>
+<phase name='emit_lir' stamp='0.252'>
+<phase name='lirGeneration' stamp='0.252'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.252'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.252'/>
+</phase>
+<phase name='codeemit' stamp='0.252'>
+<phase_done name='codeemit' stamp='0.252'/>
+</phase>
+<phase name='codeinstall' stamp='0.252'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='467' nmethods='156' adapters='162' free_code_cache='248519808'/>
+<task_done success='1' nmsize='272' count='130' stamp='0.252'/>
+</task>
+<task compile_id='159' method='java.util.Map entry (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;' bytes='10' count='280' iicount='280' level='3' stamp='0.253'>
+<phase name='setup' stamp='0.253'>
+<phase_done name='setup' stamp='0.253'/>
+</phase>
+<phase name='buildIR' stamp='0.253'>
+<klass id='1094' name='java.util.Map$Entry' flags='1545'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Map' flags='1537'/>
+<method id='1095' holder='1093' name='entry' return='1094' arguments='982 982' flags='9' bytes='10' iicount='280'/>
+<parse method='1095'  stamp='0.253'>
+<phase name='parse_hir' stamp='0.253'>
+<bc code='183' bci='6'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='982 982' flags='0' bytes='21' iicount='280'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='8727'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.253'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1102' name='java.util.Objects' flags='17'/>
+<method id='1103' holder='1102' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='3378'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1105' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.253'/>
+</parse>
+<bc code='184' bci='14'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='8'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.253'/>
+</parse>
+<parse_done stamp='0.253'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.253'/>
+</phase>
+<parse_done stamp='0.253'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.253'>
+<phase_done name='optimize_blocks' stamp='0.253'/>
+</phase>
+<phase name='gvn' stamp='0.253'>
+<phase_done name='gvn' stamp='0.253'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.253'>
+<phase_done name='rangeCheckElimination' stamp='0.253'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.253'>
+<phase_done name='optimize_null_checks' stamp='0.253'/>
+</phase>
+<phase_done name='buildIR' stamp='0.253'/>
+</phase>
+<phase name='emit_lir' stamp='0.253'>
+<phase name='lirGeneration' stamp='0.253'>
+<phase_done name='lirGeneration' stamp='0.253'/>
+</phase>
+<phase name='linearScan' stamp='0.253'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='471' nmethods='160' adapters='162' free_code_cache='248513536'/>
+<task_done success='1' nmsize='1464' count='280' inlined_bytes='50' stamp='0.254'/>
+</task>
+<task compile_id='168' method='java.util.ImmutableCollections$Set0 instance ()Ljava/util/ImmutableCollections$Set0;' bytes='4' count='234' iicount='234' level='3' stamp='0.255'>
+<phase name='setup' stamp='0.255'>
+<phase_done name='setup' stamp='0.255'/>
+</phase>
+<phase name='buildIR' stamp='0.255'>
+<klass id='1093' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1094' holder='1093' name='instance' return='1093' flags='8' bytes='4' iicount='234'/>
+<parse method='1094'  stamp='0.255'>
+<phase name='parse_hir' stamp='0.255'>
+<phase_done name='parse_hir' stamp='0.255'/>
+</phase>
+<parse_done stamp='0.255'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.255'>
+<phase_done name='optimize_blocks' stamp='0.255'/>
+</phase>
+<phase name='gvn' stamp='0.255'>
+<phase_done name='gvn' stamp='0.255'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.255'>
+<phase_done name='rangeCheckElimination' stamp='0.255'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.255'>
+<phase_done name='optimize_null_checks' stamp='0.255'/>
+</phase>
+<phase_done name='buildIR' stamp='0.255'/>
+</phase>
+<phase name='emit_lir' stamp='0.255'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='480' nmethods='167' adapters='162' free_code_cache='248504320'/>
+<task_done success='1' nmsize='304' count='238' stamp='0.255'/>
+</task>
+<task compile_id='171' method='java.util.zip.ZipUtils SH ([BI)I' bytes='21' count='259' iicount='259' level='3' stamp='0.280'>
+<phase name='setup' stamp='0.280'>
+<phase_done name='setup' stamp='0.280'/>
+</phase>
+<phase name='buildIR' stamp='0.280'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.util.zip.ZipUtils' flags='0'/>
+<method id='1094' holder='1093' name='SH' return='975' arguments='1085 975' flags='24' bytes='21' iicount='259'/>
+<parse method='1094'  stamp='0.280'>
+<phase name='parse_hir' stamp='0.280'>
+<phase_done name='parse_hir' stamp='0.280'/>
+</phase>
+<parse_done stamp='0.280'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.280'>
+<phase_done name='optimize_blocks' stamp='0.280'/>
+</phase>
+<phase name='gvn' stamp='0.280'>
+<phase_done name='gvn' stamp='0.280'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.280'>
+<phase_done name='rangeCheckElimination' stamp='0.280'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.280'>
+<phase_done name='optimize_null_checks' stamp='0.280'/>
+</phase>
+<phase_done name='buildIR' stamp='0.280'/>
+</phase>
+<phase name='emit_lir' stamp='0.280'>
+<phase name='lirGeneration' stamp='0.280'>
+<phase_done name='lirGeneration' stamp='0.280'/>
+</phase>
+<phase name='linearScan' stamp='0.280'>
+<phase_done name='linearScan' stamp='0.280'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.280'/>
+</phase>
+<phase name='codeemit' stamp='0.280'>
+<phase_done name='codeemit' stamp='0.280'/>
+</phase>
+<phase name='codeinstall' stamp='0.280'>
+<phase_done name='codeinstall' stamp='0.280'/>
+</phase>
+<code_cache total_blobs='516' nmethods='171' adapters='194' free_code_cache='248481792'/>
+<task_done success='1' nmsize='400' count='259' stamp='0.280'/>
+</task>
+<task compile_id='176' method='sun.nio.fs.UnixPath checkNotNul (Ljava/lang/String;C)V' bytes='16' count='266' iicount='266' level='3' stamp='0.286'>
+<phase name='setup' stamp='0.286'>
+<phase_done name='setup' stamp='0.286'/>
+</phase>
+<phase name='buildIR' stamp='0.286'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<klass id='1093' name='sun.nio.fs.UnixPath' flags='0'/>
+<method id='1094' holder='1093' name='checkNotNul' return='977' arguments='983 970' flags='10' bytes='16' iicount='266'/>
+<parse method='1094'  stamp='0.286'>
+<phase name='parse_hir' stamp='0.286'>
+<bc code='183' bci='11'/>
+<klass id='1096' name='java.nio.file.InvalidPathException' unloaded='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983 983' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.287'/>
+</phase>
+<parse_done stamp='0.287'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.287'>
+<phase_done name='optimize_blocks' stamp='0.287'/>
+</phase>
+<phase name='gvn' stamp='0.287'>
+<phase_done name='gvn' stamp='0.287'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.287'>
+<phase_done name='rangeCheckElimination' stamp='0.287'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.287'>
+<phase_done name='optimize_null_checks' stamp='0.287'/>
+</phase>
+<phase_done name='buildIR' stamp='0.287'/>
+</phase>
+<phase name='emit_lir' stamp='0.287'>
+<phase name='lirGeneration' stamp='0.287'>
+<phase_done name='lirGeneration' stamp='0.287'/>
+</phase>
+<phase name='linearScan' stamp='0.287'>
+<phase_done name='linearScan' stamp='0.287'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.287'/>
+</phase>
+<phase name='codeemit' stamp='0.287'>
+<phase_done name='codeemit' stamp='0.287'/>
+</phase>
+<phase name='codeinstall' stamp='0.287'>
+<phase_done name='codeinstall' stamp='0.287'/>
+</phase>
+<code_cache total_blobs='524' nmethods='176' adapters='197' free_code_cache='248473728'/>
+<task_done success='1' nmsize='520' count='266' stamp='0.287'/>
+</task>
+<task compile_id='180' method='java.lang.String getBytes ([BIB)V' bytes='44' count='256' iicount='256' level='3' stamp='0.309'>
+<phase name='setup' stamp='0.309'>
+<phase_done name='setup' stamp='0.309'/>
+</phase>
+<phase name='buildIR' stamp='0.309'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' iicount='256'/>
+<parse method='1093'  stamp='0.309'>
+<phase name='parse_hir' stamp='0.309'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='8510'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.309'/>
+</parse>
+<bc code='184' bci='22'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1098' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='40'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='10' iicount='1'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='6'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='42' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.309'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.309'/>
+</phase>
+<parse_done stamp='0.309'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.309'>
+<phase_done name='optimize_blocks' stamp='0.309'/>
+</phase>
+<phase name='gvn' stamp='0.309'>
+<phase_done name='gvn' stamp='0.309'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.309'>
+<phase_done name='rangeCheckElimination' stamp='0.309'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.309'>
+<phase_done name='optimize_null_checks' stamp='0.310'/>
+</phase>
+<phase_done name='buildIR' stamp='0.310'/>
+</phase>
+<phase name='emit_lir' stamp='0.310'>
+<phase name='lirGeneration' stamp='0.310'>
+<phase_done name='lirGeneration' stamp='0.310'/>
+</phase>
+<phase name='linearScan' stamp='0.310'>
+<phase_done name='linearScan' stamp='0.310'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.310'/>
+</phase>
+<phase name='codeemit' stamp='0.310'>
+<phase_done name='codeemit' stamp='0.310'/>
+</phase>
+<phase name='codeinstall' stamp='0.310'>
+<phase_done name='codeinstall' stamp='0.310'/>
+</phase>
+<code_cache total_blobs='529' nmethods='180' adapters='198' free_code_cache='248467328'/>
+<task_done success='1' nmsize='1016' count='259' inlined_bytes='25' stamp='0.310'/>
+</task>
+<task compile_id='184' method='java.lang.reflect.Method getName ()Ljava/lang/String;' bytes='5' count='434' iicount='434' level='1' stamp='0.319'>
+<phase name='setup' stamp='0.319'>
+<phase_done name='setup' stamp='0.319'/>
+</phase>
+<phase name='buildIR' stamp='0.319'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1024' name='java.lang.reflect.Method' flags='17'/>
+<method id='1093' holder='1024' name='getName' return='983' flags='1' bytes='5' iicount='434'/>
+<parse method='1093'  stamp='0.319'>
+<phase name='parse_hir' stamp='0.319'>
+<phase_done name='parse_hir' stamp='0.319'/>
+</phase>
+<parse_done stamp='0.319'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.319'>
+<phase_done name='optimize_blocks' stamp='0.319'/>
+</phase>
+<phase name='gvn' stamp='0.319'>
+<phase_done name='gvn' stamp='0.319'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.319'>
+<phase_done name='rangeCheckElimination' stamp='0.319'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.319'>
+<phase_done name='optimize_null_checks' stamp='0.319'/>
+</phase>
+<phase_done name='buildIR' stamp='0.319'/>
+</phase>
+<phase name='emit_lir' stamp='0.319'>
+<phase name='lirGeneration' stamp='0.319'>
+<phase_done name='lirGeneration' stamp='0.319'/>
+</phase>
+<phase name='linearScan' stamp='0.319'>
+<phase_done name='linearScan' stamp='0.319'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.319'/>
+</phase>
+<phase name='codeemit' stamp='0.319'>
+<phase_done name='codeemit' stamp='0.319'/>
+</phase>
+<phase name='codeinstall' stamp='0.319'>
+<phase_done name='codeinstall' stamp='0.319'/>
+</phase>
+<code_cache total_blobs='533' nmethods='184' adapters='198' free_code_cache='248460544'/>
+<task_done success='1' nmsize='272' count='434' stamp='0.319'/>
+</task>
+<task compile_id='197' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry hashCode ()I' bytes='5' count='139' iicount='139' level='1' stamp='0.327'>
+<phase name='setup' stamp='0.327'>
+<phase_done name='setup' stamp='0.327'/>
+</phase>
+<phase name='buildIR' stamp='0.327'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry' flags='10'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='5' iicount='141'/>
+<parse method='1094'  stamp='0.327'>
+<phase name='parse_hir' stamp='0.327'>
+<phase_done name='parse_hir' stamp='0.327'/>
+</phase>
+<parse_done stamp='0.327'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.327'>
+<phase_done name='optimize_blocks' stamp='0.327'/>
+</phase>
+<phase name='gvn' stamp='0.327'>
+<phase_done name='gvn' stamp='0.327'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.327'>
+<phase_done name='rangeCheckElimination' stamp='0.327'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.327'>
+<phase_done name='optimize_null_checks' stamp='0.327'/>
+</phase>
+<phase_done name='buildIR' stamp='0.327'/>
+</phase>
+<phase name='emit_lir' stamp='0.327'>
+<phase name='lirGeneration' stamp='0.327'>
+<phase_done name='lirGeneration' stamp='0.327'/>
+</phase>
+<phase name='linearScan' stamp='0.327'>
+<phase_done name='linearScan' stamp='0.327'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.327'/>
+</phase>
+<phase name='codeemit' stamp='0.327'>
+<phase_done name='codeemit' stamp='0.327'/>
+</phase>
+<phase name='codeinstall' stamp='0.327'>
+<phase_done name='codeinstall' stamp='0.327'/>
+</phase>
+<code_cache total_blobs='571' nmethods='197' adapters='223' free_code_cache='248425728'/>
+<task_done success='1' nmsize='272' count='145' stamp='0.327'/>
+</task>
+<task compile_id='209' method='java.lang.ref.ReferenceQueue poll ()Ljava/lang/ref/Reference;' bytes='28' count='256' iicount='256' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<klass id='1093' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1094' holder='1093' name='poll' return='1008' flags='1' bytes='28' iicount='256'/>
+<parse method='1094'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<bc code='183' bci='17'/>
+<method id='1097' holder='1093' name='reallyPoll' return='1008' flags='2' bytes='65' iicount='2'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='592' nmethods='209' adapters='232' free_code_cache='248406656'/>
+<task_done success='1' nmsize='904' count='263' stamp='0.334'/>
+</task>
+<task compile_id='213' method='java.lang.invoke.MethodType checkPtype (Ljava/lang/Class;)V' bytes='19' count='261' iicount='261' level='3' stamp='0.335'>
+<phase name='setup' stamp='0.335'>
+<phase_done name='setup' stamp='0.335'/>
+</phase>
+<phase name='buildIR' stamp='0.335'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='checkPtype' return='977' arguments='984' flags='10' bytes='19' iicount='261'/>
+<parse method='1093'  stamp='0.335'>
+<phase name='parse_hir' stamp='0.335'>
+<bc code='184' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1095' name='java.util.Objects' flags='17'/>
+<method id='1096' holder='1095' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='3894'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1098' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1104' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1105' holder='1104' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='5'/>
+<klass id='1107' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.335'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.335'/>
+</phase>
+<parse_done stamp='0.335'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.335'>
+<phase_done name='optimize_blocks' stamp='0.335'/>
+</phase>
+<phase name='gvn' stamp='0.335'>
+<phase_done name='gvn' stamp='0.335'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.335'>
+<phase_done name='rangeCheckElimination' stamp='0.335'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.335'>
+<phase_done name='optimize_null_checks' stamp='0.335'/>
+</phase>
+<phase_done name='buildIR' stamp='0.335'/>
+</phase>
+<phase name='emit_lir' stamp='0.335'>
+<phase name='lirGeneration' stamp='0.335'>
+<phase_done name='lirGeneration' stamp='0.335'/>
+</phase>
+<phase name='linearScan' stamp='0.335'>
+<phase_done name='linearScan' stamp='0.335'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.335'/>
+</phase>
+<phase name='codeemit' stamp='0.335'>
+<phase_done name='codeemit' stamp='0.335'/>
+</phase>
+<phase name='codeinstall' stamp='0.335'>
+<phase_done name='codeinstall' stamp='0.335'/>
+</phase>
+<code_cache total_blobs='597' nmethods='213' adapters='232' free_code_cache='248397312'/>
+<task_done success='1' nmsize='1016' count='265' inlined_bytes='23' stamp='0.335'/>
+</task>
+<task compile_id='221' method='java.lang.invoke.MemberName isInvocable ()Z' bytes='7' count='258' iicount='258' level='3' stamp='0.336'>
+<phase name='setup' stamp='0.336'>
+<phase_done name='setup' stamp='0.336'/>
+</phase>
+<phase name='buildIR' stamp='0.336'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isInvocable' return='969' flags='1' bytes='7' iicount='261'/>
+<parse method='1093'  stamp='0.336'>
+<phase name='parse_hir' stamp='0.336'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' iicount='263'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<method id='1097' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='210' compiler='c1' level='3' iicount='400'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.336'/>
+</parse>
+<parse_done stamp='0.336'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='603' nmethods='218' adapters='232' free_code_cache='248396416'/>
+<task_done success='1' nmsize='720' count='265' inlined_bytes='31' stamp='0.337'/>
+</task>
+<task compile_id='216' method='java.lang.invoke.MemberName getDeclaringClass ()Ljava/lang/Class;' bytes='5' count='142' iicount='142' level='1' stamp='0.337'>
+<phase name='setup' stamp='0.337'>
+<phase_done name='setup' stamp='0.337'/>
+</phase>
+<phase name='buildIR' stamp='0.337'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getDeclaringClass' return='984' flags='1' bytes='5' iicount='144'/>
+<parse method='1093'  stamp='0.337'>
+<phase name='parse_hir' stamp='0.337'>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='606' nmethods='221' adapters='232' free_code_cache='248391936'/>
+<task_done success='1' nmsize='272' count='152' stamp='0.337'/>
+</task>
+<task compile_id='226' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='257' iicount='257' level='3' stamp='0.340'>
+<phase name='setup' stamp='0.340'>
+<phase_done name='setup' stamp='0.340'/>
+</phase>
+<phase name='buildIR' stamp='0.340'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='parameterType' return='984' arguments='975' flags='1' bytes='7' iicount='257'/>
+<parse method='1093'  stamp='0.340'>
+<phase name='parse_hir' stamp='0.340'>
+<phase_done name='parse_hir' stamp='0.340'/>
+</phase>
+<parse_done stamp='0.340'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.340'>
+<phase_done name='optimize_blocks' stamp='0.340'/>
+</phase>
+<phase name='gvn' stamp='0.340'>
+<phase_done name='gvn' stamp='0.340'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.340'>
+<phase_done name='rangeCheckElimination' stamp='0.340'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.340'>
+<phase_done name='optimize_null_checks' stamp='0.340'/>
+</phase>
+<phase_done name='buildIR' stamp='0.340'/>
+</phase>
+<phase name='emit_lir' stamp='0.340'>
+<phase name='lirGeneration' stamp='0.340'>
+<phase_done name='lirGeneration' stamp='0.340'/>
+</phase>
+<phase name='linearScan' stamp='0.340'>
+<phase_done name='linearScan' stamp='0.340'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.340'/>
+</phase>
+<phase name='codeemit' stamp='0.340'>
+<phase_done name='codeemit' stamp='0.340'/>
+</phase>
+<phase name='codeinstall' stamp='0.340'>
+<phase_done name='codeinstall' stamp='0.340'/>
+</phase>
+<code_cache total_blobs='615' nmethods='228' adapters='234' free_code_cache='248380032'/>
+<task_done success='1' nmsize='368' count='265' stamp='0.340'/>
+</task>
+</compilation_log>
+<compilation_log thread='23813'>
+<start_compile_thread name='C1 CompilerThread8' thread='23813' process='23756' stamp='0.179'/>
+<task compile_id='1' method='java.lang.StringUTF16 getChar ([BI)C' bytes='60' count='512' iicount='512' level='3' stamp='0.182'>
+<phase name='setup' stamp='0.182'>
+<phase_done name='setup' stamp='0.182'/>
+</phase>
+<phase name='buildIR' stamp='0.182'>
+<type id='970' name='char'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringUTF16' flags='16'/>
+<method id='1094' holder='1093' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' iicount='512'/>
+<parse method='1094'  stamp='0.182'>
+<phase name='parse_hir' stamp='0.182'>
+<phase_done name='parse_hir' stamp='0.182'/>
+</phase>
+<parse_done stamp='0.182'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.182'>
+<phase_done name='optimize_blocks' stamp='0.182'/>
+</phase>
+<phase name='gvn' stamp='0.183'>
+<phase_done name='gvn' stamp='0.183'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.183'>
+<phase_done name='rangeCheckElimination' stamp='0.183'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.183'>
+<phase_done name='optimize_null_checks' stamp='0.183'/>
+</phase>
+<phase_done name='buildIR' stamp='0.183'/>
+</phase>
+<phase name='emit_lir' stamp='0.183'>
+<phase name='lirGeneration' stamp='0.183'>
+<phase_done name='lirGeneration' stamp='0.184'/>
+</phase>
+<phase name='linearScan' stamp='0.184'>
+<phase_done name='linearScan' stamp='0.184'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.184'/>
+</phase>
+<phase name='codeemit' stamp='0.184'>
+<phase_done name='codeemit' stamp='0.184'/>
+</phase>
+<phase name='codeinstall' stamp='0.184'>
+<phase_done name='codeinstall' stamp='0.184'/>
+</phase>
+<code_cache total_blobs='227' nmethods='1' adapters='131' free_code_cache='248780288'/>
+<task_done success='1' nmsize='432' count='512' stamp='0.184'/>
+</task>
+<task compile_id='5' method='java.lang.String isLatin1 ()Z' bytes='19' count='909' iicount='909' level='3' stamp='0.189'>
+<phase name='setup' stamp='0.189'>
+<phase_done name='setup' stamp='0.189'/>
+</phase>
+<phase name='buildIR' stamp='0.189'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='isLatin1' return='969' flags='2' bytes='19' iicount='912'/>
+<parse method='1093'  stamp='0.189'>
+<phase name='parse_hir' stamp='0.189'>
+<phase_done name='parse_hir' stamp='0.189'/>
+</phase>
+<parse_done stamp='0.189'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.190'>
+<phase_done name='optimize_blocks' stamp='0.190'/>
+</phase>
+<phase name='gvn' stamp='0.190'>
+<phase_done name='gvn' stamp='0.190'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.190'>
+<phase_done name='rangeCheckElimination' stamp='0.190'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.190'>
+<phase_done name='optimize_null_checks' stamp='0.190'/>
+</phase>
+<phase_done name='buildIR' stamp='0.190'/>
+</phase>
+<phase name='emit_lir' stamp='0.190'>
+<phase name='lirGeneration' stamp='0.190'>
+<phase_done name='lirGeneration' stamp='0.190'/>
+</phase>
+<phase name='linearScan' stamp='0.190'>
+<phase_done name='linearScan' stamp='0.190'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.190'/>
+</phase>
+<phase name='codeemit' stamp='0.190'>
+<phase_done name='codeemit' stamp='0.190'/>
+</phase>
+<phase name='codeinstall' stamp='0.190'>
+<phase_done name='codeinstall' stamp='0.190'/>
+</phase>
+<code_cache total_blobs='270' nmethods='5' adapters='146' free_code_cache='248776448'/>
+<task_done success='1' nmsize='464' count='935' stamp='0.190'/>
+</task>
+<task compile_id='9' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='770' iicount='770' level='3' stamp='0.203'>
+<phase name='setup' stamp='0.203'>
+<phase_done name='setup' stamp='0.203'/>
+</phase>
+<phase name='buildIR' stamp='0.203'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1093' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' iicount='774'/>
+<parse method='1093'  stamp='0.203'>
+<phase name='parse_hir' stamp='0.203'>
+<phase_done name='parse_hir' stamp='0.203'/>
+</phase>
+<parse_done stamp='0.203'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.203'>
+<phase_done name='optimize_blocks' stamp='0.203'/>
+</phase>
+<phase name='gvn' stamp='0.203'>
+<phase_done name='gvn' stamp='0.203'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.203'>
+<phase_done name='rangeCheckElimination' stamp='0.203'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.203'>
+<phase_done name='optimize_null_checks' stamp='0.203'/>
+</phase>
+<phase_done name='buildIR' stamp='0.203'/>
+</phase>
+<phase name='emit_lir' stamp='0.203'>
+<phase name='lirGeneration' stamp='0.203'>
+<phase_done name='lirGeneration' stamp='0.203'/>
+</phase>
+<phase name='linearScan' stamp='0.203'>
+<phase_done name='linearScan' stamp='0.203'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.203'/>
+</phase>
+<phase name='codeemit' stamp='0.203'>
+<phase_done name='codeemit' stamp='0.203'/>
+</phase>
+<phase name='codeinstall' stamp='0.204'>
+<phase_done name='codeinstall' stamp='0.204'/>
+</phase>
+<code_cache total_blobs='306' nmethods='9' adapters='157' free_code_cache='248760704'/>
+<task_done success='1' nmsize='336' count='776' stamp='0.204'/>
+</task>
+<task compile_id='12' method='java.lang.Math floorDiv (II)I' bytes='22' count='306' iicount='306' level='3' stamp='0.208'>
+<phase name='setup' stamp='0.208'>
+<phase_done name='setup' stamp='0.208'/>
+</phase>
+<phase name='buildIR' stamp='0.208'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' iicount='311'/>
+<parse method='1094'  stamp='0.208'>
+<phase name='parse_hir' stamp='0.208'>
+<phase_done name='parse_hir' stamp='0.208'/>
+</phase>
+<parse_done stamp='0.208'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.208'>
+<phase_done name='optimize_blocks' stamp='0.208'/>
+</phase>
+<phase name='gvn' stamp='0.208'>
+<phase_done name='gvn' stamp='0.208'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.208'>
+<phase_done name='rangeCheckElimination' stamp='0.208'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.208'>
+<phase_done name='optimize_null_checks' stamp='0.208'/>
+</phase>
+<phase_done name='buildIR' stamp='0.208'/>
+</phase>
+<phase name='emit_lir' stamp='0.208'>
+<phase name='lirGeneration' stamp='0.208'>
+<phase_done name='lirGeneration' stamp='0.208'/>
+</phase>
+<phase name='linearScan' stamp='0.208'>
+<phase_done name='linearScan' stamp='0.208'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.208'/>
+</phase>
+<phase name='codeemit' stamp='0.208'>
+<phase_done name='codeemit' stamp='0.208'/>
+</phase>
+<phase name='codeinstall' stamp='0.208'>
+<phase_done name='codeinstall' stamp='0.208'/>
+</phase>
+<code_cache total_blobs='310' nmethods='12' adapters='158' free_code_cache='248755584'/>
+<task_done success='1' nmsize='464' count='317' stamp='0.208'/>
+</task>
+<task compile_id='19' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;Z)V' bytes='20' count='278' iicount='278' level='3' stamp='0.212'>
+<phase name='setup' stamp='0.212'>
+<phase_done name='setup' stamp='0.212'/>
+</phase>
+<phase name='buildIR' stamp='0.212'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' iicount='290'/>
+<parse method='1095'  stamp='0.212'>
+<phase name='parse_hir' stamp='0.212'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1366'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.212'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.212'/>
+</phase>
+<parse_done stamp='0.212'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.212'>
+<phase_done name='optimize_blocks' stamp='0.212'/>
+</phase>
+<phase name='gvn' stamp='0.212'>
+<phase_done name='gvn' stamp='0.212'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.212'>
+<phase_done name='rangeCheckElimination' stamp='0.212'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.212'>
+<phase_done name='optimize_null_checks' stamp='0.212'/>
+</phase>
+<phase_done name='buildIR' stamp='0.212'/>
+</phase>
+<phase name='emit_lir' stamp='0.212'>
+<phase name='lirGeneration' stamp='0.212'>
+<phase_done name='lirGeneration' stamp='0.212'/>
+</phase>
+<phase name='linearScan' stamp='0.212'>
+<phase_done name='linearScan' stamp='0.212'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.212'/>
+</phase>
+<phase name='codeemit' stamp='0.212'>
+<phase_done name='codeemit' stamp='0.213'/>
+</phase>
+<phase name='codeinstall' stamp='0.213'>
+<phase_done name='codeinstall' stamp='0.213'/>
+</phase>
+<code_cache total_blobs='317' nmethods='18' adapters='158' free_code_cache='248745728'/>
+<task_done success='1' nmsize='752' count='331' inlined_bytes='1' stamp='0.213'/>
+</task>
+<task compile_id='24' method='java.util.AbstractSet &lt;init&gt; ()V' bytes='5' count='262' iicount='262' level='3' stamp='0.214'>
+<phase name='setup' stamp='0.214'>
+<phase_done name='setup' stamp='0.214'/>
+</phase>
+<phase name='buildIR' stamp='0.214'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.AbstractSet' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='263'/>
+<parse method='1094'  stamp='0.214'>
+<phase name='parse_hir' stamp='0.214'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='320'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1790'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.214'/>
+</parse>
+<parse_done stamp='0.214'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.214'/>
+</phase>
+<parse_done stamp='0.214'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.214'>
+<phase_done name='optimize_blocks' stamp='0.214'/>
+</phase>
+<phase name='gvn' stamp='0.214'>
+<phase_done name='gvn' stamp='0.214'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.214'>
+<phase_done name='rangeCheckElimination' stamp='0.214'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.214'>
+<phase_done name='optimize_null_checks' stamp='0.214'/>
+</phase>
+<phase_done name='buildIR' stamp='0.214'/>
+</phase>
+<phase name='emit_lir' stamp='0.214'>
+<phase name='lirGeneration' stamp='0.214'>
+<phase_done name='lirGeneration' stamp='0.214'/>
+</phase>
+<phase name='linearScan' stamp='0.214'>
+<phase_done name='linearScan' stamp='0.214'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.214'/>
+</phase>
+<phase name='codeemit' stamp='0.214'>
+<phase_done name='codeemit' stamp='0.214'/>
+</phase>
+<phase name='codeinstall' stamp='0.214'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.214'/>
+</phase>
+<code_cache total_blobs='322' nmethods='23' adapters='158' free_code_cache='248739072'/>
+<task_done success='1' nmsize='528' count='299' inlined_bytes='6' stamp='0.214'/>
+</task>
+<task compile_id='27' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='12' count='268' iicount='268' level='3' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983 1094' flags='9' bytes='12' iicount='268'/>
+<parse method='1096'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<bc code='185' bci='6'/>
+<klass id='1098' name='jdk.internal.misc.JavaLangModuleAccess' flags='1537'/>
+<method id='1102' holder='1098' name='newExports' return='1095' arguments='1094 983 1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1100' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<method id='1103' holder='1100' name='newExports' return='1095' arguments='1094 983 1094' flags='1' bytes='13' iicount='271'/>
+<parse method='1103'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1100' flags='4096' bytes='10' compile_id='18' compiler='c1' level='3' iicount='521'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='6'/>
+<method id='1107' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='19' compiler='c1' level='3' iicount='541'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1109' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2145'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<parse_done stamp='0.215'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.215'/>
+</phase>
+<parse_done stamp='0.215'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.215'>
+<phase_done name='optimize_blocks' stamp='0.215'/>
+</phase>
+<phase name='gvn' stamp='0.215'>
+<phase_done name='gvn' stamp='0.215'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.215'>
+<phase_done name='rangeCheckElimination' stamp='0.215'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.215'>
+<phase_done name='optimize_null_checks' stamp='0.215'/>
+</phase>
+<phase_done name='buildIR' stamp='0.215'/>
+</phase>
+<phase name='emit_lir' stamp='0.215'>
+<phase name='lirGeneration' stamp='0.215'>
+<phase_done name='lirGeneration' stamp='0.215'/>
+</phase>
+<phase name='linearScan' stamp='0.215'>
+<phase_done name='linearScan' stamp='0.215'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.215'/>
+</phase>
+<phase name='codeemit' stamp='0.215'>
+<phase_done name='codeemit' stamp='0.215'/>
+</phase>
+<phase name='codeinstall' stamp='0.215'>
+<dependency type='leaf_type' ctxk='1100'/>
+<phase_done name='codeinstall' stamp='0.215'/>
+</phase>
+<code_cache total_blobs='326' nmethods='27' adapters='158' free_code_cache='248733184'/>
+<task_done success='1' nmsize='1104' count='305' inlined_bytes='44' stamp='0.215'/>
+</task>
+<task compile_id='32' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='11' count='259' iicount='259' level='3' stamp='0.215'>
+<phase name='setup' stamp='0.215'>
+<phase_done name='setup' stamp='0.215'/>
+</phase>
+<phase name='buildIR' stamp='0.215'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983' flags='9' bytes='11' iicount='260'/>
+<parse method='1096'  stamp='0.215'>
+<phase name='parse_hir' stamp='0.215'>
+<bc code='185' bci='5'/>
+<klass id='1098' name='jdk.internal.misc.JavaLangModuleAccess' flags='1537'/>
+<method id='1102' holder='1098' name='newExports' return='1095' arguments='1094 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1100' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<method id='1103' holder='1100' name='newExports' return='1095' arguments='1094 983' flags='1' bytes='15' iicount='272'/>
+<parse method='1103'>
+<bc code='184' bci='6'/>
+<klass id='1105' name='java.util.Collections' flags='1'/>
+<method id='1106' holder='1105' name='emptySet' return='1094' flags='25' bytes='4' compile_id='16' compiler='c1' level='3' iicount='693'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.216'/>
+</parse>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1111' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1100' flags='4096' bytes='10' compile_id='18' compiler='c1' level='3' iicount='601'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='6'/>
+<method id='1113' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='19' compiler='c1' level='3' iicount='601'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2262'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<parse_done stamp='0.216'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.216'/>
+</phase>
+<parse_done stamp='0.216'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.216'>
+<phase_done name='optimize_blocks' stamp='0.216'/>
+</phase>
+<phase name='gvn' stamp='0.216'>
+<phase_done name='gvn' stamp='0.216'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.216'>
+<phase_done name='rangeCheckElimination' stamp='0.216'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.216'>
+<phase_done name='optimize_null_checks' stamp='0.216'/>
+</phase>
+<phase_done name='buildIR' stamp='0.216'/>
+</phase>
+<phase name='emit_lir' stamp='0.216'>
+<phase name='lirGeneration' stamp='0.216'>
+<phase_done name='lirGeneration' stamp='0.216'/>
+</phase>
+<phase name='linearScan' stamp='0.216'>
+<phase_done name='linearScan' stamp='0.216'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.216'/>
+</phase>
+<phase name='codeemit' stamp='0.216'>
+<phase_done name='codeemit' stamp='0.216'/>
+</phase>
+<phase name='codeinstall' stamp='0.216'>
+<dependency type='leaf_type' ctxk='1100'/>
+<phase_done name='codeinstall' stamp='0.216'/>
+</phase>
+<code_cache total_blobs='330' nmethods='29' adapters='158' free_code_cache='248716160'/>
+<task_done success='1' nmsize='1232' count='303' inlined_bytes='50' stamp='0.216'/>
+</task>
+<task compile_id='34' method='java.util.ImmutableCollections$Set1 hashCode ()I' bytes='8' count='277' iicount='277' level='3' stamp='0.216'>
+<phase name='setup' stamp='0.216'>
+<phase_done name='setup' stamp='0.216'/>
+</phase>
+<phase name='buildIR' stamp='0.216'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='8' iicount='277'/>
+<parse method='1094'  stamp='0.216'>
+<phase name='parse_hir' stamp='0.216'>
+<bc code='182' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='81'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.216'/>
+</phase>
+<parse_done stamp='0.216'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.216'>
+<phase_done name='optimize_blocks' stamp='0.216'/>
+</phase>
+<phase name='gvn' stamp='0.216'>
+<phase_done name='gvn' stamp='0.216'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.216'>
+<phase_done name='rangeCheckElimination' stamp='0.216'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.216'>
+<phase_done name='optimize_null_checks' stamp='0.216'/>
+</phase>
+<phase_done name='buildIR' stamp='0.216'/>
+</phase>
+<phase name='emit_lir' stamp='0.216'>
+<phase name='lirGeneration' stamp='0.216'>
+<phase_done name='lirGeneration' stamp='0.216'/>
+</phase>
+<phase name='linearScan' stamp='0.216'>
+<phase_done name='linearScan' stamp='0.216'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.216'/>
+</phase>
+<phase name='codeemit' stamp='0.216'>
+<phase_done name='codeemit' stamp='0.216'/>
+</phase>
+<phase name='codeinstall' stamp='0.216'>
+<phase_done name='codeinstall' stamp='0.216'/>
+</phase>
+<code_cache total_blobs='333' nmethods='32' adapters='158' free_code_cache='248723712'/>
+<task_done success='1' nmsize='552' count='284' stamp='0.216'/>
+</task>
+<task compile_id='37' method='java.lang.module.ModuleDescriptor$1 newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='13' count='262' iicount='262' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<klass id='1096' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<method id='1097' holder='1093' name='newRequires' return='1096' arguments='1094 983 1095' flags='1' bytes='13' iicount='262'/>
+<parse method='1097'  stamp='0.217'>
+<phase name='parse_hir' stamp='0.217'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='1096' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969 1093' flags='4096' bytes='10' iicount='271'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='6'/>
+<method id='1101' holder='1096' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969' flags='2' bytes='25' iicount='282'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2525'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.217'/>
+</parse>
+<parse_done stamp='0.217'/>
+</parse>
+<parse_done stamp='0.217'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.217'/>
+</phase>
+<parse_done stamp='0.217'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.217'>
+<phase_done name='optimize_blocks' stamp='0.217'/>
+</phase>
+<phase name='gvn' stamp='0.217'>
+<phase_done name='gvn' stamp='0.217'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.217'>
+<phase_done name='rangeCheckElimination' stamp='0.217'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.217'>
+<phase_done name='optimize_null_checks' stamp='0.217'/>
+</phase>
+<phase_done name='buildIR' stamp='0.217'/>
+</phase>
+<phase name='emit_lir' stamp='0.217'>
+<phase name='lirGeneration' stamp='0.217'>
+<phase_done name='lirGeneration' stamp='0.217'/>
+</phase>
+<phase name='linearScan' stamp='0.217'>
+<phase_done name='linearScan' stamp='0.217'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.217'/>
+</phase>
+<phase name='codeemit' stamp='0.217'>
+<phase_done name='codeemit' stamp='0.217'/>
+</phase>
+<phase name='codeinstall' stamp='0.217'>
+<phase_done name='codeinstall' stamp='0.217'/>
+</phase>
+<code_cache total_blobs='337' nmethods='36' adapters='158' free_code_cache='248715520'/>
+<task_done success='1' nmsize='1040' count='349' inlined_bytes='36' stamp='0.217'/>
+</task>
+<task compile_id='40' method='java.lang.module.ModuleDescriptor$Requires hashCode ()I' bytes='63' count='283' iicount='283' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='63' iicount='283'/>
+<parse method='1094'  stamp='0.217'>
+<phase name='parse_hir' stamp='0.217'>
+<bc code='182' bci='4'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1096' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='4098'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='14'/>
+<klass id='1098' name='java.util.Set' flags='1537'/>
+<method id='1099' holder='1098' name='hashCode' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='36'/>
+<klass id='1100' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<method id='1101' holder='1100' name='hashCode' return='975' flags='1' bytes='8' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='4'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.218'/>
+</parse>
+<bc code='182' bci='56'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.218'/>
+</phase>
+<parse_done stamp='0.218'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.218'>
+<phase_done name='optimize_blocks' stamp='0.218'/>
+</phase>
+<phase name='gvn' stamp='0.218'>
+<phase_done name='gvn' stamp='0.218'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.218'>
+<phase_done name='rangeCheckElimination' stamp='0.218'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.218'>
+<phase_done name='optimize_null_checks' stamp='0.218'/>
+</phase>
+<phase_done name='buildIR' stamp='0.218'/>
+</phase>
+<phase name='emit_lir' stamp='0.218'>
+<phase name='lirGeneration' stamp='0.218'>
+<phase_done name='lirGeneration' stamp='0.218'/>
+</phase>
+<phase name='linearScan' stamp='0.218'>
+<phase_done name='linearScan' stamp='0.218'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.218'/>
+</phase>
+<phase name='codeemit' stamp='0.218'>
+<phase_done name='codeemit' stamp='0.218'/>
+</phase>
+<phase name='codeinstall' stamp='0.218'>
+<phase_done name='codeinstall' stamp='0.218'/>
+</phase>
+<code_cache total_blobs='341' nmethods='40' adapters='158' free_code_cache='248701568'/>
+<task_done success='1' nmsize='1528' count='283' inlined_bytes='8' stamp='0.218'/>
+</task>
+<task compile_id='45' method='java.lang.String length ()I' bytes='11' count='259' iicount='259' level='3' stamp='0.221'>
+<phase name='setup' stamp='0.221'>
+<phase_done name='setup' stamp='0.221'/>
+</phase>
+<phase name='buildIR' stamp='0.221'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='length' return='975' flags='1' bytes='11' iicount='259'/>
+<parse method='1093'  stamp='0.221'>
+<phase name='parse_hir' stamp='0.221'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='4089'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.222'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.222'/>
+</phase>
+<parse_done stamp='0.222'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.222'>
+<phase_done name='optimize_blocks' stamp='0.222'/>
+</phase>
+<phase name='gvn' stamp='0.222'>
+<phase_done name='gvn' stamp='0.222'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.222'>
+<phase_done name='rangeCheckElimination' stamp='0.222'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.222'>
+<phase_done name='optimize_null_checks' stamp='0.222'/>
+</phase>
+<phase_done name='buildIR' stamp='0.222'/>
+</phase>
+<phase name='emit_lir' stamp='0.222'>
+<phase name='lirGeneration' stamp='0.222'>
+<phase_done name='lirGeneration' stamp='0.222'/>
+</phase>
+<phase name='linearScan' stamp='0.222'>
+<phase_done name='linearScan' stamp='0.222'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.222'/>
+</phase>
+<phase name='codeemit' stamp='0.222'>
+<phase_done name='codeemit' stamp='0.222'/>
+</phase>
+<phase name='codeinstall' stamp='0.222'>
+<phase_done name='codeinstall' stamp='0.222'/>
+</phase>
+<code_cache total_blobs='346' nmethods='45' adapters='158' free_code_cache='248696320'/>
+<task_done success='1' nmsize='624' count='314' inlined_bytes='15' stamp='0.222'/>
+</task>
+<task compile_id='50' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='3627' iicount='3628' level='1' stamp='0.227'>
+<phase name='setup' stamp='0.227'>
+<phase_done name='setup' stamp='0.227'/>
+</phase>
+<phase name='buildIR' stamp='0.227'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1093' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='3638'/>
+<parse method='1093'  stamp='0.227'>
+<phase name='parse_hir' stamp='0.227'>
+<phase_done name='parse_hir' stamp='0.227'/>
+</phase>
+<parse_done stamp='0.227'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.227'>
+<phase_done name='optimize_blocks' stamp='0.227'/>
+</phase>
+<phase name='gvn' stamp='0.227'>
+<phase_done name='gvn' stamp='0.227'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.227'>
+<phase_done name='rangeCheckElimination' stamp='0.227'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.227'>
+<phase_done name='optimize_null_checks' stamp='0.227'/>
+</phase>
+<phase_done name='buildIR' stamp='0.227'/>
+</phase>
+<phase name='emit_lir' stamp='0.227'>
+<phase name='lirGeneration' stamp='0.227'>
+<phase_done name='lirGeneration' stamp='0.227'/>
+</phase>
+<phase name='linearScan' stamp='0.227'>
+<phase_done name='linearScan' stamp='0.227'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.227'/>
+</phase>
+<phase name='codeemit' stamp='0.227'>
+<phase_done name='codeemit' stamp='0.227'/>
+</phase>
+<phase name='codeinstall' stamp='0.227'>
+<phase_done name='codeinstall' stamp='0.227'/>
+</phase>
+<code_cache total_blobs='353' nmethods='50' adapters='160' free_code_cache='248688768'/>
+<task_done success='1' nmsize='272' count='3675' stamp='0.227'/>
+</task>
+<task compile_id='57' method='java.util.concurrent.ConcurrentHashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;)V' bytes='20' count='257' iicount='257' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975 982 982' flags='0' bytes='20' iicount='262'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3683'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.231'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='363' nmethods='58' adapters='162' free_code_cache='248678144'/>
+<task_done success='1' nmsize='656' count='277' inlined_bytes='1' stamp='0.231'/>
+</task>
+<task compile_id='60' method='java.util.concurrent.ConcurrentHashMap addCount (JI)V' bytes='289' count='259' backedge_count='3' iicount='259' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='977' name='void'/>
+<type id='976' name='long'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='addCount' return='977' arguments='976 975' flags='18' bytes='289' iicount='259'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='182' bci='31'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='compareAndSetLong' return='969' arguments='982 976 976 976' flags='273' bytes='0' compile_id='61' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='58'/>
+<klass id='1101' name='java.util.concurrent.ThreadLocalRandom' unloaded='1'/>
+<method id='1102' holder='1101' name='getProbe' return='975' unloaded='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='91'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='115'/>
+<method id='1103' holder='1093' name='sumCount' return='976' flags='16' bytes='48' iicount='4'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='161'/>
+<method id='1107' holder='1093' name='resizeStamp' return='975' arguments='975' flags='24' bytes='8' iicount='6'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='1'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1109' holder='1076' name='numberOfLeadingZeros' return='975' arguments='975' flags='9' bytes='76' iicount='7'/>
+<call method='1109' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.231'/>
+</parse>
+<bc code='182' bci='233'/>
+<method id='1111' holder='1051' name='compareAndSetInt' return='969' arguments='982 976 975 975' flags='273' bytes='0' iicount='24'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='244'/>
+<klass id='1106' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<method id='1112' holder='1093' name='transfer' return='977' arguments='1106 1106' flags='18' bytes='828' iicount='3'/>
+<call method='1112' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='266'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='276'/>
+<call method='1112' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='280'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='104'/>
+<method id='1114' holder='1093' name='fullAddCount' return='977' arguments='976 969' flags='18' bytes='487' iicount='1'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.232'>
+<phase_done name='lirGeneration' stamp='0.232'/>
+</phase>
+<phase name='linearScan' stamp='0.232'>
+<phase_done name='linearScan' stamp='0.233'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.233'/>
+</phase>
+<phase name='codeemit' stamp='0.233'>
+<phase_done name='codeemit' stamp='0.233'/>
+</phase>
+<phase name='codeinstall' stamp='0.233'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.233'/>
+</phase>
+<code_cache total_blobs='368' nmethods='63' adapters='162' free_code_cache='248670080'/>
+<task_done success='1' nmsize='2760' count='259' backedge_count='3' inlined_bytes='8' stamp='0.233'/>
+</task>
+<task compile_id='68' method='java.lang.module.ModuleDescriptor$Requires name ()Ljava/lang/String;' bytes='5' count='141' iicount='141' level='1' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1094' holder='1093' name='name' return='983' flags='1' bytes='5' iicount='142'/>
+<parse method='1094'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<phase_done name='parse_hir' stamp='0.236'/>
+</phase>
+<parse_done stamp='0.236'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.236'>
+<phase_done name='optimize_blocks' stamp='0.236'/>
+</phase>
+<phase name='gvn' stamp='0.236'>
+<phase_done name='gvn' stamp='0.236'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.236'>
+<phase_done name='rangeCheckElimination' stamp='0.236'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.236'>
+<phase_done name='optimize_null_checks' stamp='0.236'/>
+</phase>
+<phase_done name='buildIR' stamp='0.236'/>
+</phase>
+<phase name='emit_lir' stamp='0.236'>
+<phase name='lirGeneration' stamp='0.236'>
+<phase_done name='lirGeneration' stamp='0.236'/>
+</phase>
+<phase name='linearScan' stamp='0.236'>
+<phase_done name='linearScan' stamp='0.236'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.236'/>
+</phase>
+<phase name='codeemit' stamp='0.236'>
+<phase_done name='codeemit' stamp='0.236'/>
+</phase>
+<phase name='codeinstall' stamp='0.236'>
+<phase_done name='codeinstall' stamp='0.236'/>
+</phase>
+<code_cache total_blobs='371' nmethods='66' adapters='162' free_code_cache='248655360'/>
+<task_done success='1' nmsize='272' count='163' stamp='0.236'/>
+</task>
+<task compile_id='71' method='java.util.HashMap put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='256' iicount='256' level='3' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='put' return='982' arguments='982 982' flags='1' bytes='13' iicount='257'/>
+<parse method='1094'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='564'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.237'/>
+</parse>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' iicount='279'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='376' nmethods='71' adapters='162' free_code_cache='248644864'/>
+<task_done success='1' nmsize='952' count='364' inlined_bytes='20' stamp='0.237'/>
+</task>
+<task compile_id='76' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='361' iicount='361' level='3' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' iicount='361'/>
+<parse method='1094'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='377' nmethods='72' adapters='162' free_code_cache='248643968'/>
+<task_done success='1' nmsize='336' count='378' stamp='0.237'/>
+</task>
+<task compile_id='74' method='java.util.ImmutableCollections$Set1 size ()I' bytes='2' count='155' iicount='155' level='1' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='2' iicount='155'/>
+<parse method='1094'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='379' nmethods='74' adapters='162' free_code_cache='248641792'/>
+<task_done success='1' nmsize='272' count='155' stamp='0.237'/>
+</task>
+<task compile_id='77' method='java.lang.module.ModuleDescriptor provides ()Ljava/util/Set;' bytes='5' count='142' iicount='142' level='1' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='provides' return='1094' flags='1' bytes='5' iicount='142'/>
+<parse method='1095'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.238'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.238'>
+<phase_done name='rangeCheckElimination' stamp='0.238'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.238'>
+<phase_done name='optimize_null_checks' stamp='0.238'/>
+</phase>
+<phase_done name='buildIR' stamp='0.238'/>
+</phase>
+<phase name='emit_lir' stamp='0.238'>
+<phase name='lirGeneration' stamp='0.238'>
+<phase_done name='lirGeneration' stamp='0.238'/>
+</phase>
+<phase name='linearScan' stamp='0.238'>
+<phase_done name='linearScan' stamp='0.238'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.238'/>
+</phase>
+<phase name='codeemit' stamp='0.238'>
+<phase_done name='codeemit' stamp='0.238'/>
+</phase>
+<phase name='codeinstall' stamp='0.238'>
+<phase_done name='codeinstall' stamp='0.238'/>
+</phase>
+<code_cache total_blobs='381' nmethods='76' adapters='162' free_code_cache='248639360'/>
+<task_done success='1' nmsize='272' count='142' stamp='0.238'/>
+</task>
+<task compile_id='82' method='java.util.HashMap$HashIterator hasNext ()Z' bytes='13' count='263' iicount='263' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='17' bytes='13' iicount='265'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='386' nmethods='81' adapters='162' free_code_cache='248628352'/>
+<task_done success='1' nmsize='432' count='265' stamp='0.239'/>
+</task>
+<task compile_id='84' method='java.util.Optional of (Ljava/lang/Object;)Ljava/util/Optional;' bytes='9' count='259' iicount='259' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1094' holder='1093' name='of' return='1093' arguments='982' flags='9' bytes='9' iicount='261'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' iicount='266'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='3882'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1100' name='java.util.Objects' flags='17'/>
+<method id='1101' holder='1100' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='1946'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1103' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.239'/>
+</parse>
+<parse_done stamp='0.239'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='391' nmethods='86' adapters='162' free_code_cache='248620416'/>
+<task_done success='1' nmsize='1032' count='277' inlined_bytes='28' stamp='0.240'/>
+</task>
+<task compile_id='91' method='java.util.HashSet add (Ljava/lang/Object;)Z' bytes='20' count='357' iicount='357' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1094' holder='1093' name='add' return='969' arguments='982' flags='1' bytes='20' iicount='357'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='182' bci='8'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1099' holder='1096' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='71' compiler='c1' level='3' iicount='690'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='1508'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='9'/>
+<method id='1104' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1105' holder='1096' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='72' compiler='c1' level='3' iicount='739'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='394' nmethods='89' adapters='162' free_code_cache='248615296'/>
+<task_done success='1' nmsize='1304' count='478' inlined_bytes='33' stamp='0.240'/>
+</task>
+<task compile_id='92' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='580' iicount='580' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='23' iicount='580'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='1846'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1100' name='java.util.HashMap$Node' flags='8'/>
+<method id='1101' holder='1093' name='getNode' return='1100' arguments='975 982' flags='16' bytes='148' compile_id='69' compiler='c1' level='3' iicount='999'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='396' nmethods='91' adapters='162' free_code_cache='248611072'/>
+<task_done success='1' nmsize='1016' count='681' inlined_bytes='20' stamp='0.240'/>
+</task>
+<task compile_id='97' method='java.lang.module.ModuleDescriptor requires ()Ljava/util/Set;' bytes='5' count='154' iicount='154' level='1' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='requires' return='1094' flags='1' bytes='5' iicount='154'/>
+<parse method='1095'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='400' nmethods='95' adapters='162' free_code_cache='248603008'/>
+<task_done success='1' nmsize='272' count='154' stamp='0.241'/>
+</task>
+<task compile_id='101' method='java.lang.Enum equals (Ljava/lang/Object;)Z' bytes='11' count='274' iicount='274' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.Enum' flags='1025'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982' flags='17' bytes='11' iicount='274'/>
+<parse method='1094'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='403' nmethods='98' adapters='162' free_code_cache='248600448'/>
+<task_done success='1' nmsize='432' count='274' stamp='0.241'/>
+</task>
+<task compile_id='102' method='java.util.HashMap$KeyIterator next ()Ljava/lang/Object;' bytes='8' count='322' iicount='322' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap$KeyIterator' flags='16'/>
+<method id='1094' holder='1093' name='next' return='982' flags='17' bytes='8' iicount='356'/>
+<parse method='1094'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='182' bci='1'/>
+<klass id='1097' name='java.util.HashMap$Node' flags='8'/>
+<klass id='1096' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1098' holder='1096' name='nextNode' return='1097' flags='16' bytes='100' compile_id='94' compiler='c1' level='3' iicount='565'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='405' nmethods='100' adapters='162' free_code_cache='248598144'/>
+<task_done success='1' nmsize='520' count='442' stamp='0.241'/>
+</task>
+<task compile_id='105' method='java.util.HashMap keySet ()Ljava/util/Set;' bytes='25' count='335' iicount='336' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='keySet' return='1094' flags='1' bytes='25' iicount='343'/>
+<parse method='1095'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='183' bci='14'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.HashMap$KeySet' flags='16'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' arguments='1093' flags='0' bytes='10' iicount='165'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='6'/>
+<klass id='1101' name='java.util.AbstractSet' flags='1025'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='880'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<klass id='1104' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='979'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1107' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='4711'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.241'/>
+</parse>
+<parse_done stamp='0.241'/>
+</parse>
+<parse_done stamp='0.241'/>
+</parse>
+<parse_done stamp='0.241'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.242'/>
+</phase>
+<phase name='linearScan' stamp='0.242'>
+<phase_done name='linearScan' stamp='0.242'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.242'/>
+</phase>
+<phase name='codeemit' stamp='0.242'>
+<phase_done name='codeemit' stamp='0.242'/>
+</phase>
+<phase name='codeinstall' stamp='0.242'>
+<phase_done name='codeinstall' stamp='0.242'/>
+</phase>
+<code_cache total_blobs='408' nmethods='103' adapters='162' free_code_cache='248591360'/>
+<task_done success='1' nmsize='1072' count='584' inlined_bytes='21' stamp='0.242'/>
+</task>
+<task compile_id='109' method='java.util.KeyValueHolder getKey ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' level='1' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1094' holder='1093' name='getKey' return='982' flags='1' bytes='5' iicount='176'/>
+<parse method='1094'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.243'/>
+</phase>
+<code_cache total_blobs='415' nmethods='108' adapters='162' free_code_cache='248573184'/>
+<task_done success='1' nmsize='272' count='176' stamp='0.243'/>
+</task>
+<task compile_id='114' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='259' backedge_count='2288' iicount='259' level='3' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='259'/>
+<parse method='1094'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='49' compiler='c1' level='3' iicount='336'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.244'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='421' nmethods='114' adapters='162' free_code_cache='248576896'/>
+<task_done success='1' nmsize='1008' count='297' backedge_count='2579' inlined_bytes='13' stamp='0.244'/>
+</task>
+<task compile_id='117' method='java.lang.module.ModuleDescriptor packages ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.244'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='packages' return='1094' flags='1' bytes='5' iicount='129'/>
+<parse method='1095'  stamp='0.244'>
+<phase name='parse_hir' stamp='0.244'>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='423' nmethods='116' adapters='162' free_code_cache='248574976'/>
+<task_done success='1' nmsize='272' count='135' stamp='0.244'/>
+</task>
+<task compile_id='123' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='260' iicount='260' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<klass id='1093' name='java.lang.CharacterData' flags='1024'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='of' return='1093' arguments='975' flags='24' bytes='120' iicount='260'/>
+<parse method='1094'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='433' nmethods='124' adapters='162' free_code_cache='248564736'/>
+<task_done success='1' nmsize='1488' count='260' stamp='0.245'/>
+</task>
+<task compile_id='127' method='java.lang.module.ModuleDescriptor$Version toString ()Ljava/lang/String;' bytes='5' count='130' iicount='130' level='1' stamp='0.246'>
+<phase name='setup' stamp='0.246'>
+<phase_done name='setup' stamp='0.246'/>
+</phase>
+<phase name='buildIR' stamp='0.246'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<method id='1094' holder='1093' name='toString' return='983' flags='1' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.246'>
+<phase name='parse_hir' stamp='0.246'>
+<phase_done name='parse_hir' stamp='0.246'/>
+</phase>
+<parse_done stamp='0.246'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.246'>
+<phase_done name='optimize_blocks' stamp='0.246'/>
+</phase>
+<phase name='gvn' stamp='0.246'>
+<phase_done name='gvn' stamp='0.246'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.246'>
+<phase_done name='rangeCheckElimination' stamp='0.246'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.246'>
+<phase_done name='optimize_null_checks' stamp='0.246'/>
+</phase>
+<phase_done name='buildIR' stamp='0.246'/>
+</phase>
+<phase name='emit_lir' stamp='0.246'>
+<phase name='lirGeneration' stamp='0.246'>
+<phase_done name='lirGeneration' stamp='0.246'/>
+</phase>
+<phase name='linearScan' stamp='0.246'>
+<phase_done name='linearScan' stamp='0.246'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.246'/>
+</phase>
+<phase name='codeemit' stamp='0.246'>
+<phase_done name='codeemit' stamp='0.246'/>
+</phase>
+<phase name='codeinstall' stamp='0.246'>
+<phase_done name='codeinstall' stamp='0.246'/>
+</phase>
+<code_cache total_blobs='435' nmethods='126' adapters='162' free_code_cache='248562560'/>
+<task_done success='1' nmsize='272' count='136' stamp='0.246'/>
+</task>
+<task compile_id='131' method='java.util.Collections$EmptyMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='2' count='128' iicount='128' level='1' stamp='0.248'>
+<phase name='setup' stamp='0.248'>
+<phase_done name='setup' stamp='0.248'/>
+</phase>
+<phase name='buildIR' stamp='0.248'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$EmptyMap' flags='10'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='2' iicount='128'/>
+<parse method='1094'  stamp='0.248'>
+<phase name='parse_hir' stamp='0.248'>
+<phase_done name='parse_hir' stamp='0.248'/>
+</phase>
+<parse_done stamp='0.248'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.248'>
+<phase_done name='optimize_blocks' stamp='0.248'/>
+</phase>
+<phase name='gvn' stamp='0.248'>
+<phase_done name='gvn' stamp='0.248'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.248'>
+<phase_done name='rangeCheckElimination' stamp='0.248'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.248'>
+<phase_done name='optimize_null_checks' stamp='0.248'/>
+</phase>
+<phase_done name='buildIR' stamp='0.248'/>
+</phase>
+<phase name='emit_lir' stamp='0.248'>
+<phase name='lirGeneration' stamp='0.248'>
+<phase_done name='lirGeneration' stamp='0.248'/>
+</phase>
+<phase name='linearScan' stamp='0.248'>
+<phase_done name='linearScan' stamp='0.248'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.248'/>
+</phase>
+<phase name='codeemit' stamp='0.248'>
+<phase_done name='codeemit' stamp='0.248'/>
+</phase>
+<phase name='codeinstall' stamp='0.248'>
+<phase_done name='codeinstall' stamp='0.248'/>
+</phase>
+<code_cache total_blobs='441' nmethods='130' adapters='162' free_code_cache='248557696'/>
+<task_done success='1' nmsize='272' count='136' stamp='0.248'/>
+</task>
+<task compile_id='135' method='java.lang.module.ModuleDescriptor$Exports isQualified ()Z' bytes='18' count='257' iicount='257' level='3' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='isQualified' return='969' flags='1' bytes='18' iicount='257'/>
+<parse method='1094'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Set' flags='1537'/>
+<method id='1097' holder='1096' name='isEmpty' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.249'/>
+</phase>
+<phase name='codeinstall' stamp='0.249'>
+<phase_done name='codeinstall' stamp='0.249'/>
+</phase>
+<code_cache total_blobs='445' nmethods='134' adapters='162' free_code_cache='248552576'/>
+<task_done success='1' nmsize='648' count='311' stamp='0.249'/>
+</task>
+<task compile_id='140' method='java.util.ImmutableCollections$Set2$1 next ()Ljava/lang/Object;' bytes='49' count='260' iicount='260' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set2$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='49' iicount='260'/>
+<parse method='1094'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<bc code='183' bci='45'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='451' nmethods='140' adapters='162' free_code_cache='248540800'/>
+<task_done success='1' nmsize='648' count='270' stamp='0.250'/>
+</task>
+<task compile_id='141' method='java.lang.module.ModuleDescriptor$Exports targets ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1095' holder='1093' name='targets' return='1094' flags='1' bytes='5' iicount='128'/>
+<parse method='1095'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='452' nmethods='141' adapters='162' free_code_cache='248540032'/>
+<task_done success='1' nmsize='272' count='146' stamp='0.250'/>
+</task>
+<task compile_id='147' method='java.lang.module.ModuleDescriptor isOpen ()Z' bytes='5' count='129' iicount='129' level='1' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='isOpen' return='969' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='457' nmethods='146' adapters='162' free_code_cache='248534656'/>
+<task_done success='1' nmsize='272' count='131' stamp='0.251'/>
+</task>
+<task compile_id='150' method='java.util.Collections singletonIterator (Ljava/lang/Object;)Ljava/util/Iterator;' bytes='9' count='260' iicount='260' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections' flags='1'/>
+<method id='1095' holder='1093' name='singletonIterator' return='1094' arguments='982' flags='8' bytes='9' iicount='260'/>
+<parse method='1095'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.Collections$1' flags='0'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='15' iicount='264'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='8198'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='460' nmethods='149' adapters='162' free_code_cache='248527616'/>
+<task_done success='1' nmsize='688' count='273' inlined_bytes='16' stamp='0.251'/>
+</task>
+<task compile_id='160' method='java.util.KeyValueHolder &lt;init&gt; (Ljava/lang/Object;Ljava/lang/Object;)V' bytes='21' count='280' iicount='280' level='3' stamp='0.253'>
+<phase name='setup' stamp='0.253'>
+<phase_done name='setup' stamp='0.253'/>
+</phase>
+<phase name='buildIR' stamp='0.253'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982 982' flags='0' bytes='21' iicount='280'/>
+<parse method='1094'  stamp='0.253'>
+<phase name='parse_hir' stamp='0.253'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='8727'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.253'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1098' name='java.util.Objects' flags='17'/>
+<method id='1099' holder='1098' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='21' compiler='c1' level='3' iicount='3378'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1101' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.253'/>
+</parse>
+<bc code='184' bci='14'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.253'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.253'/>
+</phase>
+<parse_done stamp='0.253'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.253'>
+<phase_done name='optimize_blocks' stamp='0.253'/>
+</phase>
+<phase name='gvn' stamp='0.253'>
+<phase_done name='gvn' stamp='0.253'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.253'>
+<phase_done name='rangeCheckElimination' stamp='0.253'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.253'>
+<phase_done name='optimize_null_checks' stamp='0.253'/>
+</phase>
+<phase_done name='buildIR' stamp='0.253'/>
+</phase>
+<phase name='emit_lir' stamp='0.253'>
+<phase name='lirGeneration' stamp='0.253'>
+<phase_done name='lirGeneration' stamp='0.253'/>
+</phase>
+<phase name='linearScan' stamp='0.253'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='470' nmethods='159' adapters='162' free_code_cache='248516096'/>
+<task_done success='1' nmsize='1304' count='280' inlined_bytes='29' stamp='0.254'/>
+</task>
+<task compile_id='162' method='java.util.Collections$EmptyIterator hasNext ()Z' bytes='2' count='132' iicount='132' level='1' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$EmptyIterator' flags='10'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='2' iicount='132'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.254'>
+<phase_done name='lirGeneration' stamp='0.254'/>
+</phase>
+<phase name='linearScan' stamp='0.254'>
+<phase_done name='linearScan' stamp='0.254'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.254'/>
+</phase>
+<phase name='codeemit' stamp='0.254'>
+<phase_done name='codeemit' stamp='0.254'/>
+</phase>
+<phase name='codeinstall' stamp='0.254'>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='472' nmethods='161' adapters='162' free_code_cache='248512768'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.254'/>
+</task>
+<task compile_id='163' method='jdk.internal.module.ModuleBootstrap$2 hasNext ()Z' bytes='30' count='279' iicount='279' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.module.ModuleBootstrap$2' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='30' iicount='279'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Iterator' flags='1537'/>
+<method id='1097' holder='1096' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='16'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.254'>
+<phase_done name='lirGeneration' stamp='0.254'/>
+</phase>
+<phase name='linearScan' stamp='0.254'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='477' nmethods='164' adapters='162' free_code_cache='248509312'/>
+<task_done success='1' nmsize='888' count='466' stamp='0.255'/>
+</task>
+<task compile_id='169' method='java.lang.Character toLowerCase (I)I' bytes='9' count='256' iicount='256' level='3' stamp='0.258'>
+<phase name='setup' stamp='0.258'>
+<phase_done name='setup' stamp='0.258'/>
+</phase>
+<phase name='buildIR' stamp='0.258'>
+<type id='975' name='int'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='toLowerCase' return='975' arguments='975' flags='9' bytes='9' iicount='256'/>
+<parse method='1093'  stamp='0.258'>
+<phase name='parse_hir' stamp='0.258'>
+<bc code='184' bci='1'/>
+<klass id='1095' name='java.lang.CharacterData' flags='1024'/>
+<method id='1096' holder='1095' name='of' return='1095' arguments='975' flags='24' bytes='120' compile_id='123' compiler='c1' level='3' iicount='272'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1098' holder='1095' name='toLowerCase' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.258'/>
+</phase>
+<parse_done stamp='0.258'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.258'>
+<phase_done name='optimize_blocks' stamp='0.258'/>
+</phase>
+<phase name='gvn' stamp='0.258'>
+<phase_done name='gvn' stamp='0.258'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.258'>
+<phase_done name='rangeCheckElimination' stamp='0.258'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.258'>
+<phase_done name='optimize_null_checks' stamp='0.258'/>
+</phase>
+<phase_done name='buildIR' stamp='0.258'/>
+</phase>
+<phase name='emit_lir' stamp='0.258'>
+<phase name='lirGeneration' stamp='0.258'>
+<phase_done name='lirGeneration' stamp='0.258'/>
+</phase>
+<phase name='linearScan' stamp='0.258'>
+<phase_done name='linearScan' stamp='0.258'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.258'/>
+</phase>
+<phase name='codeemit' stamp='0.258'>
+<phase_done name='codeemit' stamp='0.258'/>
+</phase>
+<phase name='codeinstall' stamp='0.258'>
+<phase_done name='codeinstall' stamp='0.258'/>
+</phase>
+<code_cache total_blobs='483' nmethods='169' adapters='163' free_code_cache='248501760'/>
+<task_done success='1' nmsize='568' count='256' stamp='0.258'/>
+</task>
+<task compile_id='173' method='java.util.jar.Attributes$Name isAlpha (C)Z' bytes='30' count='331' iicount='331' level='3' stamp='0.281'>
+<phase name='setup' stamp='0.281'>
+<phase_done name='setup' stamp='0.281'/>
+</phase>
+<phase name='buildIR' stamp='0.281'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.jar.Attributes$Name' flags='9'/>
+<method id='1094' holder='1093' name='isAlpha' return='969' arguments='970' flags='10' bytes='30' iicount='339'/>
+<parse method='1094'  stamp='0.281'>
+<phase name='parse_hir' stamp='0.281'>
+<phase_done name='parse_hir' stamp='0.281'/>
+</phase>
+<parse_done stamp='0.281'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.281'>
+<phase_done name='optimize_blocks' stamp='0.281'/>
+</phase>
+<phase name='gvn' stamp='0.281'>
+<phase_done name='gvn' stamp='0.281'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.281'>
+<phase_done name='rangeCheckElimination' stamp='0.281'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.281'>
+<phase_done name='optimize_null_checks' stamp='0.281'/>
+</phase>
+<phase_done name='buildIR' stamp='0.281'/>
+</phase>
+<phase name='emit_lir' stamp='0.281'>
+<phase name='lirGeneration' stamp='0.281'>
+<phase_done name='lirGeneration' stamp='0.281'/>
+</phase>
+<phase name='linearScan' stamp='0.281'>
+<phase_done name='linearScan' stamp='0.281'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.281'/>
+</phase>
+<phase name='codeemit' stamp='0.281'>
+<phase_done name='codeemit' stamp='0.281'/>
+</phase>
+<phase name='codeinstall' stamp='0.281'>
+<phase_done name='codeinstall' stamp='0.281'/>
+</phase>
+<code_cache total_blobs='517' nmethods='172' adapters='194' free_code_cache='248480640'/>
+<task_done success='1' nmsize='560' count='368' stamp='0.281'/>
+</task>
+<task compile_id='177' method='java.lang.System getSecurityManager ()Ljava/lang/SecurityManager;' bytes='4' count='259' iicount='259' level='3' stamp='0.307'>
+<phase name='setup' stamp='0.307'>
+<phase_done name='setup' stamp='0.307'/>
+</phase>
+<phase name='buildIR' stamp='0.308'>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1093' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' iicount='259'/>
+<parse method='1093'  stamp='0.308'>
+<phase name='parse_hir' stamp='0.308'>
+<phase_done name='parse_hir' stamp='0.308'/>
+</phase>
+<parse_done stamp='0.308'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.308'>
+<phase_done name='optimize_blocks' stamp='0.308'/>
+</phase>
+<phase name='gvn' stamp='0.308'>
+<phase_done name='gvn' stamp='0.308'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.308'>
+<phase_done name='rangeCheckElimination' stamp='0.308'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.308'>
+<phase_done name='optimize_null_checks' stamp='0.308'/>
+</phase>
+<phase_done name='buildIR' stamp='0.308'/>
+</phase>
+<phase name='emit_lir' stamp='0.308'>
+<phase name='lirGeneration' stamp='0.308'>
+<phase_done name='lirGeneration' stamp='0.308'/>
+</phase>
+<phase name='linearScan' stamp='0.308'>
+<phase_done name='linearScan' stamp='0.308'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.308'/>
+</phase>
+<phase name='codeemit' stamp='0.308'>
+<phase_done name='codeemit' stamp='0.308'/>
+</phase>
+<phase name='codeinstall' stamp='0.308'>
+<phase_done name='codeinstall' stamp='0.308'/>
+</phase>
+<code_cache total_blobs='526' nmethods='177' adapters='198' free_code_cache='248472192'/>
+<task_done success='1' nmsize='336' count='259' stamp='0.308'/>
+</task>
+<task compile_id='181' method='java.lang.StringLatin1 lastIndexOf ([BII)I' bytes='40' count='132' backedge_count='1951' iicount='132' level='3' stamp='0.312'>
+<phase name='setup' stamp='0.312'>
+<phase_done name='setup' stamp='0.312'/>
+</phase>
+<phase name='buildIR' stamp='0.312'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='lastIndexOf' return='975' arguments='1085 975 975' flags='9' bytes='40' iicount='132'/>
+<parse method='1094'  stamp='0.312'>
+<phase name='parse_hir' stamp='0.312'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='49' compiler='c1' level='3' iicount='1279'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.312'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='1098' name='java.lang.Math' flags='17'/>
+<method id='1099' holder='1098' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='118' compiler='c1' level='3' iicount='740'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.312'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.312'/>
+</phase>
+<parse_done stamp='0.312'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.312'>
+<phase_done name='optimize_blocks' stamp='0.312'/>
+</phase>
+<phase name='gvn' stamp='0.312'>
+<phase_done name='gvn' stamp='0.312'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.312'>
+<phase_done name='rangeCheckElimination' stamp='0.312'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.312'>
+<phase_done name='optimize_null_checks' stamp='0.312'/>
+</phase>
+<phase_done name='buildIR' stamp='0.312'/>
+</phase>
+<phase name='emit_lir' stamp='0.312'>
+<phase name='lirGeneration' stamp='0.312'>
+<phase_done name='lirGeneration' stamp='0.312'/>
+</phase>
+<phase name='linearScan' stamp='0.312'>
+<phase_done name='linearScan' stamp='0.312'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.312'/>
+</phase>
+<phase name='codeemit' stamp='0.312'>
+<phase_done name='codeemit' stamp='0.313'/>
+</phase>
+<phase name='codeinstall' stamp='0.313'>
+<phase_done name='codeinstall' stamp='0.313'/>
+</phase>
+<code_cache total_blobs='530' nmethods='181' adapters='198' free_code_cache='248465408'/>
+<task_done success='1' nmsize='1040' count='133' backedge_count='1972' inlined_bytes='24' stamp='0.313'/>
+</task>
+<task compile_id='186' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='284' iicount='284' level='3' stamp='0.322'>
+<phase name='setup' stamp='0.322'>
+<phase_done name='setup' stamp='0.322'/>
+</phase>
+<phase name='buildIR' stamp='0.322'>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1094' holder='1093' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' iicount='284'/>
+<parse method='1094'  stamp='0.322'>
+<phase name='parse_hir' stamp='0.322'>
+<bc code='183' bci='16'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1097' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='135'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1099' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' iicount='140'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='6'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='6'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1106' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='182' compiler='c1' level='3' iicount='284'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<method id='1108' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='183' compiler='c1' level='3' iicount='284'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='182' bci='29'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='182' bci='32'/>
+<method id='1110' holder='1050' name='toString' return='983' flags='1' bytes='35' iicount='139'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1112' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' iicount='276'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' iicount='267'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='9'/>
+<call method='1094' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1118' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='174' compiler='c1' level='3' iicount='426'/>
+<call method='1118' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1120' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='10195'/>
+<call method='1120' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.322'/>
+</parse>
+<parse_done stamp='0.322'/>
+</parse>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1122' name='java.lang.StringUTF16' flags='16'/>
+<method id='1123' holder='1122' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='183' bci='35'/>
+<klass id='1096' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1125' holder='1096' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1125' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='184' bci='54'/>
+<klass id='1127' name='java.lang.Math' flags='17'/>
+<method id='1128' holder='1127' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='118' compiler='c1' level='3' iicount='870'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.322'/>
+</parse>
+<bc code='184' bci='57'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1130' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='557' nmethods='186' adapters='220' free_code_cache='248439808'/>
+<task_done success='1' nmsize='3512' count='284' inlined_bytes='129' stamp='0.323'/>
+</task>
+<task compile_id='188' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='25' count='257' iicount='257' level='3' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1094' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1093' flags='0' bytes='25' iicount='261'/>
+<parse method='1094'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='10202'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<parse_done stamp='0.323'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='560' nmethods='189' adapters='220' free_code_cache='248437120'/>
+<task_done success='1' nmsize='752' count='271' inlined_bytes='1' stamp='0.323'/>
+</task>
+<task compile_id='191' method='java.util.concurrent.ConcurrentHashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='162' count='257' backedge_count='6' iicount='257' level='3' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='162' iicount='257'/>
+<parse method='1094'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='4'/>
+<method id='1097' holder='1093' name='spread' return='975' arguments='975' flags='24' bytes='10' compile_id='54' compiler='c1' level='3' iicount='1697'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='184' bci='34'/>
+<klass id='1099' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1100' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<method id='1101' holder='1093' name='tabAt' return='1099' arguments='1100 975' flags='24' bytes='22' compile_id='51' compiler='c1' level='3' iicount='2945'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='15'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1106' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' compile_id='52' compiler='c1' level='3' iicount='2945'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='3'/>
+<method id='1108' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='53' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.324'/>
+</parse>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='73'/>
+<type id='969' name='boolean'/>
+<method id='1109' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='4'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='93'/>
+<method id='1110' holder='1099' name='find' return='1099' arguments='975 982' flags='0' bytes='52' iicount='1'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='149'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='563' nmethods='192' adapters='220' free_code_cache='248430592'/>
+<task_done success='1' nmsize='3288' count='268' backedge_count='6' inlined_bytes='39' stamp='0.324'/>
+</task>
+<task compile_id='206' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;)V' bytes='7' count='256' iicount='256' level='3' stamp='0.330'>
+<phase name='setup' stamp='0.330'>
+<phase_done name='setup' stamp='0.330'/>
+</phase>
+<phase name='buildIR' stamp='0.330'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1093' holder='1008' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='7' iicount='256'/>
+<parse method='1093'  stamp='0.330'>
+<phase name='parse_hir' stamp='0.330'>
+<bc code='183' bci='3'/>
+<klass id='1095' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1096' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1095' flags='0' bytes='25' compile_id='188' compiler='c1' level='3' iicount='395'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='50' compiler='c1' level='1' iicount='10405'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.330'/>
+</phase>
+<parse_done stamp='0.330'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.330'>
+<phase_done name='optimize_blocks' stamp='0.330'/>
+</phase>
+<phase name='gvn' stamp='0.330'>
+<phase_done name='gvn' stamp='0.330'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.330'>
+<phase_done name='rangeCheckElimination' stamp='0.330'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.330'>
+<phase_done name='optimize_null_checks' stamp='0.330'/>
+</phase>
+<phase_done name='buildIR' stamp='0.330'/>
+</phase>
+<phase name='emit_lir' stamp='0.330'>
+<phase name='lirGeneration' stamp='0.330'>
+<phase_done name='lirGeneration' stamp='0.330'/>
+</phase>
+<phase name='linearScan' stamp='0.330'>
+<phase_done name='linearScan' stamp='0.330'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.330'/>
+</phase>
+<phase name='codeemit' stamp='0.330'>
+<phase_done name='codeemit' stamp='0.330'/>
+</phase>
+<phase name='codeinstall' stamp='0.330'>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<phase_done name='codeinstall' stamp='0.330'/>
+</phase>
+<code_cache total_blobs='581' nmethods='205' adapters='225' free_code_cache='248417664'/>
+<task_done success='1' nmsize='784' count='256' inlined_bytes='26' stamp='0.330'/>
+</task>
+<task compile_id='218' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet expungeStaleElements ()V' bytes='27' count='256' iicount='256' level='3' stamp='0.336'>
+<phase name='setup' stamp='0.336'>
+<phase_done name='setup' stamp='0.336'/>
+</phase>
+<phase name='buildIR' stamp='0.336'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet' flags='10'/>
+<method id='1094' holder='1093' name='expungeStaleElements' return='977' flags='2' bytes='27' iicount='257'/>
+<parse method='1094'  stamp='0.336'>
+<phase name='parse_hir' stamp='0.336'>
+<bc code='182' bci='4'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<klass id='1096' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1097' holder='1096' name='poll' return='1008' flags='1' bytes='28' compile_id='209' compiler='c1' level='3' iicount='314'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='17'/>
+<method id='1100' holder='1096' name='reallyPoll' return='1008' flags='2' bytes='65' iicount='2'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='185' bci='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1102' name='java.util.concurrent.ConcurrentMap' flags='1537'/>
+<method id='1103' holder='1102' name='remove' return='982' arguments='982' flags='4161' bytes='10' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='604' nmethods='219' adapters='232' free_code_cache='248393984'/>
+<task_done success='1' nmsize='1496' count='265' inlined_bytes='28' stamp='0.337'/>
+</task>
+<task compile_id='224' method='jdk.internal.org.objectweb.asm.ClassWriter get (Ljdk/internal/org/objectweb/asm/Item;)Ljdk/internal/org/objectweb/asm/Item;' bytes='49' count='273' backedge_count='3' iicount='273' level='3' stamp='0.339'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='get' return='1094' arguments='1094' flags='2' bytes='49' iicount='276'/>
+<parse method='1095'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<bc code='182' bci='33'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1094' name='isEqualTo' return='969' arguments='1094' flags='0' bytes='354' iicount='106'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.339'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.339'/>
+</phase>
+<phase name='codeemit' stamp='0.339'>
+<phase_done name='codeemit' stamp='0.339'/>
+</phase>
+<phase name='codeinstall' stamp='0.339'>
+<phase_done name='codeinstall' stamp='0.339'/>
+</phase>
+<code_cache total_blobs='610' nmethods='223' adapters='234' free_code_cache='248385664'/>
+<task_done success='1' nmsize='936' count='285' backedge_count='5' stamp='0.339'/>
+</task>
+<task compile_id='230' method='java.nio.Buffer position ()I' bytes='5' count='147' iicount='147' level='1' stamp='0.342'>
+<phase name='setup' stamp='0.342'>
+<phase_done name='setup' stamp='0.342'/>
+</phase>
+<phase name='buildIR' stamp='0.342'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='position' return='975' flags='17' bytes='5' iicount='147'/>
+<parse method='1093'  stamp='0.342'>
+<phase name='parse_hir' stamp='0.342'>
+<phase_done name='parse_hir' stamp='0.342'/>
+</phase>
+<parse_done stamp='0.342'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.342'>
+<phase_done name='optimize_blocks' stamp='0.342'/>
+</phase>
+<phase name='gvn' stamp='0.342'>
+<phase_done name='gvn' stamp='0.342'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.342'>
+<phase_done name='rangeCheckElimination' stamp='0.342'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.342'>
+<phase_done name='optimize_null_checks' stamp='0.342'/>
+</phase>
+<phase_done name='buildIR' stamp='0.342'/>
+</phase>
+<phase name='emit_lir' stamp='0.342'>
+<phase name='lirGeneration' stamp='0.342'>
+<phase_done name='lirGeneration' stamp='0.342'/>
+</phase>
+<phase name='linearScan' stamp='0.342'>
+<phase_done name='linearScan' stamp='0.342'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.342'/>
+</phase>
+<phase name='codeemit' stamp='0.342'>
+<phase_done name='codeemit' stamp='0.342'/>
+</phase>
+<phase name='codeinstall' stamp='0.342'>
+<phase_done name='codeinstall' stamp='0.342'/>
+</phase>
+<code_cache total_blobs='616' nmethods='229' adapters='234' free_code_cache='248379264'/>
+<task_done success='1' nmsize='272' count='147' stamp='0.342'/>
+</task>
+</compilation_log>
+<compilation_log thread='23812'>
+<start_compile_thread name='C2 CompilerThread7' thread='23812' process='23756' stamp='0.179'/>
+<task compile_id='20' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='783' backedge_count='18648' iicount='783' stamp='0.212'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='2' compiler='c1' level='3' iicount='783'/>
+<parse method='1094' uses='783.000000' stamp='0.213'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='669' not_taken='16406' cnt='17075.000000' prob='0.0391801'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='669' not_taken='16406' cnt='16406.000000' prob='0.0391801'/>
+<parse_done nodes='137' live='132' memory='40872' stamp='0.213'/>
+</parse>
+<loop_tree>
+<loop idx='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='239' inner_loop='1' main_loop='239' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='331' nmethods='30' adapters='158' free_code_cache='248721536'/>
+<task_done success='1' nmsize='312' count='2097' backedge_count='65738' stamp='0.216'/>
+</task>
+</compilation_log>
+<compilation_log thread='23811'>
+<start_compile_thread name='C2 CompilerThread6' thread='23811' process='23756' stamp='0.178'/>
+<task compile_id='81' method='java.lang.String hashCode ()I' bytes='49' count='5505' iicount='5505' stamp='0.238'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='5513'/>
+<parse method='1093' uses='5513.000000' stamp='0.239'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3042' not_taken='2471' cnt='5513.000000' prob='0.551787'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2420' cnt='2471.000000' prob='0.0206394'/>
+<bc code='183' bci='19'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='6353'/>
+<call method='1095' count='2263' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='2420.000000' stamp='0.239'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='6353' cnt='6353.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='6352' cnt='6353.000000' prob='0.000157406'/>
+<parse_done nodes='101' live='99' memory='32696' stamp='0.239'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2420' cnt='2420.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='20' compiler='c2' level='4' iicount='2097'/>
+<call method='1099' count='2263' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='2420.000000' stamp='0.239'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1983' not_taken='63496' cnt='65479.000000' prob='0.0302845'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1983' not_taken='63496' cnt='63496.000000' prob='0.0302845'/>
+<parse_done nodes='241' live='233' memory='56072' stamp='0.239'/>
+</parse>
+<parse_done nodes='248' live='239' memory='57464' stamp='0.239'/>
+</parse>
+<loop_tree>
+<loop idx='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='349' inner_loop='1' main_loop='349' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='417' nmethods='110' adapters='162' free_code_cache='248577664'/>
+<task_done success='1' nmsize='440' count='6415' inlined_bytes='61' stamp='0.243'/>
+</task>
+<task compile_id='119' method='java.lang.String isLatin1 ()Z' bytes='19' count='6663' iicount='6664' stamp='0.244'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='5' compiler='c1' level='3' iicount='6667'/>
+<parse method='1093' uses='6667.000000' stamp='0.244'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='6667' cnt='6667.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='6666' cnt='6667.000000' prob='0.000149992'/>
+<parse_done nodes='48' live='47' memory='24016' stamp='0.244'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='430' nmethods='121' adapters='162' free_code_cache='248564224'/>
+<task_done success='1' nmsize='120' count='6722' stamp='0.245'/>
+</task>
+</compilation_log>
+<compilation_log thread='23810'>
+<fragment>
+<![CDATA[
+<start_compile_thread name='C2 CompilerThread5' thread='23810' process='23756' stamp='0.178'/>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='23809'>
+<fragment>
+<![CDATA[
+<start_compile_thread name='C2 CompilerThread4' thread='23809' process='23756' stamp='0.178'/>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='23808'>
+<fragment>
+<![CDATA[
+<start_compile_thread name='C2 CompilerThread3' thread='23808' process='23756' stamp='0.177'/>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='23807'>
+<fragment>
+<![CDATA[
+<start_compile_thread name='C2 CompilerThread2' thread='23807' process='23756' stamp='0.177'/>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='23806'>
+<start_compile_thread name='C2 CompilerThread1' thread='23806' process='23756' stamp='0.177'/>
+<task compile_id='211' method='java.lang.String charAt (I)C' bytes='25' count='5734' iicount='5734' stamp='0.334'>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='6' compiler='c1' level='3' iicount='5734'/>
+<parse method='1093' uses='5734.000000' stamp='0.334'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='119' compiler='c2' level='4' iicount='13240'/>
+<call method='1095' count='5224' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5734.000000' stamp='0.334'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='13240' cnt='13240.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='13239' cnt='13240.000000' prob='7.55287e-05'/>
+<parse_done nodes='59' live='58' memory='25840' stamp='0.335'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='5734' cnt='5734.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='7' compiler='c1' level='3' iicount='5746'/>
+<call method='1099' count='5224' prof_factor='1.000000' inline='1'/>
+<klass id='1102' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1099' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1102'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5734.000000' stamp='0.335'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='5746' cnt='5746.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='5746' not_taken='0' cnt='5746.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='160' live='153' memory='43840' stamp='0.335'/>
+</parse>
+<parse_done nodes='161' live='153' memory='44296' stamp='0.335'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='599' nmethods='214' adapters='232' free_code_cache='248396416'/>
+<task_done success='1' nmsize='216' count='6370' inlined_bytes='47' stamp='0.335'/>
+</task>
+</compilation_log>
+<compilation_log thread='23805'>
+<start_compile_thread name='C2 CompilerThread0' thread='23805' process='23756' stamp='0.177'/>
+<task compile_id='126' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='5380' backedge_count='2612' iicount='5380' stamp='0.246'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='47' compile_id='55' compiler='c1' level='3' iicount='5380'/>
+<parse method='1094' uses='5380.000000' stamp='0.246'>
+<bc code='180' bci='8'/>
+<uncommon_trap bci='8' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='11'/>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='12'/>
+<branch target_bci='45' taken='170' not_taken='7807' cnt='7977.000000' prob='0.0213113'/>
+<uncommon_trap bci='15' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='19'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='26' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='27'/>
+<branch target_bci='32' taken='2598' not_taken='5210' cnt='7808.000000' prob='0.332736'/>
+<bc code='162' bci='12'/>
+<branch target_bci='45' taken='170' not_taken='7807' cnt='2598.000000' prob='0.0213113'/>
+<parse_done nodes='209' live='200' memory='49896' stamp='0.246'/>
+</parse>
+<loop_tree>
+<loop idx='218' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='439' nmethods='128' adapters='162' free_code_cache='248555264'/>
+<task_done success='1' nmsize='216' count='6515' backedge_count='3168' stamp='0.247'/>
+</task>
+<task compile_id='161' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='6410' iicount='6410' stamp='0.253'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='65' compiler='c1' level='3' iicount='6430'/>
+<parse method='1094' uses='6430.000000' stamp='0.254'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='6430' not_taken='0' cnt='6430.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1097' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='93' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' count='6172' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='3982' receiver2='1096' receiver2_count='139'/>
+<intrinsic id='_hashCode' virtual='1' nodes='55'/>
+<parse_done nodes='100' live='98' memory='32304' stamp='0.254'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='476' nmethods='163' adapters='162' free_code_cache='248505600'/>
+<task_done success='1' nmsize='184' count='6695' stamp='0.255'/>
+</task>
+</compilation_log>
+<hotspot_log_done stamp='0.347'/>
+</hotspot_log>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/utils/LogCompilation/src/test/resources/hotspot_pid25109.log	Wed Jan 31 17:45:48 2018 -0500
@@ -0,0 +1,96921 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<hotspot_log version='160 1' process='25109' time_ms='1516230033491'>
+<vm_version>
+<name>
+Java HotSpot(TM) 64-Bit Server VM
+</name>
+<release>
+9+181
+</release>
+<info>
+Java HotSpot(TM) 64-Bit Server VM (9+181) for linux-amd64 JRE (9+181), built on Aug  3 2017 04:03:00 by &quot;javare&quot; with gcc 4.9.2
+</info>
+</vm_version>
+<vm_arguments>
+<args>
+-XX:+UnlockDiagnosticVMOptions -XX:+LogCompilation </args>
+<command>
+target/LogCompilation-1.0-SNAPSHOT.jar -i src/test/resources/hotspot_pid23756.log
+</command>
+<launcher>
+SUN_STANDARD
+</launcher>
+<properties>
+java.vm.specification.name=Java Virtual Machine Specification
+java.vm.version=9+181
+java.vm.name=Java HotSpot(TM) 64-Bit Server VM
+java.vm.info=mixed mode, aot, sharing
+jdk.debug=release
+sun.boot.library.path=/opt/jdk-9/lib
+java.library.path=/usr/java/packages/lib:/usr/lib64:/lib64:/lib:/usr/lib
+java.home=/opt/jdk-9
+java.class.path=target/LogCompilation-1.0-SNAPSHOT.jar
+jdk.boot.class.path.append=
+java.vm.specification.vendor=Oracle Corporation
+java.vm.specification.version=9
+java.vm.vendor=Oracle Corporation
+sun.java.command=target/LogCompilation-1.0-SNAPSHOT.jar -i src/test/resources/hotspot_pid23756.log
+sun.java.launcher=SUN_STANDARD
+</properties>
+</vm_arguments>
+<tty>
+<writer thread='25110'/>
+<blob name='MethodHandlesAdapterBlob' size='32000'>
+<sect index='1' size='32000' free='31628'/>
+</blob>
+<writer thread='25158'/>
+<thread_logfile thread='25158' filename='/tmp/hs_c25158_pid25109.log'/>
+<writer thread='25159'/>
+<thread_logfile thread='25159' filename='/tmp/hs_c25159_pid25109.log'/>
+<writer thread='25160'/>
+<thread_logfile thread='25160' filename='/tmp/hs_c25160_pid25109.log'/>
+<writer thread='25161'/>
+<thread_logfile thread='25161' filename='/tmp/hs_c25161_pid25109.log'/>
+<writer thread='25162'/>
+<thread_logfile thread='25162' filename='/tmp/hs_c25162_pid25109.log'/>
+<writer thread='25163'/>
+<thread_logfile thread='25163' filename='/tmp/hs_c25163_pid25109.log'/>
+<writer thread='25164'/>
+<thread_logfile thread='25164' filename='/tmp/hs_c25164_pid25109.log'/>
+<writer thread='25165'/>
+<thread_logfile thread='25165' filename='/tmp/hs_c25165_pid25109.log'/>
+<writer thread='25166'/>
+<thread_logfile thread='25166' filename='/tmp/hs_c25166_pid25109.log'/>
+<writer thread='25167'/>
+<thread_logfile thread='25167' filename='/tmp/hs_c25167_pid25109.log'/>
+<writer thread='25168'/>
+<thread_logfile thread='25168' filename='/tmp/hs_c25168_pid25109.log'/>
+<writer thread='25169'/>
+<thread_logfile thread='25169' filename='/tmp/hs_c25169_pid25109.log'/>
+<writer thread='25170'/>
+<sweeper state='finished' traversals='0'  total_blobs='219' nmethods='0' adapters='128' free_code_cache='248788480' stamp='0.108'/>
+<writer thread='25110'/>
+<task_queued compile_id='1' method='java.lang.String isLatin1 ()Z' bytes='19' count='768' iicount='768' level='3' stamp='0.108' comment='tiered' hot_count='768'/>
+<writer thread='25166'/>
+<nmethod compile_id='1' compiler='c1' level='3' entry='0x00007fba5e2861c0' size='976' address='0x00007fba5e286010' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='920' dependencies_offset='968' metadata_offset='896' method='java.lang.String isLatin1 ()Z' bytes='19' count='771' iicount='771' stamp='0.109'/>
+<writer thread='25110'/>
+<task_queued compile_id='2' method='java.lang.StringUTF16 getChar ([BI)C' bytes='60' count='256' iicount='256' level='3' stamp='0.109' comment='tiered' hot_count='256'/>
+<task_queued compile_id='3' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='110' backedge_count='2048' iicount='110' level='3' stamp='0.109' comment='tiered' hot_count='110'/>
+<writer thread='25167'/>
+<nmethod compile_id='2' compiler='c1' level='3' entry='0x00007fba5e2865c0' size='1048' address='0x00007fba5e286410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='904' dependencies_offset='1016' nul_chk_table_offset='1024' metadata_offset='864' method='java.lang.StringUTF16 getChar ([BI)C' bytes='60' count='512' iicount='512' stamp='0.110'/>
+<writer thread='25168'/>
+<nmethod compile_id='3' compiler='c1' level='3' entry='0x00007fba5e286a40' size='1152' address='0x00007fba5e286890' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='968' scopes_pcs_offset='1032' dependencies_offset='1128' nul_chk_table_offset='1136' metadata_offset='960' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='114' backedge_count='2242' iicount='114' stamp='0.110'/>
+<writer thread='25110'/>
+<task_queued compile_id='4' method='java.lang.String coder ()B' bytes='15' count='640' iicount='640' level='3' stamp='0.114' comment='tiered' hot_count='640'/>
+<writer thread='25169'/>
+<nmethod compile_id='4' compiler='c1' level='3' entry='0x00007fba5e286f40' size='880' address='0x00007fba5e286d90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.String coder ()B' bytes='15' count='665' iicount='665' stamp='0.114'/>
+<writer thread='25110'/>
+<task_queued compile_id='5' method='java.lang.String charAt (I)C' bytes='25' count='512' iicount='512' level='3' stamp='0.116' comment='tiered' hot_count='512'/>
+<task_queued compile_id='6' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='512' iicount='512' level='3' stamp='0.116' comment='tiered' hot_count='512'/>
+<writer thread='25167'/>
+<nmethod compile_id='6' compiler='c1' level='3' entry='0x00007fba5e2872e0' size='1240' address='0x00007fba5e287110' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1104' dependencies_offset='1216' nul_chk_table_offset='1224' metadata_offset='1048' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='622' iicount='622' stamp='0.117'/>
+<writer thread='25166'/>
+<nmethod compile_id='5' compiler='c1' level='3' entry='0x00007fba5e287820' size='2400' address='0x00007fba5e287610' relocation_offset='368' insts_offset='528' stub_offset='1744' scopes_data_offset='1976' scopes_pcs_offset='2144' dependencies_offset='2368' nul_chk_table_offset='2376' metadata_offset='1928' method='java.lang.String charAt (I)C' bytes='25' count='660' iicount='660' stamp='0.117'/>
+<writer thread='25110'/>
+<task_queued compile_id='7' method='java.lang.StringLatin1 equals ([B[B)Z' bytes='36' count='256' backedge_count='400' iicount='256' level='3' stamp='0.119' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='7' compiler='c1' level='3' entry='0x00007fba5e288140' size='1344' address='0x00007fba5e287f90' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1184' dependencies_offset='1312' nul_chk_table_offset='1320' metadata_offset='1120' method='java.lang.StringLatin1 equals ([B[B)Z' bytes='36' count='256' backedge_count='400' iicount='256' stamp='0.119'/>
+<writer thread='25110'/>
+<task_queued compile_id='8' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='384' iicount='384' level='3' stamp='0.120' comment='tiered' hot_count='384'/>
+<writer thread='25169'/>
+<nmethod compile_id='8' compiler='c1' level='3' entry='0x00007fba5e288720' size='2784' address='0x00007fba5e288510' relocation_offset='368' insts_offset='528' stub_offset='2288' scopes_data_offset='2496' scopes_pcs_offset='2600' dependencies_offset='2760' nul_chk_table_offset='2768' metadata_offset='2472' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='416' iicount='416' stamp='0.120'/>
+<writer thread='25110'/>
+<task_queued compile_id='9' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='768' iicount='768' level='3' stamp='0.123' comment='tiered' hot_count='768'/>
+<writer thread='25167'/>
+<nmethod compile_id='9' compiler='c1' level='3' entry='0x00007fba5e2891c0' size='872' address='0x00007fba5e289010' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='800' dependencies_offset='864' metadata_offset='768' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='776' iicount='776' stamp='0.124'/>
+<writer thread='25110'/>
+<task_queued compile_id='10' method='java.lang.String hashCode ()I' bytes='49' count='256' iicount='256' level='3' stamp='0.127' comment='tiered' hot_count='256'/>
+<task_queued compile_id='11' method='java.lang.Math floorMod (II)I' bytes='10' count='256' iicount='256' level='3' stamp='0.128' comment='tiered' hot_count='256'/>
+<task_queued compile_id='12' method='java.lang.Math floorDiv (II)I' bytes='22' count='256' iicount='256' level='3' stamp='0.128' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='10' compiler='c1' level='3' entry='0x00007fba5e289580' size='1912' address='0x00007fba5e289390' relocation_offset='368' insts_offset='496' stub_offset='1456' scopes_data_offset='1648' scopes_pcs_offset='1744' dependencies_offset='1888' nul_chk_table_offset='1896' metadata_offset='1624' method='java.lang.String hashCode ()I' bytes='49' count='624' iicount='624' stamp='0.128'/>
+<writer thread='25110'/>
+<task_queued compile_id='13' method='java.util.ImmutableCollections$SetN probe (Ljava/lang/Object;)I' bytes='60' count='256' backedge_count='81' iicount='256' level='3' stamp='0.128' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='12' compiler='c1' level='3' entry='0x00007fba5e289d40' size='1024' address='0x00007fba5e289b90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='936' dependencies_offset='1000' nul_chk_table_offset='1008' metadata_offset='896' method='java.lang.Math floorDiv (II)I' bytes='22' count='317' iicount='317' stamp='0.128'/>
+<writer thread='25168'/>
+<nmethod compile_id='11' compiler='c1' level='3' entry='0x00007fba5e28a1c0' size='1176' address='0x00007fba5e28a010' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1008' scopes_pcs_offset='1072' dependencies_offset='1152' nul_chk_table_offset='1160' metadata_offset='992' method='java.lang.Math floorMod (II)I' bytes='10' count='317' iicount='317' stamp='0.128'/>
+<writer thread='25166'/>
+<nmethod compile_id='13' compiler='c1' level='3' entry='0x00007fba5e28a700' size='2520' address='0x00007fba5e28a510' relocation_offset='368' insts_offset='496' stub_offset='1840' scopes_data_offset='2048' scopes_pcs_offset='2224' dependencies_offset='2464' nul_chk_table_offset='2472' metadata_offset='2024' method='java.util.ImmutableCollections$SetN probe (Ljava/lang/Object;)I' bytes='60' count='426' backedge_count='175' iicount='426' stamp='0.129'/>
+<writer thread='25110'/>
+<task_queued compile_id='14' method='java.util.ImmutableCollections$Set0 hashCode ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.130' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='14' compiler='c1' level='1' entry='0x00007fba656e71c0' size='752' address='0x00007fba656e7010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set0 hashCode ()I' bytes='2' count='181' iicount='181' stamp='0.131'/>
+<writer thread='25110'/>
+<task_queued compile_id='15' method='java.util.Collections emptySet ()Ljava/util/Set;' bytes='4' count='256' iicount='256' level='3' stamp='0.131' comment='tiered' hot_count='256'/>
+<task_queued compile_id='16' method='java.util.Collections$EmptySet hashCode ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.131' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='15' compiler='c1' level='3' entry='0x00007fba5e28b0c0' size='808' address='0x00007fba5e28af10' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='744' scopes_pcs_offset='752' dependencies_offset='800' metadata_offset='736' method='java.util.Collections emptySet ()Ljava/util/Set;' bytes='4' count='268' iicount='268' stamp='0.131'/>
+<writer thread='25110'/>
+<task_queued compile_id='17' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='256' iicount='256' level='3' stamp='0.131' comment='tiered' hot_count='256'/>
+<task_queued compile_id='18' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;Z)V' bytes='20' count='256' iicount='256' level='3' stamp='0.131' comment='tiered' hot_count='256'/>
+<task_queued compile_id='19' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='782' backedge_count='18626' iicount='782' stamp='0.131' comment='tiered' hot_count='782'/>
+<task_queued compile_id='20' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='256' iicount='256' level='3' stamp='0.131' comment='tiered' hot_count='256'/>
+<task_queued compile_id='21' method='java.lang.module.ModuleDescriptor$Exports hashCode ()I' bytes='38' count='256' iicount='256' level='3' stamp='0.131' comment='tiered' hot_count='256'/>
+<task_queued compile_id='22' method='java.util.Objects equals (Ljava/lang/Object;Ljava/lang/Object;)Z' bytes='23' count='256' iicount='256' level='3' stamp='0.131' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='16' compiler='c1' level='1' entry='0x00007fba656e74c0' size='752' address='0x00007fba656e7310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptySet hashCode ()I' bytes='2' count='164' iicount='164' stamp='0.132'/>
+<writer thread='25169'/>
+<nmethod compile_id='17' compiler='c1' level='3' entry='0x00007fba5e28b460' size='1504' address='0x00007fba5e28b290' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1336' scopes_pcs_offset='1416' dependencies_offset='1496' metadata_offset='1312' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='331' iicount='331' stamp='0.132'/>
+<writer thread='25166'/>
+<nmethod compile_id='18' compiler='c1' level='3' entry='0x00007fba5e28ba40' size='1328' address='0x00007fba5e28b890' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1200' scopes_pcs_offset='1256' dependencies_offset='1320' metadata_offset='1184' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;Z)V' bytes='20' count='331' iicount='331' stamp='0.132'/>
+<writer thread='25167'/>
+<nmethod compile_id='20' compiler='c1' level='3' entry='0x00007fba5e28bfc0' size='1128' address='0x00007fba5e28be10' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1024' dependencies_offset='1120' metadata_offset='984' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='456' iicount='456' stamp='0.132'/>
+<writer thread='25168'/>
+<nmethod compile_id='21' compiler='c1' level='3' entry='0x00007fba5e28c460' size='1728' address='0x00007fba5e28c290' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1472' scopes_pcs_offset='1544' dependencies_offset='1688' nul_chk_table_offset='1696' metadata_offset='1464' method='java.lang.module.ModuleDescriptor$Exports hashCode ()I' bytes='38' count='316' iicount='316' stamp='0.132'/>
+<writer thread='25169'/>
+<nmethod compile_id='22' compiler='c1' level='3' entry='0x00007fba5e28cb40' size='1280' address='0x00007fba5e28c990' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1152' scopes_pcs_offset='1176' dependencies_offset='1256' nul_chk_table_offset='1264' metadata_offset='1144' method='java.util.Objects equals (Ljava/lang/Object;Ljava/lang/Object;)Z' bytes='23' count='293' iicount='293' stamp='0.132'/>
+<writer thread='25110'/>
+<task_queued compile_id='23' method='java.util.AbstractCollection &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.132' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='23' compiler='c1' level='3' entry='0x00007fba5e28d0c0' size='992' address='0x00007fba5e28cf10' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='888' scopes_pcs_offset='920' dependencies_offset='984' metadata_offset='864' method='java.util.AbstractCollection &lt;init&gt; ()V' bytes='5' count='283' iicount='283' stamp='0.133'/>
+<writer thread='25110'/>
+<task_queued compile_id='24' method='java.util.AbstractSet &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.133' comment='tiered' hot_count='256'/>
+<task_queued compile_id='25' method='java.util.ImmutableCollections$AbstractImmutableSet &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.133' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='24' compiler='c1' level='3' entry='0x00007fba5e28d4c0' size='1120' address='0x00007fba5e28d310' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.util.AbstractSet &lt;init&gt; ()V' bytes='5' count='300' iicount='300' stamp='0.133'/>
+<writer thread='25168'/>
+<nmethod compile_id='25' compiler='c1' level='3' entry='0x00007fba5e28d940' size='1256' address='0x00007fba5e28d790' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1096' scopes_pcs_offset='1152' dependencies_offset='1248' metadata_offset='1056' method='java.util.ImmutableCollections$AbstractImmutableSet &lt;init&gt; ()V' bytes='5' count='308' iicount='309' stamp='0.133'/>
+<writer thread='25110'/>
+<task_queued compile_id='26' method='java.util.Set of ([Ljava/lang/Object;)Ljava/util/Set;' bytes='66' count='256' iicount='256' level='3' stamp='0.133' comment='tiered' hot_count='256'/>
+<task_queued compile_id='27' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='12' count='256' iicount='256' level='3' stamp='0.133' comment='tiered' hot_count='256'/>
+<task_queued compile_id='28' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='13' count='256' iicount='256' level='3' stamp='0.133' comment='tiered' hot_count='256'/>
+<task_queued compile_id='29' method='java.util.Collections$EmptySet contains (Ljava/lang/Object;)Z' bytes='2' count='128' iicount='128' level='1' stamp='0.134' comment='tiered' hot_count='128'/>
+<task_queued compile_id='30' method='java.util.ImmutableCollections$SetN &lt;init&gt; ([Ljava/lang/Object;)V' bytes='90' count='161' backedge_count='2048' iicount='161' level='3' stamp='0.134' comment='tiered' hot_count='161'/>
+<writer thread='25166'/>
+<nmethod compile_id='29' compiler='c1' level='1' entry='0x00007fba656e77c0' size='752' address='0x00007fba656e7610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptySet contains (Ljava/lang/Object;)Z' bytes='2' count='132' iicount='132' stamp='0.134'/>
+<writer thread='25167'/>
+<nmethod compile_id='27' compiler='c1' level='3' entry='0x00007fba5e28de60' size='1904' address='0x00007fba5e28dc90' relocation_offset='368' insts_offset='464' stub_offset='1424' scopes_data_offset='1616' scopes_pcs_offset='1768' dependencies_offset='1896' metadata_offset='1568' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='12' count='305' iicount='305' stamp='0.134'/>
+<writer thread='25110'/>
+<task_queued compile_id='31' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='11' count='256' iicount='256' level='3' stamp='0.134' comment='tiered' hot_count='256'/>
+<task_queued compile_id='32' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='15' count='256' iicount='256' level='3' stamp='0.134' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='28' compiler='c1' level='3' entry='0x00007fba5e28e5e0' size='1792' address='0x00007fba5e28e410' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1536' scopes_pcs_offset='1672' dependencies_offset='1784' metadata_offset='1504' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='13' count='305' iicount='305' stamp='0.134'/>
+<writer thread='25169'/>
+<nmethod compile_id='26' compiler='c1' level='3' entry='0x00007fba5e28edc0' size='3104' address='0x00007fba5e28eb90' relocation_offset='368' insts_offset='560' stub_offset='2256' scopes_data_offset='2520' scopes_pcs_offset='2728' dependencies_offset='3080' nul_chk_table_offset='3088' metadata_offset='2456' method='java.util.Set of ([Ljava/lang/Object;)Ljava/util/Set;' bytes='66' count='305' iicount='305' stamp='0.134'/>
+<writer thread='25163'/>
+<nmethod compile_id='19' compiler='c2' level='4' entry='0x00007fba656e7aa0' size='856' address='0x00007fba656e7910' relocation_offset='368' insts_offset='400' stub_offset='688' scopes_data_offset='720' scopes_pcs_offset='768' dependencies_offset='832' nul_chk_table_offset='840' metadata_offset='712' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='1851' backedge_count='57491' iicount='1851' stamp='0.134'/>
+<make_not_entrant thread='25163' compile_id='3' compiler='c1' level='3' stamp='0.134'/>
+<writer thread='25110'/>
+<task_queued compile_id='33' method='java.util.ImmutableCollections$Set1 hashCode ()I' bytes='8' count='256' iicount='256' level='3' stamp='0.134' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='32' compiler='c1' level='3' entry='0x00007fba5e28f9e0' size='1928' address='0x00007fba5e28f810' relocation_offset='368' insts_offset='464' stub_offset='1456' scopes_data_offset='1648' scopes_pcs_offset='1792' dependencies_offset='1920' oops_offset='1600' metadata_offset='1608' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='15' count='303' iicount='303' stamp='0.135'/>
+<writer thread='25167'/>
+<nmethod compile_id='31' compiler='c1' level='3' entry='0x00007fba5e290200' size='2104' address='0x00007fba5e290010' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1792' scopes_pcs_offset='1952' dependencies_offset='2096' oops_offset='1728' metadata_offset='1736' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='11' count='303' iicount='303' stamp='0.135'/>
+<writer thread='25169'/>
+<nmethod compile_id='33' compiler='c1' level='3' entry='0x00007fba5e290a40' size='1120' address='0x00007fba5e290890' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.ImmutableCollections$Set1 hashCode ()I' bytes='8' count='277' iicount='277' stamp='0.135'/>
+<writer thread='25110'/>
+<task_queued compile_id='34' method='java.lang.module.ModuleDescriptor$Exports equals (Ljava/lang/Object;)Z' bytes='62' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<task_queued compile_id='35' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='7' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<task_queued compile_id='36' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='51' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<task_queued compile_id='37' method='java.lang.module.ModuleDescriptor$1 newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='13' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<task_queued compile_id='38' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<task_queued compile_id='39' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;Z)V' bytes='25' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='35' compiler='c1' level='3' entry='0x00007fba5e290ec0' size='896' address='0x00007fba5e290d10' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='800' scopes_pcs_offset='824' dependencies_offset='888' metadata_offset='792' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='7' count='322' iicount='322' stamp='0.135'/>
+<writer thread='25110'/>
+<task_queued compile_id='40' method='java.lang.module.ModuleDescriptor$Requires hashCode ()I' bytes='63' count='256' iicount='256' level='3' stamp='0.135' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='34' compiler='c1' level='3' entry='0x00007fba5e291340' size='3488' address='0x00007fba5e291110' relocation_offset='368' insts_offset='560' stub_offset='2864' scopes_data_offset='3080' scopes_pcs_offset='3216' dependencies_offset='3440' nul_chk_table_offset='3448' metadata_offset='3064' method='java.lang.module.ModuleDescriptor$Exports equals (Ljava/lang/Object;)Z' bytes='62' count='267' iicount='267' stamp='0.136'/>
+<writer thread='25166'/>
+<nmethod compile_id='30' compiler='c1' level='3' entry='0x00007fba5e292200' size='6744' address='0x00007fba5e291f10' relocation_offset='368' insts_offset='752' stub_offset='5168' scopes_data_offset='5560' scopes_pcs_offset='6072' dependencies_offset='6696' nul_chk_table_offset='6704' oops_offset='5448' metadata_offset='5456' method='java.util.ImmutableCollections$SetN &lt;init&gt; ([Ljava/lang/Object;)V' bytes='90' count='219' backedge_count='3037' iicount='219' stamp='0.136'/>
+<writer thread='25168'/>
+<nmethod compile_id='37' compiler='c1' level='3' entry='0x00007fba5e293b60' size='1792' address='0x00007fba5e293990' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1536' scopes_pcs_offset='1672' dependencies_offset='1784' metadata_offset='1504' method='java.lang.module.ModuleDescriptor$1 newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='13' count='349' iicount='349' stamp='0.136'/>
+<writer thread='25169'/>
+<nmethod compile_id='38' compiler='c1' level='3' entry='0x00007fba5e2942e0' size='1536' address='0x00007fba5e294110' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1368' scopes_pcs_offset='1448' dependencies_offset='1528' metadata_offset='1344' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='349' iicount='349' stamp='0.136'/>
+<writer thread='25167'/>
+<nmethod compile_id='36' compiler='c1' level='3' entry='0x00007fba5e2949a0' size='3088' address='0x00007fba5e294790' relocation_offset='368' insts_offset='528' stub_offset='2352' scopes_data_offset='2592' scopes_pcs_offset='2832' dependencies_offset='3056' nul_chk_table_offset='3064' metadata_offset='2536' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='51' count='349' iicount='349' stamp='0.136'/>
+<writer thread='25166'/>
+<nmethod compile_id='39' compiler='c1' level='3' entry='0x00007fba5e2955c0' size='1360' address='0x00007fba5e295410' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1232' scopes_pcs_offset='1288' dependencies_offset='1352' metadata_offset='1216' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;Z)V' bytes='25' count='349' iicount='349' stamp='0.136'/>
+<writer thread='25168'/>
+<nmethod compile_id='40' compiler='c1' level='3' entry='0x00007fba5e295b80' size='2424' address='0x00007fba5e295990' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2040' scopes_pcs_offset='2160' dependencies_offset='2368' nul_chk_table_offset='2376' metadata_offset='2024' method='java.lang.module.ModuleDescriptor$Requires hashCode ()I' bytes='63' count='283' iicount='283' stamp='0.136'/>
+<writer thread='25110'/>
+<task_queued compile_id='41' method='java.lang.module.ModuleDescriptor name ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.137' comment='tiered' hot_count='128'/>
+<task_queued compile_id='42' method='java.nio.Buffer checkIndex (I)I' bytes='22' count='256' iicount='256' level='3' stamp='0.137' comment='tiered' hot_count='256'/>
+<task_queued compile_id='43' method='java.nio.DirectLongBufferU ix (I)J' bytes='10' count='256' iicount='256' level='3' stamp='0.137' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='41' compiler='c1' level='1' entry='0x00007fba656e7e40' size='752' address='0x00007fba656e7c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor name ()Ljava/lang/String;' bytes='5' count='176' iicount='176' stamp='0.138'/>
+<writer thread='25167'/>
+<nmethod compile_id='43' compiler='c1' level='3' entry='0x00007fba5e296540' size='880' address='0x00007fba5e296390' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.nio.DirectLongBufferU ix (I)J' bytes='10' count='362' iicount='362' stamp='0.138'/>
+<writer thread='25169'/>
+<nmethod compile_id='42' compiler='c1' level='3' entry='0x00007fba5e2968e0' size='1200' address='0x00007fba5e296710' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1096' dependencies_offset='1192' metadata_offset='1048' method='java.nio.Buffer checkIndex (I)I' bytes='22' count='382' iicount='382' stamp='0.138'/>
+<writer thread='25110'/>
+<nmethod compile_id='44' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656e8160' size='984' address='0x00007fba656e7f90' relocation_offset='368' consts_offset='984' insts_offset='464' method='java.lang.System arraycopy (Ljava/lang/Object;ILjava/lang/Object;II)V' bytes='0' count='256' iicount='256' stamp='0.138'/>
+<task_queued compile_id='45' method='java.lang.String length ()I' bytes='11' count='256' iicount='256' level='3' stamp='0.138' comment='tiered' hot_count='256'/>
+<task_queued compile_id='46' method='java.lang.module.ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='128' iicount='128' level='1' stamp='0.138' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='45' compiler='c1' level='3' entry='0x00007fba5e296dc0' size='1216' address='0x00007fba5e296c10' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1072' scopes_pcs_offset='1112' dependencies_offset='1192' nul_chk_table_offset='1200' metadata_offset='1056' method='java.lang.String length ()I' bytes='11' count='322' iicount='322' stamp='0.138'/>
+<writer thread='25110'/>
+<task_queued compile_id='47' method='java.net.URI hash (ILjava/lang/String;)I' bytes='33' count='256' iicount='256' level='3' stamp='0.138' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='46' compiler='c1' level='1' entry='0x00007fba656e8540' size='752' address='0x00007fba656e8390' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='227' iicount='227' stamp='0.138'/>
+<writer thread='25110'/>
+<task_queued compile_id='48' method='java.net.URI toLower (C)I' bytes='19' count='256' iicount='256' level='3' stamp='0.138' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='48' compiler='c1' level='3' entry='0x00007fba5e2972c0' size='944' address='0x00007fba5e297110' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.net.URI toLower (C)I' bytes='19' count='297' iicount='297' stamp='0.139'/>
+<writer thread='25167'/>
+<nmethod compile_id='47' compiler='c1' level='3' entry='0x00007fba5e297720' size='2488' address='0x00007fba5e297510' relocation_offset='368' insts_offset='528' stub_offset='1904' scopes_data_offset='2152' scopes_pcs_offset='2288' dependencies_offset='2464' nul_chk_table_offset='2472' metadata_offset='2120' method='java.net.URI hash (ILjava/lang/String;)I' bytes='33' count='396' iicount='396' stamp='0.139'/>
+<writer thread='25110'/>
+<task_queued compile_id='49' method='java.lang.String isLatin1 ()Z' bytes='19' count='5632' iicount='5632' stamp='0.140' comment='tiered' hot_count='5632'/>
+<task_queued compile_id='50' method='java.lang.StringLatin1 canEncode (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.140' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='50' compiler='c1' level='3' entry='0x00007fba5e2980c0' size='912' address='0x00007fba5e297f10' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.StringLatin1 canEncode (I)Z' bytes='13' count='283' iicount='283' stamp='0.141'/>
+<writer thread='25165'/>
+<nmethod compile_id='49' compiler='c2' level='4' entry='0x00007fba656e8820' size='568' address='0x00007fba656e8690' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='520' scopes_pcs_offset='528' dependencies_offset='560' method='java.lang.String isLatin1 ()Z' bytes='19' count='5913' iicount='5913' stamp='0.141'/>
+<make_not_entrant thread='25165' compile_id='1' compiler='c1' level='3' stamp='0.141'/>
+<writer thread='25110'/>
+<task_queued compile_id='51' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='3584' iicount='3584' level='1' stamp='0.142' comment='tiered' hot_count='3584'/>
+<writer thread='25168'/>
+<nmethod compile_id='51' compiler='c1' level='1' entry='0x00007fba656e8ac0' size='784' address='0x00007fba656e8910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='728' dependencies_offset='776' metadata_offset='704' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='3692' iicount='3692' stamp='0.142'/>
+<make_not_entrant thread='25168' compile_id='9' compiler='c1' level='3' stamp='0.142'/>
+<writer thread='25110'/>
+<task_queued compile_id='52' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='640' iicount='640' level='3' stamp='0.144' comment='tiered' hot_count='640'/>
+<task_queued compile_id='53' method='jdk.internal.misc.Unsafe getObjectAcquire (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='7' count='640' iicount='640' level='3' stamp='0.144' comment='tiered' hot_count='640'/>
+<nmethod compile_id='54' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656e8e60' size='1104' address='0x00007fba656e8c90' relocation_offset='368' consts_offset='1104' insts_offset='464' method='jdk.internal.misc.Unsafe getObjectVolatile (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='0' count='640' iicount='640' stamp='0.144'/>
+<writer thread='25167'/>
+<nmethod compile_id='53' compiler='c1' level='3' entry='0x00007fba5e2984c0' size='952' address='0x00007fba5e298310' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='896' dependencies_offset='944' metadata_offset='864' method='jdk.internal.misc.Unsafe getObjectAcquire (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='7' count='640' iicount='640' stamp='0.144'/>
+<writer thread='25169'/>
+<nmethod compile_id='52' compiler='c1' level='3' entry='0x00007fba5e2988c0' size='1376' address='0x00007fba5e298710' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1240' scopes_pcs_offset='1288' dependencies_offset='1368' oops_offset='1216' metadata_offset='1224' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='640' iicount='640' stamp='0.144'/>
+<writer thread='25110'/>
+<task_queued compile_id='55' method='java.util.concurrent.ConcurrentHashMap spread (I)I' bytes='10' count='256' iicount='256' level='3' stamp='0.144' comment='tiered' hot_count='256'/>
+<task_queued compile_id='56' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='256' backedge_count='122' iicount='256' level='3' stamp='0.144' comment='tiered' hot_count='256'/>
+<nmethod compile_id='57' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656e92e0' size='1016' address='0x00007fba656e9110' relocation_offset='368' consts_offset='1016' insts_offset='464' method='jdk.internal.misc.Unsafe compareAndSetObject (Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z' bytes='0' count='256' iicount='256' stamp='0.144'/>
+<task_queued compile_id='58' method='java.util.concurrent.ConcurrentHashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;)V' bytes='20' count='256' iicount='256' level='3' stamp='0.144' comment='tiered' hot_count='256'/>
+<task_queued compile_id='59' method='java.util.concurrent.ConcurrentHashMap casTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z' bytes='21' count='256' iicount='256' level='3' stamp='0.145' comment='tiered' hot_count='256'/>
+<task_queued compile_id='60' method='java.util.concurrent.ConcurrentHashMap putVal (Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;' bytes='432' count='256' backedge_count='23' iicount='256' level='3' stamp='0.145' comment='tiered' hot_count='256'/>
+<task_queued compile_id='61' method='java.util.concurrent.ConcurrentHashMap addCount (JI)V' bytes='289' count='256' backedge_count='3' iicount='256' level='3' stamp='0.145' comment='tiered' hot_count='256'/>
+<nmethod compile_id='62' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656e9760' size='976' address='0x00007fba656e9590' relocation_offset='368' consts_offset='976' insts_offset='464' method='jdk.internal.misc.Unsafe compareAndSetLong (Ljava/lang/Object;JJJ)Z' bytes='0' count='256' iicount='256' stamp='0.145'/>
+<writer thread='25168'/>
+<nmethod compile_id='55' compiler='c1' level='3' entry='0x00007fba5e298e40' size='848' address='0x00007fba5e298c90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.util.concurrent.ConcurrentHashMap spread (I)I' bytes='10' count='348' iicount='348' stamp='0.145'/>
+<writer thread='25166'/>
+<nmethod compile_id='56' compiler='c1' level='3' entry='0x00007fba5e2991c0' size='1296' address='0x00007fba5e299010' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1096' scopes_pcs_offset='1136' dependencies_offset='1264' nul_chk_table_offset='1272' metadata_offset='1088' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='321' backedge_count='160' iicount='321' stamp='0.145'/>
+<writer thread='25167'/>
+<nmethod compile_id='59' compiler='c1' level='3' entry='0x00007fba5e299740' size='984' address='0x00007fba5e299590' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='928' dependencies_offset='976' metadata_offset='896' method='java.util.concurrent.ConcurrentHashMap casTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z' bytes='21' count='274' iicount='274' stamp='0.145'/>
+<writer thread='25169'/>
+<nmethod compile_id='58' compiler='c1' level='3' entry='0x00007fba5e299b40' size='1224' address='0x00007fba5e299990' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1152' dependencies_offset='1216' metadata_offset='1088' method='java.util.concurrent.ConcurrentHashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;)V' bytes='20' count='277' iicount='277' stamp='0.145'/>
+<writer thread='25110'/>
+<task_queued compile_id='63' method='java.util.ImmutableCollections$SetN$1 next ()Ljava/lang/Object;' bytes='35' count='256' iicount='256' level='3' stamp='0.145' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='63' compiler='c1' level='3' entry='0x00007fba5e29a060' size='1392' address='0x00007fba5e299e90' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1144' scopes_pcs_offset='1200' dependencies_offset='1360' nul_chk_table_offset='1368' metadata_offset='1128' method='java.util.ImmutableCollections$SetN$1 next ()Ljava/lang/Object;' bytes='35' count='320' iicount='320' stamp='0.145'/>
+<writer thread='25110'/>
+<task_queued compile_id='64' method='java.lang.module.ModuleDescriptor exports ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.146' comment='tiered' hot_count='128'/>
+<task_queued compile_id='65' method='java.util.ImmutableCollections$SetN size ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.146' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='61' compiler='c1' level='3' entry='0x00007fba5e29a660' size='4016' address='0x00007fba5e29a410' relocation_offset='368' insts_offset='592' stub_offset='3088' scopes_data_offset='3376' scopes_pcs_offset='3704' dependencies_offset='3976' nul_chk_table_offset='3984' metadata_offset='3352' method='java.util.concurrent.ConcurrentHashMap addCount (JI)V' bytes='289' count='259' backedge_count='3' iicount='259' stamp='0.146'/>
+<writer thread='25169'/>
+<nmethod compile_id='64' compiler='c1' level='1' entry='0x00007fba656e9b40' size='752' address='0x00007fba656e9990' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor exports ()Ljava/util/Set;' bytes='5' count='169' iicount='169' stamp='0.146'/>
+<writer thread='25166'/>
+<nmethod compile_id='65' compiler='c1' level='1' entry='0x00007fba656e9e40' size='752' address='0x00007fba656e9c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$SetN size ()I' bytes='5' count='137' iicount='137' stamp='0.146'/>
+<writer thread='25168'/>
+<nmethod compile_id='60' compiler='c1' level='3' entry='0x00007fba5e29b7a0' size='12584' address='0x00007fba5e29b410' relocation_offset='368' insts_offset='912' stub_offset='9584' scopes_data_offset='9968' scopes_pcs_offset='11456' dependencies_offset='12192' handler_table_offset='12200' nul_chk_table_offset='12536' oops_offset='9896' metadata_offset='9904' method='java.util.concurrent.ConcurrentHashMap putVal (Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;' bytes='432' count='259' backedge_count='23' iicount='259' stamp='0.147'/>
+<writer thread='25110'/>
+<task_queued compile_id='66' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='256' iicount='256' level='3' stamp='0.148' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='66' compiler='c1' level='3' entry='0x00007fba5e29e740' size='1152' address='0x00007fba5e29e590' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1048' dependencies_offset='1128' nul_chk_table_offset='1136' metadata_offset='1016' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='355' iicount='355' stamp='0.148'/>
+<writer thread='25110'/>
+<task_queued compile_id='67' method='java.util.ImmutableCollections$MapN probe (Ljava/lang/Object;)I' bytes='64' count='256' backedge_count='163' iicount='256' level='3' stamp='0.148' comment='tiered' hot_count='256'/>
+<task_queued compile_id='68' method='java.lang.module.ModuleDescriptor$Requires modifiers ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.148' comment='tiered' hot_count='128'/>
+<task_queued compile_id='69' method='java.lang.module.ModuleDescriptor$Requires name ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.148' comment='tiered' hot_count='128'/>
+<task_queued compile_id='70' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='256' backedge_count='14' iicount='256' level='3' stamp='0.148' comment='tiered' hot_count='256'/>
+<task_queued compile_id='71' method='java.util.HashMap containsKey (Ljava/lang/Object;)Z' bytes='18' count='256' iicount='256' level='3' stamp='0.149' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='68' compiler='c1' level='1' entry='0x00007fba656ea140' size='752' address='0x00007fba656e9f90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Requires modifiers ()Ljava/util/Set;' bytes='5' count='182' iicount='182' stamp='0.149'/>
+<writer thread='25110'/>
+<task_queued compile_id='72' method='java.util.ImmutableCollections$Set1 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.149' comment='tiered' hot_count='128'/>
+<task_queued compile_id='73' method='java.util.HashMap put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='256' iicount='256' level='3' stamp='0.149' comment='tiered' hot_count='256'/>
+<task_queued compile_id='74' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='256' backedge_count='37' iicount='256' level='3' stamp='0.149' comment='tiered' hot_count='256'/>
+<task_queued compile_id='75' method='java.util.HashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V' bytes='26' count='256' iicount='256' level='3' stamp='0.149' comment='tiered' hot_count='256'/>
+<task_queued compile_id='76' method='java.util.HashMap newNode (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;' bytes='13' count='256' iicount='256' level='3' stamp='0.149' comment='tiered' hot_count='256'/>
+<task_queued compile_id='77' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='256' iicount='256' level='3' stamp='0.149' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='69' compiler='c1' level='1' entry='0x00007fba656ea440' size='752' address='0x00007fba656ea290' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Requires name ()Ljava/lang/String;' bytes='5' count='182' iicount='182' stamp='0.149'/>
+<writer thread='25169'/>
+<nmethod compile_id='67' compiler='c1' level='3' entry='0x00007fba5e29ec80' size='2520' address='0x00007fba5e29ea90' relocation_offset='368' insts_offset='496' stub_offset='1840' scopes_data_offset='2048' scopes_pcs_offset='2224' dependencies_offset='2464' nul_chk_table_offset='2472' metadata_offset='2024' method='java.util.ImmutableCollections$MapN probe (Ljava/lang/Object;)I' bytes='64' count='371' backedge_count='180' iicount='371' stamp='0.149'/>
+<writer thread='25168'/>
+<nmethod compile_id='71' compiler='c1' level='3' entry='0x00007fba5e29f660' size='1720' address='0x00007fba5e29f490' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1496' scopes_pcs_offset='1584' dependencies_offset='1696' nul_chk_table_offset='1704' metadata_offset='1480' method='java.util.HashMap containsKey (Ljava/lang/Object;)Z' bytes='18' count='281' iicount='281' stamp='0.149'/>
+<writer thread='25110'/>
+<task_queued compile_id='78' method='java.lang.module.ModuleDescriptor provides ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.149' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='70' compiler='c1' level='3' entry='0x00007fba5e29fdc0' size='3536' address='0x00007fba5e29fb90' relocation_offset='368' insts_offset='560' stub_offset='2832' scopes_data_offset='3040' scopes_pcs_offset='3216' dependencies_offset='3472' nul_chk_table_offset='3480' metadata_offset='3032' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='373' backedge_count='14' iicount='373' stamp='0.149'/>
+<writer thread='25110'/>
+<task_queued compile_id='79' method='java.util.Collections$1 hasNext ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.149' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='73' compiler='c1' level='3' entry='0x00007fba5e2a0b60' size='1680' address='0x00007fba5e2a0990' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1432' scopes_pcs_offset='1544' dependencies_offset='1656' nul_chk_table_offset='1664' metadata_offset='1416' method='java.util.HashMap put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='381' iicount='381' stamp='0.149'/>
+<writer thread='25168'/>
+<nmethod compile_id='75' compiler='c1' level='3' entry='0x00007fba5e2a1240' size='1320' address='0x00007fba5e2a1090' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1208' scopes_pcs_offset='1248' dependencies_offset='1312' metadata_offset='1184' method='java.util.HashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V' bytes='26' count='381' iicount='381' stamp='0.149'/>
+<writer thread='25167'/>
+<nmethod compile_id='77' compiler='c1' level='3' entry='0x00007fba5e2a17c0' size='848' address='0x00007fba5e2a1610' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='378' iicount='378' stamp='0.150'/>
+<writer thread='25168'/>
+<nmethod compile_id='72' compiler='c1' level='1' entry='0x00007fba656ea740' size='752' address='0x00007fba656ea590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set1 size ()I' bytes='2' count='159' iicount='159' stamp='0.150'/>
+<writer thread='25166'/>
+<nmethod compile_id='76' compiler='c1' level='3' entry='0x00007fba5e2a1b60' size='1640' address='0x00007fba5e2a1990' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1432' scopes_pcs_offset='1536' dependencies_offset='1632' metadata_offset='1408' method='java.util.HashMap newNode (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;' bytes='13' count='378' iicount='378' stamp='0.150'/>
+<writer thread='25167'/>
+<nmethod compile_id='78' compiler='c1' level='1' entry='0x00007fba656eaa40' size='752' address='0x00007fba656ea890' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor provides ()Ljava/util/Set;' bytes='5' count='142' iicount='142' stamp='0.150'/>
+<writer thread='25168'/>
+<nmethod compile_id='79' compiler='c1' level='1' entry='0x00007fba656ead40' size='752' address='0x00007fba656eab90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$1 hasNext ()Z' bytes='5' count='128' iicount='128' stamp='0.150'/>
+<writer thread='25110'/>
+<task_queued compile_id='80' method='java.util.AbstractCollection isEmpty ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.150' comment='tiered' hot_count='256'/>
+<task_queued compile_id='81' method='java.lang.String hashCode ()I' bytes='49' count='5433' iicount='5433' stamp='0.150' comment='tiered' hot_count='5433'/>
+<task_queued compile_id='82' method='java.lang.module.Resolver isTracing ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.150' comment='tiered' hot_count='256'/>
+<task_queued compile_id='83' method='java.util.HashMap$HashIterator hasNext ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.150' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='74' compiler='c1' level='3' entry='0x00007fba5e2a22e0' size='6888' address='0x00007fba5e2a2010' relocation_offset='368' insts_offset='720' stub_offset='5424' scopes_data_offset='5744' scopes_pcs_offset='6280' dependencies_offset='6776' nul_chk_table_offset='6784' metadata_offset='5736' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='467' backedge_count='51' iicount='467' stamp='0.150'/>
+<writer thread='25110'/>
+<task_queued compile_id='84' method='java.util.Optional ofNullable (Ljava/lang/Object;)Ljava/util/Optional;' bytes='15' count='256' iicount='256' level='3' stamp='0.150' comment='tiered' hot_count='256'/>
+<task_queued compile_id='85' method='java.util.Optional of (Ljava/lang/Object;)Ljava/util/Optional;' bytes='9' count='256' iicount='256' level='3' stamp='0.150' comment='tiered' hot_count='256'/>
+<task_queued compile_id='86' method='java.util.Optional &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='256' iicount='256' level='3' stamp='0.150' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='80' compiler='c1' level='3' entry='0x00007fba5e2a3cc0' size='1152' address='0x00007fba5e2a3b10' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1080' dependencies_offset='1144' metadata_offset='1048' method='java.util.AbstractCollection isEmpty ()Z' bytes='13' count='300' iicount='300' stamp='0.150'/>
+<writer thread='25167'/>
+<nmethod compile_id='82' compiler='c1' level='3' entry='0x00007fba5e2a41c0' size='944' address='0x00007fba5e2a4010' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.module.Resolver isTracing ()Z' bytes='13' count='316' iicount='316' stamp='0.150'/>
+<writer thread='25110'/>
+<task_queued compile_id='87' method='java.util.ImmutableCollections$MapN get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='21' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='83' compiler='c1' level='3' entry='0x00007fba5e2a45c0' size='944' address='0x00007fba5e2a4410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.HashMap$HashIterator hasNext ()Z' bytes='13' count='265' iicount='265' stamp='0.151'/>
+<writer thread='25110'/>
+<task_queued compile_id='88' method='java.util.Optional orElse (Ljava/lang/Object;)Ljava/lang/Object;' bytes='16' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<task_queued compile_id='89' method='jdk.internal.module.SystemModuleFinder find (Ljava/lang/String;)Ljava/util/Optional;' bytes='22' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<task_queued compile_id='90' method='java.lang.module.Resolver findWithBeforeFinder (Ljava/lang/String;)Ljava/lang/module/ModuleReference;' bytes='18' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<task_queued compile_id='91' method='java.util.ImmutableCollections$Set0 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.151' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='85' compiler='c1' level='3' entry='0x00007fba5e2a49e0' size='1800' address='0x00007fba5e2a4810' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1528' scopes_pcs_offset='1632' dependencies_offset='1792' metadata_offset='1496' method='java.util.Optional of (Ljava/lang/Object;)Ljava/util/Optional;' bytes='9' count='277' iicount='277' stamp='0.151'/>
+<writer thread='25167'/>
+<nmethod compile_id='87' compiler='c1' level='3' entry='0x00007fba5e2a5140' size='1128' address='0x00007fba5e2a4f90' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='1008' dependencies_offset='1104' nul_chk_table_offset='1112' metadata_offset='952' method='java.util.ImmutableCollections$MapN get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='21' count='275' iicount='275' stamp='0.151'/>
+<writer thread='25169'/>
+<nmethod compile_id='84' compiler='c1' level='3' entry='0x00007fba5e2a5600' size='2160' address='0x00007fba5e2a5410' relocation_offset='368' insts_offset='496' stub_offset='1616' scopes_data_offset='1832' scopes_pcs_offset='1960' dependencies_offset='2152' metadata_offset='1784' method='java.util.Optional ofNullable (Ljava/lang/Object;)Ljava/util/Optional;' bytes='15' count='277' iicount='277' stamp='0.151'/>
+<writer thread='25168'/>
+<nmethod compile_id='86' compiler='c1' level='3' entry='0x00007fba5e2a5e60' size='1576' address='0x00007fba5e2a5c90' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1360' scopes_pcs_offset='1440' dependencies_offset='1568' metadata_offset='1336' method='java.util.Optional &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='277' iicount='277' stamp='0.151'/>
+<writer thread='25110'/>
+<task_queued compile_id='92' method='java.util.HashSet add (Ljava/lang/Object;)Z' bytes='20' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='88' compiler='c1' level='3' entry='0x00007fba5e2a64c0' size='944' address='0x00007fba5e2a6310' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.Optional orElse (Ljava/lang/Object;)Ljava/lang/Object;' bytes='16' count='274' iicount='274' stamp='0.151'/>
+<writer thread='25110'/>
+<task_queued compile_id='93' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<task_queued compile_id='94' method='jdk.internal.module.ModuleReferenceImpl hashCode ()I' bytes='56' count='256' iicount='256' level='3' stamp='0.151' comment='tiered' hot_count='256'/>
+<nmethod compile_id='95' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656eb060' size='984' address='0x00007fba656eae90' relocation_offset='368' consts_offset='984' insts_offset='464' method='java.lang.Object hashCode ()I' bytes='0' count='256' iicount='256' stamp='0.151'/>
+<writer thread='25169'/>
+<nmethod compile_id='90' compiler='c1' level='3' entry='0x00007fba5e2a68e0' size='1784' address='0x00007fba5e2a6710' relocation_offset='368' insts_offset='464' stub_offset='1392' scopes_data_offset='1576' scopes_pcs_offset='1624' dependencies_offset='1752' nul_chk_table_offset='1760' metadata_offset='1560' method='java.lang.module.Resolver findWithBeforeFinder (Ljava/lang/String;)Ljava/lang/module/ModuleReference;' bytes='18' count='271' iicount='271' stamp='0.151'/>
+<writer thread='25110'/>
+<task_queued compile_id='96' method='java.util.HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node;' bytes='100' count='256' backedge_count='523' iicount='256' level='3' stamp='0.152' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='92' compiler='c1' level='3' entry='0x00007fba5e2a7080' size='2128' address='0x00007fba5e2a6e90' relocation_offset='368' insts_offset='496' stub_offset='1616' scopes_data_offset='1832' scopes_pcs_offset='1952' dependencies_offset='2096' nul_chk_table_offset='2104' oops_offset='1800' metadata_offset='1808' method='java.util.HashSet add (Ljava/lang/Object;)Z' bytes='20' count='390' iicount='390' stamp='0.152'/>
+<writer thread='25167'/>
+<nmethod compile_id='93' compiler='c1' level='3' entry='0x00007fba5e2a78e0' size='1760' address='0x00007fba5e2a7710' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1496' scopes_pcs_offset='1600' dependencies_offset='1728' nul_chk_table_offset='1736' metadata_offset='1480' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='467' iicount='467' stamp='0.152'/>
+<writer thread='25110'/>
+<task_queued compile_id='97' method='java.lang.module.ResolvedModule hashCode ()I' bytes='16' count='256' iicount='256' level='3' stamp='0.152' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='89' compiler='c1' level='3' entry='0x00007fba5e2a8040' size='3344' address='0x00007fba5e2a7e10' relocation_offset='368' insts_offset='560' stub_offset='2544' scopes_data_offset='2800' scopes_pcs_offset='3000' dependencies_offset='3320' nul_chk_table_offset='3328' metadata_offset='2744' method='jdk.internal.module.SystemModuleFinder find (Ljava/lang/String;)Ljava/util/Optional;' bytes='22' count='273' iicount='273' stamp='0.152'/>
+<writer thread='25110'/>
+<task_queued compile_id='98' method='java.lang.module.ModuleDescriptor requires ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.152' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='91' compiler='c1' level='1' entry='0x00007fba656eb440' size='752' address='0x00007fba656eb290' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set0 size ()I' bytes='2' count='130' iicount='130' stamp='0.152'/>
+<writer thread='25110'/>
+<task_queued compile_id='99' method='java.lang.module.ModuleDescriptor isAutomatic ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.152' comment='tiered' hot_count='128'/>
+<task_queued compile_id='100' method='java.lang.module.Resolver computeIfAbsent (Ljava/util/Map;Ljava/lang/String;Ljava/lang/module/Configuration;Ljava/lang/module/ModuleReference;)Ljava/lang/module/ResolvedModule;' bytes='42' count='256' iicount='256' level='3' stamp='0.152' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='96' compiler='c1' level='3' entry='0x00007fba5e2a8d80' size='2312' address='0x00007fba5e2a8b90' relocation_offset='368' insts_offset='496' stub_offset='1744' scopes_data_offset='1936' scopes_pcs_offset='2032' dependencies_offset='2272' nul_chk_table_offset='2280' metadata_offset='1928' method='java.util.HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node;' bytes='100' count='298' backedge_count='566' iicount='298' stamp='0.152'/>
+<writer thread='25166'/>
+<nmethod compile_id='97' compiler='c1' level='3' entry='0x00007fba5e2a96e0' size='1424' address='0x00007fba5e2a9510' relocation_offset='368' insts_offset='464' stub_offset='1040' scopes_data_offset='1232' scopes_pcs_offset='1280' dependencies_offset='1392' nul_chk_table_offset='1400' metadata_offset='1224' method='java.lang.module.ResolvedModule hashCode ()I' bytes='16' count='388' iicount='388' stamp='0.152'/>
+<writer thread='25169'/>
+<nmethod compile_id='94' compiler='c1' level='3' entry='0x00007fba5e2a9d00' size='2240' address='0x00007fba5e2a9b10' relocation_offset='368' insts_offset='496' stub_offset='1680' scopes_data_offset='1912' scopes_pcs_offset='2024' dependencies_offset='2200' nul_chk_table_offset='2208' metadata_offset='1880' method='jdk.internal.module.ModuleReferenceImpl hashCode ()I' bytes='56' count='563' iicount='563' stamp='0.152'/>
+<writer thread='25168'/>
+<nmethod compile_id='99' compiler='c1' level='1' entry='0x00007fba656eb740' size='752' address='0x00007fba656eb590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor isAutomatic ()Z' bytes='5' count='139' iicount='139' stamp='0.152'/>
+<writer thread='25167'/>
+<nmethod compile_id='98' compiler='c1' level='1' entry='0x00007fba656eba40' size='752' address='0x00007fba656eb890' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor requires ()Ljava/util/Set;' bytes='5' count='140' iicount='140' stamp='0.152'/>
+<writer thread='25110'/>
+<task_queued compile_id='101' method='java.util.ImmutableCollections$Set1 contains (Ljava/lang/Object;)Z' bytes='9' count='256' iicount='256' level='3' stamp='0.152' comment='tiered' hot_count='256'/>
+<task_queued compile_id='102' method='java.lang.Enum equals (Ljava/lang/Object;)Z' bytes='11' count='256' iicount='256' level='3' stamp='0.152' comment='tiered' hot_count='256'/>
+<task_queued compile_id='103' method='java.util.AbstractMap &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.152' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='102' compiler='c1' level='3' entry='0x00007fba5e2aa5c0' size='944' address='0x00007fba5e2aa410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.Enum equals (Ljava/lang/Object;)Z' bytes='11' count='274' iicount='274' stamp='0.153'/>
+<writer thread='25169'/>
+<nmethod compile_id='101' compiler='c1' level='3' entry='0x00007fba5e2aa9c0' size='1128' address='0x00007fba5e2aa810' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1024' dependencies_offset='1104' nul_chk_table_offset='1112' metadata_offset='984' method='java.util.ImmutableCollections$Set1 contains (Ljava/lang/Object;)Z' bytes='9' count='274' iicount='274' stamp='0.153'/>
+<writer thread='25167'/>
+<nmethod compile_id='103' compiler='c1' level='3' entry='0x00007fba5e2aae40' size='992' address='0x00007fba5e2aac90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='888' scopes_pcs_offset='920' dependencies_offset='984' metadata_offset='864' method='java.util.AbstractMap &lt;init&gt; ()V' bytes='5' count='258' iicount='258' stamp='0.153'/>
+<writer thread='25110'/>
+<task_queued compile_id='104' method='java.util.HashMap$KeyIterator next ()Ljava/lang/Object;' bytes='8' count='256' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<writer thread='25163'/>
+<nmethod compile_id='81' compiler='c2' level='4' entry='0x00007fba656ebd20' size='1024' address='0x00007fba656ebb90' relocation_offset='368' insts_offset='400' stub_offset='816' scopes_data_offset='856' scopes_pcs_offset='920' dependencies_offset='1000' nul_chk_table_offset='1008' metadata_offset='840' method='java.lang.String hashCode ()I' bytes='49' count='6267' iicount='6267' stamp='0.153'/>
+<make_not_entrant thread='25163' compile_id='10' compiler='c1' level='3' stamp='0.153'/>
+<writer thread='25110'/>
+<task_queued compile_id='105' method='java.util.HashMap$HashIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='79' count='256' backedge_count='595' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<task_queued compile_id='106' method='java.util.HashSet iterator ()Ljava/util/Iterator;' bytes='13' count='256' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<task_queued compile_id='107' method='java.util.HashMap keySet ()Ljava/util/Set;' bytes='25' count='256' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<task_queued compile_id='108' method='java.util.HashMap$KeySet iterator ()Ljava/util/Iterator;' bytes='12' count='256' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<task_queued compile_id='109' method='java.util.HashMap$KeyIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='11' count='256' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='100' compiler='c1' level='3' entry='0x00007fba5e2ab2c0' size='3432' address='0x00007fba5e2ab090' relocation_offset='368' insts_offset='560' stub_offset='2576' scopes_data_offset='2824' scopes_pcs_offset='3120' dependencies_offset='3408' nul_chk_table_offset='3416' metadata_offset='2792' method='java.lang.module.Resolver computeIfAbsent (Ljava/util/Map;Ljava/lang/String;Ljava/lang/module/Configuration;Ljava/lang/module/ModuleReference;)Ljava/lang/module/ResolvedModule;' bytes='42' count='312' iicount='312' stamp='0.153'/>
+<writer thread='25166'/>
+<nmethod compile_id='104' compiler='c1' level='3' entry='0x00007fba5e2abfc0' size='1096' address='0x00007fba5e2abe10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1072' nul_chk_table_offset='1080' metadata_offset='952' method='java.util.HashMap$KeyIterator next ()Ljava/lang/Object;' bytes='8' count='439' iicount='439' stamp='0.153'/>
+<writer thread='25110'/>
+<task_queued compile_id='110' method='java.util.HashMap$ValueIterator next ()Ljava/lang/Object;' bytes='8' count='256' iicount='256' level='3' stamp='0.153' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='108' compiler='c1' level='3' entry='0x00007fba5e2ac460' size='1360' address='0x00007fba5e2ac290' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1192' scopes_pcs_offset='1256' dependencies_offset='1352' metadata_offset='1176' method='java.util.HashMap$KeySet iterator ()Ljava/util/Iterator;' bytes='12' count='588' iicount='589' stamp='0.153'/>
+<writer thread='25169'/>
+<nmethod compile_id='106' compiler='c1' level='3' entry='0x00007fba5e2ac9e0' size='1376' address='0x00007fba5e2ac810' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1200' scopes_pcs_offset='1232' dependencies_offset='1344' nul_chk_table_offset='1352' metadata_offset='1192' method='java.util.HashSet iterator ()Ljava/util/Iterator;' bytes='13' count='635' iicount='635' stamp='0.154'/>
+<writer thread='25167'/>
+<nmethod compile_id='107' compiler='c1' level='3' entry='0x00007fba5e2acf60' size='1800' address='0x00007fba5e2acd90' relocation_offset='368' insts_offset='464' stub_offset='1392' scopes_data_offset='1576' scopes_pcs_offset='1664' dependencies_offset='1792' metadata_offset='1536' method='java.util.HashMap keySet ()Ljava/util/Set;' bytes='25' count='674' iicount='674' stamp='0.154'/>
+<writer thread='25166'/>
+<nmethod compile_id='105' compiler='c1' level='3' entry='0x00007fba5e2ad6e0' size='1880' address='0x00007fba5e2ad510' relocation_offset='368' insts_offset='464' stub_offset='1456' scopes_data_offset='1624' scopes_pcs_offset='1704' dependencies_offset='1848' nul_chk_table_offset='1856' metadata_offset='1600' method='java.util.HashMap$HashIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='79' count='695' backedge_count='1150' iicount='695' stamp='0.154'/>
+<writer thread='25168'/>
+<nmethod compile_id='109' compiler='c1' level='3' entry='0x00007fba5e2ade40' size='1024' address='0x00007fba5e2adc90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='928' scopes_pcs_offset='952' dependencies_offset='1016' metadata_offset='920' method='java.util.HashMap$KeyIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='11' count='692' iicount='692' stamp='0.154'/>
+<writer thread='25169'/>
+<nmethod compile_id='110' compiler='c1' level='3' entry='0x00007fba5e2ae2c0' size='1096' address='0x00007fba5e2ae110' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1072' nul_chk_table_offset='1080' metadata_offset='952' method='java.util.HashMap$ValueIterator next ()Ljava/lang/Object;' bytes='8' count='293' iicount='293' stamp='0.154'/>
+<writer thread='25110'/>
+<task_queued compile_id='111' method='java.util.KeyValueHolder getKey ()Ljava/lang/Object;' bytes='5' count='128' iicount='128' level='1' stamp='0.154' comment='tiered' hot_count='128'/>
+<task_queued compile_id='112' method='java.util.KeyValueHolder getValue ()Ljava/lang/Object;' bytes='5' count='128' iicount='128' level='1' stamp='0.154' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='111' compiler='c1' level='1' entry='0x00007fba656ec1c0' size='752' address='0x00007fba656ec010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.KeyValueHolder getKey ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' stamp='0.154'/>
+<writer thread='25166'/>
+<nmethod compile_id='112' compiler='c1' level='1' entry='0x00007fba656ec4c0' size='752' address='0x00007fba656ec310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.KeyValueHolder getValue ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' stamp='0.154'/>
+<writer thread='25110'/>
+<task_queued compile_id='113' method='java.lang.module.ResolvedModule reference ()Ljava/lang/module/ModuleReference;' bytes='5' count='128' iicount='128' level='1' stamp='0.154' comment='tiered' hot_count='128'/>
+<task_queued compile_id='114' method='java.util.HashSet contains (Ljava/lang/Object;)Z' bytes='9' count='256' iicount='256' level='3' stamp='0.154' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='113' compiler='c1' level='1' entry='0x00007fba656ec7c0' size='752' address='0x00007fba656ec610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ResolvedModule reference ()Ljava/lang/module/ModuleReference;' bytes='5' count='160' iicount='160' stamp='0.155'/>
+<writer thread='25110'/>
+<task_queued compile_id='115' method='java.lang.String indexOf (I)I' bytes='7' count='243' iicount='243' level='3' stamp='0.155' comment='tiered' hot_count='243'/>
+<task_queued compile_id='116' method='java.lang.String indexOf (II)I' bytes='29' count='255' iicount='255' level='3' stamp='0.155' comment='tiered' hot_count='255'/>
+<task_queued compile_id='117' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='255' backedge_count='2241' iicount='255' level='3' stamp='0.155' comment='tiered' hot_count='255'/>
+<task_queued compile_id='118' method='java.util.concurrent.ConcurrentHashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='8' count='256' iicount='256' level='3' stamp='0.155' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='114' compiler='c1' level='3' entry='0x00007fba5e2ae780' size='2072' address='0x00007fba5e2ae590' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1792' scopes_pcs_offset='1896' dependencies_offset='2040' nul_chk_table_offset='2048' metadata_offset='1768' method='java.util.HashSet contains (Ljava/lang/Object;)Z' bytes='9' count='264' iicount='264' stamp='0.155'/>
+<writer thread='25169'/>
+<nmethod compile_id='117' compiler='c1' level='3' entry='0x00007fba5e2aefe0' size='1728' address='0x00007fba5e2aee10' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1488' scopes_pcs_offset='1576' dependencies_offset='1704' nul_chk_table_offset='1712' metadata_offset='1472' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='297' backedge_count='2555' iicount='297' stamp='0.155'/>
+<writer thread='25167'/>
+<nmethod compile_id='116' compiler='c1' level='3' entry='0x00007fba5e2af6e0' size='1368' address='0x00007fba5e2af510' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1208' scopes_pcs_offset='1264' dependencies_offset='1360' metadata_offset='1192' method='java.lang.String indexOf (II)I' bytes='29' count='299' iicount='299' stamp='0.155'/>
+<writer thread='25168'/>
+<nmethod compile_id='118' compiler='c1' level='3' entry='0x00007fba5e2afc40' size='1072' address='0x00007fba5e2afa90' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='968' scopes_pcs_offset='1000' dependencies_offset='1064' metadata_offset='952' method='java.util.concurrent.ConcurrentHashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='8' count='471' iicount='471' stamp='0.155'/>
+<writer thread='25110'/>
+<task_queued compile_id='119' method='java.lang.module.ModuleDescriptor packages ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.155' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='115' compiler='c1' level='3' entry='0x00007fba5e2b00e0' size='1640' address='0x00007fba5e2aff10' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1440' scopes_pcs_offset='1520' dependencies_offset='1632' metadata_offset='1416' method='java.lang.String indexOf (I)I' bytes='7' count='306' iicount='306' stamp='0.155'/>
+<writer thread='25168'/>
+<nmethod compile_id='119' compiler='c1' level='1' entry='0x00007fba656ecac0' size='752' address='0x00007fba656ec910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor packages ()Ljava/util/Set;' bytes='5' count='138' iicount='138' stamp='0.155'/>
+<writer thread='25110'/>
+<task_queued compile_id='120' method='java.lang.Math min (II)I' bytes='11' count='256' iicount='256' level='3' stamp='0.155' comment='tiered' hot_count='256'/>
+<task_queued compile_id='121' method='jdk.internal.misc.Unsafe putObjectRelease (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='9' count='256' iicount='256' level='3' stamp='0.156' comment='tiered' hot_count='256'/>
+<nmethod compile_id='122' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ecde0' size='960' address='0x00007fba656ecc10' relocation_offset='368' consts_offset='960' insts_offset='464' method='jdk.internal.misc.Unsafe putObjectVolatile (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='0' count='256' iicount='256' stamp='0.156'/>
+<task_queued compile_id='123' method='java.util.concurrent.ConcurrentHashMap setTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V' bytes='20' count='256' iicount='256' level='3' stamp='0.156' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='120' compiler='c1' level='3' entry='0x00007fba5e2b0740' size='912' address='0x00007fba5e2b0590' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.Math min (II)I' bytes='11' count='266' iicount='266' stamp='0.156'/>
+<writer thread='25167'/>
+<nmethod compile_id='121' compiler='c1' level='3' entry='0x00007fba5e2b0b40' size='952' address='0x00007fba5e2b0990' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='896' dependencies_offset='944' metadata_offset='864' method='jdk.internal.misc.Unsafe putObjectRelease (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='9' count='347' iicount='347' stamp='0.156'/>
+<writer thread='25166'/>
+<nmethod compile_id='123' compiler='c1' level='3' entry='0x00007fba5e2b0f40' size='1232' address='0x00007fba5e2b0d90' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1160' dependencies_offset='1224' oops_offset='1088' metadata_offset='1096' method='java.util.concurrent.ConcurrentHashMap setTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V' bytes='20' count='345' iicount='345' stamp='0.156'/>
+<writer thread='25110'/>
+<task_queued compile_id='124' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='256' iicount='256' level='3' stamp='0.156' comment='tiered' hot_count='256'/>
+<task_queued compile_id='125' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='256' iicount='256' level='3' stamp='0.156' comment='tiered' hot_count='256'/>
+<task_queued compile_id='126' method='java.lang.module.ResolvedModule name ()Ljava/lang/String;' bytes='11' count='256' iicount='256' level='3' stamp='0.156' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='124' compiler='c1' level='3' entry='0x00007fba5e2b14a0' size='2480' address='0x00007fba5e2b1290' relocation_offset='368' insts_offset='528' stub_offset='1872' scopes_data_offset='2024' scopes_pcs_offset='2080' dependencies_offset='2416' nul_chk_table_offset='2424' metadata_offset='2016' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='260' iicount='260' stamp='0.156'/>
+<writer thread='25169'/>
+<nmethod compile_id='125' compiler='c1' level='3' entry='0x00007fba5e2b1e40' size='1000' address='0x00007fba5e2b1c90' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='872' dependencies_offset='968' nul_chk_table_offset='976' metadata_offset='832' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='260' iicount='260' stamp='0.157'/>
+<writer thread='25167'/>
+<nmethod compile_id='126' compiler='c1' level='3' entry='0x00007fba5e2b2240' size='1312' address='0x00007fba5e2b2090' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1168' scopes_pcs_offset='1200' dependencies_offset='1280' nul_chk_table_offset='1288' metadata_offset='1152' method='java.lang.module.ResolvedModule name ()Ljava/lang/String;' bytes='11' count='334' iicount='334' stamp='0.157'/>
+<writer thread='25110'/>
+<task_queued compile_id='127' method='java.lang.module.ModuleDescriptor$Version toString ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.157' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='127' compiler='c1' level='1' entry='0x00007fba656ed1c0' size='752' address='0x00007fba656ed010' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Version toString ()Ljava/lang/String;' bytes='5' count='134' iicount='134' stamp='0.157'/>
+<writer thread='25110'/>
+<task_queued compile_id='128' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='5386' backedge_count='2603' iicount='5386' stamp='0.157' comment='tiered' hot_count='5386'/>
+<task_queued compile_id='129' method='java.lang.String coder ()B' bytes='15' count='5632' iicount='5632' stamp='0.158' comment='tiered' hot_count='5632'/>
+<task_queued compile_id='130' method='java.util.ImmutableCollections$Set2$1 hasNext ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.158' comment='tiered' hot_count='256'/>
+<writer thread='25165'/>
+<nmethod compile_id='129' compiler='c2' level='4' entry='0x00007fba656ed4a0' size='536' address='0x00007fba656ed310' relocation_offset='368' insts_offset='400' stub_offset='464' scopes_data_offset='488' scopes_pcs_offset='496' dependencies_offset='528' method='java.lang.String coder ()B' bytes='15' count='5658' iicount='5658' stamp='0.158'/>
+<make_not_entrant thread='25165' compile_id='4' compiler='c1' level='3' stamp='0.158'/>
+<writer thread='25110'/>
+<task_queued compile_id='131' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='256' iicount='256' level='3' stamp='0.158' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='130' compiler='c1' level='3' entry='0x00007fba5e2b27c0' size='944' address='0x00007fba5e2b2610' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.ImmutableCollections$Set2$1 hasNext ()Z' bytes='14' count='259' iicount='259' stamp='0.158'/>
+<nmethod compile_id='131' compiler='c1' level='3' entry='0x00007fba5e2b2c00' size='2040' address='0x00007fba5e2b2a10' relocation_offset='368' insts_offset='496' stub_offset='1520' scopes_data_offset='1728' scopes_pcs_offset='1872' dependencies_offset='2016' nul_chk_table_offset='2024' metadata_offset='1704' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='301' iicount='301' stamp='0.159'/>
+<writer thread='25110'/>
+<task_queued compile_id='132' method='java.util.HashMap &lt;init&gt; ()V' bytes='11' count='256' iicount='256' level='3' stamp='0.159' comment='tiered' hot_count='256'/>
+<writer thread='25161'/>
+<nmethod compile_id='128' compiler='c2' level='4' entry='0x00007fba656ed720' size='768' address='0x00007fba656ed590' relocation_offset='368' insts_offset='400' stub_offset='592' scopes_data_offset='624' scopes_pcs_offset='656' dependencies_offset='736' nul_chk_table_offset='744' metadata_offset='616' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='6694' backedge_count='3244' iicount='6694' stamp='0.159'/>
+<make_not_entrant thread='25161' compile_id='56' compiler='c1' level='3' stamp='0.159'/>
+<writer thread='25110'/>
+<task_queued compile_id='133' method='java.util.Collections$EmptyMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='2' count='128' iicount='128' level='1' stamp='0.159' comment='tiered' hot_count='128'/>
+<task_queued compile_id='134' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='1402' iicount='1402' level='1' stamp='0.160' comment='tiered' hot_count='1402'/>
+<writer thread='25167'/>
+<nmethod compile_id='133' compiler='c1' level='1' entry='0x00007fba656edac0' size='752' address='0x00007fba656ed910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptyMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='2' count='178' iicount='178' stamp='0.160'/>
+<writer thread='25110'/>
+<task_queued compile_id='135' method='java.util.HashSet &lt;init&gt; ()V' bytes='16' count='256' iicount='256' level='3' stamp='0.160' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='132' compiler='c1' level='3' entry='0x00007fba5e2b3440' size='1120' address='0x00007fba5e2b3290' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.util.HashMap &lt;init&gt; ()V' bytes='11' count='294' iicount='294' stamp='0.160'/>
+<writer thread='25166'/>
+<nmethod compile_id='134' compiler='c1' level='1' entry='0x00007fba656eddc0' size='752' address='0x00007fba656edc10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='1527' iicount='1527' stamp='0.160'/>
+<make_not_entrant thread='25166' compile_id='77' compiler='c1' level='3' stamp='0.160'/>
+<writer thread='25110'/>
+<task_queued compile_id='136' method='java.lang.module.ModuleDescriptor$Exports isQualified ()Z' bytes='18' count='256' iicount='256' level='3' stamp='0.160' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='136' compiler='c1' level='3' entry='0x00007fba5e2b38c0' size='1216' address='0x00007fba5e2b3710' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1112' dependencies_offset='1192' nul_chk_table_offset='1200' metadata_offset='1080' method='java.lang.module.ModuleDescriptor$Exports isQualified ()Z' bytes='18' count='300' iicount='300' stamp='0.160'/>
+<writer thread='25110'/>
+<task_queued compile_id='137' method='java.lang.module.ModuleDescriptor$Exports source ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.160' comment='tiered' hot_count='128'/>
+<task_queued compile_id='138' method='java.util.HashMap resize ()[Ljava/util/HashMap$Node;' bytes='356' count='305' backedge_count='1427' iicount='305' level='3' stamp='0.160' comment='tiered' hot_count='305'/>
+<writer thread='25166'/>
+<nmethod compile_id='137' compiler='c1' level='1' entry='0x00007fba656ee0c0' size='752' address='0x00007fba656edf10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Exports source ()Ljava/lang/String;' bytes='5' count='148' iicount='148' stamp='0.160'/>
+<writer thread='25167'/>
+<nmethod compile_id='135' compiler='c1' level='3' entry='0x00007fba5e2b3de0' size='1896' address='0x00007fba5e2b3c10' relocation_offset='368' insts_offset='464' stub_offset='1424' scopes_data_offset='1624' scopes_pcs_offset='1728' dependencies_offset='1888' metadata_offset='1568' method='java.util.HashSet &lt;init&gt; ()V' bytes='16' count='318' iicount='318' stamp='0.160'/>
+<writer thread='25110'/>
+<task_queued compile_id='139' method='java.util.Collections$EmptySet isEmpty ()Z' bytes='2' count='128' iicount='128' level='1' stamp='0.161' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='139' compiler='c1' level='1' entry='0x00007fba656ee3c0' size='752' address='0x00007fba656ee210' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptySet isEmpty ()Z' bytes='2' count='156' iicount='156' stamp='0.161'/>
+<writer thread='25110'/>
+<task_queued compile_id='140' method='java.util.ArrayList access$000 (Ljava/util/ArrayList;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.161' comment='tiered' hot_count='128'/>
+<task_queued compile_id='141' method='java.lang.Module findModule (Ljava/lang/String;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)Ljava/lang/Module;' bytes='93' count='256' backedge_count='26' iicount='256' level='3' stamp='0.161' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='140' compiler='c1' level='1' entry='0x00007fba656ee6c0' size='768' address='0x00007fba656ee510' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.ArrayList access$000 (Ljava/util/ArrayList;)I' bytes='5' count='155' iicount='155' stamp='0.161'/>
+<writer thread='25110'/>
+<task_queued compile_id='142' method='java.util.ImmutableCollections$SetN iterator ()Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.161' comment='tiered' hot_count='256'/>
+<task_queued compile_id='143' method='java.util.ImmutableCollections$SetN$1 &lt;init&gt; (Ljava/util/ImmutableCollections$SetN;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.161' comment='tiered' hot_count='256'/>
+<task_queued compile_id='144' method='java.lang.module.ModuleDescriptor$Exports targets ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.161' comment='tiered' hot_count='128'/>
+<nmethod compile_id='145' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656eea60' size='984' address='0x00007fba656ee890' relocation_offset='368' consts_offset='984' insts_offset='464' method='java.lang.Module addExports0 (Ljava/lang/Module;Ljava/lang/String;Ljava/lang/Module;)V' bytes='0' count='256' iicount='256' stamp='0.161'/>
+<writer thread='25166'/>
+<nmethod compile_id='138' compiler='c1' level='3' entry='0x00007fba5e2b4660' size='7136' address='0x00007fba5e2b4390' relocation_offset='368' consts_offset='688' insts_offset='720' stub_offset='5872' scopes_data_offset='6048' scopes_pcs_offset='6384' dependencies_offset='6976' nul_chk_table_offset='6984' metadata_offset='6040' method='java.util.HashMap resize ()[Ljava/util/HashMap$Node;' bytes='356' count='421' backedge_count='1607' iicount='421' stamp='0.161'/>
+<writer thread='25169'/>
+<nmethod compile_id='143' compiler='c1' level='3' entry='0x00007fba5e2b6140' size='1128' address='0x00007fba5e2b5f90' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1016' scopes_pcs_offset='1056' dependencies_offset='1120' metadata_offset='992' method='java.util.ImmutableCollections$SetN$1 &lt;init&gt; (Ljava/util/ImmutableCollections$SetN;)V' bytes='15' count='275' iicount='275' stamp='0.162'/>
+<writer thread='25168'/>
+<nmethod compile_id='142' compiler='c1' level='3' entry='0x00007fba5e2b65c0' size='1344' address='0x00007fba5e2b6410' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1240' dependencies_offset='1336' metadata_offset='1152' method='java.util.ImmutableCollections$SetN iterator ()Ljava/util/Iterator;' bytes='9' count='278' iicount='278' stamp='0.162'/>
+<writer thread='25110'/>
+<task_queued compile_id='146' method='java.lang.module.ResolvedModule configuration ()Ljava/lang/module/Configuration;' bytes='5' count='128' iicount='128' level='1' stamp='0.162' comment='tiered' hot_count='128'/>
+<task_queued compile_id='147' method='java.util.ImmutableCollections$Set2$1 next ()Ljava/lang/Object;' bytes='49' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='144' compiler='c1' level='1' entry='0x00007fba656eee40' size='752' address='0x00007fba656eec90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Exports targets ()Ljava/util/Set;' bytes='5' count='153' iicount='153' stamp='0.162'/>
+<writer thread='25110'/>
+<task_queued compile_id='148' method='java.util.HashMap isEmpty ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<task_queued compile_id='149' method='java.lang.module.ModuleDescriptor isOpen ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.162' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='146' compiler='c1' level='1' entry='0x00007fba656ef140' size='752' address='0x00007fba656eef90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ResolvedModule configuration ()Ljava/lang/module/Configuration;' bytes='5' count='147' iicount='147' stamp='0.162'/>
+<writer thread='25166'/>
+<nmethod compile_id='147' compiler='c1' level='3' entry='0x00007fba5e2b6b60' size='1328' address='0x00007fba5e2b6990' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1120' scopes_pcs_offset='1168' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1112' method='java.util.ImmutableCollections$Set2$1 next ()Ljava/lang/Object;' bytes='49' count='264' iicount='264' stamp='0.162'/>
+<writer thread='25167'/>
+<nmethod compile_id='141' compiler='c1' level='3' entry='0x00007fba5e2b7160' size='4456' address='0x00007fba5e2b6f10' relocation_offset='368' insts_offset='592' stub_offset='3504' scopes_data_offset='3768' scopes_pcs_offset='4040' dependencies_offset='4392' nul_chk_table_offset='4400' metadata_offset='3752' method='java.lang.Module findModule (Ljava/lang/String;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)Ljava/lang/Module;' bytes='93' count='408' backedge_count='68' iicount='408' stamp='0.162'/>
+<writer thread='25169'/>
+<nmethod compile_id='149' compiler='c1' level='1' entry='0x00007fba656ef440' size='752' address='0x00007fba656ef290' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor isOpen ()Z' bytes='5' count='138' iicount='138' stamp='0.162'/>
+<writer thread='25110'/>
+<task_queued compile_id='150' method='java.util.Collections$UnmodifiableCollection$1 hasNext ()Z' bytes='10' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='148' compiler='c1' level='3' entry='0x00007fba5e2b8240' size='944' address='0x00007fba5e2b8090' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.HashMap isEmpty ()Z' bytes='13' count='312' iicount='312' stamp='0.162'/>
+<writer thread='25110'/>
+<task_queued compile_id='151' method='java.util.ImmutableCollections$Set1 iterator ()Ljava/util/Iterator;' bytes='8' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<task_queued compile_id='152' method='java.util.Collections singletonIterator (Ljava/lang/Object;)Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<task_queued compile_id='153' method='java.util.Collections$1 &lt;init&gt; (Ljava/lang/Object;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<task_queued compile_id='154' method='java.util.Collections$1 next ()Ljava/lang/Object;' bytes='25' count='256' iicount='256' level='3' stamp='0.162' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='150' compiler='c1' level='3' entry='0x00007fba5e2b8640' size='1120' address='0x00007fba5e2b8490' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.Collections$UnmodifiableCollection$1 hasNext ()Z' bytes='10' count='277' iicount='277' stamp='0.162'/>
+<writer thread='25110'/>
+<nmethod compile_id='155' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ef760' size='960' address='0x00007fba656ef590' relocation_offset='368' consts_offset='960' insts_offset='464' method='java.lang.Module addExportsToAll0 (Ljava/lang/Module;Ljava/lang/String;)V' bytes='0' count='256' iicount='256' stamp='0.163'/>
+<writer thread='25166'/>
+<nmethod compile_id='153' compiler='c1' level='3' entry='0x00007fba5e2b8ac0' size='1096' address='0x00007fba5e2b8910' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1024' dependencies_offset='1088' metadata_offset='960' method='java.util.Collections$1 &lt;init&gt; (Ljava/lang/Object;)V' bytes='15' count='277' iicount='277' stamp='0.163'/>
+<writer thread='25167'/>
+<nmethod compile_id='152' compiler='c1' level='3' entry='0x00007fba5e2b8f40' size='1312' address='0x00007fba5e2b8d90' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1144' scopes_pcs_offset='1208' dependencies_offset='1304' metadata_offset='1120' method='java.util.Collections singletonIterator (Ljava/lang/Object;)Ljava/util/Iterator;' bytes='9' count='279' iicount='279' stamp='0.163'/>
+<writer thread='25168'/>
+<nmethod compile_id='151' compiler='c1' level='3' entry='0x00007fba5e2b94e0' size='1512' address='0x00007fba5e2b9310' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1312' scopes_pcs_offset='1392' dependencies_offset='1504' metadata_offset='1280' method='java.util.ImmutableCollections$Set1 iterator ()Ljava/util/Iterator;' bytes='8' count='281' iicount='281' stamp='0.163'/>
+<writer thread='25169'/>
+<nmethod compile_id='154' compiler='c1' level='3' entry='0x00007fba5e2b9ac0' size='1096' address='0x00007fba5e2b9910' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1088' metadata_offset='952' method='java.util.Collections$1 next ()Ljava/lang/Object;' bytes='25' count='284' iicount='284' stamp='0.163'/>
+<writer thread='25110'/>
+<task_queued compile_id='156' method='java.util.Collections$UnmodifiableCollection$1 next ()Ljava/lang/Object;' bytes='10' count='256' iicount='256' level='3' stamp='0.163' comment='tiered' hot_count='256'/>
+<nmethod compile_id='157' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656efb60' size='960' address='0x00007fba656ef990' relocation_offset='368' consts_offset='960' insts_offset='464' method='java.lang.Module addReads0 (Ljava/lang/Module;Ljava/lang/Module;)V' bytes='0' count='256' iicount='256' stamp='0.163'/>
+<writer thread='25167'/>
+<nmethod compile_id='156' compiler='c1' level='3' entry='0x00007fba5e2b9f40' size='1120' address='0x00007fba5e2b9d90' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.Collections$UnmodifiableCollection$1 next ()Ljava/lang/Object;' bytes='10' count='257' iicount='257' stamp='0.163'/>
+<writer thread='25110'/>
+<task_queued compile_id='158' method='java.util.ImmutableCollections$Set2 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.164' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='158' compiler='c1' level='1' entry='0x00007fba656eff40' size='752' address='0x00007fba656efd90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ImmutableCollections$Set2 size ()I' bytes='2' count='128' iicount='128' stamp='0.164'/>
+<writer thread='25110'/>
+<task_queued compile_id='159' method='java.lang.reflect.Field getName ()Ljava/lang/String;' bytes='5' count='256' iicount='256' level='1' stamp='0.164' comment='tiered' hot_count='256'/>
+<task_queued compile_id='160' method='jdk.internal.module.ModuleReferenceImpl moduleResolution ()Ljdk/internal/module/ModuleResolution;' bytes='5' count='128' iicount='128' level='1' stamp='0.164' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='159' compiler='c1' level='1' entry='0x00007fba656f0240' size='752' address='0x00007fba656f0090' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.reflect.Field getName ()Ljava/lang/String;' bytes='5' count='270' iicount='270' stamp='0.164'/>
+<nmethod compile_id='160' compiler='c1' level='1' entry='0x00007fba656f0540' size='752' address='0x00007fba656f0390' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.module.ModuleReferenceImpl moduleResolution ()Ljdk/internal/module/ModuleResolution;' bytes='5' count='148' iicount='148' stamp='0.164'/>
+<writer thread='25110'/>
+<task_queued compile_id='161' method='java.util.Map entry (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;' bytes='10' count='256' iicount='256' level='3' stamp='0.165' comment='tiered' hot_count='256'/>
+<task_queued compile_id='162' method='java.util.KeyValueHolder &lt;init&gt; (Ljava/lang/Object;Ljava/lang/Object;)V' bytes='21' count='256' iicount='256' level='3' stamp='0.165' comment='tiered' hot_count='256'/>
+<task_queued compile_id='163' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='6423' iicount='6423' stamp='0.165' comment='tiered' hot_count='6423'/>
+<writer thread='25167'/>
+<nmethod compile_id='162' compiler='c1' level='3' entry='0x00007fba5e2ba400' size='2160' address='0x00007fba5e2ba210' relocation_offset='368' insts_offset='496' stub_offset='1616' scopes_data_offset='1824' scopes_pcs_offset='1960' dependencies_offset='2152' metadata_offset='1800' method='java.util.KeyValueHolder &lt;init&gt; (Ljava/lang/Object;Ljava/lang/Object;)V' bytes='21' count='280' iicount='280' stamp='0.166'/>
+<writer thread='25169'/>
+<nmethod compile_id='161' compiler='c1' level='3' entry='0x00007fba5e2baca0' size='2440' address='0x00007fba5e2baa90' relocation_offset='368' insts_offset='528' stub_offset='1808' scopes_data_offset='2024' scopes_pcs_offset='2208' dependencies_offset='2432' metadata_offset='1992' method='java.util.Map entry (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;' bytes='10' count='280' iicount='280' stamp='0.166'/>
+<writer thread='25110'/>
+<task_queued compile_id='164' method='java.util.Collections$EmptyIterator hasNext ()Z' bytes='2' count='128' iicount='128' level='1' stamp='0.166' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='164' compiler='c1' level='1' entry='0x00007fba656f0840' size='752' address='0x00007fba656f0690' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Collections$EmptyIterator hasNext ()Z' bytes='2' count='133' iicount='133' stamp='0.166'/>
+<writer thread='25110'/>
+<task_queued compile_id='165' method='jdk.internal.module.ModuleBootstrap$2 hasNext ()Z' bytes='30' count='256' iicount='256' level='3' stamp='0.166' comment='tiered' hot_count='256'/>
+<task_queued compile_id='166' method='java.lang.Module getDescriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='128' iicount='128' level='1' stamp='0.166' comment='tiered' hot_count='128'/>
+<task_queued compile_id='167' method='jdk.internal.module.ModuleBootstrap$2 next ()Ljava/lang/Object;' bytes='52' count='256' iicount='256' level='3' stamp='0.166' comment='tiered' hot_count='256'/>
+<task_queued compile_id='168' method='java.util.HashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='256' iicount='256' level='3' stamp='0.166' comment='tiered' hot_count='256'/>
+<nmethod compile_id='169' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f0b60' size='960' address='0x00007fba656f0990' relocation_offset='368' consts_offset='960' insts_offset='464' method='java.lang.Module addExportsToAllUnnamed0 (Ljava/lang/Module;Ljava/lang/String;)V' bytes='0' count='256' iicount='256' stamp='0.166'/>
+<writer thread='25166'/>
+<nmethod compile_id='166' compiler='c1' level='1' entry='0x00007fba656f0f40' size='752' address='0x00007fba656f0d90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Module getDescriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='129' iicount='129' stamp='0.166'/>
+<writer thread='25167'/>
+<nmethod compile_id='165' compiler='c1' level='3' entry='0x00007fba5e2bb660' size='1544' address='0x00007fba5e2bb490' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1360' scopes_pcs_offset='1400' dependencies_offset='1512' nul_chk_table_offset='1520' metadata_offset='1352' method='jdk.internal.module.ModuleBootstrap$2 hasNext ()Z' bytes='30' count='329' iicount='329' stamp='0.166'/>
+<writer thread='25110'/>
+<task_queued compile_id='170' method='java.util.ImmutableCollections$Set0 instance ()Ljava/util/ImmutableCollections$Set0;' bytes='4' count='230' iicount='230' level='3' stamp='0.166' comment='tiered' hot_count='230'/>
+<writer thread='25169'/>
+<nmethod compile_id='167' compiler='c1' level='3' entry='0x00007fba5e2bbd20' size='2264' address='0x00007fba5e2bbb10' relocation_offset='368' insts_offset='528' stub_offset='1680' scopes_data_offset='1920' scopes_pcs_offset='1992' dependencies_offset='2216' nul_chk_table_offset='2224' metadata_offset='1912' method='jdk.internal.module.ModuleBootstrap$2 next ()Ljava/lang/Object;' bytes='52' count='373' iicount='374' stamp='0.166'/>
+<writer thread='25168'/>
+<nmethod compile_id='168' compiler='c1' level='3' entry='0x00007fba5e2bc5e0' size='1680' address='0x00007fba5e2bc410' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1432' scopes_pcs_offset='1544' dependencies_offset='1656' nul_chk_table_offset='1664' metadata_offset='1416' method='java.util.HashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='397' iicount='397' stamp='0.167'/>
+<writer thread='25167'/>
+<nmethod compile_id='170' compiler='c1' level='3' entry='0x00007fba5e2bccc0' size='808' address='0x00007fba5e2bcb10' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='744' scopes_pcs_offset='752' dependencies_offset='800' metadata_offset='736' method='java.util.ImmutableCollections$Set0 instance ()Ljava/util/ImmutableCollections$Set0;' bytes='4' count='236' iicount='236' stamp='0.167'/>
+<writer thread='25159'/>
+<nmethod compile_id='163' compiler='c2' level='4' entry='0x00007fba656f1220' size='736' address='0x00007fba656f1090' relocation_offset='368' insts_offset='400' stub_offset='560' scopes_data_offset='592' scopes_pcs_offset='624' dependencies_offset='688' handler_table_offset='696' nul_chk_table_offset='720' metadata_offset='584' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='6923' iicount='6923' stamp='0.167'/>
+<make_not_entrant thread='25159' compile_id='66' compiler='c1' level='3' stamp='0.167'/>
+<writer thread='25110'/>
+<task_queued compile_id='171' method='java.lang.Character toLowerCase (I)I' bytes='9' count='256' iicount='256' level='3' stamp='0.170' comment='tiered' hot_count='256'/>
+<task_queued compile_id='172' method='java.lang.CharacterDataLatin1 toLowerCase (I)I' bytes='39' count='256' iicount='256' level='3' stamp='0.170' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='171' compiler='c1' level='3' entry='0x00007fba5e2bd060' size='1192' address='0x00007fba5e2bce90' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1040' scopes_pcs_offset='1072' dependencies_offset='1168' nul_chk_table_offset='1176' metadata_offset='1032' method='java.lang.Character toLowerCase (I)I' bytes='9' count='256' iicount='256' stamp='0.171'/>
+<writer thread='25169'/>
+<nmethod compile_id='172' compiler='c1' level='3' entry='0x00007fba5e2bd540' size='1328' address='0x00007fba5e2bd390' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1184' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1088' method='java.lang.CharacterDataLatin1 toLowerCase (I)I' bytes='39' count='256' iicount='256' stamp='0.171'/>
+<writer thread='25110'/>
+<task_queued compile_id='173' method='java.util.zip.ZipUtils SH ([BI)I' bytes='21' count='256' iicount='256' level='3' stamp='0.182' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='173' compiler='c1' level='3' entry='0x00007fba5e2bdac0' size='1016' address='0x00007fba5e2bd910' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='872' dependencies_offset='984' nul_chk_table_offset='992' metadata_offset='832' method='java.util.zip.ZipUtils SH ([BI)I' bytes='21' count='259' iicount='259' stamp='0.182'/>
+<writer thread='25110'/>
+<task_queued compile_id='174' method='java.util.jar.Attributes$Name isValid (C)Z' bytes='32' count='256' iicount='256' level='3' stamp='0.183' comment='tiered' hot_count='256'/>
+<task_queued compile_id='175' method='java.util.jar.Attributes$Name isAlpha (C)Z' bytes='30' count='256' iicount='256' level='3' stamp='0.183' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='175' compiler='c1' level='3' entry='0x00007fba5e2bdf40' size='1072' address='0x00007fba5e2bdd90' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1000' scopes_pcs_offset='1016' dependencies_offset='1064' metadata_offset='992' method='java.util.jar.Attributes$Name isAlpha (C)Z' bytes='30' count='368' iicount='368' stamp='0.183'/>
+<writer thread='25167'/>
+<nmethod compile_id='174' compiler='c1' level='3' entry='0x00007fba5e2be3e0' size='1784' address='0x00007fba5e2be210' relocation_offset='368' insts_offset='464' stub_offset='1488' scopes_data_offset='1656' scopes_pcs_offset='1696' dependencies_offset='1776' metadata_offset='1632' method='java.util.jar.Attributes$Name isValid (C)Z' bytes='32' count='368' iicount='368' stamp='0.184'/>
+<writer thread='25110'/>
+<task_queued compile_id='176' method='java.lang.String &lt;init&gt; ([BB)V' bytes='15' count='284' iicount='284' level='3' stamp='0.184' comment='tiered' hot_count='284'/>
+<nmethod compile_id='177' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f1520' size='424' address='0x00007fba656f1390' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.184'/>
+<writer thread='25169'/>
+<nmethod compile_id='176' compiler='c1' level='3' entry='0x00007fba5e2beb40' size='1080' address='0x00007fba5e2be990' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1008' dependencies_offset='1072' metadata_offset='960' method='java.lang.String &lt;init&gt; ([BB)V' bytes='15' count='290' iicount='290' stamp='0.185'/>
+<writer thread='25110'/>
+<task_queued compile_id='178' method='sun.nio.fs.UnixPath checkNotNul (Ljava/lang/String;C)V' bytes='16' count='256' iicount='256' level='3' stamp='0.186' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='178' compiler='c1' level='3' entry='0x00007fba5e2befc0' size='1104' address='0x00007fba5e2bee10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='1000' dependencies_offset='1096' metadata_offset='952' method='sun.nio.fs.UnixPath checkNotNul (Ljava/lang/String;C)V' bytes='16' count='266' iicount='266' stamp='0.187'/>
+<writer thread='25110'/>
+<task_queued compile_id='179' method='java.lang.System getSecurityManager ()Ljava/lang/SecurityManager;' bytes='4' count='256' iicount='256' level='3' stamp='0.195' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='179' compiler='c1' level='3' entry='0x00007fba5e2bf440' size='840' address='0x00007fba5e2bf290' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='784' dependencies_offset='832' metadata_offset='768' method='java.lang.System getSecurityManager ()Ljava/lang/SecurityManager;' bytes='4' count='261' iicount='261' stamp='0.196'/>
+<writer thread='25110'/>
+<task_queued compile_id='180' method='java.lang.AbstractStringBuilder putStringAt (ILjava/lang/String;)V' bytes='29' count='256' iicount='256' level='3' stamp='0.196' comment='tiered' hot_count='256'/>
+<task_queued compile_id='181' method='java.lang.AbstractStringBuilder getCoder ()B' bytes='15' count='256' iicount='256' level='3' stamp='0.196' comment='tiered' hot_count='256'/>
+<task_queued compile_id='182' method='java.lang.String getBytes ([BIB)V' bytes='44' count='256' iicount='256' level='3' stamp='0.196' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='181' compiler='c1' level='3' entry='0x00007fba5e2bf7c0' size='880' address='0x00007fba5e2bf610' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.AbstractStringBuilder getCoder ()B' bytes='15' count='259' iicount='259' stamp='0.197'/>
+<writer thread='25168'/>
+<nmethod compile_id='182' compiler='c1' level='3' entry='0x00007fba5e2bfb80' size='1824' address='0x00007fba5e2bf990' relocation_offset='368' insts_offset='496' stub_offset='1328' scopes_data_offset='1536' scopes_pcs_offset='1648' dependencies_offset='1792' nul_chk_table_offset='1800' metadata_offset='1512' method='java.lang.String getBytes ([BIB)V' bytes='44' count='259' iicount='259' stamp='0.197'/>
+<writer thread='25167'/>
+<nmethod compile_id='180' compiler='c1' level='3' entry='0x00007fba5e2c02e0' size='1936' address='0x00007fba5e2c0110' relocation_offset='368' insts_offset='464' stub_offset='1488' scopes_data_offset='1696' scopes_pcs_offset='1784' dependencies_offset='1912' nul_chk_table_offset='1920' metadata_offset='1672' method='java.lang.AbstractStringBuilder putStringAt (ILjava/lang/String;)V' bytes='29' count='259' iicount='259' stamp='0.197'/>
+<writer thread='25110'/>
+<task_queued compile_id='183' method='java.lang.StringLatin1 lastIndexOf ([BII)I' bytes='40' count='128' backedge_count='1898' iicount='128' level='3' stamp='0.197' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='183' compiler='c1' level='3' entry='0x00007fba5e2c0ae0' size='1792' address='0x00007fba5e2c0910' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1528' scopes_pcs_offset='1624' dependencies_offset='1768' nul_chk_table_offset='1776' metadata_offset='1504' method='java.lang.StringLatin1 lastIndexOf ([BII)I' bytes='40' count='136' backedge_count='1998' iicount='136' stamp='0.198'/>
+<writer thread='25110'/>
+<task_queued compile_id='184' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='271' iicount='271' level='3' stamp='0.200' comment='tiered' hot_count='271'/>
+<task_queued compile_id='185' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='271' iicount='271' level='3' stamp='0.200' comment='tiered' hot_count='271'/>
+<writer thread='25169'/>
+<nmethod compile_id='184' compiler='c1' level='3' entry='0x00007fba5e2c1240' size='936' address='0x00007fba5e2c1090' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='281' iicount='281' stamp='0.200'/>
+<writer thread='25168'/>
+<nmethod compile_id='185' compiler='c1' level='3' entry='0x00007fba5e2c16a0' size='3032' address='0x00007fba5e2c1490' relocation_offset='368' insts_offset='528' stub_offset='2320' scopes_data_offset='2576' scopes_pcs_offset='2776' dependencies_offset='3000' nul_chk_table_offset='3008' metadata_offset='2536' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='281' iicount='281' stamp='0.201'/>
+<writer thread='25110'/>
+<task_queued compile_id='186' method='java.lang.reflect.Method getName ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.202' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='186' compiler='c1' level='1' entry='0x00007fba656f1740' size='752' address='0x00007fba656f1590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.reflect.Method getName ()Ljava/lang/String;' bytes='5' count='434' iicount='434' stamp='0.202'/>
+<writer thread='25110'/>
+<nmethod compile_id='187' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f1a20' size='432' address='0x00007fba656f1890' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.204'/>
+<task_queued compile_id='188' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='283' iicount='283' level='3' stamp='0.204' comment='tiered' hot_count='283'/>
+<task_queued compile_id='189' method='java.lang.Enum ordinal ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.205' comment='tiered' hot_count='128'/>
+<task_queued compile_id='190' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='25' count='256' iicount='256' level='3' stamp='0.205' comment='tiered' hot_count='256'/>
+<nmethod compile_id='191' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f1c20' size='424' address='0x00007fba656f1a90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (IILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.206'/>
+<writer thread='25166'/>
+<nmethod compile_id='188' compiler='c1' level='3' entry='0x00007fba5e2c2320' size='5184' address='0x00007fba5e2c2090' relocation_offset='368' insts_offset='656' stub_offset='3888' scopes_data_offset='4256' scopes_pcs_offset='4712' dependencies_offset='5160' nul_chk_table_offset='5168' oops_offset='4168' metadata_offset='4176' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='286' iicount='286' stamp='0.206'/>
+<writer thread='25168'/>
+<nmethod compile_id='189' compiler='c1' level='1' entry='0x00007fba656f1e40' size='752' address='0x00007fba656f1c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Enum ordinal ()I' bytes='5' count='136' iicount='136' stamp='0.206'/>
+<writer thread='25110'/>
+<task_queued compile_id='192' method='java.lang.AbstractStringBuilder isLatin1 ()Z' bytes='19' count='277' iicount='277' level='3' stamp='0.206' comment='tiered' hot_count='277'/>
+<writer thread='25169'/>
+<nmethod compile_id='190' compiler='c1' level='3' entry='0x00007fba5e2c36c0' size='1312' address='0x00007fba5e2c3510' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1208' scopes_pcs_offset='1240' dependencies_offset='1304' metadata_offset='1184' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='25' count='269' iicount='269' stamp='0.206'/>
+<writer thread='25110'/>
+<task_queued compile_id='193' method='java.util.concurrent.ConcurrentHashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='162' count='256' backedge_count='6' iicount='256' level='3' stamp='0.206' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='192' compiler='c1' level='3' entry='0x00007fba5e2c3c40' size='976' address='0x00007fba5e2c3a90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='920' dependencies_offset='968' metadata_offset='896' method='java.lang.AbstractStringBuilder isLatin1 ()Z' bytes='19' count='277' iicount='277' stamp='0.206'/>
+<writer thread='25110'/>
+<task_queued compile_id='194' method='java.lang.Class getClassLoader0 ()Ljava/lang/ClassLoader;' bytes='5' count='128' iicount='128' level='1' stamp='0.207' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='194' compiler='c1' level='1' entry='0x00007fba656f2140' size='752' address='0x00007fba656f1f90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Class getClassLoader0 ()Ljava/lang/ClassLoader;' bytes='5' count='128' iicount='128' stamp='0.207'/>
+<writer thread='25167'/>
+<nmethod compile_id='193' compiler='c1' level='3' entry='0x00007fba5e2c40e0' size='4720' address='0x00007fba5e2c3e90' relocation_offset='368' insts_offset='592' stub_offset='3664' scopes_data_offset='3920' scopes_pcs_offset='4288' dependencies_offset='4656' nul_chk_table_offset='4664' oops_offset='3880' metadata_offset='3888' method='java.util.concurrent.ConcurrentHashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='162' count='268' backedge_count='6' iicount='268' stamp='0.208'/>
+<writer thread='25110'/>
+<nmethod compile_id='195' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f2420' size='440' address='0x00007fba656f2290' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.208'/>
+<nmethod compile_id='196' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f2620' size='432' address='0x00007fba656f2490' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.208'/>
+<nmethod compile_id='197' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f2860' size='944' address='0x00007fba656f2690' relocation_offset='368' consts_offset='944' insts_offset='464' method='java.lang.Class isPrimitive ()Z' bytes='0' count='256' iicount='256' stamp='0.208'/>
+<nmethod compile_id='198' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f2c20' size='424' address='0x00007fba656f2a90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.210'/>
+<task_queued compile_id='199' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry hashCode ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.210' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='199' compiler='c1' level='1' entry='0x00007fba656f2e40' size='752' address='0x00007fba656f2c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry hashCode ()I' bytes='5' count='145' iicount='145' stamp='0.211'/>
+<writer thread='25110'/>
+<task_queued compile_id='200' method='java.lang.StringLatin1 newString ([BII)Ljava/lang/String;' bytes='17' count='283' iicount='283' level='3' stamp='0.211' comment='tiered' hot_count='283'/>
+<nmethod compile_id='201' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f3120' size='424' address='0x00007fba656f2f90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.211'/>
+<nmethod compile_id='202' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f3320' size='440' address='0x00007fba656f3190' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.211'/>
+<nmethod compile_id='203' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f3520' size='424' address='0x00007fba656f3390' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.212'/>
+<task_queued compile_id='204' method='java.lang.invoke.MethodType returnType ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.212' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='204' compiler='c1' level='1' entry='0x00007fba656f3740' size='752' address='0x00007fba656f3590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodType returnType ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' stamp='0.212'/>
+<writer thread='25110'/>
+<nmethod compile_id='205' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f3a60' size='944' address='0x00007fba656f3890' relocation_offset='368' consts_offset='944' insts_offset='464' method='java.lang.Class isArray ()Z' bytes='0' count='256' iicount='256' stamp='0.212'/>
+<writer thread='25166'/>
+<nmethod compile_id='200' compiler='c1' level='3' entry='0x00007fba5e2c52e0' size='1464' address='0x00007fba5e2c5110' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1264' scopes_pcs_offset='1344' dependencies_offset='1456' metadata_offset='1240' method='java.lang.StringLatin1 newString ([BII)Ljava/lang/String;' bytes='17' count='287' iicount='287' stamp='0.212'/>
+<writer thread='25110'/>
+<nmethod compile_id='206' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f3e20' size='424' address='0x00007fba656f3c90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.213'/>
+<task_queued compile_id='207' method='java.lang.invoke.MethodTypeForm canonicalize (Ljava/lang/Class;I)Ljava/lang/Class;' bytes='233' count='256' iicount='256' level='3' stamp='0.213' comment='tiered' hot_count='256'/>
+<task_queued compile_id='208' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;)V' bytes='7' count='256' iicount='256' level='3' stamp='0.213' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='208' compiler='c1' level='3' entry='0x00007fba5e2c58e0' size='1424' address='0x00007fba5e2c5710' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1280' scopes_pcs_offset='1336' dependencies_offset='1416' metadata_offset='1248' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;)V' bytes='7' count='256' iicount='256' stamp='0.214'/>
+<writer thread='25110'/>
+<nmethod compile_id='209' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f4020' size='440' address='0x00007fba656f3e90' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.214'/>
+<writer thread='25167'/>
+<nmethod compile_id='207' compiler='c1' level='3' entry='0x00007fba5e2c5f80' size='4160' address='0x00007fba5e2c5d10' relocation_offset='368' insts_offset='624' stub_offset='3376' scopes_data_offset='3632' scopes_pcs_offset='3824' dependencies_offset='4096' nul_chk_table_offset='4104' oops_offset='3592' metadata_offset='3600' method='java.lang.invoke.MethodTypeForm canonicalize (Ljava/lang/Class;I)Ljava/lang/Class;' bytes='233' count='259' iicount='259' stamp='0.215'/>
+<writer thread='25110'/>
+<nmethod compile_id='210' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f4220' size='440' address='0x00007fba656f4090' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.217'/>
+<task_queued compile_id='211' method='java.lang.ref.ReferenceQueue poll ()Ljava/lang/ref/Reference;' bytes='28' count='256' iicount='256' level='3' stamp='0.217' comment='tiered' hot_count='256'/>
+<task_queued compile_id='212' method='java.lang.invoke.MemberName testFlags (II)Z' bytes='16' count='256' iicount='256' level='3' stamp='0.218' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='211' compiler='c1' level='3' entry='0x00007fba5e2c6f60' size='1584' address='0x00007fba5e2c6d90' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1376' scopes_pcs_offset='1440' dependencies_offset='1536' handler_table_offset='1544' nul_chk_table_offset='1568' metadata_offset='1368' method='java.lang.ref.ReferenceQueue poll ()Ljava/lang/ref/Reference;' bytes='28' count='263' iicount='263' stamp='0.218'/>
+<writer thread='25110'/>
+<task_queued compile_id='213' method='java.lang.String charAt (I)C' bytes='25' count='5632' iicount='5632' stamp='0.218' comment='tiered' hot_count='5632'/>
+<writer thread='25169'/>
+<nmethod compile_id='212' compiler='c1' level='3' entry='0x00007fba5e2c75c0' size='944' address='0x00007fba5e2c7410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.MemberName testFlags (II)Z' bytes='16' count='269' iicount='269' stamp='0.218'/>
+<writer thread='25110'/>
+<nmethod compile_id='214' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f4420' size='424' address='0x00007fba656f4290' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.218'/>
+<task_queued compile_id='215' method='java.lang.invoke.MethodType checkPtype (Ljava/lang/Class;)V' bytes='19' count='256' iicount='256' level='3' stamp='0.218' comment='tiered' hot_count='256'/>
+<nmethod compile_id='216' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f4620' size='440' address='0x00007fba656f4490' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.219'/>
+<writer thread='25168'/>
+<nmethod compile_id='215' compiler='c1' level='3' entry='0x00007fba5e2c7a00' size='1816' address='0x00007fba5e2c7810' relocation_offset='368' insts_offset='496' stub_offset='1328' scopes_data_offset='1544' scopes_pcs_offset='1632' dependencies_offset='1808' oops_offset='1512' metadata_offset='1520' method='java.lang.invoke.MethodType checkPtype (Ljava/lang/Class;)V' bytes='19' count='265' iicount='265' stamp='0.219'/>
+<writer thread='25110'/>
+<nmethod compile_id='217' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f4860' size='1080' address='0x00007fba656f4690' relocation_offset='368' consts_offset='1080' insts_offset='464' method='java.lang.Object getClass ()Ljava/lang/Class;' bytes='0' count='256' iicount='256' stamp='0.219'/>
+<task_queued compile_id='218' method='java.lang.invoke.MemberName getDeclaringClass ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.220' comment='tiered' hot_count='128'/>
+<task_queued compile_id='219' method='java.lang.invoke.MethodType hashCode ()I' bytes='53' count='256' backedge_count='830' iicount='256' level='3' stamp='0.220' comment='tiered' hot_count='256'/>
+<task_queued compile_id='220' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet expungeStaleElements ()V' bytes='27' count='256' iicount='256' level='3' stamp='0.220' comment='tiered' hot_count='256'/>
+<task_queued compile_id='221' method='java.lang.StringBuilder append (C)Ljava/lang/StringBuilder;' bytes='8' count='256' iicount='256' level='3' stamp='0.220' comment='tiered' hot_count='256'/>
+<task_queued compile_id='222' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='256' iicount='256' level='3' stamp='0.220' comment='tiered' hot_count='256'/>
+<task_queued compile_id='223' method='java.lang.invoke.MemberName isInvocable ()Z' bytes='7' count='256' iicount='256' level='3' stamp='0.220' comment='tiered' hot_count='256'/>
+<task_queued compile_id='224' method='java.lang.invoke.MemberName testAnyFlags (I)Z' bytes='15' count='256' iicount='256' level='3' stamp='0.220' comment='tiered' hot_count='256'/>
+<writer thread='25158'/>
+<nmethod compile_id='213' compiler='c2' level='4' entry='0x00007fba656f4ca0' size='784' address='0x00007fba656f4b10' relocation_offset='368' insts_offset='400' stub_offset='592' scopes_data_offset='632' scopes_pcs_offset='680' dependencies_offset='760' nul_chk_table_offset='768' metadata_offset='616' method='java.lang.String charAt (I)C' bytes='25' count='6837' iicount='6837' stamp='0.220'/>
+<make_not_entrant thread='25158' compile_id='5' compiler='c1' level='3' stamp='0.220'/>
+<writer thread='25169'/>
+<nmethod compile_id='223' compiler='c1' level='3' entry='0x00007fba5e2c8140' size='1328' address='0x00007fba5e2c7f90' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1240' dependencies_offset='1320' metadata_offset='1152' method='java.lang.invoke.MemberName isInvocable ()Z' bytes='7' count='263' iicount='263' stamp='0.220'/>
+<writer thread='25168'/>
+<nmethod compile_id='218' compiler='c1' level='1' entry='0x00007fba656f5040' size='752' address='0x00007fba656f4e90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MemberName getDeclaringClass ()Ljava/lang/Class;' bytes='5' count='141' iicount='141' stamp='0.220'/>
+<writer thread='25167'/>
+<nmethod compile_id='224' compiler='c1' level='3' entry='0x00007fba5e2c86c0' size='1184' address='0x00007fba5e2c8510' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1072' scopes_pcs_offset='1112' dependencies_offset='1176' metadata_offset='1056' method='java.lang.invoke.MemberName testAnyFlags (I)Z' bytes='15' count='270' iicount='270' stamp='0.221'/>
+<writer thread='25166'/>
+<nmethod compile_id='219' compiler='c1' level='3' entry='0x00007fba5e2c8be0' size='1752' address='0x00007fba5e2c8a10' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1424' scopes_pcs_offset='1552' dependencies_offset='1712' nul_chk_table_offset='1720' metadata_offset='1416' method='java.lang.invoke.MethodType hashCode ()I' bytes='53' count='269' backedge_count='852' iicount='269' stamp='0.221'/>
+<writer thread='25169'/>
+<nmethod compile_id='221' compiler='c1' level='3' entry='0x00007fba5e2c92c0' size='936' address='0x00007fba5e2c9110' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.lang.StringBuilder append (C)Ljava/lang/StringBuilder;' bytes='8' count='261' iicount='261' stamp='0.221'/>
+<writer thread='25168'/>
+<nmethod compile_id='220' compiler='c1' level='3' entry='0x00007fba5e2c9700' size='2392' address='0x00007fba5e2c9510' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2008' scopes_pcs_offset='2136' dependencies_offset='2328' handler_table_offset='2336' nul_chk_table_offset='2360' metadata_offset='1992' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet expungeStaleElements ()V' bytes='27' count='275' iicount='275' stamp='0.221'/>
+<writer thread='25167'/>
+<nmethod compile_id='222' compiler='c1' level='3' entry='0x00007fba5e2ca0c0' size='3144' address='0x00007fba5e2c9e90' relocation_offset='368' insts_offset='560' stub_offset='2384' scopes_data_offset='2632' scopes_pcs_offset='2848' dependencies_offset='3104' nul_chk_table_offset='3112' metadata_offset='2584' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='279' iicount='279' stamp='0.222'/>
+<writer thread='25110'/>
+<task_queued compile_id='225' method='jdk.internal.org.objectweb.asm.Item set (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='219' count='256' iicount='256' level='3' stamp='0.223' comment='tiered' hot_count='256'/>
+<task_queued compile_id='226' method='jdk.internal.org.objectweb.asm.ClassWriter get (Ljdk/internal/org/objectweb/asm/Item;)Ljdk/internal/org/objectweb/asm/Item;' bytes='49' count='256' backedge_count='3' iicount='256' level='3' stamp='0.223' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='226' compiler='c1' level='3' entry='0x00007fba5e2cace0' size='1720' address='0x00007fba5e2cab10' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1408' scopes_pcs_offset='1496' dependencies_offset='1672' nul_chk_table_offset='1680' metadata_offset='1400' method='jdk.internal.org.objectweb.asm.ClassWriter get (Ljdk/internal/org/objectweb/asm/Item;)Ljdk/internal/org/objectweb/asm/Item;' bytes='49' count='291' backedge_count='6' iicount='291' stamp='0.223'/>
+<writer thread='25169'/>
+<nmethod compile_id='225' compiler='c1' level='3' entry='0x00007fba5e2cb420' size='3024' address='0x00007fba5e2cb210' relocation_offset='368' insts_offset='528' stub_offset='2256' scopes_data_offset='2512' scopes_pcs_offset='2720' dependencies_offset='2960' nul_chk_table_offset='2968' metadata_offset='2504' method='jdk.internal.org.objectweb.asm.Item set (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='219' count='291' iicount='291' stamp='0.223'/>
+<writer thread='25110'/>
+<nmethod compile_id='227' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f5320' size='424' address='0x00007fba656f5190' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (ILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.223'/>
+<task_queued compile_id='228' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='256' iicount='256' level='3' stamp='0.224' comment='tiered' hot_count='256'/>
+<nmethod compile_id='229' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f5520' size='440' address='0x00007fba656f5390' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (I)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.224'/>
+<nmethod compile_id='230' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f5720' size='424' address='0x00007fba656f5590' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;ILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.224'/>
+<writer thread='25168'/>
+<nmethod compile_id='228' compiler='c1' level='3' entry='0x00007fba5e2cbfc0' size='936' address='0x00007fba5e2cbe10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='832' dependencies_offset='912' nul_chk_table_offset='920' metadata_offset='800' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='267' iicount='267' stamp='0.224'/>
+<writer thread='25110'/>
+<task_queued compile_id='231' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='105' backedge_count='3072' iicount='105' level='3' stamp='0.225' comment='tiered' hot_count='105'/>
+<nmethod compile_id='232' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f5920' size='424' address='0x00007fba656f5790' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.227'/>
+<task_queued compile_id='233' method='java.lang.invoke.MethodType checkSlotCount (I)V' bytes='33' count='256' iicount='256' level='3' stamp='0.227' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='231' compiler='c1' level='3' entry='0x00007fba5e2cc480' size='4864' address='0x00007fba5e2cc210' relocation_offset='368' insts_offset='624' stub_offset='3600' scopes_data_offset='3824' scopes_pcs_offset='4336' dependencies_offset='4832' nul_chk_table_offset='4840' metadata_offset='3784' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='109' backedge_count='3208' iicount='109' stamp='0.227'/>
+<writer thread='25110'/>
+<task_queued compile_id='234' method='java.lang.Class getName ()Ljava/lang/String;' bytes='21' count='256' iicount='256' level='3' stamp='0.227' comment='tiered' hot_count='256'/>
+<task_queued compile_id='235' method='jdk.internal.org.objectweb.asm.ByteVector putUTF8 (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='142' count='115' backedge_count='3072' iicount='115' level='3' stamp='0.227' comment='tiered' hot_count='115'/>
+<task_queued compile_id='236' method='java.lang.AbstractStringBuilder &lt;init&gt; (I)V' bytes='39' count='265' iicount='265' level='3' stamp='0.227' comment='tiered' hot_count='265'/>
+<task_queued compile_id='237' method='java.lang.StringBuilder toString ()Ljava/lang/String;' bytes='35' count='265' iicount='265' level='3' stamp='0.228' comment='tiered' hot_count='265'/>
+<writer thread='25169'/>
+<nmethod compile_id='234' compiler='c1' level='3' entry='0x00007fba5e2cd740' size='1128' address='0x00007fba5e2cd590' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1056' dependencies_offset='1120' metadata_offset='1016' method='java.lang.Class getName ()Ljava/lang/String;' bytes='21' count='265' iicount='265' stamp='0.228'/>
+<writer thread='25110'/>
+<task_queued compile_id='238' method='jdk.internal.org.objectweb.asm.ByteVector putShort (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='52' count='256' iicount='256' level='3' stamp='0.228' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='236' compiler='c1' level='3' entry='0x00007fba5e2cdbc0' size='1312' address='0x00007fba5e2cda10' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1224' dependencies_offset='1304' metadata_offset='1152' method='java.lang.AbstractStringBuilder &lt;init&gt; (I)V' bytes='39' count='269' iicount='269' stamp='0.228'/>
+<writer thread='25110'/>
+<task_queued compile_id='239' method='java.lang.ref.WeakReference &lt;init&gt; (Ljava/lang/Object;)V' bytes='6' count='256' iicount='256' level='3' stamp='0.228' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='237' compiler='c1' level='3' entry='0x00007fba5e2ce180' size='2192' address='0x00007fba5e2cdf90' relocation_offset='368' insts_offset='496' stub_offset='1680' scopes_data_offset='1904' scopes_pcs_offset='2024' dependencies_offset='2184' metadata_offset='1864' method='java.lang.StringBuilder toString ()Ljava/lang/String;' bytes='35' count='271' iicount='271' stamp='0.228'/>
+<writer thread='25168'/>
+<nmethod compile_id='238' compiler='c1' level='3' entry='0x00007fba5e2cea60' size='1312' address='0x00007fba5e2ce890' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1064' scopes_pcs_offset='1128' dependencies_offset='1272' nul_chk_table_offset='1280' metadata_offset='1048' method='jdk.internal.org.objectweb.asm.ByteVector putShort (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='52' count='306' iicount='306' stamp='0.228'/>
+<writer thread='25167'/>
+<nmethod compile_id='233' compiler='c1' level='3' entry='0x00007fba5e2cf080' size='4128' address='0x00007fba5e2cee10' relocation_offset='368' insts_offset='624' stub_offset='3152' scopes_data_offset='3488' scopes_pcs_offset='3752' dependencies_offset='4120' oops_offset='3400' metadata_offset='3408' method='java.lang.invoke.MethodType checkSlotCount (I)V' bytes='33' count='263' iicount='263' stamp='0.228'/>
+<writer thread='25166'/>
+<nmethod compile_id='235' compiler='c1' level='3' entry='0x00007fba5e2d0100' size='5040' address='0x00007fba5e2cfe90' relocation_offset='368' insts_offset='624' stub_offset='3632' scopes_data_offset='3944' scopes_pcs_offset='4440' dependencies_offset='4968' nul_chk_table_offset='4976' metadata_offset='3864' method='jdk.internal.org.objectweb.asm.ByteVector putUTF8 (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='142' count='147' backedge_count='3816' iicount='147' stamp='0.229'/>
+<writer thread='25110'/>
+<task_queued compile_id='240' method='java.lang.Class getClassLoader ()Ljava/lang/ClassLoader;' bytes='28' count='256' iicount='256' level='3' stamp='0.229' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='239' compiler='c1' level='3' entry='0x00007fba5e2d1460' size='1560' address='0x00007fba5e2d1290' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1384' scopes_pcs_offset='1456' dependencies_offset='1552' metadata_offset='1344' method='java.lang.ref.WeakReference &lt;init&gt; (Ljava/lang/Object;)V' bytes='6' count='258' iicount='258' stamp='0.229'/>
+<writer thread='25110'/>
+<task_queued compile_id='241' method='java.lang.invoke.MethodType makeImpl (Ljava/lang/Class;[Ljava/lang/Class;Z)Ljava/lang/invoke/MethodType;' bytes='66' count='256' iicount='256' level='3' stamp='0.229' comment='tiered' hot_count='256'/>
+<task_queued compile_id='242' method='java.lang.invoke.MethodType &lt;init&gt; ([Ljava/lang/Class;Ljava/lang/Class;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.229' comment='tiered' hot_count='256'/>
+<task_queued compile_id='243' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='54' count='256' iicount='256' level='3' stamp='0.229' comment='tiered' hot_count='256'/>
+<task_queued compile_id='244' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry &lt;init&gt; (Ljava/lang/Object;)V' bytes='14' count='256' iicount='256' level='3' stamp='0.229' comment='tiered' hot_count='256'/>
+<nmethod compile_id='245' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f5b20' size='432' address='0x00007fba656f5990' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.229'/>
+<task_queued compile_id='246' method='java.lang.invoke.LambdaForm$BasicType basicType (Ljava/lang/Class;)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='19' count='256' iicount='256' level='3' stamp='0.229' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='242' compiler='c1' level='3' entry='0x00007fba5e2d1ac0' size='1208' address='0x00007fba5e2d1910' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1104' scopes_pcs_offset='1136' dependencies_offset='1200' metadata_offset='1088' method='java.lang.invoke.MethodType &lt;init&gt; ([Ljava/lang/Class;Ljava/lang/Class;)V' bytes='15' count='267' iicount='267' stamp='0.229'/>
+<writer thread='25166'/>
+<nmethod compile_id='240' compiler='c1' level='3' entry='0x00007fba5e2d2040' size='3824' address='0x00007fba5e2d1e10' relocation_offset='368' insts_offset='560' stub_offset='2960' scopes_data_offset='3192' scopes_pcs_offset='3448' dependencies_offset='3768' nul_chk_table_offset='3776' metadata_offset='3144' method='java.lang.Class getClassLoader ()Ljava/lang/ClassLoader;' bytes='28' count='263' iicount='263' stamp='0.229'/>
+<writer thread='25110'/>
+<task_queued compile_id='247' method='java.lang.invoke.MethodType form ()Ljava/lang/invoke/MethodTypeForm;' bytes='5' count='128' iicount='128' level='1' stamp='0.230' comment='tiered' hot_count='128'/>
+<nmethod compile_id='248' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f5d60' size='1080' address='0x00007fba656f5b90' relocation_offset='368' consts_offset='1080' insts_offset='464' method='java.lang.Object clone ()Ljava/lang/Object;' bytes='0' count='256' iicount='256' stamp='0.230'/>
+<nmethod compile_id='249' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f61a0' size='424' address='0x00007fba656f6010' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.230'/>
+<writer thread='25168'/>
+<nmethod compile_id='246' compiler='c1' level='3' entry='0x00007fba5e2d2ee0' size='1624' address='0x00007fba5e2d2d10' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1400' scopes_pcs_offset='1464' dependencies_offset='1592' nul_chk_table_offset='1600' metadata_offset='1384' method='java.lang.invoke.LambdaForm$BasicType basicType (Ljava/lang/Class;)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='19' count='275' iicount='275' stamp='0.230'/>
+<writer thread='25166'/>
+<nmethod compile_id='244' compiler='c1' level='3' entry='0x00007fba5e2d3580' size='2000' address='0x00007fba5e2d3390' relocation_offset='368' insts_offset='496' stub_offset='1520' scopes_data_offset='1736' scopes_pcs_offset='1832' dependencies_offset='1976' nul_chk_table_offset='1984' metadata_offset='1688' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry &lt;init&gt; (Ljava/lang/Object;)V' bytes='14' count='283' iicount='283' stamp='0.230'/>
+<writer thread='25169'/>
+<nmethod compile_id='241' compiler='c1' level='3' entry='0x00007fba5e2d3de0' size='3592' address='0x00007fba5e2d3b90' relocation_offset='368' insts_offset='592' stub_offset='2768' scopes_data_offset='3048' scopes_pcs_offset='3272' dependencies_offset='3560' nul_chk_table_offset='3568' oops_offset='3000' metadata_offset='3008' method='java.lang.invoke.MethodType makeImpl (Ljava/lang/Class;[Ljava/lang/Class;Z)Ljava/lang/invoke/MethodType;' bytes='66' count='283' iicount='283' stamp='0.230'/>
+<writer thread='25168'/>
+<nmethod compile_id='247' compiler='c1' level='1' entry='0x00007fba656f63c0' size='752' address='0x00007fba656f6210' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodType form ()Ljava/lang/invoke/MethodTypeForm;' bytes='5' count='135' iicount='135' stamp='0.230'/>
+<writer thread='25110'/>
+<nmethod compile_id='250' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f66a0' size='440' address='0x00007fba656f6510' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic ()Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.230'/>
+<nmethod compile_id='251' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f68a0' size='424' address='0x00007fba656f6710' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.230'/>
+<writer thread='25167'/>
+<nmethod compile_id='243' compiler='c1' level='3' entry='0x00007fba5e2d4c80' size='4904' address='0x00007fba5e2d4a10' relocation_offset='368' insts_offset='624' stub_offset='3696' scopes_data_offset='4008' scopes_pcs_offset='4384' dependencies_offset='4816' handler_table_offset='4824' nul_chk_table_offset='4848' metadata_offset='3944' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='54' count='295' iicount='295' stamp='0.231'/>
+<writer thread='25110'/>
+<task_queued compile_id='252' method='java.lang.StringBuilder &lt;init&gt; ()V' bytes='7' count='265' iicount='265' level='3' stamp='0.231' comment='tiered' hot_count='265'/>
+<task_queued compile_id='253' method='jdk.internal.org.objectweb.asm.Item &lt;init&gt; (ILjdk/internal/org/objectweb/asm/Item;)V' bytes='66' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<task_queued compile_id='254' method='jdk.internal.org.objectweb.asm.ClassWriter put (Ljdk/internal/org/objectweb/asm/Item;)V' bytes='152' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='252' compiler='c1' level='3' entry='0x00007fba5e2d5f40' size='928' address='0x00007fba5e2d5d90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='856' dependencies_offset='920' metadata_offset='824' method='java.lang.StringBuilder &lt;init&gt; ()V' bytes='7' count='268' iicount='268' stamp='0.231'/>
+<writer thread='25110'/>
+<task_queued compile_id='255' method='java.lang.invoke.LambdaForm parameter (I)Ljava/lang/invoke/LambdaForm$Name;' bytes='52' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='253' compiler='c1' level='3' entry='0x00007fba5e2d6340' size='1384' address='0x00007fba5e2d6190' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1232' scopes_pcs_offset='1280' dependencies_offset='1360' nul_chk_table_offset='1368' metadata_offset='1216' method='jdk.internal.org.objectweb.asm.Item &lt;init&gt; (ILjdk/internal/org/objectweb/asm/Item;)V' bytes='66' count='269' iicount='269' stamp='0.231'/>
+<writer thread='25169'/>
+<nmethod compile_id='254' compiler='c1' level='3' entry='0x00007fba5e2d6940' size='3448' address='0x00007fba5e2d6710' relocation_offset='368' consts_offset='528' insts_offset='560' stub_offset='2672' scopes_data_offset='2824' scopes_pcs_offset='3032' dependencies_offset='3368' nul_chk_table_offset='3376' metadata_offset='2816' method='jdk.internal.org.objectweb.asm.ClassWriter put (Ljdk/internal/org/objectweb/asm/Item;)V' bytes='152' count='289' iicount='289' stamp='0.231'/>
+<writer thread='25168'/>
+<nmethod compile_id='255' compiler='c1' level='3' entry='0x00007fba5e2d76c0' size='976' address='0x00007fba5e2d7510' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='872' dependencies_offset='952' nul_chk_table_offset='960' metadata_offset='832' method='java.lang.invoke.LambdaForm parameter (I)Ljava/lang/invoke/LambdaForm$Name;' bytes='52' count='258' iicount='258' stamp='0.231'/>
+<writer thread='25110'/>
+<task_queued compile_id='256' method='java.util.ArrayList$Itr hasNext ()Z' bytes='20' count='256' iicount='256' level='3' stamp='0.231' comment='tiered' hot_count='256'/>
+<nmethod compile_id='257' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f6aa0' size='424' address='0x00007fba656f6910' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.232'/>
+<writer thread='25168'/>
+<nmethod compile_id='256' compiler='c1' level='3' entry='0x00007fba5e2d7ac0' size='1032' address='0x00007fba5e2d7910' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='912' scopes_pcs_offset='944' dependencies_offset='1008' nul_chk_table_offset='1016' metadata_offset='896' method='java.util.ArrayList$Itr hasNext ()Z' bytes='20' count='258' iicount='258' stamp='0.232'/>
+<writer thread='25110'/>
+<task_queued compile_id='258' method='java.lang.invoke.LambdaForm parameterType (I)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='9' count='256' iicount='256' level='3' stamp='0.232' comment='tiered' hot_count='256'/>
+<task_queued compile_id='259' method='java.lang.invoke.LambdaForm argument (ILjava/lang/invoke/LambdaForm$BasicType;)Ljava/lang/invoke/LambdaForm$Name;' bytes='27' count='256' iicount='256' level='3' stamp='0.232' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='258' compiler='c1' level='3' entry='0x00007fba5e2d7f40' size='1016' address='0x00007fba5e2d7d90' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='880' scopes_pcs_offset='912' dependencies_offset='992' nul_chk_table_offset='1000' metadata_offset='856' method='java.lang.invoke.LambdaForm parameterType (I)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='9' count='289' iicount='289' stamp='0.232'/>
+<writer thread='25110'/>
+<task_queued compile_id='260' method='java.lang.invoke.MethodHandle type ()Ljava/lang/invoke/MethodType;' bytes='5' count='128' iicount='128' level='1' stamp='0.232' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='260' compiler='c1' level='1' entry='0x00007fba656f6cc0' size='752' address='0x00007fba656f6b10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodHandle type ()Ljava/lang/invoke/MethodType;' bytes='5' count='129' iicount='129' stamp='0.232'/>
+<writer thread='25110'/>
+<task_queued compile_id='261' method='java.lang.invoke.LambdaForm$Name index ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.232' comment='tiered' hot_count='128'/>
+<task_queued compile_id='262' method='jdk.internal.org.objectweb.asm.ByteVector putByte (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='39' count='256' iicount='256' level='3' stamp='0.232' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='259' compiler='c1' level='3' entry='0x00007fba5e2d83e0' size='1744' address='0x00007fba5e2d8210' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1384' scopes_pcs_offset='1480' dependencies_offset='1688' nul_chk_table_offset='1696' metadata_offset='1368' method='java.lang.invoke.LambdaForm argument (ILjava/lang/invoke/LambdaForm$BasicType;)Ljava/lang/invoke/LambdaForm$Name;' bytes='27' count='262' iicount='262' stamp='0.233'/>
+<writer thread='25169'/>
+<nmethod compile_id='261' compiler='c1' level='1' entry='0x00007fba656f6fc0' size='752' address='0x00007fba656f6e10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.LambdaForm$Name index ()I' bytes='5' count='138' iicount='138' stamp='0.233'/>
+<writer thread='25168'/>
+<nmethod compile_id='262' compiler='c1' level='3' entry='0x00007fba5e2d8ac0' size='1224' address='0x00007fba5e2d8910' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='1000' scopes_pcs_offset='1056' dependencies_offset='1184' nul_chk_table_offset='1192' metadata_offset='984' method='jdk.internal.org.objectweb.asm.ByteVector putByte (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='39' count='262' iicount='262' stamp='0.233'/>
+<writer thread='25110'/>
+<task_queued compile_id='263' method='java.lang.invoke.MethodType ptypes ()[Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.234' comment='tiered' hot_count='128'/>
+<task_queued compile_id='264' method='java.lang.invoke.MemberName testAllFlags (I)Z' bytes='7' count='256' iicount='256' level='3' stamp='0.234' comment='tiered' hot_count='256'/>
+<nmethod compile_id='265' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f72a0' size='424' address='0x00007fba656f7110' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.234'/>
+<task_queued compile_id='266' method='java.lang.Class getComponentType ()Ljava/lang/Class;' bytes='14' count='256' iicount='256' level='3' stamp='0.234' comment='tiered' hot_count='256'/>
+<task_queued compile_id='267' method='java.util.Arrays equals ([Ljava/lang/Object;[Ljava/lang/Object;)Z' bytes='57' count='256' backedge_count='670' iicount='256' level='3' stamp='0.234' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='263' compiler='c1' level='1' entry='0x00007fba656f74c0' size='752' address='0x00007fba656f7310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodType ptypes ()[Ljava/lang/Class;' bytes='5' count='135' iicount='135' stamp='0.234'/>
+<writer thread='25110'/>
+<nmethod compile_id='268' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f77a0' size='440' address='0x00007fba656f7610' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic ()I' bytes='0' count='0' iicount='0' stamp='0.234'/>
+<writer thread='25166'/>
+<nmethod compile_id='264' compiler='c1' level='3' entry='0x00007fba5e2d8fc0' size='1088' address='0x00007fba5e2d8e10' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1016' dependencies_offset='1080' metadata_offset='960' method='java.lang.invoke.MemberName testAllFlags (I)Z' bytes='7' count='267' iicount='267' stamp='0.234'/>
+<writer thread='25110'/>
+<nmethod compile_id='269' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f79a0' size='424' address='0x00007fba656f7810' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.234'/>
+<task_queued compile_id='270' method='java.lang.invoke.MethodType equals (Ljava/lang/Object;)Z' bytes='29' count='256' iicount='256' level='3' stamp='0.234' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='266' compiler='c1' level='3' entry='0x00007fba5e2d9440' size='1152' address='0x00007fba5e2d9290' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1080' dependencies_offset='1144' metadata_offset='1048' method='java.lang.Class getComponentType ()Ljava/lang/Class;' bytes='14' count='261' iicount='261' stamp='0.234'/>
+<writer thread='25169'/>
+<nmethod compile_id='267' compiler='c1' level='3' entry='0x00007fba5e2d9980' size='2304' address='0x00007fba5e2d9790' relocation_offset='368' insts_offset='496' stub_offset='1776' scopes_data_offset='1960' scopes_pcs_offset='2088' dependencies_offset='2264' nul_chk_table_offset='2272' metadata_offset='1944' method='java.util.Arrays equals ([Ljava/lang/Object;[Ljava/lang/Object;)Z' bytes='57' count='264' backedge_count='685' iicount='264' stamp='0.235'/>
+<writer thread='25110'/>
+<nmethod compile_id='271' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f7ba0' size='424' address='0x00007fba656f7a10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;IILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.235'/>
+<task_queued compile_id='272' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry equals (Ljava/lang/Object;)Z' bytes='49' count='256' iicount='256' level='3' stamp='0.235' comment='tiered' hot_count='256'/>
+<nmethod compile_id='273' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f7da0' size='424' address='0x00007fba656f7c10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (IILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.235'/>
+<writer thread='25168'/>
+<nmethod compile_id='270' compiler='c1' level='3' entry='0x00007fba5e2da2e0' size='2016' address='0x00007fba5e2da110' relocation_offset='368' insts_offset='464' stub_offset='1648' scopes_data_offset='1832' scopes_pcs_offset='1880' dependencies_offset='1992' nul_chk_table_offset='2000' metadata_offset='1816' method='java.lang.invoke.MethodType equals (Ljava/lang/Object;)Z' bytes='29' count='260' iicount='260' stamp='0.235'/>
+<writer thread='25110'/>
+<task_queued compile_id='274' method='java.lang.invoke.LambdaForm$Name initIndex (I)Z' bytes='26' count='256' iicount='256' level='3' stamp='0.235' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='274' compiler='c1' level='3' entry='0x00007fba5e2daac0' size='1008' address='0x00007fba5e2da910' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='952' dependencies_offset='1000' metadata_offset='928' method='java.lang.invoke.LambdaForm$Name initIndex (I)Z' bytes='26' count='256' iicount='256' stamp='0.235'/>
+<writer thread='25167'/>
+<nmethod compile_id='272' compiler='c1' level='3' entry='0x00007fba5e2daf00' size='2408' address='0x00007fba5e2dad10' relocation_offset='368' insts_offset='496' stub_offset='2032' scopes_data_offset='2216' scopes_pcs_offset='2264' dependencies_offset='2376' nul_chk_table_offset='2384' metadata_offset='2200' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry equals (Ljava/lang/Object;)Z' bytes='49' count='260' iicount='260' stamp='0.235'/>
+<writer thread='25110'/>
+<task_queued compile_id='275' method='java.lang.reflect.Array newInstance (Ljava/lang/Class;I)Ljava/lang/Object;' bytes='6' count='256' iicount='256' level='3' stamp='0.236' comment='tiered' hot_count='256'/>
+<nmethod compile_id='276' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f7fe0' size='1112' address='0x00007fba656f7e10' relocation_offset='368' consts_offset='1112' insts_offset='464' method='java.lang.reflect.Array newArray (Ljava/lang/Class;I)Ljava/lang/Object;' bytes='0' count='256' iicount='256' stamp='0.236'/>
+<nmethod compile_id='277' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f8420' size='440' address='0x00007fba656f8290' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;II)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.236'/>
+<nmethod compile_id='278' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f8620' size='424' address='0x00007fba656f8490' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.236'/>
+<writer thread='25169'/>
+<nmethod compile_id='275' compiler='c1' level='3' entry='0x00007fba5e2db840' size='896' address='0x00007fba5e2db690' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='800' scopes_pcs_offset='824' dependencies_offset='888' metadata_offset='792' method='java.lang.reflect.Array newInstance (Ljava/lang/Class;I)Ljava/lang/Object;' bytes='6' count='260' iicount='260' stamp='0.236'/>
+<writer thread='25110'/>
+<task_queued compile_id='279' method='jdk.internal.org.objectweb.asm.ClassWriter newUTF8 (Ljava/lang/String;)I' bytes='70' count='256' iicount='256' level='3' stamp='0.237' comment='tiered' hot_count='256'/>
+<task_queued compile_id='280' method='java.lang.invoke.MethodType checkPtypes ([Ljava/lang/Class;)I' bytes='61' count='256' backedge_count='526' iicount='256' level='3' stamp='0.237' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='279' compiler='c1' level='3' entry='0x00007fba5e2dbca0' size='2056' address='0x00007fba5e2dba90' relocation_offset='368' insts_offset='528' stub_offset='1392' scopes_data_offset='1664' scopes_pcs_offset='1784' dependencies_offset='2008' nul_chk_table_offset='2016' metadata_offset='1640' method='jdk.internal.org.objectweb.asm.ClassWriter newUTF8 (Ljava/lang/String;)I' bytes='70' count='284' iicount='284' stamp='0.237'/>
+<writer thread='25110'/>
+<nmethod compile_id='281' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f8820' size='424' address='0x00007fba656f8690' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (ILjava/lang/Object;ILjava/lang/Object;Ljava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.238'/>
+<task_queued compile_id='282' method='java.util.Arrays copyOf ([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;' bytes='40' count='256' iicount='256' level='3' stamp='0.238' comment='tiered' hot_count='256'/>
+<nmethod compile_id='283' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f8a20' size='440' address='0x00007fba656f8890' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (ILjava/lang/Object;ILjava/lang/Object;)I' bytes='0' count='0' iicount='0' stamp='0.238'/>
+<nmethod compile_id='284' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f8c20' size='424' address='0x00007fba656f8a90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;ILjava/lang/Object;ILjava/lang/Object;Ljava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.238'/>
+<writer thread='25166'/>
+<nmethod compile_id='280' compiler='c1' level='3' entry='0x00007fba5e2dc5a0' size='4544' address='0x00007fba5e2dc310' relocation_offset='368' insts_offset='656' stub_offset='3312' scopes_data_offset='3656' scopes_pcs_offset='4056' dependencies_offset='4520' nul_chk_table_offset='4528' oops_offset='3576' metadata_offset='3592' method='java.lang.invoke.MethodType checkPtypes ([Ljava/lang/Class;)I' bytes='61' count='276' backedge_count='605' iicount='276' stamp='0.238'/>
+<writer thread='25110'/>
+<task_queued compile_id='285' method='java.lang.invoke.LambdaForm internArgument (Ljava/lang/invoke/LambdaForm$Name;)Ljava/lang/invoke/LambdaForm$Name;' bytes='84' count='256' iicount='256' level='3' stamp='0.238' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='282' compiler='c1' level='3' entry='0x00007fba5e2dd720' size='2968' address='0x00007fba5e2dd510' relocation_offset='368' insts_offset='528' stub_offset='2320' scopes_data_offset='2552' scopes_pcs_offset='2728' dependencies_offset='2936' nul_chk_table_offset='2944' metadata_offset='2520' method='java.util.Arrays copyOf ([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;' bytes='40' count='271' iicount='271' stamp='0.239'/>
+<writer thread='25169'/>
+<nmethod compile_id='285' compiler='c1' level='3' entry='0x00007fba5e2de300' size='2072' address='0x00007fba5e2de110' relocation_offset='368' insts_offset='496' stub_offset='1456' scopes_data_offset='1648' scopes_pcs_offset='1768' dependencies_offset='2008' nul_chk_table_offset='2016' metadata_offset='1624' method='java.lang.invoke.LambdaForm internArgument (Ljava/lang/invoke/LambdaForm$Name;)Ljava/lang/invoke/LambdaForm$Name;' bytes='84' count='267' iicount='267' stamp='0.239'/>
+<writer thread='25110'/>
+<task_queued compile_id='286' method='java.lang.String substring (II)Ljava/lang/String;' bytes='58' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='287' method='java.lang.String checkBoundsBeginEnd (III)V' bytes='60' count='256' iicount='256' level='3' stamp='0.239' comment='tiered' hot_count='256'/>
+<task_queued compile_id='288' method='jdk.internal.org.objectweb.asm.Item isEqualTo (Ljdk/internal/org/objectweb/asm/Item;)Z' bytes='354' count='234' iicount='234' level='3' stamp='0.239' comment='tiered' hot_count='234'/>
+<task_queued compile_id='289' method='jdk.internal.org.objectweb.asm.ByteVector put12 (II)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='64' count='256' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<task_queued compile_id='290' method='java.lang.invoke.LambdaForm$BasicType basicTypeClass ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.240' comment='tiered' hot_count='128'/>
+<task_queued compile_id='291' method='sun.invoke.util.Wrapper basicTypeChar ()C' bytes='5' count='128' iicount='128' level='1' stamp='0.240' comment='tiered' hot_count='128'/>
+<task_queued compile_id='292' method='jdk.internal.org.objectweb.asm.Frame execute (IILjdk/internal/org/objectweb/asm/ClassWriter;Ljdk/internal/org/objectweb/asm/Item;)V' bytes='2252' count='256' iicount='256' level='3' stamp='0.240' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='286' compiler='c1' level='3' entry='0x00007fba5e2debc0' size='3104' address='0x00007fba5e2de990' relocation_offset='368' insts_offset='560' stub_offset='2384' scopes_data_offset='2640' scopes_pcs_offset='2856' dependencies_offset='3080' nul_chk_table_offset='3088' metadata_offset='2584' method='java.lang.String substring (II)Ljava/lang/String;' bytes='58' count='265' iicount='265' stamp='0.240'/>
+<writer thread='25169'/>
+<nmethod compile_id='289' compiler='c1' level='3' entry='0x00007fba5e2df7e0' size='1408' address='0x00007fba5e2df610' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1128' scopes_pcs_offset='1208' dependencies_offset='1368' nul_chk_table_offset='1376' metadata_offset='1112' method='jdk.internal.org.objectweb.asm.ByteVector put12 (II)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='64' count='272' iicount='272' stamp='0.240'/>
+<nmethod compile_id='290' compiler='c1' level='1' entry='0x00007fba656f8e40' size='752' address='0x00007fba656f8c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.LambdaForm$BasicType basicTypeClass ()Ljava/lang/Class;' bytes='5' count='139' iicount='139' stamp='0.240'/>
+<writer thread='25166'/>
+<nmethod compile_id='287' compiler='c1' level='3' entry='0x00007fba5e2dfec0' size='5592' address='0x00007fba5e2dfc10' relocation_offset='368' insts_offset='688' stub_offset='4272' scopes_data_offset='4680' scopes_pcs_offset='5104' dependencies_offset='5584' oops_offset='4584' metadata_offset='4608' method='java.lang.String checkBoundsBeginEnd (III)V' bytes='60' count='271' iicount='271' stamp='0.240'/>
+<writer thread='25110'/>
+<task_queued compile_id='293' method='java.lang.invoke.LambdaForm$Name type ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='5' count='128' iicount='128' level='1' stamp='0.240' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='291' compiler='c1' level='1' entry='0x00007fba656f9140' size='752' address='0x00007fba656f8f90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='sun.invoke.util.Wrapper basicTypeChar ()C' bytes='5' count='129' iicount='129' stamp='0.240'/>
+<writer thread='25167'/>
+<nmethod compile_id='288' compiler='c1' level='3' entry='0x00007fba5e2e1480' size='4728' address='0x00007fba5e2e1210' relocation_offset='368' insts_offset='624' stub_offset='3664' scopes_data_offset='3968' scopes_pcs_offset='4136' dependencies_offset='4584' nul_chk_table_offset='4592' metadata_offset='3960' method='jdk.internal.org.objectweb.asm.Item isEqualTo (Ljdk/internal/org/objectweb/asm/Item;)Z' bytes='354' count='263' iicount='263' stamp='0.241'/>
+<writer thread='25169'/>
+<nmethod compile_id='293' compiler='c1' level='1' entry='0x00007fba656f9440' size='752' address='0x00007fba656f9290' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.LambdaForm$Name type ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='5' count='137' iicount='137' stamp='0.241'/>
+<writer thread='25110'/>
+<task_queued compile_id='294' method='java.lang.reflect.Modifier isStatic (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.241' comment='tiered' hot_count='256'/>
+<task_queued compile_id='295' method='java.lang.AbstractStringBuilder newCapacity (I)I' bytes='55' count='320' iicount='320' level='3' stamp='0.241' comment='tiered' hot_count='320'/>
+<writer thread='25167'/>
+<nmethod compile_id='294' compiler='c1' level='3' entry='0x00007fba5e2e26c0' size='912' address='0x00007fba5e2e2510' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.reflect.Modifier isStatic (I)Z' bytes='13' count='256' iicount='256' stamp='0.241'/>
+<writer thread='25166'/>
+<nmethod compile_id='295' compiler='c1' level='3' entry='0x00007fba5e2e2ae0' size='1272' address='0x00007fba5e2e2910' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1120' scopes_pcs_offset='1168' dependencies_offset='1248' nul_chk_table_offset='1256' metadata_offset='1112' method='java.lang.AbstractStringBuilder newCapacity (I)I' bytes='55' count='325' iicount='325' stamp='0.241'/>
+<writer thread='25110'/>
+<nmethod compile_id='296' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f9720' size='440' address='0x00007fba656f9590' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (ILjava/lang/Object;I)I' bytes='0' count='0' iicount='0' stamp='0.242'/>
+<nmethod compile_id='297' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f9920' size='424' address='0x00007fba656f9790' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;ILjava/lang/Object;ILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.242'/>
+<task_queued compile_id='298' method='sun.invoke.util.Wrapper hashPrim (Ljava/lang/Class;)I' bytes='30' count='256' iicount='256' level='3' stamp='0.242' comment='tiered' hot_count='256'/>
+<task_queued compile_id='299' method='sun.invoke.util.Wrapper findPrimitiveType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='25' count='256' iicount='256' level='3' stamp='0.242' comment='tiered' hot_count='256'/>
+<task_queued compile_id='300' method='java.lang.invoke.MemberName isConstructor ()Z' bytes='7' count='256' iicount='256' level='3' stamp='0.242' comment='tiered' hot_count='256'/>
+<task_queued compile_id='301' method='java.lang.invoke.LambdaForm$Name &lt;init&gt; (ILjava/lang/invoke/LambdaForm$BasicType;Ljava/lang/invoke/LambdaForm$NamedFunction;[Ljava/lang/Object;)V' bytes='54' count='278' iicount='278' level='3' stamp='0.243' comment='tiered' hot_count='278'/>
+<task_queued compile_id='302' method='java.lang.invoke.LambdaForm$Name isParam ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.243' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='300' compiler='c1' level='3' entry='0x00007fba5e2e3040' size='1232' address='0x00007fba5e2e2e90' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1080' scopes_pcs_offset='1144' dependencies_offset='1224' metadata_offset='1056' method='java.lang.invoke.MemberName isConstructor ()Z' bytes='7' count='257' iicount='258' stamp='0.243'/>
+<nmethod compile_id='301' compiler='c1' level='3' entry='0x00007fba5e2e3540' size='1376' address='0x00007fba5e2e3390' relocation_offset='368' insts_offset='432' stub_offset='1104' scopes_data_offset='1264' scopes_pcs_offset='1304' dependencies_offset='1368' metadata_offset='1248' method='java.lang.invoke.LambdaForm$Name &lt;init&gt; (ILjava/lang/invoke/LambdaForm$BasicType;Ljava/lang/invoke/LambdaForm$NamedFunction;[Ljava/lang/Object;)V' bytes='54' count='287' iicount='287' stamp='0.243'/>
+<writer thread='25110'/>
+<task_queued compile_id='303' method='jdk.internal.org.objectweb.asm.MethodWriter visitVarInsn (II)V' bytes='292' count='256' iicount='256' level='3' stamp='0.243' comment='tiered' hot_count='256'/>
+<task_queued compile_id='304' method='java.lang.invoke.MemberName getMethodOrFieldType ()Ljava/lang/invoke/MethodType;' bytes='72' count='256' iicount='256' level='3' stamp='0.243' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='298' compiler='c1' level='3' entry='0x00007fba5e2e3bc0' size='5656' address='0x00007fba5e2e3910' relocation_offset='368' insts_offset='688' stub_offset='4304' scopes_data_offset='4616' scopes_pcs_offset='5064' dependencies_offset='5592' nul_chk_table_offset='5600' metadata_offset='4536' method='sun.invoke.util.Wrapper hashPrim (Ljava/lang/Class;)I' bytes='30' count='278' iicount='278' stamp='0.243'/>
+<writer thread='25166'/>
+<nmethod compile_id='302' compiler='c1' level='3' entry='0x00007fba5e2e5140' size='944' address='0x00007fba5e2e4f90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.LambdaForm$Name isParam ()Z' bytes='13' count='263' iicount='263' stamp='0.244'/>
+<writer thread='25110'/>
+<nmethod compile_id='305' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f9b20' size='432' address='0x00007fba656f9990' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.244'/>
+<task_queued compile_id='306' method='java.lang.invoke.MethodType parameterCount ()I' bytes='6' count='256' iicount='256' level='3' stamp='0.244' comment='tiered' hot_count='256'/>
+<task_queued compile_id='307' method='java.lang.invoke.LambdaForm$NamedFunction methodType ()Ljava/lang/invoke/MethodType;' bytes='23' count='256' iicount='256' level='3' stamp='0.244' comment='tiered' hot_count='256'/>
+<nmethod compile_id='308' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f9d20' size='440' address='0x00007fba656f9b90' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.245'/>
+<writer thread='25167'/>
+<nmethod compile_id='299' compiler='c1' level='3' entry='0x00007fba5e2e5620' size='5320' address='0x00007fba5e2e5390' relocation_offset='368' insts_offset='656' stub_offset='4016' scopes_data_offset='4336' scopes_pcs_offset='4744' dependencies_offset='5240' nul_chk_table_offset='5248' oops_offset='4248' metadata_offset='4256' method='sun.invoke.util.Wrapper findPrimitiveType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='25' count='276' iicount='276' stamp='0.245'/>
+<writer thread='25169'/>
+<nmethod compile_id='303' compiler='c1' level='3' entry='0x00007fba5e2e6b00' size='4016' address='0x00007fba5e2e6890' relocation_offset='368' insts_offset='624' stub_offset='3024' scopes_data_offset='3328' scopes_pcs_offset='3536' dependencies_offset='3920' nul_chk_table_offset='3928' metadata_offset='3288' method='jdk.internal.org.objectweb.asm.MethodWriter visitVarInsn (II)V' bytes='292' count='269' iicount='269' stamp='0.245'/>
+<writer thread='25110'/>
+<nmethod compile_id='309' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656f9f60' size='944' address='0x00007fba656f9d90' relocation_offset='368' consts_offset='944' insts_offset='464' method='java.lang.Class isInterface ()Z' bytes='0' count='256' iicount='256' stamp='0.245'/>
+<writer thread='25169'/>
+<nmethod compile_id='306' compiler='c1' level='3' entry='0x00007fba5e2e7a40' size='920' address='0x00007fba5e2e7890' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='832' dependencies_offset='896' nul_chk_table_offset='904' metadata_offset='800' method='java.lang.invoke.MethodType parameterCount ()I' bytes='6' count='256' iicount='256' stamp='0.245'/>
+<writer thread='25110'/>
+<task_queued compile_id='310' method='jdk.internal.org.objectweb.asm.Frame push (I)V' bytes='110' count='354' iicount='354' level='3' stamp='0.245' comment='tiered' hot_count='354'/>
+<writer thread='25167'/>
+<nmethod compile_id='307' compiler='c1' level='3' entry='0x00007fba5e2e7e40' size='1384' address='0x00007fba5e2e7c90' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1224' scopes_pcs_offset='1256' dependencies_offset='1352' nul_chk_table_offset='1360' metadata_offset='1208' method='java.lang.invoke.LambdaForm$NamedFunction methodType ()Ljava/lang/invoke/MethodType;' bytes='23' count='269' iicount='269' stamp='0.245'/>
+<writer thread='25110'/>
+<task_queued compile_id='311' method='java.lang.invoke.InvokerBytecodeGenerator isStaticallyNameable (Ljava/lang/Class;)Z' bytes='116' count='256' backedge_count='4' iicount='256' level='3' stamp='0.245' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='304' compiler='c1' level='3' entry='0x00007fba5e2e8580' size='8976' address='0x00007fba5e2e8210' relocation_offset='368' insts_offset='880' stub_offset='7024' scopes_data_offset='7584' scopes_pcs_offset='8192' dependencies_offset='8944' nul_chk_table_offset='8952' oops_offset='7416' metadata_offset='7432' method='java.lang.invoke.MemberName getMethodOrFieldType ()Ljava/lang/invoke/MethodType;' bytes='72' count='284' iicount='284' stamp='0.246'/>
+<writer thread='25110'/>
+<task_queued compile_id='312' method='java.lang.invoke.MemberName initResolved (Z)V' bytes='53' count='256' iicount='256' level='3' stamp='0.246' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='312' compiler='c1' level='3' entry='0x00007fba5e2ea740' size='1040' address='0x00007fba5e2ea590' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='968' scopes_pcs_offset='984' dependencies_offset='1032' metadata_offset='960' method='java.lang.invoke.MemberName initResolved (Z)V' bytes='53' count='257' iicount='257' stamp='0.246'/>
+<writer thread='25167'/>
+<nmethod compile_id='310' compiler='c1' level='3' entry='0x00007fba5e2eac00' size='2368' address='0x00007fba5e2eaa10' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='1992' scopes_pcs_offset='2128' dependencies_offset='2320' nul_chk_table_offset='2328' metadata_offset='1976' method='jdk.internal.org.objectweb.asm.Frame push (I)V' bytes='110' count='383' iicount='383' stamp='0.246'/>
+<writer thread='25110'/>
+<task_queued compile_id='313' method='java.lang.invoke.LambdaForm$Name useCount (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='42' count='256' backedge_count='636' iicount='256' level='3' stamp='0.246' comment='tiered' hot_count='256'/>
+<task_queued compile_id='314' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='13824' iicount='13824' stamp='0.246' comment='tiered' hot_count='13824'/>
+<writer thread='25167'/>
+<nmethod compile_id='313' compiler='c1' level='3' entry='0x00007fba5e2eb560' size='1496' address='0x00007fba5e2eb390' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1256' scopes_pcs_offset='1328' dependencies_offset='1472' nul_chk_table_offset='1480' metadata_offset='1248' method='java.lang.invoke.LambdaForm$Name useCount (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='42' count='283' backedge_count='716' iicount='283' stamp='0.247'/>
+<writer thread='25110'/>
+<task_queued compile_id='315' method='java.lang.invoke.MemberName isStatic ()Z' bytes='8' count='256' iicount='256' level='3' stamp='0.247' comment='tiered' hot_count='256'/>
+<task_queued compile_id='316' method='java.lang.invoke.InvokerBytecodeGenerator emitImplicitConversion (Ljava/lang/invoke/LambdaForm$BasicType;Ljava/lang/Class;Ljava/lang/Object;)V' bytes='159' count='256' iicount='256' level='3' stamp='0.247' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='315' compiler='c1' level='3' entry='0x00007fba5e2ebb40' size='1080' address='0x00007fba5e2eb990' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1008' dependencies_offset='1072' metadata_offset='960' method='java.lang.invoke.MemberName isStatic ()Z' bytes='8' count='257' iicount='257' stamp='0.247'/>
+<writer thread='25168'/>
+<nmethod compile_id='292' compiler='c1' level='3' entry='0x00007fba5e2ecc80' size='35304' address='0x00007fba5e2ebe10' relocation_offset='368' insts_offset='3696' stub_offset='24496' scopes_data_offset='27664' scopes_pcs_offset='31008' dependencies_offset='35072' nul_chk_table_offset='35080' metadata_offset='27528' method='jdk.internal.org.objectweb.asm.Frame execute (IILjdk/internal/org/objectweb/asm/ClassWriter;Ljdk/internal/org/objectweb/asm/Item;)V' bytes='2252' count='522' iicount='522' stamp='0.248'/>
+<writer thread='25110'/>
+<nmethod compile_id='317' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fa320' size='432' address='0x00007fba656fa190' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.248'/>
+<writer thread='25159'/>
+<nmethod compile_id='314' compiler='c2' level='4' entry='0x00007fba656fa520' size='632' address='0x00007fba656fa390' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='528' scopes_pcs_offset='544' dependencies_offset='608' nul_chk_table_offset='616' metadata_offset='520' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='13953' iicount='13953' stamp='0.248'/>
+<make_not_entrant thread='25159' compile_id='6' compiler='c1' level='3' stamp='0.248'/>
+<writer thread='25169'/>
+<nmethod compile_id='311' compiler='c1' level='3' entry='0x00007fba5e2f4bc0' size='11424' address='0x00007fba5e2f4810' relocation_offset='368' insts_offset='944' stub_offset='9168' scopes_data_offset='9608' scopes_pcs_offset='10352' dependencies_offset='11296' nul_chk_table_offset='11304' oops_offset='9496' metadata_offset='9504' method='java.lang.invoke.InvokerBytecodeGenerator isStaticallyNameable (Ljava/lang/Class;)Z' bytes='116' count='308' backedge_count='4' iicount='308' stamp='0.248'/>
+<writer thread='25110'/>
+<task_queued compile_id='318' method='sun.invoke.util.Wrapper forPrimitiveType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='49' count='310' iicount='310' level='3' stamp='0.248' comment='tiered' hot_count='310'/>
+<nmethod compile_id='319' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fa820' size='440' address='0x00007fba656fa690' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.248'/>
+<task_queued compile_id='320' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='5536' iicount='5536' stamp='0.249' comment='tiered' hot_count='5536'/>
+<task_queued compile_id='321' method='java.lang.invoke.LambdaForm$Name lastUseIndex (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='36' count='256' backedge_count='690' iicount='256' level='3' stamp='0.249' comment='tiered' hot_count='256'/>
+<task_queued compile_id='322' method='java.lang.invoke.InvokerBytecodeGenerator emitPushArgument (Ljava/lang/Class;Ljava/lang/Object;)V' bytes='120' count='256' iicount='256' level='3' stamp='0.249' comment='tiered' hot_count='256'/>
+<task_queued compile_id='323' method='java.lang.invoke.InvokerBytecodeGenerator emitLoadInsn (Ljava/lang/invoke/LambdaForm$BasicType;I)V' bytes='21' count='256' iicount='256' level='3' stamp='0.249' comment='tiered' hot_count='256'/>
+<task_queued compile_id='324' method='java.lang.invoke.InvokerBytecodeGenerator loadInsnOpcode (Ljava/lang/invoke/LambdaForm$BasicType;)I' bytes='86' count='256' iicount='256' level='3' stamp='0.249' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='321' compiler='c1' level='3' entry='0x00007fba5e2f76c0' size='1320' address='0x00007fba5e2f7510' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1184' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1120' method='java.lang.invoke.LambdaForm$Name lastUseIndex (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='36' count='276' backedge_count='744' iicount='276' stamp='0.249'/>
+<writer thread='25166'/>
+<nmethod compile_id='316' compiler='c1' level='3' entry='0x00007fba5e2f7de0' size='7768' address='0x00007fba5e2f7a90' relocation_offset='368' insts_offset='848' stub_offset='6032' scopes_data_offset='6520' scopes_pcs_offset='7040' dependencies_offset='7712' nul_chk_table_offset='7720' oops_offset='6408' metadata_offset='6424' method='java.lang.invoke.InvokerBytecodeGenerator emitImplicitConversion (Ljava/lang/invoke/LambdaForm$BasicType;Ljava/lang/Class;Ljava/lang/Object;)V' bytes='159' count='282' iicount='282' stamp='0.249'/>
+<writer thread='25110'/>
+<task_queued compile_id='325' method='jdk.internal.org.objectweb.asm.Frame get (I)I' bytes='46' count='275' iicount='275' level='3' stamp='0.249' comment='tiered' hot_count='275'/>
+<task_queued compile_id='326' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='914' backedge_count='18018' iicount='914' stamp='0.250' comment='tiered' hot_count='914'/>
+<task_queued compile_id='327' method='java.lang.String replace (CC)Ljava/lang/String;' bytes='42' count='256' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='325' compiler='c1' level='3' entry='0x00007fba5e2f9ac0' size='1176' address='0x00007fba5e2f9910' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1032' scopes_pcs_offset='1072' dependencies_offset='1152' nul_chk_table_offset='1160' metadata_offset='1024' method='jdk.internal.org.objectweb.asm.Frame get (I)I' bytes='46' count='282' iicount='282' stamp='0.250'/>
+<writer thread='25168'/>
+<nmethod compile_id='323' compiler='c1' level='3' entry='0x00007fba5e2f9fe0' size='1384' address='0x00007fba5e2f9e10' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1144' scopes_pcs_offset='1200' dependencies_offset='1344' nul_chk_table_offset='1352' metadata_offset='1128' method='java.lang.invoke.InvokerBytecodeGenerator emitLoadInsn (Ljava/lang/invoke/LambdaForm$BasicType;I)V' bytes='21' count='274' iicount='274' stamp='0.250'/>
+<writer thread='25110'/>
+<task_queued compile_id='328' method='java.util.Arrays copyOfRange ([Ljava/lang/Object;IILjava/lang/Class;)[Ljava/lang/Object;' bytes='89' count='256' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<task_queued compile_id='329' method='java.lang.invoke.MethodTypeForm erasedType ()Ljava/lang/invoke/MethodType;' bytes='5' count='128' iicount='128' level='1' stamp='0.250' comment='tiered' hot_count='128'/>
+<writer thread='25164'/>
+<nmethod compile_id='320' compiler='c2' level='4' entry='0x00007fba656faa20' size='1056' address='0x00007fba656fa890' relocation_offset='368' insts_offset='400' stub_offset='880' scopes_data_offset='920' scopes_pcs_offset='968' dependencies_offset='1048' metadata_offset='904' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='5588' iicount='5588' stamp='0.250'/>
+<make_not_entrant thread='25164' compile_id='8' compiler='c1' level='3' stamp='0.250'/>
+<writer thread='25110'/>
+<nmethod compile_id='330' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656faea0' size='432' address='0x00007fba656fad10' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.250'/>
+<writer thread='25168'/>
+<nmethod compile_id='327' compiler='c1' level='3' entry='0x00007fba5e2fa560' size='1528' address='0x00007fba5e2fa390' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1368' scopes_pcs_offset='1424' dependencies_offset='1520' metadata_offset='1352' method='java.lang.String replace (CC)Ljava/lang/String;' bytes='42' count='267' iicount='267' stamp='0.250'/>
+<writer thread='25110'/>
+<task_queued compile_id='331' method='sun.invoke.util.VerifyAccess isTypeVisible (Ljava/lang/Class;Ljava/lang/Class;)Z' bytes='118' count='256' backedge_count='5' iicount='256' level='3' stamp='0.250' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='322' compiler='c1' level='3' entry='0x00007fba5e2face0' size='5880' address='0x00007fba5e2faa10' relocation_offset='368' insts_offset='720' stub_offset='4432' scopes_data_offset='4824' scopes_pcs_offset='5248' dependencies_offset='5776' nul_chk_table_offset='5784' oops_offset='4760' metadata_offset='4768' method='java.lang.invoke.InvokerBytecodeGenerator emitPushArgument (Ljava/lang/Class;Ljava/lang/Object;)V' bytes='120' count='274' iicount='274' stamp='0.251'/>
+<writer thread='25166'/>
+<nmethod compile_id='324' compiler='c1' level='3' entry='0x00007fba5e2fc420' size='5128' address='0x00007fba5e2fc190' relocation_offset='368' insts_offset='656' stub_offset='3952' scopes_data_offset='4288' scopes_pcs_offset='4632' dependencies_offset='5080' nul_chk_table_offset='5088' oops_offset='4200' metadata_offset='4208' method='java.lang.invoke.InvokerBytecodeGenerator loadInsnOpcode (Ljava/lang/invoke/LambdaForm$BasicType;)I' bytes='86' count='274' iicount='274' stamp='0.251'/>
+<nmethod compile_id='329' compiler='c1' level='1' entry='0x00007fba656fb0c0' size='752' address='0x00007fba656faf10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodTypeForm erasedType ()Ljava/lang/invoke/MethodType;' bytes='5' count='130' iicount='130' stamp='0.251'/>
+<writer thread='25110'/>
+<task_queued compile_id='332' method='java.lang.invoke.MethodType parameterSlotCount ()I' bytes='8' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<task_queued compile_id='333' method='java.lang.invoke.MethodTypeForm parameterSlotCount ()I' bytes='9' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<task_queued compile_id='334' method='java.lang.invoke.MethodTypeForm unpack (JI)C' bytes='30' count='256' iicount='256' level='3' stamp='0.251' comment='tiered' hot_count='256'/>
+<nmethod compile_id='335' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fb3a0' size='440' address='0x00007fba656fb210' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (II)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.251'/>
+<nmethod compile_id='336' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fb5a0' size='424' address='0x00007fba656fb410' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;IILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.251'/>
+<writer thread='25166'/>
+<nmethod compile_id='332' compiler='c1' level='3' entry='0x00007fba5e2fd7c0' size='1344' address='0x00007fba5e2fd610' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1224' dependencies_offset='1320' nul_chk_table_offset='1328' metadata_offset='1152' method='java.lang.invoke.MethodType parameterSlotCount ()I' bytes='8' count='260' iicount='260' stamp='0.251'/>
+<writer thread='25110'/>
+<task_queued compile_id='337' method='java.lang.invoke.LambdaForm$Name replaceNames ([Ljava/lang/invoke/LambdaForm$Name;[Ljava/lang/invoke/LambdaForm$Name;II)Ljava/lang/invoke/LambdaForm$Name;' bytes='174' count='212' backedge_count='2048' iicount='212' level='3' stamp='0.251' comment='tiered' hot_count='212'/>
+<writer thread='25167'/>
+<nmethod compile_id='318' compiler='c1' level='3' entry='0x00007fba5e2fdf20' size='9920' address='0x00007fba5e2fdb90' relocation_offset='368' insts_offset='912' stub_offset='7568' scopes_data_offset='8112' scopes_pcs_offset='8888' dependencies_offset='9832' nul_chk_table_offset='9840' oops_offset='7928' metadata_offset='7944' method='sun.invoke.util.Wrapper forPrimitiveType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='49' count='341' iicount='341' stamp='0.252'/>
+<writer thread='25110'/>
+<nmethod compile_id='338' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fb7a0' size='440' address='0x00007fba656fb610' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.252'/>
+<writer thread='25166'/>
+<nmethod compile_id='333' compiler='c1' level='3' entry='0x00007fba5e300440' size='1024' address='0x00007fba5e300290' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='912' scopes_pcs_offset='952' dependencies_offset='1016' metadata_offset='896' method='java.lang.invoke.MethodTypeForm parameterSlotCount ()I' bytes='9' count='260' iicount='260' stamp='0.252'/>
+<nmethod compile_id='334' compiler='c1' level='3' entry='0x00007fba5e3008c0' size='880' address='0x00007fba5e300710' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.invoke.MethodTypeForm unpack (JI)C' bytes='30' count='260' iicount='260' stamp='0.252'/>
+<writer thread='25169'/>
+<nmethod compile_id='328' compiler='c1' level='3' entry='0x00007fba5e300d60' size='6688' address='0x00007fba5e300a90' relocation_offset='368' insts_offset='720' stub_offset='5136' scopes_data_offset='5552' scopes_pcs_offset='6112' dependencies_offset='6656' nul_chk_table_offset='6664' oops_offset='5448' metadata_offset='5456' method='java.util.Arrays copyOfRange ([Ljava/lang/Object;IILjava/lang/Class;)[Ljava/lang/Object;' bytes='89' count='275' iicount='275' stamp='0.252'/>
+<writer thread='25110'/>
+<task_queued compile_id='339' method='jdk.internal.org.objectweb.asm.Frame pop ()I' bytes='43' count='255' iicount='255' level='3' stamp='0.252' comment='tiered' hot_count='255'/>
+<writer thread='25166'/>
+<nmethod compile_id='339' compiler='c1' level='3' entry='0x00007fba5e3026c0' size='1120' address='0x00007fba5e302510' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='968' dependencies_offset='1080' nul_chk_table_offset='1088' metadata_offset='928' method='jdk.internal.org.objectweb.asm.Frame pop ()I' bytes='43' count='263' iicount='263' stamp='0.252'/>
+<writer thread='25110'/>
+<task_queued compile_id='340' method='java.lang.Class isLocalOrAnonymousClass ()Z' bytes='5' count='256' iicount='256' level='3' stamp='0.253' comment='tiered' hot_count='256'/>
+<task_queued compile_id='341' method='java.lang.Class hasEnclosingMethodInfo ()Z' bytes='17' count='256' iicount='256' level='3' stamp='0.253' comment='tiered' hot_count='256'/>
+<nmethod compile_id='342' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fb9e0' size='1080' address='0x00007fba656fb810' relocation_offset='368' consts_offset='1080' insts_offset='464' method='java.lang.Class getEnclosingMethod0 ()[Ljava/lang/Object;' bytes='0' count='256' iicount='256' stamp='0.253'/>
+<writer thread='25167'/>
+<nmethod compile_id='337' compiler='c1' level='3' entry='0x00007fba5e302be0' size='4456' address='0x00007fba5e302990' relocation_offset='368' insts_offset='592' stub_offset='3472' scopes_data_offset='3664' scopes_pcs_offset='3928' dependencies_offset='4360' nul_chk_table_offset='4368' metadata_offset='3656' method='java.lang.invoke.LambdaForm$Name replaceNames ([Ljava/lang/invoke/LambdaForm$Name;[Ljava/lang/invoke/LambdaForm$Name;II)Ljava/lang/invoke/LambdaForm$Name;' bytes='174' count='212' backedge_count='2064' iicount='212' stamp='0.253'/>
+<writer thread='25169'/>
+<nmethod compile_id='340' compiler='c1' level='3' entry='0x00007fba5e303ce0' size='1240' address='0x00007fba5e303b10' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1080' scopes_pcs_offset='1136' dependencies_offset='1232' metadata_offset='1064' method='java.lang.Class isLocalOrAnonymousClass ()Z' bytes='5' count='256' iicount='256' stamp='0.253'/>
+<writer thread='25167'/>
+<nmethod compile_id='341' compiler='c1' level='3' entry='0x00007fba5e3041e0' size='1096' address='0x00007fba5e304010' relocation_offset='368' insts_offset='464' stub_offset='784' scopes_data_offset='976' scopes_pcs_offset='1008' dependencies_offset='1088' metadata_offset='968' method='java.lang.Class hasEnclosingMethodInfo ()Z' bytes='17' count='256' iicount='256' stamp='0.253'/>
+<writer thread='25110'/>
+<nmethod compile_id='343' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fbe20' size='424' address='0x00007fba656fbc90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (ILjava/lang/Object;Ljava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.253'/>
+<task_queued compile_id='344' method='java.lang.Class getPackageName ()Ljava/lang/String;' bytes='81' count='256' iicount='256' level='3' stamp='0.253' comment='tiered' hot_count='256'/>
+<task_queued compile_id='345' method='java.lang.invoke.LambdaForm$NamedFunction returnType ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='11' count='256' iicount='256' level='3' stamp='0.253' comment='tiered' hot_count='256'/>
+<task_queued compile_id='346' method='java.lang.invoke.LambdaForm$BasicType basicTypeSlots ()I' bytes='8' count='256' iicount='256' level='3' stamp='0.254' comment='tiered' hot_count='256'/>
+<task_queued compile_id='347' method='sun.invoke.util.Wrapper stackSlots ()I' bytes='9' count='256' iicount='256' level='3' stamp='0.254' comment='tiered' hot_count='256'/>
+<writer thread='25161'/>
+<nmethod compile_id='326' compiler='c2' level='4' entry='0x00007fba656fc020' size='1080' address='0x00007fba656fbe90' relocation_offset='368' insts_offset='400' stub_offset='816' scopes_data_offset='856' scopes_pcs_offset='960' dependencies_offset='1056' nul_chk_table_offset='1064' metadata_offset='840' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='964' backedge_count='19872' iicount='964' stamp='0.254'/>
+<make_not_entrant thread='25161' compile_id='117' compiler='c1' level='3' stamp='0.254'/>
+<writer thread='25110'/>
+<task_queued compile_id='348' method='java.lang.invoke.MemberName getFieldType ()Ljava/lang/Class;' bytes='177' count='268' iicount='268' level='3' stamp='0.254' comment='tiered' hot_count='268'/>
+<writer thread='25168'/>
+<nmethod compile_id='331' compiler='c1' level='3' entry='0x00007fba5e304840' size='11648' address='0x00007fba5e304490' relocation_offset='368' insts_offset='944' stub_offset='9328' scopes_data_offset='9744' scopes_pcs_offset='10600' dependencies_offset='11528' nul_chk_table_offset='11536' oops_offset='9656' metadata_offset='9664' method='sun.invoke.util.VerifyAccess isTypeVisible (Ljava/lang/Class;Ljava/lang/Class;)Z' bytes='118' count='288' backedge_count='5' iicount='288' stamp='0.254'/>
+<writer thread='25110'/>
+<task_queued compile_id='349' method='jdk.internal.org.objectweb.asm.ClassWriter addType (Ljava/lang/String;)I' bytes='39' count='274' iicount='274' level='3' stamp='0.254' comment='tiered' hot_count='274'/>
+<writer thread='25167'/>
+<nmethod compile_id='346' compiler='c1' level='3' entry='0x00007fba5e307440' size='1176' address='0x00007fba5e307290' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1040' scopes_pcs_offset='1072' dependencies_offset='1152' nul_chk_table_offset='1160' metadata_offset='1024' method='java.lang.invoke.LambdaForm$BasicType basicTypeSlots ()I' bytes='8' count='271' iicount='271' stamp='0.254'/>
+<writer thread='25169'/>
+<nmethod compile_id='345' compiler='c1' level='3' entry='0x00007fba5e3079a0' size='2664' address='0x00007fba5e307790' relocation_offset='368' insts_offset='528' stub_offset='2032' scopes_data_offset='2280' scopes_pcs_offset='2384' dependencies_offset='2608' nul_chk_table_offset='2616' metadata_offset='2232' method='java.lang.invoke.LambdaForm$NamedFunction returnType ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='11' count='265' iicount='265' stamp='0.254'/>
+<writer thread='25110'/>
+<task_queued compile_id='350' method='jdk.internal.org.objectweb.asm.ByteVector put11 (II)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='52' count='271' iicount='271' level='3' stamp='0.254' comment='tiered' hot_count='271'/>
+<task_queued compile_id='351' method='jdk.internal.org.objectweb.asm.ClassWriter newClassItem (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='70' count='256' iicount='256' level='3' stamp='0.254' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='347' compiler='c1' level='3' entry='0x00007fba5e3083c0' size='848' address='0x00007fba5e308210' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='sun.invoke.util.Wrapper stackSlots ()I' bytes='9' count='271' iicount='271' stamp='0.254'/>
+<writer thread='25166'/>
+<nmethod compile_id='344' compiler='c1' level='3' entry='0x00007fba5e308820' size='5320' address='0x00007fba5e308590' relocation_offset='368' insts_offset='656' stub_offset='4240' scopes_data_offset='4568' scopes_pcs_offset='4904' dependencies_offset='5272' nul_chk_table_offset='5280' metadata_offset='4504' method='java.lang.Class getPackageName ()Ljava/lang/String;' bytes='81' count='274' iicount='274' stamp='0.255'/>
+<writer thread='25169'/>
+<nmethod compile_id='349' compiler='c1' level='3' entry='0x00007fba5e309c60' size='1448' address='0x00007fba5e309a90' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1224' scopes_pcs_offset='1288' dependencies_offset='1416' nul_chk_table_offset='1424' metadata_offset='1208' method='jdk.internal.org.objectweb.asm.ClassWriter addType (Ljava/lang/String;)I' bytes='39' count='287' iicount='287' stamp='0.255'/>
+<writer thread='25168'/>
+<nmethod compile_id='350' compiler='c1' level='3' entry='0x00007fba5e30a260' size='1352' address='0x00007fba5e30a090' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1096' scopes_pcs_offset='1168' dependencies_offset='1312' nul_chk_table_offset='1320' metadata_offset='1080' method='jdk.internal.org.objectweb.asm.ByteVector put11 (II)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='52' count='282' iicount='282' stamp='0.255'/>
+<writer thread='25166'/>
+<nmethod compile_id='351' compiler='c1' level='3' entry='0x00007fba5e30a820' size='2000' address='0x00007fba5e30a610' relocation_offset='368' insts_offset='528' stub_offset='1392' scopes_data_offset='1664' scopes_pcs_offset='1776' dependencies_offset='1968' nul_chk_table_offset='1976' metadata_offset='1640' method='jdk.internal.org.objectweb.asm.ClassWriter newClassItem (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='70' count='260' iicount='260' stamp='0.255'/>
+<writer thread='25110'/>
+<nmethod compile_id='352' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fc4a0' size='432' address='0x00007fba656fc310' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.255'/>
+<task_queued compile_id='353' method='java.util.Arrays copyOfRange ([Ljava/lang/Object;II)[Ljava/lang/Object;' bytes='11' count='256' iicount='256' level='3' stamp='0.255' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='353' compiler='c1' level='3' entry='0x00007fba5e30afc0' size='1104' address='0x00007fba5e30ae10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='1000' dependencies_offset='1080' nul_chk_table_offset='1088' metadata_offset='952' method='java.util.Arrays copyOfRange ([Ljava/lang/Object;II)[Ljava/lang/Object;' bytes='11' count='262' iicount='262' stamp='0.256'/>
+<writer thread='25110'/>
+<nmethod compile_id='354' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fc6a0' size='440' address='0x00007fba656fc510' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (ILjava/lang/Object;)I' bytes='0' count='0' iicount='0' stamp='0.256'/>
+<nmethod compile_id='355' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fc8a0' size='424' address='0x00007fba656fc710' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;ILjava/lang/Object;Ljava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.256'/>
+<task_queued compile_id='356' method='java.lang.invoke.LambdaForm$BasicType basicType (C)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='172' count='280' iicount='280' level='3' stamp='0.256' comment='tiered' hot_count='280'/>
+<nmethod compile_id='357' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fcaa0' size='440' address='0x00007fba656fc910' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.256'/>
+<task_queued compile_id='358' method='jdk.internal.org.objectweb.asm.Frame type (Ljdk/internal/org/objectweb/asm/ClassWriter;Ljava/lang/String;)I' bytes='416' count='272' iicount='272' level='3' stamp='0.257' comment='tiered' hot_count='272'/>
+<task_queued compile_id='359' method='java.lang.invoke.MethodType insertParameterTypes (I[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;' bytes='106' count='256' iicount='256' level='3' stamp='0.257' comment='tiered' hot_count='256'/>
+<nmethod compile_id='360' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fcce0' size='968' address='0x00007fba656fcb10' relocation_offset='368' consts_offset='968' insts_offset='464' method='java.lang.Class isAssignableFrom (Ljava/lang/Class;)Z' bytes='0' count='256' iicount='256' stamp='0.257'/>
+<task_queued compile_id='361' method='java.lang.invoke.MemberName getReferenceKind ()B' bytes='12' count='510' iicount='510' level='3' stamp='0.257' comment='tiered' hot_count='510'/>
+<task_queued compile_id='362' method='jdk.internal.org.objectweb.asm.ClassWriter put122 (III)V' bytes='15' count='256' iicount='256' level='3' stamp='0.257' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='356' compiler='c1' level='3' entry='0x00007fba5e30b520' size='4760' address='0x00007fba5e30b290' relocation_offset='368' insts_offset='656' stub_offset='3664' scopes_data_offset='4024' scopes_pcs_offset='4320' dependencies_offset='4736' nul_chk_table_offset='4744' oops_offset='3928' metadata_offset='3944' method='java.lang.invoke.LambdaForm$BasicType basicType (C)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='172' count='296' iicount='296' stamp='0.257'/>
+<writer thread='25167'/>
+<nmethod compile_id='348' compiler='c1' level='3' entry='0x00007fba5e30c8e0' size='9888' address='0x00007fba5e30c590' relocation_offset='368' insts_offset='848' stub_offset='7760' scopes_data_offset='8224' scopes_pcs_offset='8864' dependencies_offset='9520' handler_table_offset='9528' nul_chk_table_offset='9864' oops_offset='8072' metadata_offset='8088' method='java.lang.invoke.MemberName getFieldType ()Ljava/lang/Class;' bytes='177' count='329' iicount='329' stamp='0.257'/>
+<writer thread='25110'/>
+<task_queued compile_id='363' method='jdk.internal.org.objectweb.asm.Type getArgumentsAndReturnSizes (Ljava/lang/String;)I' bytes='151' count='109' backedge_count='4096' iicount='109' level='3' stamp='0.258' comment='tiered' hot_count='109'/>
+<writer thread='25168'/>
+<nmethod compile_id='361' compiler='c1' level='3' entry='0x00007fba5e30ee40' size='880' address='0x00007fba5e30ec90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.invoke.MemberName getReferenceKind ()B' bytes='12' count='526' iicount='526' stamp='0.258'/>
+<writer thread='25167'/>
+<nmethod compile_id='362' compiler='c1' level='3' entry='0x00007fba5e30f1e0' size='1184' address='0x00007fba5e30f010' relocation_offset='368' insts_offset='464' stub_offset='784' scopes_data_offset='984' scopes_pcs_offset='1040' dependencies_offset='1152' nul_chk_table_offset='1160' metadata_offset='968' method='jdk.internal.org.objectweb.asm.ClassWriter put122 (III)V' bytes='15' count='266' iicount='266' stamp='0.258'/>
+<writer thread='25110'/>
+<nmethod compile_id='364' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fd0a0' size='432' address='0x00007fba656fcf10' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.258'/>
+<writer thread='25169'/>
+<nmethod compile_id='359' compiler='c1' level='3' entry='0x00007fba5e30f800' size='6640' address='0x00007fba5e30f510' relocation_offset='368' insts_offset='752' stub_offset='4816' scopes_data_offset='5272' scopes_pcs_offset='5912' dependencies_offset='6568' nul_chk_table_offset='6576' oops_offset='5160' metadata_offset='5168' method='java.lang.invoke.MethodType insertParameterTypes (I[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;' bytes='106' count='272' iicount='272' stamp='0.258'/>
+<writer thread='25110'/>
+<nmethod compile_id='365' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fd2a0' size='440' address='0x00007fba656fd110' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.259'/>
+<task_queued compile_id='366' method='java.lang.invoke.InvokerBytecodeGenerator getInternalName (Ljava/lang/Class;)Ljava/lang/String;' bytes='75' count='256' iicount='256' level='3' stamp='0.259' comment='tiered' hot_count='256'/>
+<task_queued compile_id='367' method='java.lang.invoke.MemberName getMethodType ()Ljava/lang/invoke/MethodType;' bytes='202' count='356' iicount='356' level='3' stamp='0.259' comment='tiered' hot_count='356'/>
+<task_queued compile_id='368' method='sun.invoke.util.VerifyAccess isSamePackage (Ljava/lang/Class;Ljava/lang/Class;)Z' bytes='60' count='308' iicount='308' level='3' stamp='0.259' comment='tiered' hot_count='308'/>
+<task_queued compile_id='369' method='java.lang.invoke.MethodHandleNatives refKindIsGetter (B)Z' bytes='32' count='211' iicount='211' level='3' stamp='0.259' comment='tiered' hot_count='211'/>
+<writer thread='25166'/>
+<nmethod compile_id='358' compiler='c1' level='3' entry='0x00007fba5e311320' size='12400' address='0x00007fba5e310f10' relocation_offset='368' insts_offset='1040' stub_offset='9296' scopes_data_offset='9768' scopes_pcs_offset='11112' dependencies_offset='12280' nul_chk_table_offset='12288' metadata_offset='9672' method='jdk.internal.org.objectweb.asm.Frame type (Ljdk/internal/org/objectweb/asm/ClassWriter;Ljava/lang/String;)I' bytes='416' count='312' iicount='312' stamp='0.259'/>
+<writer thread='25169'/>
+<nmethod compile_id='366' compiler='c1' level='3' entry='0x00007fba5e314180' size='2064' address='0x00007fba5e313f90' relocation_offset='368' insts_offset='496' stub_offset='1648' scopes_data_offset='1848' scopes_pcs_offset='1904' dependencies_offset='2032' nul_chk_table_offset='2040' metadata_offset='1832' method='java.lang.invoke.InvokerBytecodeGenerator getInternalName (Ljava/lang/Class;)Ljava/lang/String;' bytes='75' count='273' iicount='273' stamp='0.260'/>
+<writer thread='25168'/>
+<nmethod compile_id='363' compiler='c1' level='3' entry='0x00007fba5e314b80' size='9776' address='0x00007fba5e314810' relocation_offset='368' insts_offset='880' stub_offset='7344' scopes_data_offset='7680' scopes_pcs_offset='8728' dependencies_offset='9688' nul_chk_table_offset='9696' metadata_offset='7624' method='jdk.internal.org.objectweb.asm.Type getArgumentsAndReturnSizes (Ljava/lang/String;)I' bytes='151' count='119' backedge_count='4380' iicount='119' stamp='0.260'/>
+<writer thread='25169'/>
+<nmethod compile_id='369' compiler='c1' level='3' entry='0x00007fba5e317040' size='944' address='0x00007fba5e316e90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.MethodHandleNatives refKindIsGetter (B)Z' bytes='32' count='212' iicount='212' stamp='0.260'/>
+<writer thread='25110'/>
+<task_queued compile_id='370' method='sun.invoke.util.VerifyType isNullConversion (Ljava/lang/Class;Ljava/lang/Class;Z)Z' bytes='157' count='337' iicount='337' level='3' stamp='0.260' comment='tiered' hot_count='337'/>
+<writer thread='25166'/>
+<nmethod compile_id='368' compiler='c1' level='3' entry='0x00007fba5e3175a0' size='8416' address='0x00007fba5e317290' relocation_offset='368' insts_offset='784' stub_offset='6672' scopes_data_offset='7000' scopes_pcs_offset='7560' dependencies_offset='8296' nul_chk_table_offset='8304' metadata_offset='6936' method='sun.invoke.util.VerifyAccess isSamePackage (Ljava/lang/Class;Ljava/lang/Class;)Z' bytes='60' count='343' iicount='343' stamp='0.261'/>
+<writer thread='25167'/>
+<nmethod compile_id='367' compiler='c1' level='3' entry='0x00007fba5e319680' size='8416' address='0x00007fba5e319390' relocation_offset='368' insts_offset='752' stub_offset='6768' scopes_data_offset='7112' scopes_pcs_offset='7576' dependencies_offset='8088' handler_table_offset='8096' nul_chk_table_offset='8384' oops_offset='7016' metadata_offset='7024' method='java.lang.invoke.MemberName getMethodType ()Ljava/lang/invoke/MethodType;' bytes='202' count='387' iicount='387' stamp='0.261'/>
+<writer thread='25110'/>
+<nmethod compile_id='371' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fd4a0' size='432' address='0x00007fba656fd310' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.261'/>
+<writer thread='25168'/>
+<nmethod compile_id='370' compiler='c1' level='3' entry='0x00007fba5e31b7a0' size='10064' address='0x00007fba5e31b490' relocation_offset='368' insts_offset='784' stub_offset='8688' scopes_data_offset='8984' scopes_pcs_offset='9432' dependencies_offset='9976' nul_chk_table_offset='9984' metadata_offset='8920' method='sun.invoke.util.VerifyType isNullConversion (Ljava/lang/Class;Ljava/lang/Class;Z)Z' bytes='157' count='366' iicount='366' stamp='0.262'/>
+<writer thread='25110'/>
+<task_queued compile_id='372' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='5400' iicount='5400' stamp='0.262' comment='tiered' hot_count='5400'/>
+<task_queued compile_id='373' method='java.lang.invoke.LambdaForm$Name &lt;init&gt; (Ljava/lang/invoke/LambdaForm$NamedFunction;[Ljava/lang/Object;)V' bytes='44' count='377' iicount='377' level='3' stamp='0.262' comment='tiered' hot_count='377'/>
+<nmethod compile_id='374' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fd6a0' size='440' address='0x00007fba656fd510' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.262'/>
+<writer thread='25161'/>
+<nmethod compile_id='372' compiler='c2' level='4' entry='0x00007fba656fd8a0' size='568' address='0x00007fba656fd710' relocation_offset='368' insts_offset='400' stub_offset='464' scopes_data_offset='496' scopes_pcs_offset='512' dependencies_offset='560' metadata_offset='488' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='5411' iicount='5411' stamp='0.262'/>
+<make_not_entrant thread='25161' compile_id='20' compiler='c1' level='3' stamp='0.262'/>
+<writer thread='25110'/>
+<task_queued compile_id='375' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='1289' iicount='1289' level='1' stamp='0.263' comment='tiered' hot_count='1289'/>
+<writer thread='25168'/>
+<nmethod compile_id='373' compiler='c1' level='3' entry='0x00007fba5e31de40' size='3272' address='0x00007fba5e31dc10' relocation_offset='368' insts_offset='560' stub_offset='2352' scopes_data_offset='2640' scopes_pcs_offset='2896' dependencies_offset='3200' nul_chk_table_offset='3208' metadata_offset='2584' method='java.lang.invoke.LambdaForm$Name &lt;init&gt; (Ljava/lang/invoke/LambdaForm$NamedFunction;[Ljava/lang/Object;)V' bytes='44' count='396' iicount='396' stamp='0.263'/>
+<nmethod compile_id='375' compiler='c1' level='1' entry='0x00007fba656fdb40' size='848' address='0x00007fba656fd990' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='744' scopes_pcs_offset='760' dependencies_offset='824' nul_chk_table_offset='832' metadata_offset='736' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='1306' iicount='1306' stamp='0.263'/>
+<make_not_entrant thread='25168' compile_id='228' compiler='c1' level='3' stamp='0.263'/>
+<writer thread='25110'/>
+<nmethod compile_id='376' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fdea0' size='432' address='0x00007fba656fdd10' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.263'/>
+<task_queued compile_id='377' method='java.lang.invoke.LambdaForm$Name internArguments ()V' bytes='59' count='256' backedge_count='651' iicount='256' level='3' stamp='0.264' comment='tiered' hot_count='256'/>
+<nmethod compile_id='378' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fe0a0' size='440' address='0x00007fba656fdf10' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.264'/>
+<task_queued compile_id='379' method='java.lang.invoke.InvokerBytecodeGenerator emitReferenceCast (Ljava/lang/Class;Ljava/lang/Object;)V' bytes='184' count='222' iicount='222' level='3' stamp='0.264' comment='tiered' hot_count='222'/>
+<writer thread='25169'/>
+<nmethod compile_id='377' compiler='c1' level='3' entry='0x00007fba5e31eb00' size='2824' address='0x00007fba5e31e910' relocation_offset='368' insts_offset='496' stub_offset='2288' scopes_data_offset='2472' scopes_pcs_offset='2592' dependencies_offset='2784' nul_chk_table_offset='2792' metadata_offset='2456' method='java.lang.invoke.LambdaForm$Name internArguments ()V' bytes='59' count='256' backedge_count='655' iicount='256' stamp='0.264'/>
+<writer thread='25110'/>
+<task_queued compile_id='380' method='java.lang.invoke.MemberName getName ()Ljava/lang/String;' bytes='25' count='256' iicount='256' level='3' stamp='0.264' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='380' compiler='c1' level='3' entry='0x00007fba5e31f660' size='1744' address='0x00007fba5e31f490' relocation_offset='368' insts_offset='464' stub_offset='1392' scopes_data_offset='1584' scopes_pcs_offset='1640' dependencies_offset='1736' metadata_offset='1560' method='java.lang.invoke.MemberName getName ()Ljava/lang/String;' bytes='25' count='261' iicount='261' stamp='0.265'/>
+<writer thread='25110'/>
+<task_queued compile_id='381' method='java.lang.invoke.LambdaForm$Name withConstraint (Ljava/lang/Object;)Ljava/lang/invoke/LambdaForm$Name;' bytes='20' count='256' iicount='256' level='3' stamp='0.265' comment='tiered' hot_count='256'/>
+<task_queued compile_id='382' method='java.lang.invoke.LambdaForm$Name newIndex (I)Ljava/lang/invoke/LambdaForm$Name;' bytes='16' count='256' iicount='256' level='3' stamp='0.265' comment='tiered' hot_count='256'/>
+<task_queued compile_id='383' method='jdk.internal.org.objectweb.asm.ClassWriter newClass (Ljava/lang/String;)I' bytes='9' count='256' iicount='256' level='3' stamp='0.265' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='381' compiler='c1' level='3' entry='0x00007fba5e31fd40' size='1152' address='0x00007fba5e31fb90' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1064' dependencies_offset='1144' metadata_offset='1016' method='java.lang.invoke.LambdaForm$Name withConstraint (Ljava/lang/Object;)Ljava/lang/invoke/LambdaForm$Name;' bytes='20' count='260' iicount='260' stamp='0.265'/>
+<writer thread='25110'/>
+<task_queued compile_id='384' method='java.lang.invoke.MemberName isMethod ()Z' bytes='7' count='256' iicount='256' level='3' stamp='0.265' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='379' compiler='c1' level='3' entry='0x00007fba5e320380' size='5856' address='0x00007fba5e320090' relocation_offset='368' insts_offset='752' stub_offset='4432' scopes_data_offset='4880' scopes_pcs_offset='5200' dependencies_offset='5744' nul_chk_table_offset='5752' oops_offset='4824' metadata_offset='4832' method='java.lang.invoke.InvokerBytecodeGenerator emitReferenceCast (Ljava/lang/Class;Ljava/lang/Object;)V' bytes='184' count='236' iicount='236' stamp='0.265'/>
+<writer thread='25166'/>
+<nmethod compile_id='383' compiler='c1' level='3' entry='0x00007fba5e321940' size='1008' address='0x00007fba5e321790' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='872' scopes_pcs_offset='904' dependencies_offset='984' nul_chk_table_offset='992' metadata_offset='856' method='jdk.internal.org.objectweb.asm.ClassWriter newClass (Ljava/lang/String;)I' bytes='9' count='260' iicount='260' stamp='0.265'/>
+<writer thread='25110'/>
+<task_queued compile_id='385' method='java.lang.invoke.MemberName getInvocationType ()Ljava/lang/invoke/MethodType;' bytes='56' count='279' iicount='279' level='3' stamp='0.265' comment='tiered' hot_count='279'/>
+<writer thread='25167'/>
+<nmethod compile_id='382' compiler='c1' level='3' entry='0x00007fba5e321d60' size='1544' address='0x00007fba5e321b90' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1416' scopes_pcs_offset='1456' dependencies_offset='1536' metadata_offset='1400' method='java.lang.invoke.LambdaForm$Name newIndex (I)Ljava/lang/invoke/LambdaForm$Name;' bytes='16' count='276' iicount='276' stamp='0.266'/>
+<writer thread='25168'/>
+<nmethod compile_id='384' compiler='c1' level='3' entry='0x00007fba5e3223c0' size='1232' address='0x00007fba5e322210' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1080' scopes_pcs_offset='1144' dependencies_offset='1224' metadata_offset='1056' method='java.lang.invoke.MemberName isMethod ()Z' bytes='7' count='266' iicount='266' stamp='0.266'/>
+<writer thread='25110'/>
+<task_queued compile_id='386' method='sun.reflect.misc.ReflectUtil isVMAnonymousClass (Ljava/lang/Class;)Z' bytes='19' count='397' iicount='397' level='3' stamp='0.266' comment='tiered' hot_count='397'/>
+<task_queued compile_id='387' method='java.lang.reflect.Modifier isPrivate (I)Z' bytes='12' count='256' iicount='256' level='3' stamp='0.266' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='387' compiler='c1' level='3' entry='0x00007fba5e3228c0' size='912' address='0x00007fba5e322710' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.reflect.Modifier isPrivate (I)Z' bytes='12' count='258' iicount='258' stamp='0.266'/>
+<writer thread='25166'/>
+<nmethod compile_id='385' compiler='c1' level='3' entry='0x00007fba5e322d40' size='4304' address='0x00007fba5e322b10' relocation_offset='368' insts_offset='560' stub_offset='3504' scopes_data_offset='3768' scopes_pcs_offset='3976' dependencies_offset='4264' nul_chk_table_offset='4272' metadata_offset='3704' method='java.lang.invoke.MemberName getInvocationType ()Ljava/lang/invoke/MethodType;' bytes='56' count='287' iicount='287' stamp='0.266'/>
+<writer thread='25169'/>
+<nmethod compile_id='386' compiler='c1' level='3' entry='0x00007fba5e323e20' size='2616' address='0x00007fba5e323c10' relocation_offset='368' insts_offset='528' stub_offset='2032' scopes_data_offset='2272' scopes_pcs_offset='2392' dependencies_offset='2584' nul_chk_table_offset='2592' metadata_offset='2232' method='sun.reflect.misc.ReflectUtil isVMAnonymousClass (Ljava/lang/Class;)Z' bytes='19' count='402' iicount='402' stamp='0.266'/>
+<writer thread='25110'/>
+<nmethod compile_id='388' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fe2a0' size='432' address='0x00007fba656fe110' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.267'/>
+<task_queued compile_id='389' method='sun.invoke.util.Wrapper forBasicType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='16' count='256' iicount='256' level='3' stamp='0.267' comment='tiered' hot_count='256'/>
+<task_queued compile_id='390' method='sun.invoke.util.BytecodeDescriptor unparseSig (Ljava/lang/Class;Ljava/lang/StringBuilder;)V' bytes='75' count='256' iicount='256' level='3' stamp='0.267' comment='tiered' hot_count='256'/>
+<task_queued compile_id='391' method='jdk.internal.org.objectweb.asm.Type getType ([CI)Ljdk/internal/org/objectweb/asm/Type;' bytes='269' count='182' backedge_count='2048' iicount='182' level='3' stamp='0.267' comment='tiered' hot_count='182'/>
+<task_queued compile_id='392' method='java.lang.AbstractStringBuilder appendChars ([CII)V' bytes='130' count='128' backedge_count='2032' iicount='128' level='3' stamp='0.267' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='389' compiler='c1' level='3' entry='0x00007fba5e324840' size='1192' address='0x00007fba5e324690' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1088' dependencies_offset='1168' nul_chk_table_offset='1176' metadata_offset='1048' method='sun.invoke.util.Wrapper forBasicType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='16' count='282' iicount='282' stamp='0.267'/>
+<writer thread='25110'/>
+<task_queued compile_id='393' method='java.lang.invoke.MemberName isResolved ()Z' bytes='13' count='349' iicount='349' level='3' stamp='0.268' comment='tiered' hot_count='349'/>
+<writer thread='25166'/>
+<nmethod compile_id='391' compiler='c1' level='3' entry='0x00007fba5e324de0' size='3776' address='0x00007fba5e324b90' relocation_offset='368' insts_offset='592' stub_offset='2960' scopes_data_offset='3128' scopes_pcs_offset='3360' dependencies_offset='3744' nul_chk_table_offset='3752' metadata_offset='3104' method='jdk.internal.org.objectweb.asm.Type getType ([CI)Ljdk/internal/org/objectweb/asm/Type;' bytes='269' count='194' backedge_count='2240' iicount='194' stamp='0.268'/>
+<writer thread='25168'/>
+<nmethod compile_id='393' compiler='c1' level='3' entry='0x00007fba5e325c40' size='944' address='0x00007fba5e325a90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.MemberName isResolved ()Z' bytes='13' count='354' iicount='354' stamp='0.268'/>
+<writer thread='25110'/>
+<nmethod compile_id='394' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fe4a0' size='440' address='0x00007fba656fe310' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.268'/>
+<writer thread='25169'/>
+<nmethod compile_id='392' compiler='c1' level='3' entry='0x00007fba5e326100' size='5016' address='0x00007fba5e325e90' relocation_offset='368' insts_offset='624' stub_offset='3408' scopes_data_offset='3664' scopes_pcs_offset='4392' dependencies_offset='4936' nul_chk_table_offset='4944' metadata_offset='3608' method='java.lang.AbstractStringBuilder appendChars ([CII)V' bytes='130' count='140' backedge_count='2240' iicount='140' stamp='0.268'/>
+<writer thread='25167'/>
+<nmethod compile_id='390' compiler='c1' level='3' entry='0x00007fba5e327500' size='4536' address='0x00007fba5e327290' relocation_offset='368' insts_offset='624' stub_offset='3472' scopes_data_offset='3792' scopes_pcs_offset='4104' dependencies_offset='4472' nul_chk_table_offset='4480' metadata_offset='3752' method='sun.invoke.util.BytecodeDescriptor unparseSig (Ljava/lang/Class;Ljava/lang/StringBuilder;)V' bytes='75' count='275' iicount='275' stamp='0.268'/>
+<writer thread='25110'/>
+<task_queued compile_id='395' method='java.lang.invoke.InvokerBytecodeGenerator emitStoreResult (Ljava/lang/invoke/LambdaForm$Name;)V' bytes='27' count='256' iicount='256' level='3' stamp='0.268' comment='tiered' hot_count='256'/>
+<task_queued compile_id='396' method='java.lang.invoke.LambdaForm$NamedFunction intrinsicName ()Ljava/lang/invoke/MethodHandleImpl$Intrinsic;' bytes='21' count='256' iicount='256' level='3' stamp='0.268' comment='tiered' hot_count='256'/>
+<task_queued compile_id='397' method='java.lang.invoke.MethodType parameterArray ()[Ljava/lang/Class;' bytes='11' count='256' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='398' method='java.lang.invoke.LambdaForm$NamedFunction member ()Ljava/lang/invoke/MemberName;' bytes='26' count='256' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='399' method='java.lang.invoke.InvokerBytecodeGenerator isStaticallyInvocable (Ljava/lang/invoke/MemberName;)Z' bytes='169' count='256' backedge_count='406' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='400' method='java.lang.Class isAnonymousClass ()Z' bytes='27' count='256' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='401' method='java.lang.Class isLocalClass ()Z' bytes='27' count='256' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='402' method='java.lang.invoke.MemberName isPrivate ()Z' bytes='8' count='256' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='403' method='java.lang.invoke.InvokerBytecodeGenerator emitStaticInvoke (Ljava/lang/invoke/MemberName;Ljava/lang/invoke/LambdaForm$Name;)V' bytes='257' count='256' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<task_queued compile_id='404' method='java.lang.invoke.InvokerBytecodeGenerator emitPushArguments (Ljava/lang/invoke/LambdaForm$Name;I)V' bytes='45' count='256' backedge_count='659' iicount='256' level='3' stamp='0.269' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='396' compiler='c1' level='3' entry='0x00007fba5e328640' size='1216' address='0x00007fba5e328490' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1112' dependencies_offset='1192' nul_chk_table_offset='1200' metadata_offset='1080' method='java.lang.invoke.LambdaForm$NamedFunction intrinsicName ()Ljava/lang/invoke/MethodHandleImpl$Intrinsic;' bytes='21' count='261' iicount='261' stamp='0.269'/>
+<writer thread='25166'/>
+<nmethod compile_id='395' compiler='c1' level='3' entry='0x00007fba5e328b60' size='1848' address='0x00007fba5e328990' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1536' scopes_pcs_offset='1624' dependencies_offset='1800' nul_chk_table_offset='1808' metadata_offset='1512' method='java.lang.invoke.InvokerBytecodeGenerator emitStoreResult (Ljava/lang/invoke/LambdaForm$Name;)V' bytes='27' count='263' iicount='263' stamp='0.269'/>
+<writer thread='25167'/>
+<nmethod compile_id='397' compiler='c1' level='3' entry='0x00007fba5e3292e0' size='1400' address='0x00007fba5e329110' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1248' scopes_pcs_offset='1280' dependencies_offset='1376' nul_chk_table_offset='1384' metadata_offset='1240' method='java.lang.invoke.MethodType parameterArray ()[Ljava/lang/Class;' bytes='11' count='263' iicount='263' stamp='0.269'/>
+<writer thread='25166'/>
+<nmethod compile_id='398' compiler='c1' level='3' entry='0x00007fba5e3298c0' size='880' address='0x00007fba5e329710' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.invoke.LambdaForm$NamedFunction member ()Ljava/lang/invoke/MemberName;' bytes='26' count='266' iicount='266' stamp='0.269'/>
+<writer thread='25168'/>
+<nmethod compile_id='404' compiler='c1' level='3' entry='0x00007fba5e329c80' size='2600' address='0x00007fba5e329a90' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2040' scopes_pcs_offset='2240' dependencies_offset='2528' nul_chk_table_offset='2536' metadata_offset='1992' method='java.lang.invoke.InvokerBytecodeGenerator emitPushArguments (Ljava/lang/invoke/LambdaForm$Name;I)V' bytes='45' count='274' backedge_count='707' iicount='274' stamp='0.270'/>
+<writer thread='25166'/>
+<nmethod compile_id='401' compiler='c1' level='3' entry='0x00007fba5e32a700' size='1880' address='0x00007fba5e32a510' relocation_offset='368' insts_offset='496' stub_offset='1392' scopes_data_offset='1632' scopes_pcs_offset='1728' dependencies_offset='1872' metadata_offset='1608' method='java.lang.Class isLocalClass ()Z' bytes='27' count='274' iicount='274' stamp='0.270'/>
+<writer thread='25167'/>
+<nmethod compile_id='400' compiler='c1' level='3' entry='0x00007fba5e32ae80' size='1896' address='0x00007fba5e32ac90' relocation_offset='368' insts_offset='496' stub_offset='1424' scopes_data_offset='1664' scopes_pcs_offset='1744' dependencies_offset='1888' metadata_offset='1640' method='java.lang.Class isAnonymousClass ()Z' bytes='27' count='274' iicount='274' stamp='0.270'/>
+<writer thread='25168'/>
+<nmethod compile_id='402' compiler='c1' level='3' entry='0x00007fba5e32b5c0' size='1080' address='0x00007fba5e32b410' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1008' dependencies_offset='1072' metadata_offset='960' method='java.lang.invoke.MemberName isPrivate ()Z' bytes='8' count='274' iicount='274' stamp='0.270'/>
+<writer thread='25110'/>
+<task_queued compile_id='405' method='java.util.ArrayList add (Ljava/lang/Object;)Z' bytes='25' count='256' iicount='256' level='3' stamp='0.270' comment='tiered' hot_count='256'/>
+<task_queued compile_id='406' method='java.util.ArrayList add (Ljava/lang/Object;[Ljava/lang/Object;I)V' bytes='23' count='256' iicount='256' level='3' stamp='0.270' comment='tiered' hot_count='256'/>
+<nmethod compile_id='407' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fe6a0' size='432' address='0x00007fba656fe510' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.270'/>
+<writer thread='25168'/>
+<nmethod compile_id='406' compiler='c1' level='3' entry='0x00007fba5e32ba80' size='2560' address='0x00007fba5e32b890' relocation_offset='368' insts_offset='496' stub_offset='1872' scopes_data_offset='2096' scopes_pcs_offset='2264' dependencies_offset='2504' nul_chk_table_offset='2512' metadata_offset='2056' method='java.util.ArrayList add (Ljava/lang/Object;[Ljava/lang/Object;I)V' bytes='23' count='262' iicount='262' stamp='0.271'/>
+<writer thread='25167'/>
+<nmethod compile_id='405' compiler='c1' level='3' entry='0x00007fba5e32c520' size='2760' address='0x00007fba5e32c310' relocation_offset='368' insts_offset='528' stub_offset='2032' scopes_data_offset='2264' scopes_pcs_offset='2448' dependencies_offset='2704' nul_chk_table_offset='2712' metadata_offset='2216' method='java.util.ArrayList add (Ljava/lang/Object;)Z' bytes='25' count='262' iicount='262' stamp='0.271'/>
+<writer thread='25110'/>
+<task_queued compile_id='408' method='java.lang.invoke.MethodHandles$Lookup lookupClassOrNull ()Ljava/lang/Class;' bytes='17' count='256' iicount='256' level='3' stamp='0.271' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='408' compiler='c1' level='3' entry='0x00007fba5e32cfc0' size='944' address='0x00007fba5e32ce10' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.MethodHandles$Lookup lookupClassOrNull ()Ljava/lang/Class;' bytes='17' count='271' iicount='271' stamp='0.271'/>
+<writer thread='25110'/>
+<task_queued compile_id='409' method='java.lang.invoke.LambdaFormBuffer ownedCount ()I' bytes='7' count='256' iicount='256' level='3' stamp='0.271' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='403' compiler='c1' level='3' entry='0x00007fba5e32d540' size='8312' address='0x00007fba5e32d210' relocation_offset='368' insts_offset='816' stub_offset='6320' scopes_data_offset='6848' scopes_pcs_offset='7592' dependencies_offset='8232' nul_chk_table_offset='8240' metadata_offset='6744' method='java.lang.invoke.InvokerBytecodeGenerator emitStaticInvoke (Ljava/lang/invoke/MemberName;Ljava/lang/invoke/LambdaForm$Name;)V' bytes='257' count='276' iicount='276' stamp='0.271'/>
+<writer thread='25110'/>
+<nmethod compile_id='410' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656fe8a0' size='440' address='0x00007fba656fe710' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.272'/>
+<task_queued compile_id='411' method='java.lang.invoke.LambdaForm forceInterpretation ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.272' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='409' compiler='c1' level='3' entry='0x00007fba5e32f4c0' size='848' address='0x00007fba5e32f310' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.lang.invoke.LambdaFormBuffer ownedCount ()I' bytes='7' count='259' iicount='259' stamp='0.272'/>
+<writer thread='25110'/>
+<task_queued compile_id='412' method='jdk.internal.org.objectweb.asm.ByteVector putUTF8 (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='142' count='765' backedge_count='19585' iicount='765' stamp='0.272' comment='tiered' hot_count='765'/>
+<writer thread='25168'/>
+<nmethod compile_id='411' compiler='c1' level='3' entry='0x00007fba5e32f840' size='944' address='0x00007fba5e32f690' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.LambdaForm forceInterpretation ()Z' bytes='14' count='256' iicount='256' stamp='0.272'/>
+<writer thread='25110'/>
+<task_queued compile_id='413' method='java.lang.invoke.LambdaForm lastUseIndex (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='76' count='278' backedge_count='1024' iicount='278' level='3' stamp='0.272' comment='tiered' hot_count='278'/>
+<writer thread='25169'/>
+<nmethod compile_id='399' compiler='c1' level='3' entry='0x00007fba5e32ff60' size='16592' address='0x00007fba5e32fa90' relocation_offset='368' insts_offset='1232' stub_offset='13296' scopes_data_offset='13976' scopes_pcs_offset='15112' dependencies_offset='16440' nul_chk_table_offset='16448' oops_offset='13784' metadata_offset='13792' method='java.lang.invoke.InvokerBytecodeGenerator isStaticallyInvocable (Ljava/lang/invoke/MemberName;)Z' bytes='169' count='289' backedge_count='464' iicount='289' stamp='0.272'/>
+<writer thread='25110'/>
+<task_queued compile_id='414' method='jdk.internal.org.objectweb.asm.Frame pop (I)V' bytes='45' count='321' iicount='321' level='3' stamp='0.272' comment='tiered' hot_count='321'/>
+<task_queued compile_id='415' method='jdk.internal.org.objectweb.asm.Frame set (II)V' bytes='65' count='318' iicount='318' level='3' stamp='0.272' comment='tiered' hot_count='318'/>
+<writer thread='25166'/>
+<nmethod compile_id='413' compiler='c1' level='3' entry='0x00007fba5e333d60' size='1720' address='0x00007fba5e333b90' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1408' scopes_pcs_offset='1496' dependencies_offset='1672' nul_chk_table_offset='1680' metadata_offset='1400' method='java.lang.invoke.LambdaForm lastUseIndex (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='76' count='297' backedge_count='1161' iicount='297' stamp='0.272'/>
+<writer thread='25167'/>
+<nmethod compile_id='414' compiler='c1' level='3' entry='0x00007fba5e334440' size='1016' address='0x00007fba5e334290' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='928' dependencies_offset='992' nul_chk_table_offset='1000' metadata_offset='896' method='jdk.internal.org.objectweb.asm.Frame pop (I)V' bytes='45' count='334' iicount='334' stamp='0.273'/>
+<writer thread='25169'/>
+<nmethod compile_id='415' compiler='c1' level='3' entry='0x00007fba5e334900' size='2256' address='0x00007fba5e334710' relocation_offset='368' insts_offset='496' stub_offset='1712' scopes_data_offset='1896' scopes_pcs_offset='2040' dependencies_offset='2216' nul_chk_table_offset='2224' metadata_offset='1880' method='jdk.internal.org.objectweb.asm.Frame set (II)V' bytes='65' count='327' iicount='327' stamp='0.273'/>
+<writer thread='25110'/>
+<task_queued compile_id='416' method='java.lang.Number &lt;init&gt; ()V' bytes='5' count='404' iicount='404' level='3' stamp='0.273' comment='tiered' hot_count='404'/>
+<task_queued compile_id='417' method='java.lang.Byte &lt;init&gt; (B)V' bytes='10' count='256' iicount='256' level='3' stamp='0.273' comment='tiered' hot_count='256'/>
+<task_queued compile_id='418' method='java.lang.invoke.MethodType &lt;init&gt; (Ljava/lang/Class;[Ljava/lang/Class;Z)V' bytes='40' count='212' iicount='212' level='3' stamp='0.273' comment='tiered' hot_count='212'/>
+<nmethod compile_id='419' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656feaa0' size='440' address='0x00007fba656fe910' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (IILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.273'/>
+<writer thread='25168'/>
+<nmethod compile_id='416' compiler='c1' level='3' entry='0x00007fba5e3351c0' size='992' address='0x00007fba5e335010' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='888' scopes_pcs_offset='920' dependencies_offset='984' metadata_offset='864' method='java.lang.Number &lt;init&gt; ()V' bytes='5' count='532' iicount='532' stamp='0.273'/>
+<writer thread='25110'/>
+<task_queued compile_id='420' method='java.lang.invoke.MethodTypeForm canonicalizeAll ([Ljava/lang/Class;I)[Ljava/lang/Class;' bytes='66' count='214' backedge_count='1024' iicount='214' level='3' stamp='0.273' comment='tiered' hot_count='214'/>
+<task_queued compile_id='421' method='java.lang.invoke.MemberName flagsMods (IIB)I' bytes='72' count='256' iicount='256' level='3' stamp='0.273' comment='tiered' hot_count='256'/>
+<task_queued compile_id='422' method='java.lang.invoke.MemberName init (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Object;I)V' bytes='66' count='256' iicount='256' level='3' stamp='0.273' comment='tiered' hot_count='256'/>
+<nmethod compile_id='423' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656feca0' size='432' address='0x00007fba656feb10' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;IILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.273'/>
+<writer thread='25166'/>
+<nmethod compile_id='417' compiler='c1' level='3' entry='0x00007fba5e3355c0' size='1120' address='0x00007fba5e335410' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.lang.Byte &lt;init&gt; (B)V' bytes='10' count='262' iicount='262' stamp='0.273'/>
+<writer thread='25110'/>
+<task_queued compile_id='424' method='java.lang.invoke.MemberName$Factory resolve (BLjava/lang/invoke/MemberName;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='143' count='256' iicount='256' level='3' stamp='0.273' comment='tiered' hot_count='256'/>
+<task_queued compile_id='425' method='java.lang.invoke.MemberName clone ()Ljava/lang/invoke/MemberName;' bytes='14' count='256' iicount='256' level='3' stamp='0.273' comment='tiered' hot_count='256'/>
+<nmethod compile_id='426' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656feee0' size='1128' address='0x00007fba656fed10' relocation_offset='368' consts_offset='1128' insts_offset='464' method='java.lang.invoke.MethodHandleNatives resolve (Ljava/lang/invoke/MemberName;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='0' count='256' iicount='256' throwouts='2' stamp='0.274'/>
+<writer thread='25169'/>
+<nmethod compile_id='421' compiler='c1' level='3' entry='0x00007fba5e335a40' size='880' address='0x00007fba5e335890' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.invoke.MemberName flagsMods (IIB)I' bytes='72' count='257' iicount='257' stamp='0.274'/>
+<writer thread='25168'/>
+<nmethod compile_id='420' compiler='c1' level='3' entry='0x00007fba5e335e00' size='2592' address='0x00007fba5e335c10' relocation_offset='368' insts_offset='496' stub_offset='2000' scopes_data_offset='2192' scopes_pcs_offset='2320' dependencies_offset='2544' nul_chk_table_offset='2552' metadata_offset='2184' method='java.lang.invoke.MethodTypeForm canonicalizeAll ([Ljava/lang/Class;I)[Ljava/lang/Class;' bytes='66' count='215' backedge_count='1032' iicount='215' stamp='0.274'/>
+<writer thread='25166'/>
+<nmethod compile_id='422' compiler='c1' level='3' entry='0x00007fba5e336840' size='1208' address='0x00007fba5e336690' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1152' dependencies_offset='1200' metadata_offset='1120' method='java.lang.invoke.MemberName init (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Object;I)V' bytes='66' count='257' iicount='257' stamp='0.274'/>
+<writer thread='25110'/>
+<task_queued compile_id='427' method='java.lang.ref.SoftReference &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='256' iicount='256' level='3' stamp='0.274' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='425' compiler='c1' level='3' entry='0x00007fba5e336d60' size='1736' address='0x00007fba5e336b90' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1432' scopes_pcs_offset='1504' dependencies_offset='1664' handler_table_offset='1672' nul_chk_table_offset='1720' metadata_offset='1416' method='java.lang.invoke.MemberName clone ()Ljava/lang/invoke/MemberName;' bytes='14' count='258' iicount='258' stamp='0.274'/>
+<writer thread='25167'/>
+<nmethod compile_id='418' compiler='c1' level='3' entry='0x00007fba5e3374a0' size='2784' address='0x00007fba5e337290' relocation_offset='368' insts_offset='528' stub_offset='2128' scopes_data_offset='2368' scopes_pcs_offset='2536' dependencies_offset='2760' nul_chk_table_offset='2768' metadata_offset='2328' method='java.lang.invoke.MethodType &lt;init&gt; (Ljava/lang/Class;[Ljava/lang/Class;Z)V' bytes='40' count='215' iicount='215' stamp='0.274'/>
+<writer thread='25169'/>
+<nmethod compile_id='424' compiler='c1' level='3' entry='0x00007fba5e337fc0' size='3368' address='0x00007fba5e337d90' relocation_offset='368' insts_offset='560' stub_offset='2448' scopes_data_offset='2704' scopes_pcs_offset='2904' dependencies_offset='3192' handler_table_offset='3200' nul_chk_table_offset='3320' metadata_offset='2680' method='java.lang.invoke.MemberName$Factory resolve (BLjava/lang/invoke/MemberName;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='143' count='259' iicount='259' stamp='0.274'/>
+<writer thread='25166'/>
+<nmethod compile_id='427' compiler='c1' level='3' entry='0x00007fba5e338ce0' size='1592' address='0x00007fba5e338b10' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1416' scopes_pcs_offset='1488' dependencies_offset='1584' metadata_offset='1376' method='java.lang.ref.SoftReference &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='257' iicount='257' stamp='0.274'/>
+<writer thread='25110'/>
+<nmethod compile_id='428' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ff320' size='424' address='0x00007fba656ff190' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;ILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.275'/>
+<task_queued compile_id='429' method='java.lang.invoke.DirectMethodHandle internalMemberName ()Ljava/lang/invoke/MemberName;' bytes='5' count='128' iicount='128' level='1' stamp='0.275' comment='tiered' hot_count='128'/>
+<nmethod compile_id='430' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ff520' size='440' address='0x00007fba656ff390' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;I)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.275'/>
+<writer thread='25168'/>
+<nmethod compile_id='429' compiler='c1' level='1' entry='0x00007fba656ff740' size='752' address='0x00007fba656ff590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.DirectMethodHandle internalMemberName ()Ljava/lang/invoke/MemberName;' bytes='5' count='129' iicount='129' stamp='0.275'/>
+<writer thread='25110'/>
+<task_queued compile_id='431' method='jdk.internal.org.objectweb.asm.ClassWriter newNameType (Ljava/lang/String;Ljava/lang/String;)I' bytes='10' count='256' iicount='256' level='3' stamp='0.275' comment='tiered' hot_count='256'/>
+<task_queued compile_id='432' method='jdk.internal.org.objectweb.asm.ClassWriter newNameTypeItem (Ljava/lang/String;Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='71' count='256' iicount='256' level='3' stamp='0.275' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='431' compiler='c1' level='3' entry='0x00007fba5e339340' size='1016' address='0x00007fba5e339190' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='872' scopes_pcs_offset='912' dependencies_offset='992' nul_chk_table_offset='1000' metadata_offset='856' method='jdk.internal.org.objectweb.asm.ClassWriter newNameType (Ljava/lang/String;Ljava/lang/String;)I' bytes='10' count='256' iicount='256' stamp='0.276'/>
+<writer thread='25110'/>
+<nmethod compile_id='433' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ffa20' size='424' address='0x00007fba656ff890' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/invoke/MemberName;)V' bytes='0' count='0' iicount='0' stamp='0.276'/>
+<writer thread='25169'/>
+<nmethod compile_id='432' compiler='c1' level='3' entry='0x00007fba5e339840' size='2432' address='0x00007fba5e339610' relocation_offset='368' insts_offset='560' stub_offset='1616' scopes_data_offset='1928' scopes_pcs_offset='2136' dependencies_offset='2392' nul_chk_table_offset='2400' metadata_offset='1896' method='jdk.internal.org.objectweb.asm.ClassWriter newNameTypeItem (Ljava/lang/String;Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='71' count='256' iicount='256' stamp='0.276'/>
+<writer thread='25110'/>
+<nmethod compile_id='434' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ffc20' size='424' address='0x00007fba656ffa90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/invoke/MemberName;)V' bytes='0' count='0' iicount='0' stamp='0.276'/>
+<task_queued compile_id='435' method='jdk.internal.org.objectweb.asm.Type getDescriptor (Ljava/lang/StringBuilder;)V' bytes='87' count='256' iicount='256' level='3' stamp='0.277' comment='tiered' hot_count='256'/>
+<task_queued compile_id='436' method='jdk.internal.org.objectweb.asm.Type getDescriptor ()Ljava/lang/String;' bytes='18' count='256' iicount='256' level='3' stamp='0.277' comment='tiered' hot_count='256'/>
+<task_queued compile_id='437' method='jdk.internal.org.objectweb.asm.ByteVector putInt (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='74' count='256' iicount='256' level='3' stamp='0.277' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='435' compiler='c1' level='3' entry='0x00007fba5e33a240' size='3040' address='0x00007fba5e33a010' relocation_offset='368' insts_offset='560' stub_offset='2288' scopes_data_offset='2544' scopes_pcs_offset='2744' dependencies_offset='3000' nul_chk_table_offset='3008' metadata_offset='2520' method='jdk.internal.org.objectweb.asm.Type getDescriptor (Ljava/lang/StringBuilder;)V' bytes='87' count='274' iicount='274' stamp='0.277'/>
+<writer thread='25168'/>
+<nmethod compile_id='436' compiler='c1' level='3' entry='0x00007fba5e33ae40' size='3008' address='0x00007fba5e33ac10' relocation_offset='368' insts_offset='560' stub_offset='2288' scopes_data_offset='2568' scopes_pcs_offset='2760' dependencies_offset='3000' metadata_offset='2504' method='jdk.internal.org.objectweb.asm.Type getDescriptor ()Ljava/lang/String;' bytes='18' count='273' iicount='273' stamp='0.277'/>
+<writer thread='25110'/>
+<nmethod compile_id='438' compile_kind='c2n' compiler='' level='0' entry='0x00007fba656ffe20' size='424' address='0x00007fba656ffc90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.277'/>
+<task_queued compile_id='439' method='java.lang.ref.WeakReference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='7' count='256' iicount='256' level='3' stamp='0.278' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='437' compiler='c1' level='3' entry='0x00007fba5e33b9e0' size='1424' address='0x00007fba5e33b810' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1128' scopes_pcs_offset='1208' dependencies_offset='1384' nul_chk_table_offset='1392' metadata_offset='1112' method='jdk.internal.org.objectweb.asm.ByteVector putInt (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='74' count='263' iicount='263' stamp='0.278'/>
+<writer thread='25110'/>
+<task_queued compile_id='440' method='java.lang.StringLatin1 inflate ([BI[CII)V' bytes='34' count='103' backedge_count='6144' iicount='103' level='3' stamp='0.278' comment='tiered' hot_count='103'/>
+<writer thread='25169'/>
+<nmethod compile_id='440' compiler='c1' level='3' entry='0x00007fba5e33bfc0' size='1328' address='0x00007fba5e33be10' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1032' scopes_pcs_offset='1104' dependencies_offset='1280' nul_chk_table_offset='1288' metadata_offset='1024' method='java.lang.StringLatin1 inflate ([BI[CII)V' bytes='34' count='103' backedge_count='6190' iicount='103' stamp='0.278'/>
+<writer thread='25167'/>
+<nmethod compile_id='439' compiler='c1' level='3' entry='0x00007fba5e33c560' size='1488' address='0x00007fba5e33c390' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1344' scopes_pcs_offset='1400' dependencies_offset='1480' metadata_offset='1312' method='java.lang.ref.WeakReference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='7' count='259' iicount='259' stamp='0.278'/>
+<writer thread='25165'/>
+<nmethod compile_id='412' compiler='c2' level='4' entry='0x00007fba65700040' size='2064' address='0x00007fba656ffe90' relocation_offset='368' insts_offset='432' stub_offset='1520' scopes_data_offset='1576' scopes_pcs_offset='1800' dependencies_offset='1992' handler_table_offset='2000' nul_chk_table_offset='2024' metadata_offset='1560' method='jdk.internal.org.objectweb.asm.ByteVector putUTF8 (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='142' count='930' backedge_count='24882' iicount='930' stamp='0.278'/>
+<make_not_entrant thread='25165' compile_id='235' compiler='c1' level='3' stamp='0.278'/>
+<writer thread='25110'/>
+<task_queued compile_id='441' method='java.lang.Class getModule ()Ljava/lang/Module;' bytes='5' count='128' iicount='128' level='1' stamp='0.278' comment='tiered' hot_count='128'/>
+<nmethod compile_id='442' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657008a0' size='440' address='0x00007fba65700710' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;II)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.278'/>
+<writer thread='25168'/>
+<nmethod compile_id='441' compiler='c1' level='1' entry='0x00007fba65700ac0' size='752' address='0x00007fba65700910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Class getModule ()Ljava/lang/Module;' bytes='5' count='129' iicount='129' stamp='0.279'/>
+<writer thread='25110'/>
+<task_queued compile_id='443' method='java.lang.AbstractStringBuilder checkRange (III)V' bytes='60' count='256' iicount='256' level='3' stamp='0.280' comment='tiered' hot_count='256'/>
+<nmethod compile_id='444' compile_kind='c2n' compiler='' level='0' entry='0x00007fba65700da0' size='432' address='0x00007fba65700c10' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.280'/>
+<nmethod compile_id='445' compile_kind='c2n' compiler='' level='0' entry='0x00007fba65700fa0' size='440' address='0x00007fba65700e10' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.280'/>
+<writer thread='25166'/>
+<nmethod compile_id='443' compiler='c1' level='3' entry='0x00007fba5e33cc40' size='5592' address='0x00007fba5e33c990' relocation_offset='368' insts_offset='688' stub_offset='4272' scopes_data_offset='4680' scopes_pcs_offset='5104' dependencies_offset='5584' oops_offset='4584' metadata_offset='4608' method='java.lang.AbstractStringBuilder checkRange (III)V' bytes='60' count='270' iicount='270' stamp='0.281'/>
+<writer thread='25110'/>
+<task_queued compile_id='446' method='java.lang.invoke.BoundMethodHandle$Factory typeSig (C)Ljava/lang/String;' bytes='16' count='256' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<task_queued compile_id='447' method='java.lang.Integer stringSize (I)I' bytes='47' count='256' backedge_count='16' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<task_queued compile_id='448' method='java.lang.Integer getChars (II[B)I' bytes='131' count='256' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<task_queued compile_id='449' method='java.lang.StringBuilder append (I)Ljava/lang/StringBuilder;' bytes='8' count='262' iicount='262' level='3' stamp='0.281' comment='tiered' hot_count='262'/>
+<task_queued compile_id='450' method='java.lang.AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder;' bytes='55' count='262' iicount='262' level='3' stamp='0.281' comment='tiered' hot_count='262'/>
+<task_queued compile_id='451' method='jdk.internal.org.objectweb.asm.MethodWriter visitFieldInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='248' count='256' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<task_queued compile_id='452' method='jdk.internal.org.objectweb.asm.ClassWriter newFieldItem (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='77' count='256' iicount='256' level='3' stamp='0.281' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='447' compiler='c1' level='3' entry='0x00007fba5e33e140' size='1224' address='0x00007fba5e33df90' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1096' scopes_pcs_offset='1136' dependencies_offset='1216' metadata_offset='1088' method='java.lang.Integer stringSize (I)I' bytes='47' count='281' backedge_count='16' iicount='281' stamp='0.281'/>
+<writer thread='25166'/>
+<nmethod compile_id='449' compiler='c1' level='3' entry='0x00007fba5e33e640' size='936' address='0x00007fba5e33e490' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.lang.StringBuilder append (I)Ljava/lang/StringBuilder;' bytes='8' count='279' iicount='279' stamp='0.281'/>
+<writer thread='25167'/>
+<nmethod compile_id='446' compiler='c1' level='3' entry='0x00007fba5e33ea40' size='992' address='0x00007fba5e33e890' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='896' scopes_pcs_offset='920' dependencies_offset='984' metadata_offset='888' method='java.lang.invoke.BoundMethodHandle$Factory typeSig (C)Ljava/lang/String;' bytes='16' count='322' iicount='322' stamp='0.282'/>
+<writer thread='25168'/>
+<nmethod compile_id='448' compiler='c1' level='3' entry='0x00007fba5e33ee80' size='2208' address='0x00007fba5e33ec90' relocation_offset='368' insts_offset='496' stub_offset='1488' scopes_data_offset='1640' scopes_pcs_offset='1760' dependencies_offset='2112' nul_chk_table_offset='2120' metadata_offset='1632' method='java.lang.Integer getChars (II[B)I' bytes='131' count='281' iicount='281' stamp='0.282'/>
+<writer thread='25110'/>
+<nmethod compile_id='453' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657011a0' size='432' address='0x00007fba65701010' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.282'/>
+<writer thread='25169'/>
+<nmethod compile_id='450' compiler='c1' level='3' entry='0x00007fba5e33f780' size='1768' address='0x00007fba5e33f590' relocation_offset='368' insts_offset='496' stub_offset='1296' scopes_data_offset='1528' scopes_pcs_offset='1632' dependencies_offset='1760' metadata_offset='1512' method='java.lang.AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder;' bytes='55' count='280' iicount='280' stamp='0.282'/>
+<writer thread='25110'/>
+<task_queued compile_id='454' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='15' count='256' iicount='256' level='3' stamp='0.282' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='452' compiler='c1' level='3' entry='0x00007fba5e33fee0' size='2928' address='0x00007fba5e33fc90' relocation_offset='368' insts_offset='592' stub_offset='1872' scopes_data_offset='2200' scopes_pcs_offset='2552' dependencies_offset='2872' nul_chk_table_offset='2880' metadata_offset='2152' method='jdk.internal.org.objectweb.asm.ClassWriter newFieldItem (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='77' count='265' iicount='265' stamp='0.283'/>
+<writer thread='25110'/>
+<nmethod compile_id='455' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657013a0' size='440' address='0x00007fba65701210' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.283'/>
+<writer thread='25166'/>
+<nmethod compile_id='451' compiler='c1' level='3' entry='0x00007fba5e340a80' size='4560' address='0x00007fba5e340810' relocation_offset='368' insts_offset='624' stub_offset='3408' scopes_data_offset='3712' scopes_pcs_offset='4072' dependencies_offset='4472' nul_chk_table_offset='4480' metadata_offset='3640' method='jdk.internal.org.objectweb.asm.MethodWriter visitFieldInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='248' count='265' iicount='265' stamp='0.283'/>
+<writer thread='25110'/>
+<task_queued compile_id='456' method='jdk.internal.org.objectweb.asm.ByteVector &lt;init&gt; ()V' bytes='13' count='256' iicount='256' level='3' stamp='0.283' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='454' compiler='c1' level='3' entry='0x00007fba5e341be0' size='1904' address='0x00007fba5e341a10' relocation_offset='368' insts_offset='464' stub_offset='1456' scopes_data_offset='1664' scopes_pcs_offset='1752' dependencies_offset='1880' nul_chk_table_offset='1888' metadata_offset='1624' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='15' count='258' iicount='258' stamp='0.283'/>
+<writer thread='25110'/>
+<task_queued compile_id='457' method='jdk.internal.org.objectweb.asm.ByteVector putByteArray ([BII)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='49' count='256' iicount='256' level='3' stamp='0.283' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='456' compiler='c1' level='3' entry='0x00007fba5e342340' size='1264' address='0x00007fba5e342190' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1144' scopes_pcs_offset='1176' dependencies_offset='1256' metadata_offset='1120' method='jdk.internal.org.objectweb.asm.ByteVector &lt;init&gt; ()V' bytes='13' count='256' iicount='256' stamp='0.283'/>
+<nmethod compile_id='457' compiler='c1' level='3' entry='0x00007fba5e342860' size='1464' address='0x00007fba5e342690' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1272' scopes_pcs_offset='1344' dependencies_offset='1440' nul_chk_table_offset='1448' metadata_offset='1256' method='jdk.internal.org.objectweb.asm.ByteVector putByteArray ([BII)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='49' count='256' iicount='256' stamp='0.284'/>
+<writer thread='25110'/>
+<nmethod compile_id='458' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657015a0' size='432' address='0x00007fba65701410' relocation_offset='368' consts_offset='432' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.284'/>
+<task_queued compile_id='459' method='java.lang.invoke.LambdaForm$BasicType basicTypeChar (Ljava/lang/Class;)C' bytes='8' count='256' iicount='256' level='3' stamp='0.284' comment='tiered' hot_count='256'/>
+<task_queued compile_id='460' method='java.lang.invoke.MethodHandleNatives refKindHasReceiver (B)Z' bytes='33' count='256' iicount='256' level='3' stamp='0.284' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='459' compiler='c1' level='3' entry='0x00007fba5e342e60' size='1784' address='0x00007fba5e342c90' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1504' scopes_pcs_offset='1584' dependencies_offset='1744' nul_chk_table_offset='1752' metadata_offset='1480' method='java.lang.invoke.LambdaForm$BasicType basicTypeChar (Ljava/lang/Class;)C' bytes='8' count='258' iicount='258' stamp='0.285'/>
+<writer thread='25110'/>
+<nmethod compile_id='461' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657017a0' size='440' address='0x00007fba65701610' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;IILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.285'/>
+<task_queued compile_id='462' method='java.lang.invoke.LambdaForm useCount (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='90' count='330' backedge_count='2423' iicount='330' level='3' stamp='0.285' comment='tiered' hot_count='330'/>
+<writer thread='25167'/>
+<nmethod compile_id='460' compiler='c1' level='3' entry='0x00007fba5e3435c0' size='944' address='0x00007fba5e343410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.invoke.MethodHandleNatives refKindHasReceiver (B)Z' bytes='33' count='261' iicount='261' stamp='0.285'/>
+<writer thread='25110'/>
+<nmethod compile_id='463' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657019a0' size='440' address='0x00007fba65701810' relocation_offset='368' consts_offset='440' insts_offset='400' method='java.lang.invoke.MethodHandle invokeBasic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.285'/>
+<nmethod compile_id='464' compile_kind='c2n' compiler='' level='0' entry='0x00007fba65701ba0' size='424' address='0x00007fba65701a10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.285'/>
+<task_queued compile_id='465' method='java.lang.invoke.LambdaForm uncustomize ()Ljava/lang/invoke/LambdaForm;' bytes='57' count='256' iicount='256' level='3' stamp='0.285' comment='tiered' hot_count='256'/>
+<task_queued compile_id='466' method='jdk.internal.org.objectweb.asm.MethodWriter visitMethodInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V' bytes='220' count='256' iicount='256' level='3' stamp='0.285' comment='tiered' hot_count='256'/>
+<task_queued compile_id='467' method='jdk.internal.org.objectweb.asm.ClassWriter newMethodItem (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)Ljdk/internal/org/objectweb/asm/Item;' bytes='91' count='256' iicount='256' level='3' stamp='0.285' comment='tiered' hot_count='256'/>
+<task_queued compile_id='468' method='java.lang.invoke.MemberName$Factory resolveOrFail (BLjava/lang/invoke/MemberName;Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='52' count='256' iicount='256' level='3' stamp='0.286' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='462' compiler='c1' level='3' entry='0x00007fba5e343a00' size='2176' address='0x00007fba5e343810' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1792' scopes_pcs_offset='1936' dependencies_offset='2128' nul_chk_table_offset='2136' metadata_offset='1768' method='java.lang.invoke.LambdaForm useCount (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='90' count='340' backedge_count='2477' iicount='340' stamp='0.286'/>
+<writer thread='25166'/>
+<nmethod compile_id='465' compiler='c1' level='3' entry='0x00007fba5e3442e0' size='1496' address='0x00007fba5e344110' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1328' scopes_pcs_offset='1376' dependencies_offset='1472' nul_chk_table_offset='1480' metadata_offset='1304' method='java.lang.invoke.LambdaForm uncustomize ()Ljava/lang/invoke/LambdaForm;' bytes='57' count='256' iicount='256' stamp='0.286'/>
+<writer thread='25169'/>
+<nmethod compile_id='466' compiler='c1' level='3' entry='0x00007fba5e344940' size='2896' address='0x00007fba5e344710' relocation_offset='368' insts_offset='560' stub_offset='2000' scopes_data_offset='2288' scopes_pcs_offset='2528' dependencies_offset='2816' nul_chk_table_offset='2824' metadata_offset='2264' method='jdk.internal.org.objectweb.asm.MethodWriter visitMethodInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V' bytes='220' count='256' iicount='256' stamp='0.286'/>
+<writer thread='25168'/>
+<nmethod compile_id='468' compiler='c1' level='3' entry='0x00007fba5e3454c0' size='3568' address='0x00007fba5e345290' relocation_offset='368' insts_offset='560' stub_offset='2768' scopes_data_offset='3016' scopes_pcs_offset='3232' dependencies_offset='3520' nul_chk_table_offset='3528' metadata_offset='2984' method='java.lang.invoke.MemberName$Factory resolveOrFail (BLjava/lang/invoke/MemberName;Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='52' count='256' iicount='256' stamp='0.286'/>
+<writer thread='25167'/>
+<nmethod compile_id='467' compiler='c1' level='3' entry='0x00007fba5e3462e0' size='3064' address='0x00007fba5e346090' relocation_offset='368' insts_offset='592' stub_offset='1968' scopes_data_offset='2296' scopes_pcs_offset='2688' dependencies_offset='3008' nul_chk_table_offset='3016' metadata_offset='2248' method='jdk.internal.org.objectweb.asm.ClassWriter newMethodItem (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)Ljdk/internal/org/objectweb/asm/Item;' bytes='91' count='256' iicount='256' stamp='0.287'/>
+<writer thread='25110'/>
+<nmethod compile_id='469' compile_kind='c2n' compiler='' level='0' entry='0x00007fba65701da0' size='424' address='0x00007fba65701c10' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)V' bytes='0' count='0' iicount='0' stamp='0.290'/>
+<task_queued compile_id='470' method='java.lang.module.ModuleDescriptor$Provides service ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.291' comment='tiered' hot_count='128'/>
+<task_queued compile_id='471' method='java.util.concurrent.CopyOnWriteArrayList setArray ([Ljava/lang/Object;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.291' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='470' compiler='c1' level='1' entry='0x00007fba65701fc0' size='752' address='0x00007fba65701e10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.module.ModuleDescriptor$Provides service ()Ljava/lang/String;' bytes='5' count='174' iicount='174' stamp='0.292'/>
+<writer thread='25169'/>
+<nmethod compile_id='471' compiler='c1' level='1' entry='0x00007fba657022c0' size='848' address='0x00007fba65702110' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='800' scopes_pcs_offset='808' dependencies_offset='840' method='java.util.concurrent.CopyOnWriteArrayList setArray ([Ljava/lang/Object;)V' bytes='6' count='183' iicount='183' stamp='0.292'/>
+<writer thread='25110'/>
+<task_queued compile_id='472' method='java.lang.Math max (II)I' bytes='11' count='273' iicount='273' level='3' stamp='0.293' comment='tiered' hot_count='273'/>
+<writer thread='25168'/>
+<nmethod compile_id='472' compiler='c1' level='3' entry='0x00007fba5e346ec0' size='912' address='0x00007fba5e346d10' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.lang.Math max (II)I' bytes='11' count='275' iicount='275' stamp='0.293'/>
+<writer thread='25110'/>
+<task_queued compile_id='473' method='java.lang.ThreadLocal access$400 (Ljava/lang/ThreadLocal;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.295' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='473' compiler='c1' level='1' entry='0x00007fba65702640' size='768' address='0x00007fba65702490' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.lang.ThreadLocal access$400 (Ljava/lang/ThreadLocal;)I' bytes='5' count='128' iicount='128' stamp='0.295'/>
+<writer thread='25110'/>
+<task_queued compile_id='474' method='java.lang.StringUTF16 compress ([CI[BII)I' bytes='50' count='128' backedge_count='2319' iicount='128' level='3' stamp='0.296' comment='tiered' hot_count='128'/>
+<task_queued compile_id='475' method='java.nio.Buffer hasRemaining ()Z' bytes='17' count='256' iicount='256' level='3' stamp='0.297' comment='tiered' hot_count='256'/>
+<task_queued compile_id='476' method='java.nio.DirectByteBuffer get ()B' bytes='15' count='256' iicount='256' level='3' stamp='0.297' comment='tiered' hot_count='256'/>
+<task_queued compile_id='477' method='java.nio.Buffer nextGetIndex ()I' bytes='31' count='256' iicount='256' level='3' stamp='0.297' comment='tiered' hot_count='256'/>
+<task_queued compile_id='478' method='java.nio.DirectByteBuffer ix (I)J' bytes='10' count='256' iicount='256' level='3' stamp='0.297' comment='tiered' hot_count='256'/>
+<task_queued compile_id='479' method='jdk.internal.misc.Unsafe getByte (J)B' bytes='7' count='256' iicount='256' level='3' stamp='0.297' comment='tiered' hot_count='256'/>
+<nmethod compile_id='480' compile_kind='c2n' compiler='' level='0' entry='0x00007fba657029e0' size='968' address='0x00007fba65702810' relocation_offset='368' consts_offset='968' insts_offset='464' method='jdk.internal.misc.Unsafe getByte (Ljava/lang/Object;J)B' bytes='0' count='256' iicount='256' stamp='0.297'/>
+<writer thread='25166'/>
+<nmethod compile_id='474' compiler='c1' level='3' entry='0x00007fba5e3472e0' size='1432' address='0x00007fba5e347110' relocation_offset='368' insts_offset='464' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1208' dependencies_offset='1384' nul_chk_table_offset='1392' metadata_offset='1120' method='java.lang.StringUTF16 compress ([CI[BII)I' bytes='50' count='133' backedge_count='2385' iicount='133' stamp='0.297'/>
+<nmethod compile_id='475' compiler='c1' level='3' entry='0x00007fba5e3478c0' size='944' address='0x00007fba5e347710' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.nio.Buffer hasRemaining ()Z' bytes='17' count='407' iicount='408' stamp='0.297'/>
+<writer thread='25168'/>
+<nmethod compile_id='477' compiler='c1' level='3' entry='0x00007fba5e347cc0' size='1096' address='0x00007fba5e347b10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1088' metadata_offset='952' method='java.nio.Buffer nextGetIndex ()I' bytes='31' count='489' iicount='489' stamp='0.297'/>
+<writer thread='25167'/>
+<nmethod compile_id='478' compiler='c1' level='3' entry='0x00007fba5e348140' size='848' address='0x00007fba5e347f90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.nio.DirectByteBuffer ix (I)J' bytes='10' count='503' iicount='504' stamp='0.297'/>
+<writer thread='25166'/>
+<nmethod compile_id='479' compiler='c1' level='3' entry='0x00007fba5e3484c0' size='880' address='0x00007fba5e348310' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='jdk.internal.misc.Unsafe getByte (J)B' bytes='7' count='541' iicount='541' stamp='0.297'/>
+<writer thread='25169'/>
+<nmethod compile_id='476' compiler='c1' level='3' entry='0x00007fba5e348860' size='1888' address='0x00007fba5e348690' relocation_offset='368' insts_offset='464' stub_offset='1424' scopes_data_offset='1632' scopes_pcs_offset='1736' dependencies_offset='1880' oops_offset='1592' metadata_offset='1600' method='java.nio.DirectByteBuffer get ()B' bytes='15' count='601' iicount='601' stamp='0.297'/>
+<writer thread='25110'/>
+<task_queued compile_id='481' method='java.nio.Buffer limit ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.297' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='481' compiler='c1' level='1' entry='0x00007fba65702dc0' size='752' address='0x00007fba65702c10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.nio.Buffer limit ()I' bytes='5' count='147' iicount='147' stamp='0.298'/>
+<writer thread='25110'/>
+<task_queued compile_id='482' method='jdk.internal.jimage.ImageStringsReader unmaskedHashCode (Ljava/lang/String;I)I' bytes='173' count='124' backedge_count='2048' iicount='124' level='3' stamp='0.298' comment='tiered' hot_count='124'/>
+<task_queued compile_id='483' method='java.nio.Buffer position ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.298' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='482' compiler='c1' level='3' entry='0x00007fba5e349060' size='5176' address='0x00007fba5e348e10' relocation_offset='368' insts_offset='592' stub_offset='3760' scopes_data_offset='4016' scopes_pcs_offset='4600' dependencies_offset='5112' nul_chk_table_offset='5120' metadata_offset='3944' method='jdk.internal.jimage.ImageStringsReader unmaskedHashCode (Ljava/lang/String;I)I' bytes='173' count='280' backedge_count='4694' iicount='280' stamp='0.299'/>
+<writer thread='25167'/>
+<nmethod compile_id='483' compiler='c1' level='1' entry='0x00007fba657030c0' size='752' address='0x00007fba65702f10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.nio.Buffer position ()I' bytes='5' count='140' iicount='140' stamp='0.299'/>
+<writer thread='25110'/>
+<task_queued compile_id='484' method='java.nio.Buffer position (I)Ljava/nio/Buffer;' bytes='55' count='256' iicount='256' level='3' stamp='0.299' comment='tiered' hot_count='256'/>
+<task_queued compile_id='485' method='java.nio.Buffer limit (I)Ljava/nio/Buffer;' bytes='74' count='256' iicount='256' level='3' stamp='0.299' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='484' compiler='c1' level='3' entry='0x00007fba5e34a460' size='1320' address='0x00007fba5e34a290' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1184' scopes_pcs_offset='1216' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1176' method='java.nio.Buffer position (I)Ljava/nio/Buffer;' bytes='55' count='286' iicount='286' stamp='0.299'/>
+<writer thread='25110'/>
+<task_queued compile_id='486' method='java.nio.ByteBuffer position (I)Ljava/nio/ByteBuffer;' bytes='8' count='256' iicount='256' level='3' stamp='0.299' comment='tiered' hot_count='256'/>
+<task_queued compile_id='487' method='java.nio.DirectByteBuffer address ()J' bytes='5' count='128' iicount='128' level='1' stamp='0.300' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='485' compiler='c1' level='3' entry='0x00007fba5e34a9e0' size='1384' address='0x00007fba5e34a810' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1248' scopes_pcs_offset='1280' dependencies_offset='1360' nul_chk_table_offset='1368' metadata_offset='1240' method='java.nio.Buffer limit (I)Ljava/nio/Buffer;' bytes='74' count='287' iicount='288' stamp='0.300'/>
+<writer thread='25110'/>
+<task_queued compile_id='488' method='java.nio.ByteBuffer limit (I)Ljava/nio/ByteBuffer;' bytes='8' count='256' iicount='256' level='3' stamp='0.300' comment='tiered' hot_count='256'/>
+<task_queued compile_id='489' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='5632' iicount='5632' stamp='0.300' comment='tiered' hot_count='5632'/>
+<task_queued compile_id='490' method='java.nio.MappedByteBuffer limit (I)Ljava/nio/MappedByteBuffer;' bytes='8' count='256' iicount='256' level='3' stamp='0.300' comment='tiered' hot_count='256'/>
+<task_queued compile_id='491' method='java.nio.MappedByteBuffer position (I)Ljava/nio/MappedByteBuffer;' bytes='8' count='256' iicount='256' level='3' stamp='0.300' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='487' compiler='c1' level='1' entry='0x00007fba657033c0' size='752' address='0x00007fba65703210' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.nio.DirectByteBuffer address ()J' bytes='5' count='141' iicount='141' stamp='0.300'/>
+<writer thread='25166'/>
+<nmethod compile_id='488' compiler='c1' level='3' entry='0x00007fba5e34af40' size='936' address='0x00007fba5e34ad90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.nio.ByteBuffer limit (I)Ljava/nio/ByteBuffer;' bytes='8' count='283' iicount='283' stamp='0.300'/>
+<writer thread='25169'/>
+<nmethod compile_id='486' compiler='c1' level='3' entry='0x00007fba5e34b340' size='936' address='0x00007fba5e34b190' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.nio.ByteBuffer position (I)Ljava/nio/ByteBuffer;' bytes='8' count='301' iicount='301' stamp='0.300'/>
+<writer thread='25167'/>
+<nmethod compile_id='490' compiler='c1' level='3' entry='0x00007fba5e34b740' size='1112' address='0x00007fba5e34b590' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='968' scopes_pcs_offset='1024' dependencies_offset='1104' metadata_offset='952' method='java.nio.MappedByteBuffer limit (I)Ljava/nio/MappedByteBuffer;' bytes='8' count='274' iicount='274' stamp='0.300'/>
+<writer thread='25166'/>
+<nmethod compile_id='491' compiler='c1' level='3' entry='0x00007fba5e34bbc0' size='1112' address='0x00007fba5e34ba10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='968' scopes_pcs_offset='1024' dependencies_offset='1104' metadata_offset='952' method='java.nio.MappedByteBuffer position (I)Ljava/nio/MappedByteBuffer;' bytes='8' count='274' iicount='274' stamp='0.300'/>
+<writer thread='25165'/>
+<nmethod compile_id='489' compiler='c2' level='4' entry='0x00007fba657036a0' size='536' address='0x00007fba65703510' relocation_offset='368' insts_offset='400' stub_offset='464' scopes_data_offset='488' scopes_pcs_offset='496' dependencies_offset='528' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='5645' iicount='5645' stamp='0.300'/>
+<make_not_entrant thread='25165' compile_id='52' compiler='c1' level='3' stamp='0.300'/>
+<writer thread='25110'/>
+<nmethod compile_id='492' compile_kind='c2n' compiler='' level='0' entry='0x00007fba65703920' size='424' address='0x00007fba65703790' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' bytes='0' count='0' iicount='0' stamp='0.301'/>
+<task_queued compile_id='493' method='java.lang.invoke.LambdaForm returnType ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='26' count='256' iicount='256' level='3' stamp='0.301' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='493' compiler='c1' level='3' entry='0x00007fba5e34c040' size='1064' address='0x00007fba5e34be90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='936' dependencies_offset='1032' nul_chk_table_offset='1040' metadata_offset='896' method='java.lang.invoke.LambdaForm returnType ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='26' count='256' iicount='256' stamp='0.301'/>
+<writer thread='25110'/>
+<task_queued compile_id='494' method='java.lang.invoke.MethodTypeForm basicType ()Ljava/lang/invoke/MethodType;' bytes='5' count='128' iicount='128' level='1' stamp='0.302' comment='tiered' hot_count='128'/>
+<task_queued compile_id='495' method='java.lang.invoke.MemberName getReferenceKind ()B' bytes='12' count='1278' iicount='1278' level='1' stamp='0.302' comment='tiered' hot_count='1278'/>
+<writer thread='25167'/>
+<nmethod compile_id='494' compiler='c1' level='1' entry='0x00007fba65703b40' size='752' address='0x00007fba65703990' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MethodTypeForm basicType ()Ljava/lang/invoke/MethodType;' bytes='5' count='130' iicount='130' stamp='0.303'/>
+<writer thread='25169'/>
+<nmethod compile_id='495' compiler='c1' level='1' entry='0x00007fba65703e40' size='752' address='0x00007fba65703c90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.invoke.MemberName getReferenceKind ()B' bytes='12' count='1283' iicount='1283' stamp='0.303'/>
+<make_not_entrant thread='25169' compile_id='361' compiler='c1' level='3' stamp='0.303'/>
+<writer thread='25110'/>
+<task_queued compile_id='496' method='java.lang.invoke.MethodHandle &lt;init&gt; (Ljava/lang/invoke/MethodType;Ljava/lang/invoke/LambdaForm;)V' bytes='37' count='256' iicount='256' level='3' stamp='0.303' comment='tiered' hot_count='256'/>
+<task_queued compile_id='497' method='java.lang.invoke.LambdaForm prepare ()V' bytes='112' count='256' iicount='256' level='3' stamp='0.303' comment='tiered' hot_count='256'/>
+<task_queued compile_id='498' method='java.util.AbstractList &lt;init&gt; ()V' bytes='10' count='256' iicount='256' level='3' stamp='0.303' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='498' compiler='c1' level='3' entry='0x00007fba5e34c4c0' size='1120' address='0x00007fba5e34c310' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.util.AbstractList &lt;init&gt; ()V' bytes='10' count='256' iicount='256' stamp='0.303'/>
+<writer thread='25166'/>
+<nmethod compile_id='496' compiler='c1' level='3' entry='0x00007fba5e34c9a0' size='2520' address='0x00007fba5e34c790' relocation_offset='368' insts_offset='528' stub_offset='1776' scopes_data_offset='2048' scopes_pcs_offset='2224' dependencies_offset='2480' nul_chk_table_offset='2496' metadata_offset='1992' method='java.lang.invoke.MethodHandle &lt;init&gt; (Ljava/lang/invoke/MethodType;Ljava/lang/invoke/LambdaForm;)V' bytes='37' count='274' iicount='274' stamp='0.304'/>
+<writer thread='25168'/>
+<nmethod compile_id='497' compiler='c1' level='3' entry='0x00007fba5e34d3c0' size='3104' address='0x00007fba5e34d190' relocation_offset='368' insts_offset='560' stub_offset='2384' scopes_data_offset='2672' scopes_pcs_offset='2816' dependencies_offset='3056' nul_chk_table_offset='3064' metadata_offset='2632' method='java.lang.invoke.LambdaForm prepare ()V' bytes='112' count='274' iicount='274' stamp='0.304'/>
+<writer thread='25110'/>
+<task_queued compile_id='499' method='java.util.Objects checkIndex (II)I' bytes='7' count='256' iicount='256' level='3' stamp='0.316' comment='tiered' hot_count='256'/>
+<task_queued compile_id='500' method='jdk.internal.util.Preconditions checkIndex (IILjava/util/function/BiFunction;)I' bytes='18' count='256' iicount='256' level='3' stamp='0.316' comment='tiered' hot_count='256'/>
+<task_queued compile_id='501' method='java.lang.String startsWith (Ljava/lang/String;I)Z' bytes='138' count='301' backedge_count='1317' iicount='301' level='3' stamp='0.316' comment='tiered' hot_count='301'/>
+<task_queued compile_id='502' method='java.lang.String startsWith (Ljava/lang/String;)Z' bytes='7' count='296' iicount='296' level='3' stamp='0.317' comment='tiered' hot_count='296'/>
+<writer thread='25167'/>
+<nmethod compile_id='500' compiler='c1' level='3' entry='0x00007fba5e34e020' size='2584' address='0x00007fba5e34de10' relocation_offset='368' insts_offset='528' stub_offset='1968' scopes_data_offset='2192' scopes_pcs_offset='2336' dependencies_offset='2544' nul_chk_table_offset='2552' oops_offset='2168' metadata_offset='2176' method='jdk.internal.util.Preconditions checkIndex (IILjava/util/function/BiFunction;)I' bytes='18' count='301' iicount='301' stamp='0.317'/>
+<writer thread='25169'/>
+<nmethod compile_id='499' compiler='c1' level='3' entry='0x00007fba5e34eaa0' size='2720' address='0x00007fba5e34e890' relocation_offset='368' insts_offset='528' stub_offset='2064' scopes_data_offset='2296' scopes_pcs_offset='2456' dependencies_offset='2680' nul_chk_table_offset='2688' oops_offset='2264' metadata_offset='2272' method='java.util.Objects checkIndex (II)I' bytes='7' count='301' iicount='301' stamp='0.317'/>
+<writer thread='25168'/>
+<nmethod compile_id='502' compiler='c1' level='3' entry='0x00007fba5e34f540' size='1056' address='0x00007fba5e34f390' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='984' dependencies_offset='1048' metadata_offset='952' method='java.lang.String startsWith (Ljava/lang/String;)Z' bytes='7' count='297' iicount='297' stamp='0.317'/>
+<writer thread='25166'/>
+<nmethod compile_id='501' compiler='c1' level='3' entry='0x00007fba5e34fa40' size='4528' address='0x00007fba5e34f810' relocation_offset='368' insts_offset='560' stub_offset='3664' scopes_data_offset='3840' scopes_pcs_offset='4184' dependencies_offset='4488' nul_chk_table_offset='4496' metadata_offset='3808' method='java.lang.String startsWith (Ljava/lang/String;I)Z' bytes='138' count='378' backedge_count='2566' iicount='378' stamp='0.318'/>
+<writer thread='25110'/>
+<task_queued compile_id='503' method='java.lang.ref.SoftReference get ()Ljava/lang/Object;' bytes='29' count='256' iicount='256' level='3' stamp='0.318' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='503' compiler='c1' level='3' entry='0x00007fba5e350bc0' size='1072' address='0x00007fba5e350a10' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1000' scopes_pcs_offset='1016' dependencies_offset='1064' metadata_offset='992' method='java.lang.ref.SoftReference get ()Ljava/lang/Object;' bytes='29' count='256' iicount='256' stamp='0.318'/>
+<writer thread='25110'/>
+<task_queued compile_id='504' method='java.util.Arrays rangeCheck (III)V' bytes='74' count='256' iicount='256' level='3' stamp='0.319' comment='tiered' hot_count='256'/>
+<task_queued compile_id='505' method='java.util.Arrays fill ([BIIB)V' bytes='28' count='128' backedge_count='2438' iicount='128' level='3' stamp='0.319' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='505' compiler='c1' level='3' entry='0x00007fba5e351060' size='1328' address='0x00007fba5e350e90' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1176' dependencies_offset='1304' nul_chk_table_offset='1312' metadata_offset='1080' method='java.util.Arrays fill ([BIIB)V' bytes='28' count='396' backedge_count='13320' iicount='396' stamp='0.319'/>
+<writer thread='25110'/>
+<task_queued compile_id='506' compile_kind='osr' method='java.util.Arrays fill ([BIIB)V' bytes='28' count='399' backedge_count='44664' iicount='399' osr_bci='10' stamp='0.319' comment='tiered' hot_count='44664'/>
+<task_queued compile_id='507' method='java.lang.String length ()I' bytes='11' count='9493' iicount='9493' stamp='0.320' comment='tiered' hot_count='9493'/>
+<task_queued compile_id='508' method='com.sun.org.apache.xerces.internal.util.Status isExceptional ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.320' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='504' compiler='c1' level='3' entry='0x00007fba5e3516e0' size='5752' address='0x00007fba5e351410' relocation_offset='368' insts_offset='720' stub_offset='4336' scopes_data_offset='4760' scopes_pcs_offset='5200' dependencies_offset='5744' oops_offset='4664' metadata_offset='4688' method='java.util.Arrays rangeCheck (III)V' bytes='74' count='541' iicount='541' stamp='0.320'/>
+<writer thread='25166'/>
+<nmethod compile_id='508' compiler='c1' level='1' entry='0x00007fba65704140' size='752' address='0x00007fba65703f90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='com.sun.org.apache.xerces.internal.util.Status isExceptional ()Z' bytes='5' count='157' iicount='157' stamp='0.320'/>
+<writer thread='25158'/>
+<nmethod compile_id='507' compiler='c2' level='4' entry='0x00007fba65704420' size='616' address='0x00007fba65704290' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='528' scopes_pcs_offset='544' dependencies_offset='592' nul_chk_table_offset='600' metadata_offset='520' method='java.lang.String length ()I' bytes='11' count='9536' iicount='9536' stamp='0.320'/>
+<make_not_entrant thread='25158' compile_id='45' compiler='c1' level='3' stamp='0.320'/>
+<writer thread='25110'/>
+<task_queued compile_id='509' method='com.sun.org.apache.xerces.internal.util.XMLChar isContent (I)Z' bytes='35' count='256' iicount='256' level='3' stamp='0.322' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='509' compiler='c1' level='3' entry='0x00007fba5e352cc0' size='1216' address='0x00007fba5e352b10' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1064' scopes_pcs_offset='1088' dependencies_offset='1184' nul_chk_table_offset='1192' metadata_offset='1056' method='com.sun.org.apache.xerces.internal.util.XMLChar isContent (I)Z' bytes='35' count='961' iicount='961' stamp='0.322'/>
+<writer thread='25110'/>
+<task_queued compile_id='510' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkEntityLimit (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='50' count='256' iicount='256' level='3' stamp='0.322' comment='tiered' hot_count='256'/>
+<task_queued compile_id='511' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl setScannerState (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.322' comment='tiered' hot_count='128'/>
+<task_queued compile_id='512' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='256' iicount='256' level='3' stamp='0.323' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='511' compiler='c1' level='1' entry='0x00007fba657046c0' size='752' address='0x00007fba65704510' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl setScannerState (I)V' bytes='6' count='157' iicount='157' stamp='0.323'/>
+<writer thread='25169'/>
+<nmethod compile_id='510' compiler='c1' level='3' entry='0x00007fba5e353200' size='1888' address='0x00007fba5e353010' relocation_offset='368' insts_offset='496' stub_offset='1456' scopes_data_offset='1664' scopes_pcs_offset='1752' dependencies_offset='1864' nul_chk_table_offset='1872' metadata_offset='1640' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkEntityLimit (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='50' count='488' iicount='488' stamp='0.323'/>
+<writer thread='25167'/>
+<nmethod compile_id='512' compiler='c1' level='3' entry='0x00007fba5e3539a0' size='2344' address='0x00007fba5e353790' relocation_offset='368' insts_offset='528' stub_offset='1744' scopes_data_offset='1976' scopes_pcs_offset='2152' dependencies_offset='2312' nul_chk_table_offset='2320' metadata_offset='1960' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='510' iicount='510' stamp='0.323'/>
+<writer thread='25110'/>
+<task_queued compile_id='513' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getLength ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.323' comment='tiered' hot_count='128'/>
+<task_queued compile_id='514' method='com.sun.org.apache.xerces.internal.util.XMLChar isSpace (I)Z' bytes='22' count='256' iicount='256' level='3' stamp='0.323' comment='tiered' hot_count='256'/>
+<task_queued compile_id='515' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='256' iicount='256' level='3' stamp='0.323' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='513' compiler='c1' level='1' entry='0x00007fba657049c0' size='752' address='0x00007fba65704810' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getLength ()I' bytes='5' count='151' iicount='152' stamp='0.323'/>
+<writer thread='25110'/>
+<task_queued compile_id='516' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='10' count='256' iicount='256' level='3' stamp='0.324' comment='tiered' hot_count='256'/>
+<task_queued compile_id='517' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (ILcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='111' count='256' iicount='256' level='3' stamp='0.324' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='514' compiler='c1' level='3' entry='0x00007fba5e3542c0' size='1088' address='0x00007fba5e354110' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='960' dependencies_offset='1056' nul_chk_table_offset='1064' metadata_offset='928' method='com.sun.org.apache.xerces.internal.util.XMLChar isSpace (I)Z' bytes='22' count='320' iicount='320' stamp='0.324'/>
+<writer thread='25110'/>
+<task_queued compile_id='518' method='java.util.ArrayList size ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.324' comment='tiered' hot_count='128'/>
+<task_queued compile_id='519' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='256' backedge_count='1' iicount='256' level='3' stamp='0.324' comment='tiered' hot_count='256'/>
+<writer thread='25161'/>
+<nmethod compile_id='506' compile_kind='osr' compiler='c2' level='4' entry='0x00007fba65704ca0' size='1096' address='0x00007fba65704b10' relocation_offset='368' insts_offset='400' stub_offset='880' scopes_data_offset='920' scopes_pcs_offset='992' dependencies_offset='1072' nul_chk_table_offset='1080' metadata_offset='904' method='java.util.Arrays fill ([BIIB)V' bytes='28' count='401' backedge_count='63239' iicount='401' stamp='0.324'/>
+<writer thread='25168'/>
+<nmethod compile_id='515' compiler='c1' level='3' entry='0x00007fba5e354760' size='1560' address='0x00007fba5e354590' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1320' scopes_pcs_offset='1368' dependencies_offset='1512' nul_chk_table_offset='1520' metadata_offset='1304' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='314' iicount='314' stamp='0.324'/>
+<writer thread='25169'/>
+<nmethod compile_id='516' compiler='c1' level='3' entry='0x00007fba5e354dc0' size='1264' address='0x00007fba5e354c10' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1120' scopes_pcs_offset='1160' dependencies_offset='1240' nul_chk_table_offset='1248' metadata_offset='1112' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='10' count='299' iicount='299' stamp='0.324'/>
+<writer thread='25110'/>
+<task_queued compile_id='520' method='com.sun.org.apache.xerces.internal.util.XMLChar isNameStart (I)Z' bytes='22' count='256' iicount='256' level='3' stamp='0.324' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='518' compiler='c1' level='1' entry='0x00007fba65705140' size='752' address='0x00007fba65704f90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.ArrayList size ()I' bytes='5' count='132' iicount='132' stamp='0.324'/>
+<writer thread='25110'/>
+<task_queued compile_id='521' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer getTotalValue (I)I' bytes='7' count='256' iicount='256' level='3' stamp='0.324' comment='tiered' hot_count='256'/>
+<task_queued compile_id='522' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='256' iicount='256' level='3' stamp='0.324' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='520' compiler='c1' level='3' entry='0x00007fba5e3552c0' size='1088' address='0x00007fba5e355110' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='960' dependencies_offset='1056' nul_chk_table_offset='1064' metadata_offset='928' method='com.sun.org.apache.xerces.internal.util.XMLChar isNameStart (I)Z' bytes='22' count='276' iicount='276' stamp='0.324'/>
+<writer thread='25166'/>
+<nmethod compile_id='521' compiler='c1' level='3' entry='0x00007fba5e355740' size='960' address='0x00007fba5e355590' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='832' dependencies_offset='928' nul_chk_table_offset='936' metadata_offset='800' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer getTotalValue (I)I' bytes='7' count='282' iicount='282' stamp='0.324'/>
+<writer thread='25167'/>
+<nmethod compile_id='517' compiler='c1' level='3' entry='0x00007fba5e355ba0' size='4056' address='0x00007fba5e355990' relocation_offset='368' insts_offset='528' stub_offset='3152' scopes_data_offset='3328' scopes_pcs_offset='3512' dependencies_offset='3912' nul_chk_table_offset='3920' metadata_offset='3296' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (ILcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='111' count='329' iicount='329' stamp='0.325'/>
+<writer thread='25168'/>
+<nmethod compile_id='519' compiler='c1' level='3' entry='0x00007fba5e356c00' size='5056' address='0x00007fba5e356990' relocation_offset='368' insts_offset='624' stub_offset='3696' scopes_data_offset='3952' scopes_pcs_offset='4224' dependencies_offset='4864' nul_chk_table_offset='4872' metadata_offset='3928' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='342' backedge_count='1' iicount='342' stamp='0.325'/>
+<writer thread='25169'/>
+<nmethod compile_id='522' compiler='c1' level='3' entry='0x00007fba5e357fc0' size='2992' address='0x00007fba5e357d90' relocation_offset='368' insts_offset='560' stub_offset='2160' scopes_data_offset='2408' scopes_pcs_offset='2560' dependencies_offset='2896' nul_chk_table_offset='2904' metadata_offset='2392' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='264' iicount='264' stamp='0.325'/>
+<writer thread='25110'/>
+<task_queued compile_id='523' method='java.util.zip.ZStreamRef address ()J' bytes='5' count='128' iicount='128' level='1' stamp='0.325' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='523' compiler='c1' level='1' entry='0x00007fba65705440' size='752' address='0x00007fba65705290' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.zip.ZStreamRef address ()J' bytes='5' count='131' iicount='131' stamp='0.325'/>
+<writer thread='25110'/>
+<task_queued compile_id='524' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanChar (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)I' bytes='236' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<task_queued compile_id='525' method='java.util.ArrayList elementData (I)Ljava/lang/Object;' bytes='7' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='525' compiler='c1' level='3' entry='0x00007fba5e358b40' size='992' address='0x00007fba5e358990' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='864' dependencies_offset='960' nul_chk_table_offset='968' metadata_offset='832' method='java.util.ArrayList elementData (I)Ljava/lang/Object;' bytes='7' count='269' iicount='270' stamp='0.327'/>
+<writer thread='25110'/>
+<task_queued compile_id='526' method='java.util.ArrayList get (I)Ljava/lang/Object;' bytes='15' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<task_queued compile_id='527' method='java.lang.String &lt;init&gt; ([CIILjava/lang/Void;)V' bytes='74' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<task_queued compile_id='528' method='java.lang.Math min (II)I' bytes='11' count='6407' iicount='6407' stamp='0.327' comment='tiered' hot_count='6407'/>
+<task_queued compile_id='529' method='java.lang.StringUTF16 compress ([CII)[B' bytes='20' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='524' compiler='c1' level='3' entry='0x00007fba5e358fa0' size='2872' address='0x00007fba5e358d90' relocation_offset='368' insts_offset='528' stub_offset='2064' scopes_data_offset='2296' scopes_pcs_offset='2432' dependencies_offset='2768' nul_chk_table_offset='2776' metadata_offset='2280' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanChar (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)I' bytes='236' count='360' iicount='360' stamp='0.327'/>
+<writer thread='25110'/>
+<task_queued compile_id='530' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Ljava/lang/String;I)V' bytes='11' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<task_queued compile_id='531' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (ILjava/lang/String;I)V' bytes='260' count='256' iicount='256' level='3' stamp='0.327' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='526' compiler='c1' level='3' entry='0x00007fba5e359b40' size='3272' address='0x00007fba5e359910' relocation_offset='368' insts_offset='560' stub_offset='2384' scopes_data_offset='2640' scopes_pcs_offset='2912' dependencies_offset='3216' nul_chk_table_offset='3224' oops_offset='2584' metadata_offset='2592' method='java.util.ArrayList get (I)Ljava/lang/Object;' bytes='15' count='287' iicount='287' stamp='0.328'/>
+<writer thread='25110'/>
+<task_queued compile_id='532' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues ([CII)V' bytes='16' count='256' iicount='256' level='3' stamp='0.328' comment='tiered' hot_count='256'/>
+<writer thread='25165'/>
+<nmethod compile_id='528' compiler='c2' level='4' entry='0x00007fba65705720' size='504' address='0x00007fba65705590' relocation_offset='368' insts_offset='400' stub_offset='432' scopes_data_offset='456' scopes_pcs_offset='464' dependencies_offset='496' method='java.lang.Math min (II)I' bytes='11' count='6408' iicount='6408' stamp='0.328'/>
+<make_not_entrant thread='25165' compile_id='120' compiler='c1' level='3' stamp='0.328'/>
+<writer thread='25167'/>
+<nmethod compile_id='530' compiler='c1' level='3' entry='0x00007fba5e35a7c0' size='1264' address='0x00007fba5e35a610' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1120' scopes_pcs_offset='1160' dependencies_offset='1240' nul_chk_table_offset='1248' metadata_offset='1112' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Ljava/lang/String;I)V' bytes='11' count='299' iicount='299' stamp='0.328'/>
+<writer thread='25169'/>
+<nmethod compile_id='529' compiler='c1' level='3' entry='0x00007fba5e35acc0' size='1200' address='0x00007fba5e35ab10' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1112' dependencies_offset='1192' metadata_offset='1048' method='java.lang.StringUTF16 compress ([CII)[B' bytes='20' count='261' iicount='261' stamp='0.328'/>
+<writer thread='25110'/>
+<task_queued compile_id='533' method='com.sun.org.apache.xerces.internal.util.SymbolTable hash ([CII)I' bytes='53' count='251' backedge_count='2048' iicount='251' level='3' stamp='0.328' comment='tiered' hot_count='251'/>
+<task_queued compile_id='534' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='256' backedge_count='1837' iicount='256' level='3' stamp='0.328' comment='tiered' hot_count='256'/>
+<task_queued compile_id='535' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='256' backedge_count='1661' iicount='256' level='3' stamp='0.328' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='527' compiler='c1' level='3' entry='0x00007fba5e35b220' size='2840' address='0x00007fba5e35b010' relocation_offset='368' insts_offset='528' stub_offset='2064' scopes_data_offset='2280' scopes_pcs_offset='2560' dependencies_offset='2800' nul_chk_table_offset='2808' metadata_offset='2248' method='java.lang.String &lt;init&gt; ([CIILjava/lang/Void;)V' bytes='74' count='262' iicount='262' stamp='0.328'/>
+<writer thread='25110'/>
+<task_queued compile_id='536' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='22' count='256' iicount='256' level='3' stamp='0.328' comment='tiered' hot_count='256'/>
+<task_queued compile_id='537' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='256' iicount='256' level='3' stamp='0.328' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='532' compiler='c1' level='3' entry='0x00007fba5e35bd40' size='952' address='0x00007fba5e35bb90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='896' dependencies_offset='944' metadata_offset='864' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues ([CII)V' bytes='16' count='295' iicount='295' stamp='0.328'/>
+<writer thread='25169'/>
+<nmethod compile_id='533' compiler='c1' level='3' entry='0x00007fba5e35c160' size='1440' address='0x00007fba5e35bf90' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1192' scopes_pcs_offset='1264' dependencies_offset='1408' nul_chk_table_offset='1416' metadata_offset='1176' method='com.sun.org.apache.xerces.internal.util.SymbolTable hash ([CII)I' bytes='53' count='283' backedge_count='2326' iicount='283' stamp='0.329'/>
+<writer thread='25110'/>
+<task_queued compile_id='538' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='253' count='305' iicount='305' level='3' stamp='0.329' comment='tiered' hot_count='305'/>
+<writer thread='25169'/>
+<nmethod compile_id='536' compiler='c1' level='3' entry='0x00007fba5e35c740' size='1272' address='0x00007fba5e35c590' relocation_offset='368' insts_offset='432' stub_offset='1040' scopes_data_offset='1192' scopes_pcs_offset='1216' dependencies_offset='1264' metadata_offset='1184' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='22' count='309' iicount='309' stamp='0.329'/>
+<writer thread='25166'/>
+<nmethod compile_id='535' compiler='c1' level='3' entry='0x00007fba5e35cd00' size='2296' address='0x00007fba5e35cb10' relocation_offset='368' insts_offset='496' stub_offset='1552' scopes_data_offset='1752' scopes_pcs_offset='1920' dependencies_offset='2224' nul_chk_table_offset='2232' metadata_offset='1736' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='316' backedge_count='2192' iicount='316' stamp='0.329'/>
+<writer thread='25110'/>
+<task_queued compile_id='539' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='256' iicount='256' level='3' stamp='0.329' comment='tiered' hot_count='256'/>
+<task_queued compile_id='540' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='256' backedge_count='1770' iicount='256' level='3' stamp='0.329' comment='tiered' hot_count='256'/>
+<task_queued compile_id='541' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='256' iicount='256' level='3' stamp='0.329' comment='tiered' hot_count='256'/>
+<task_queued compile_id='542' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getString ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='76' count='256' iicount='256' level='3' stamp='0.329' comment='tiered' hot_count='256'/>
+<task_queued compile_id='543' method='com.sun.org.apache.xerces.internal.impl.XMLScanner scanAttributeValue (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/XMLString;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;IZLjava/lang/String;Z)V' bytes='991' count='256' iicount='256' level='3' stamp='0.329' comment='tiered' hot_count='256'/>
+<task_queued compile_id='544' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;)I' bytes='9' count='256' iicount='256' level='3' stamp='0.329' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='531' compiler='c1' level='3' entry='0x00007fba5e35d7e0' size='9656' address='0x00007fba5e35d490' relocation_offset='368' consts_offset='816' insts_offset='848' stub_offset='7312' scopes_data_offset='7600' scopes_pcs_offset='8304' dependencies_offset='9376' nul_chk_table_offset='9384' metadata_offset='7544' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (ILjava/lang/String;I)V' bytes='260' count='419' iicount='419' stamp='0.329'/>
+<writer thread='25167'/>
+<nmethod compile_id='534' compiler='c1' level='3' entry='0x00007fba5e35fd40' size='5184' address='0x00007fba5e35fa90' relocation_offset='368' insts_offset='688' stub_offset='3600' scopes_data_offset='3936' scopes_pcs_offset='4296' dependencies_offset='5000' nul_chk_table_offset='5008' metadata_offset='3896' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='363' backedge_count='2704' iicount='363' stamp='0.330'/>
+<nmethod compile_id='539' compiler='c1' level='3' entry='0x00007fba5e3610c0' size='1264' address='0x00007fba5e360f10' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1072' scopes_pcs_offset='1120' dependencies_offset='1232' nul_chk_table_offset='1240' metadata_offset='1056' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='319' iicount='319' stamp='0.330'/>
+<writer thread='25166'/>
+<nmethod compile_id='537' compiler='c1' level='3' entry='0x00007fba5e3616c0' size='5752' address='0x00007fba5e361410' relocation_offset='368' insts_offset='688' stub_offset='4368' scopes_data_offset='4720' scopes_pcs_offset='5064' dependencies_offset='5624' nul_chk_table_offset='5640' oops_offset='4632' metadata_offset='4648' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='400' iicount='400' stamp='0.330'/>
+<writer thread='25110'/>
+<task_queued compile_id='545' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndexFast (Ljava/lang/String;)I' bytes='38' count='359' backedge_count='2048' iicount='359' level='3' stamp='0.331' comment='tiered' hot_count='359'/>
+<task_queued compile_id='546' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='256' iicount='256' level='3' stamp='0.331' comment='tiered' hot_count='256'/>
+<task_queued compile_id='547' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='256' iicount='256' level='3' stamp='0.331' comment='tiered' hot_count='256'/>
+<task_queued compile_id='548' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='679' count='384' backedge_count='16' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<task_queued compile_id='549' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Lcom/sun/org/apache/xerces/internal/xni/QName;)V' bytes='33' count='384' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<task_queued compile_id='550' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl removeAllItems ()V' bytes='8' count='384' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<task_queued compile_id='551' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='384' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<task_queued compile_id='552' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl setValue (ILjava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='27' count='384' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<task_queued compile_id='553' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl setSpecified (IZ)V' bytes='11' count='384' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<task_queued compile_id='554' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isNoLimit (I)Z' bytes='10' count='384' iicount='384' level='3' stamp='0.331' comment='tiered' hot_count='384'/>
+<writer thread='25168'/>
+<nmethod compile_id='540' compiler='c1' level='3' entry='0x00007fba5e362e20' size='8384' address='0x00007fba5e362b10' relocation_offset='368' insts_offset='784' stub_offset='6192' scopes_data_offset='6520' scopes_pcs_offset='7192' dependencies_offset='8136' nul_chk_table_offset='8144' metadata_offset='6488' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='449' backedge_count='2982' iicount='449' stamp='0.331'/>
+<nmethod compile_id='545' compiler='c1' level='3' entry='0x00007fba5e364de0' size='1400' address='0x00007fba5e364c10' relocation_offset='368' insts_offset='464' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1192' dependencies_offset='1352' nul_chk_table_offset='1360' metadata_offset='1120' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndexFast (Ljava/lang/String;)I' bytes='38' count='478' backedge_count='2969' iicount='478' stamp='0.332'/>
+<writer thread='25166'/>
+<nmethod compile_id='541' compiler='c1' level='3' entry='0x00007fba5e365560' size='9576' address='0x00007fba5e365210' relocation_offset='368' insts_offset='848' stub_offset='7312' scopes_data_offset='7784' scopes_pcs_offset='8456' dependencies_offset='9352' nul_chk_table_offset='9384' oops_offset='7624' metadata_offset='7656' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='508' iicount='508' stamp='0.332'/>
+<writer thread='25110'/>
+<task_queued compile_id='555' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='1284' iicount='1284' level='1' stamp='0.332' comment='tiered' hot_count='1284'/>
+<writer thread='25166'/>
+<nmethod compile_id='555' compiler='c1' level='1' entry='0x00007fba657059c0' size='872' address='0x00007fba65705810' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='744' scopes_pcs_offset='760' dependencies_offset='840' nul_chk_table_offset='848' metadata_offset='736' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='1299' iicount='1299' stamp='0.332'/>
+<make_not_entrant thread='25166' compile_id='125' compiler='c1' level='3' stamp='0.332'/>
+<writer thread='25169'/>
+<nmethod compile_id='538' compiler='c1' level='3' entry='0x00007fba5e367ce0' size='24296' address='0x00007fba5e367790' relocation_offset='368' insts_offset='1360' stub_offset='18992' scopes_data_offset='19448' scopes_pcs_offset='21152' dependencies_offset='23728' nul_chk_table_offset='23736' oops_offset='19288' metadata_offset='19312' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='253' count='725' iicount='725' stamp='0.333'/>
+<writer thread='25110'/>
+<task_queued compile_id='556' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='5395' iicount='5395' stamp='0.333' comment='tiered' hot_count='5395'/>
+<writer thread='25169'/>
+<nmethod compile_id='544' compiler='c1' level='3' entry='0x00007fba5e36d840' size='1080' address='0x00007fba5e36d690' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='968' scopes_pcs_offset='1008' dependencies_offset='1072' metadata_offset='952' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;)I' bytes='9' count='638' iicount='638' stamp='0.333'/>
+<writer thread='25110'/>
+<task_queued compile_id='557' method='java.lang.Character digit (CI)I' bytes='6' count='384' iicount='384' level='3' stamp='0.333' comment='tiered' hot_count='384'/>
+<task_queued compile_id='558' method='java.lang.Character digit (II)I' bytes='10' count='384' iicount='384' level='3' stamp='0.333' comment='tiered' hot_count='384'/>
+<task_queued compile_id='559' method='java.lang.CharacterDataLatin1 digit (II)I' bytes='91' count='384' iicount='384' level='3' stamp='0.333' comment='tiered' hot_count='384'/>
+<writer thread='25169'/>
+<nmethod compile_id='549' compiler='c1' level='3' entry='0x00007fba5e36dcc0' size='1336' address='0x00007fba5e36db10' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1224' scopes_pcs_offset='1248' dependencies_offset='1312' nul_chk_table_offset='1320' metadata_offset='1216' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Lcom/sun/org/apache/xerces/internal/xni/QName;)V' bytes='33' count='671' iicount='671' stamp='0.333'/>
+<nmethod compile_id='550' compiler='c1' level='3' entry='0x00007fba5e36e240' size='1120' address='0x00007fba5e36e090' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl removeAllItems ()V' bytes='8' count='695' iicount='695' stamp='0.333'/>
+<writer thread='25166'/>
+<nmethod compile_id='542' compiler='c1' level='3' entry='0x00007fba5e36e780' size='4864' address='0x00007fba5e36e510' relocation_offset='368' insts_offset='624' stub_offset='3536' scopes_data_offset='3840' scopes_pcs_offset='4256' dependencies_offset='4768' nul_chk_table_offset='4776' metadata_offset='3736' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getString ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='76' count='695' iicount='695' stamp='0.333'/>
+<writer thread='25169'/>
+<nmethod compile_id='551' compiler='c1' level='3' entry='0x00007fba5e36fa60' size='2136' address='0x00007fba5e36f890' relocation_offset='368' insts_offset='464' stub_offset='1680' scopes_data_offset='1832' scopes_pcs_offset='1880' dependencies_offset='2088' nul_chk_table_offset='2096' metadata_offset='1824' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='706' iicount='706' stamp='0.334'/>
+<writer thread='25160'/>
+<nmethod compile_id='556' compiler='c2' level='4' entry='0x00007fba65705d20' size='736' address='0x00007fba65705b90' relocation_offset='368' insts_offset='400' stub_offset='560' scopes_data_offset='592' scopes_pcs_offset='648' dependencies_offset='712' nul_chk_table_offset='720' metadata_offset='584' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='6297' iicount='6301' stamp='0.334'/>
+<make_not_entrant thread='25160' compile_id='512' compiler='c1' level='3' stamp='0.334'/>
+<writer thread='25166'/>
+<nmethod compile_id='552' compiler='c1' level='3' entry='0x00007fba5e3702c0' size='1384' address='0x00007fba5e370110' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1160' scopes_pcs_offset='1208' dependencies_offset='1336' nul_chk_table_offset='1344' metadata_offset='1152' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl setValue (ILjava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='27' count='744' iicount='744' stamp='0.334'/>
+<writer thread='25169'/>
+<nmethod compile_id='553' compiler='c1' level='3' entry='0x00007fba5e370840' size='1032' address='0x00007fba5e370690' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='880' dependencies_offset='992' nul_chk_table_offset='1000' metadata_offset='832' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl setSpecified (IZ)V' bytes='11' count='744' iicount='744' stamp='0.334'/>
+<writer thread='25110'/>
+<task_queued compile_id='560' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkEntityLimit (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='50' count='5425' iicount='5425' stamp='0.334' comment='tiered' hot_count='5425'/>
+<writer thread='25166'/>
+<nmethod compile_id='554' compiler='c1' level='3' entry='0x00007fba5e370cc0' size='944' address='0x00007fba5e370b10' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isNoLimit (I)Z' bytes='10' count='773' iicount='773' stamp='0.334'/>
+<writer thread='25169'/>
+<nmethod compile_id='546' compiler='c1' level='3' entry='0x00007fba5e3710c0' size='1120' address='0x00007fba5e370f10' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='402' iicount='402' stamp='0.334'/>
+<writer thread='25110'/>
+<task_queued compile_id='561' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy setAttributes (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.334' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='557' compiler='c1' level='3' entry='0x00007fba5e371560' size='1336' address='0x00007fba5e371390' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1144' scopes_pcs_offset='1200' dependencies_offset='1312' nul_chk_table_offset='1320' metadata_offset='1128' method='java.lang.Character digit (CI)I' bytes='6' count='498' iicount='498' stamp='0.334'/>
+<writer thread='25169'/>
+<nmethod compile_id='558' compiler='c1' level='3' entry='0x00007fba5e371ae0' size='1200' address='0x00007fba5e371910' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1040' scopes_pcs_offset='1080' dependencies_offset='1176' nul_chk_table_offset='1184' metadata_offset='1032' method='java.lang.Character digit (II)I' bytes='10' count='498' iicount='498' stamp='0.334'/>
+<writer thread='25161'/>
+<nmethod compile_id='560' compiler='c2' level='4' entry='0x00007fba65706020' size='728' address='0x00007fba65705e90' relocation_offset='368' insts_offset='400' stub_offset='560' scopes_data_offset='592' scopes_pcs_offset='640' dependencies_offset='704' nul_chk_table_offset='712' metadata_offset='584' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkEntityLimit (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='50' count='6146' iicount='6146' stamp='0.335'/>
+<make_not_entrant thread='25161' compile_id='510' compiler='c1' level='3' stamp='0.335'/>
+<writer thread='25166'/>
+<nmethod compile_id='559' compiler='c1' level='3' entry='0x00007fba5e371fe0' size='1616' address='0x00007fba5e371e10' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1400' scopes_pcs_offset='1472' dependencies_offset='1584' nul_chk_table_offset='1592' metadata_offset='1376' method='java.lang.CharacterDataLatin1 digit (II)I' bytes='91' count='557' iicount='557' stamp='0.335'/>
+<nmethod compile_id='561' compiler='c1' level='1' entry='0x00007fba65706340' size='848' address='0x00007fba65706190' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='800' scopes_pcs_offset='808' dependencies_offset='840' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy setAttributes (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='6' count='147' iicount='147' stamp='0.335'/>
+<writer thread='25168'/>
+<nmethod compile_id='548' compiler='c1' level='3' entry='0x00007fba5e372a60' size='24664' address='0x00007fba5e372490' relocation_offset='368' insts_offset='1488' stub_offset='19280' scopes_data_offset='19808' scopes_pcs_offset='21832' dependencies_offset='24248' nul_chk_table_offset='24264' metadata_offset='19640' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='679' count='1032' backedge_count='16' iicount='1032' stamp='0.336'/>
+<writer thread='25167'/>
+<nmethod compile_id='543' compiler='c1' level='3' entry='0x00007fba5e378d60' size='32752' address='0x00007fba5e378510' relocation_offset='368' insts_offset='2128' stub_offset='24720' scopes_data_offset='25960' scopes_pcs_offset='29304' dependencies_offset='32200' nul_chk_table_offset='32232' oops_offset='25704' metadata_offset='25776' method='com.sun.org.apache.xerces.internal.impl.XMLScanner scanAttributeValue (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/XMLString;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;IZLjava/lang/String;Z)V' bytes='991' count='1097' backedge_count='15' iicount='1097' stamp='0.336'/>
+<writer thread='25110'/>
+<task_queued compile_id='562' method='java.lang.String &lt;init&gt; ([CII)V' bytes='14' count='256' iicount='256' level='3' stamp='0.337' comment='tiered' hot_count='256'/>
+<task_queued compile_id='563' method='java.lang.String rangeCheck ([CII)Ljava/lang/Void;' bytes='9' count='256' iicount='256' level='3' stamp='0.337' comment='tiered' hot_count='256'/>
+<task_queued compile_id='564' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer clear ()V' bytes='11' count='229' iicount='229' level='3' stamp='0.337' comment='tiered' hot_count='229'/>
+<writer thread='25168'/>
+<nmethod compile_id='563' compiler='c1' level='3' entry='0x00007fba5e3806c0' size='976' address='0x00007fba5e380510' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='872' dependencies_offset='952' nul_chk_table_offset='960' metadata_offset='824' method='java.lang.String rangeCheck ([CII)Ljava/lang/Void;' bytes='9' count='270' iicount='270' stamp='0.337'/>
+<writer thread='25166'/>
+<nmethod compile_id='562' compiler='c1' level='3' entry='0x00007fba5e380ae0' size='1320' address='0x00007fba5e380910' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1080' scopes_pcs_offset='1184' dependencies_offset='1296' nul_chk_table_offset='1304' metadata_offset='1064' method='java.lang.String &lt;init&gt; ([CII)V' bytes='14' count='274' iicount='274' stamp='0.337'/>
+<writer thread='25167'/>
+<nmethod compile_id='564' compiler='c1' level='3' entry='0x00007fba5e381040' size='880' address='0x00007fba5e380e90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer clear ()V' bytes='11' count='235' iicount='235' stamp='0.338'/>
+<writer thread='25110'/>
+<task_queued compile_id='565' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndex (Ljava/lang/String;)I' bytes='51' count='231' backedge_count='2048' iicount='231' level='3' stamp='0.338' comment='tiered' hot_count='231'/>
+<writer thread='25168'/>
+<nmethod compile_id='565' compiler='c1' level='3' entry='0x00007fba5e3813e0' size='1744' address='0x00007fba5e381210' relocation_offset='368' insts_offset='464' stub_offset='1232' scopes_data_offset='1408' scopes_pcs_offset='1496' dependencies_offset='1688' nul_chk_table_offset='1696' metadata_offset='1400' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndex (Ljava/lang/String;)I' bytes='51' count='254' backedge_count='2259' iicount='254' stamp='0.338'/>
+<writer thread='25110'/>
+<task_queued compile_id='566' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='11' count='256' iicount='256' level='3' stamp='0.338' comment='tiered' hot_count='256'/>
+<task_queued compile_id='567' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='56' count='256' iicount='256' level='3' stamp='0.338' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='566' compiler='c1' level='3' entry='0x00007fba5e381ac0' size='1184' address='0x00007fba5e381910' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1040' scopes_pcs_offset='1064' dependencies_offset='1160' nul_chk_table_offset='1168' metadata_offset='1016' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='11' count='273' iicount='273' stamp='0.339'/>
+<writer thread='25110'/>
+<task_queued compile_id='568' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser characters (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='78' count='256' iicount='256' level='3' stamp='0.339' comment='tiered' hot_count='256'/>
+<task_queued compile_id='569' method='org.xml.sax.helpers.DefaultHandler characters ([CII)V' bytes='1' count='256' iicount='256' level='3' stamp='0.339' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='567' compiler='c1' level='3' entry='0x00007fba5e382020' size='2936' address='0x00007fba5e381e10' relocation_offset='368' insts_offset='528' stub_offset='2064' scopes_data_offset='2304' scopes_pcs_offset='2536' dependencies_offset='2856' nul_chk_table_offset='2864' metadata_offset='2264' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='56' count='293' iicount='293' stamp='0.339'/>
+<writer thread='25110'/>
+<task_queued compile_id='570' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getCharacterData ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='17' count='256' iicount='256' level='3' stamp='0.339' comment='tiered' hot_count='256'/>
+<task_queued compile_id='571' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='5411' backedge_count='1626' iicount='5411' stamp='0.339' comment='tiered' hot_count='5411'/>
+<task_queued compile_id='572' method='java.lang.String substring (I)Ljava/lang/String;' bytes='68' count='256' iicount='256' level='3' stamp='0.339' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='569' compiler='c1' level='3' entry='0x00007fba5e382bc0' size='856' address='0x00007fba5e382a10' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='800' dependencies_offset='848' metadata_offset='768' method='org.xml.sax.helpers.DefaultHandler characters ([CII)V' bytes='1' count='261' iicount='261' stamp='0.339'/>
+<writer thread='25166'/>
+<nmethod compile_id='570' compiler='c1' level='3' entry='0x00007fba5e382f40' size='944' address='0x00007fba5e382d90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getCharacterData ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='17' count='259' iicount='259' stamp='0.339'/>
+<writer thread='25167'/>
+<nmethod compile_id='568' compiler='c1' level='3' entry='0x00007fba5e383380' size='1968' address='0x00007fba5e383190' relocation_offset='368' insts_offset='496' stub_offset='1392' scopes_data_offset='1600' scopes_pcs_offset='1688' dependencies_offset='1864' handler_table_offset='1872' nul_chk_table_offset='1944' metadata_offset='1576' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser characters (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='78' count='261' iicount='261' stamp='0.340'/>
+<writer thread='25110'/>
+<task_queued compile_id='573' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='256' backedge_count='1605' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='574' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack nextElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='129' count='256' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='575' method='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl removeAllAttributes ()V' bytes='10' count='256' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='576' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl removeAllAttributes ()V' bytes='6' count='256' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='577' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl checkDepth (Ljava/lang/String;)V' bytes='100' count='256' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='578' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser startElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='318' count='256' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='579' method='java.lang.Long longValue ()J' bytes='5' count='128' iicount='128' level='1' stamp='0.340' comment='tiered' hot_count='128'/>
+<task_queued compile_id='580' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='2180' backedge_count='18189' iicount='2180' stamp='0.340' comment='tiered' hot_count='2180'/>
+<task_queued compile_id='581' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser endElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='108' count='256' iicount='256' level='3' stamp='0.340' comment='tiered' hot_count='256'/>
+<task_queued compile_id='582' method='com.sun.org.apache.xerces.internal.util.SymbolTable hash ([CII)I' bytes='53' count='2197' backedge_count='18522' iicount='2197' stamp='0.340' comment='tiered' hot_count='2197'/>
+<task_queued compile_id='583' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues ([CII)V' bytes='16' count='2330' iicount='2330' stamp='0.340' comment='tiered' hot_count='2330'/>
+<task_queued compile_id='584' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='2313' backedge_count='17161' iicount='2313' stamp='0.341' comment='tiered' hot_count='2313'/>
+<writer thread='25167'/>
+<nmethod compile_id='574' compiler='c1' level='3' entry='0x00007fba5e383ba0' size='3208' address='0x00007fba5e383990' relocation_offset='368' insts_offset='528' stub_offset='2384' scopes_data_offset='2592' scopes_pcs_offset='2760' dependencies_offset='3128' nul_chk_table_offset='3136' metadata_offset='2552' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack nextElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='129' count='276' iicount='276' stamp='0.341'/>
+<writer thread='25110'/>
+<task_queued compile_id='585' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='22' count='2335' iicount='2335' stamp='0.341' comment='tiered' hot_count='2335'/>
+<task_queued compile_id='586' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkNodeCount (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;)V' bytes='22' count='301' iicount='301' level='3' stamp='0.341' comment='tiered' hot_count='301'/>
+<writer thread='25167'/>
+<nmethod compile_id='575' compiler='c1' level='3' entry='0x00007fba5e384840' size='984' address='0x00007fba5e384690' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='888' scopes_pcs_offset='912' dependencies_offset='976' metadata_offset='864' method='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl removeAllAttributes ()V' bytes='10' count='284' iicount='284' stamp='0.341'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='556' compiler='c2' level='4' stamp='0.341'>
+<jvms bci='18' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='6311' iicount='6311'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='556' compiler='c2' level='4' stamp='0.341'/>
+<task_queued compile_id='587' method='java.lang.String checkBoundsOffCount (III)V' bytes='61' count='484' iicount='484' level='3' stamp='0.341' comment='tiered' hot_count='484'/>
+<writer thread='25167'/>
+<nmethod compile_id='576' compiler='c1' level='3' entry='0x00007fba5e384c40' size='848' address='0x00007fba5e384a90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl removeAllAttributes ()V' bytes='6' count='284' iicount='284' stamp='0.341'/>
+<writer thread='25110'/>
+<task_queued compile_id='588' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='6419' iicount='6419' decompiles='1' unstable_if_traps='1' level='3' stamp='0.341' comment='tiered' hot_count='6419'/>
+<task_queued compile_id='589' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='2174' backedge_count='18364' iicount='2174' stamp='0.341' comment='tiered' hot_count='2174'/>
+<writer thread='25168'/>
+<nmethod compile_id='572' compiler='c1' level='3' entry='0x00007fba5e385060' size='3400' address='0x00007fba5e384e10' relocation_offset='368' insts_offset='592' stub_offset='2576' scopes_data_offset='2848' scopes_pcs_offset='3072' dependencies_offset='3376' nul_chk_table_offset='3384' metadata_offset='2792' method='java.lang.String substring (I)Ljava/lang/String;' bytes='68' count='283' iicount='283' stamp='0.342'/>
+<writer thread='25110'/>
+<task_queued compile_id='590' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='5394' iicount='5394' stamp='0.342' comment='tiered' hot_count='5394'/>
+<task_queued compile_id='591' method='com.sun.org.apache.xerces.internal.util.XMLChar isContent (I)Z' bytes='35' count='20992' iicount='20992' stamp='0.342' comment='tiered' hot_count='20992'/>
+<task_queued compile_id='592' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanContent (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='690' count='341' backedge_count='1527' iicount='341' level='3' stamp='0.342' comment='tiered' hot_count='341'/>
+<task_queued compile_id='593' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndexFast (Ljava/lang/String;)I' bytes='38' count='2490' backedge_count='16398' iicount='2490' stamp='0.343' comment='tiered' hot_count='2490'/>
+<task_queued compile_id='594' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (ILcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='111' count='6404' iicount='6404' stamp='0.344' comment='tiered' hot_count='6404'/>
+<writer thread='25169'/>
+<nmethod compile_id='547' compiler='c1' level='3' entry='0x00007fba5e386500' size='40872' address='0x00007fba5e385b90' relocation_offset='368' insts_offset='2416' stub_offset='27472' scopes_data_offset='28856' scopes_pcs_offset='31040' dependencies_offset='35120' handler_table_offset='35176' nul_chk_table_offset='39856' oops_offset='28568' metadata_offset='28592' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='1130' iicount='1130' stamp='0.345'/>
+<writer thread='25168'/>
+<nmethod compile_id='588' compiler='c1' level='3' entry='0x00007fba5e38fd80' size='2280' address='0x00007fba5e38fb90' relocation_offset='368' insts_offset='496' stub_offset='1680' scopes_data_offset='1912' scopes_pcs_offset='2088' dependencies_offset='2248' nul_chk_table_offset='2256' metadata_offset='1896' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='12666' iicount='12666' decompiles='1' unstable_if_traps='1' stamp='0.345'/>
+<writer thread='25110'/>
+<task_queued compile_id='595' method='com.sun.hotspot.tools.compiler.LogParser startElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V' bytes='3082' count='384' iicount='384' level='3' stamp='0.345' comment='tiered' hot_count='384'/>
+<writer thread='25159'/>
+<nmethod compile_id='583' compiler='c2' level='4' entry='0x00007fba657066a0' size='792' address='0x00007fba65706510' relocation_offset='368' insts_offset='400' stub_offset='720' scopes_data_offset='744' scopes_pcs_offset='752' dependencies_offset='784' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues ([CII)V' bytes='16' count='3461' iicount='3461' stamp='0.345'/>
+<make_not_entrant thread='25159' compile_id='532' compiler='c1' level='3' stamp='0.345'/>
+<writer thread='25110'/>
+<task_queued compile_id='596' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='384' iicount='384' level='3' stamp='0.345' comment='tiered' hot_count='384'/>
+<writer thread='25167'/>
+<nmethod compile_id='578' compiler='c1' level='3' entry='0x00007fba5e390780' size='8144' address='0x00007fba5e390490' relocation_offset='368' insts_offset='752' stub_offset='5456' scopes_data_offset='5792' scopes_pcs_offset='6352' dependencies_offset='7120' handler_table_offset='7136' nul_chk_table_offset='7976' metadata_offset='5736' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser startElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='318' count='386' iicount='386' stamp='0.346'/>
+<writer thread='25110'/>
+<task_queued compile_id='597' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='13587' iicount='13587' decompiles='1' unstable_if_traps='1' stamp='0.346' comment='tiered' hot_count='13587'/>
+<writer thread='25166'/>
+<nmethod compile_id='573' compiler='c1' level='3' entry='0x00007fba5e392880' size='11976' address='0x00007fba5e392490' relocation_offset='368' insts_offset='1008' stub_offset='9072' scopes_data_offset='9688' scopes_pcs_offset='10480' dependencies_offset='11696' nul_chk_table_offset='11720' oops_offset='9480' metadata_offset='9504' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='391' backedge_count='2623' iicount='391' stamp='0.346'/>
+<writer thread='25163'/>
+<nmethod compile_id='590' compiler='c2' level='4' entry='0x00007fba65706a40' size='968' address='0x00007fba65706890' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='720' scopes_pcs_offset='808' dependencies_offset='936' nul_chk_table_offset='944' metadata_offset='712' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='7224' iicount='7224' stamp='0.346'/>
+<make_not_entrant thread='25163' compile_id='515' compiler='c1' level='3' stamp='0.346'/>
+<writer thread='25165'/>
+<nmethod compile_id='571' compiler='c2' level='4' entry='0x00007fba65706e40' size='1648' address='0x00007fba65706c90' relocation_offset='368' insts_offset='432' stub_offset='1072' scopes_data_offset='1120' scopes_pcs_offset='1376' dependencies_offset='1616' nul_chk_table_offset='1624' metadata_offset='1096' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='9428' backedge_count='2914' iicount='9428' stamp='0.346'/>
+<make_not_entrant thread='25165' compile_id='519' compiler='c1' level='3' stamp='0.346'/>
+<writer thread='25110'/>
+<task_queued compile_id='598' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanChar (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)I' bytes='236' count='6420' iicount='6420' stamp='0.346' comment='tiered' hot_count='6420'/>
+<task_queued compile_id='599' method='com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser emptyElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='14' count='384' iicount='384' level='3' stamp='0.346' comment='tiered' hot_count='384'/>
+<writer thread='25167'/>
+<nmethod compile_id='586' compiler='c1' level='3' entry='0x00007fba5e395540' size='1136' address='0x00007fba5e395390' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='1000' scopes_pcs_offset='1032' dependencies_offset='1112' nul_chk_table_offset='1120' metadata_offset='984' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkNodeCount (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;)V' bytes='22' count='417' iicount='417' stamp='0.346'/>
+<writer thread='25165'/>
+<nmethod compile_id='591' compiler='c2' level='4' entry='0x00007fba657074a0' size='672' address='0x00007fba65707310' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='568' scopes_pcs_offset='600' dependencies_offset='664' oops_offset='552' metadata_offset='560' method='com.sun.org.apache.xerces.internal.util.XMLChar isContent (I)Z' bytes='35' count='28226' iicount='28226' stamp='0.347'/>
+<make_not_entrant thread='25165' compile_id='509' compiler='c1' level='3' stamp='0.347'/>
+<writer thread='25168'/>
+<nmethod compile_id='587' compiler='c1' level='3' entry='0x00007fba5e395ac0' size='5568' address='0x00007fba5e395810' relocation_offset='368' insts_offset='688' stub_offset='4272' scopes_data_offset='4680' scopes_pcs_offset='5096' dependencies_offset='5560' oops_offset='4584' metadata_offset='4608' method='java.lang.String checkBoundsOffCount (III)V' bytes='61' count='670' iicount='670' stamp='0.347'/>
+<writer thread='25164'/>
+<nmethod compile_id='582' compiler='c2' level='4' entry='0x00007fba657077a0' size='984' address='0x00007fba65707610' relocation_offset='368' insts_offset='400' stub_offset='816' scopes_data_offset='848' scopes_pcs_offset='896' dependencies_offset='960' nul_chk_table_offset='968' metadata_offset='840' method='com.sun.org.apache.xerces.internal.util.SymbolTable hash ([CII)I' bytes='53' count='3664' backedge_count='31123' iicount='3665' stamp='0.347'/>
+<make_not_entrant thread='25164' compile_id='533' compiler='c1' level='3' stamp='0.347'/>
+<writer thread='25110'/>
+<task_queued compile_id='600' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack popElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='59' count='411' iicount='411' level='3' stamp='0.347' comment='tiered' hot_count='411'/>
+<writer thread='25167'/>
+<nmethod compile_id='581' compiler='c1' level='3' entry='0x00007fba5e397020' size='2552' address='0x00007fba5e396e10' relocation_offset='368' insts_offset='528' stub_offset='1808' scopes_data_offset='2032' scopes_pcs_offset='2176' dependencies_offset='2368' handler_table_offset='2376' nul_chk_table_offset='2520' metadata_offset='2024' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser endElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='108' count='411' iicount='412' stamp='0.347'/>
+<writer thread='25110'/>
+<task_queued compile_id='601' compile_kind='osr' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='21' backedge_count='74752' iicount='21' osr_bci='73' level='3' stamp='0.347' comment='tiered' hot_count='74752'/>
+<writer thread='25167'/>
+<nmethod compile_id='599' compiler='c1' level='3' entry='0x00007fba5e397a60' size='1376' address='0x00007fba5e397890' relocation_offset='368' insts_offset='464' stub_offset='1040' scopes_data_offset='1232' scopes_pcs_offset='1288' dependencies_offset='1368' metadata_offset='1224' method='com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser emptyElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='14' count='402' iicount='402' stamp='0.348'/>
+<writer thread='25169'/>
+<nmethod compile_id='592' compiler='c1' level='3' entry='0x00007fba5e398120' size='7960' address='0x00007fba5e397e10' relocation_offset='368' insts_offset='784' stub_offset='5808' scopes_data_offset='6136' scopes_pcs_offset='6720' dependencies_offset='7696' nul_chk_table_offset='7704' metadata_offset='6104' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanContent (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='690' count='456' backedge_count='1759' iicount='456' stamp='0.348'/>
+<nmethod compile_id='600' compiler='c1' level='3' entry='0x00007fba5e399f60' size='1448' address='0x00007fba5e399d90' relocation_offset='368' insts_offset='464' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1168' dependencies_offset='1376' nul_chk_table_offset='1384' metadata_offset='1120' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack popElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='59' count='432' iicount='432' stamp='0.349'/>
+<writer thread='25110'/>
+<task_queued compile_id='602' method='java.util.LinkedHashMap removeEldestEntry (Ljava/util/Map$Entry;)Z' bytes='2' count='128' iicount='128' level='1' stamp='0.349' comment='tiered' hot_count='128'/>
+<writer thread='25160'/>
+<nmethod compile_id='585' compiler='c2' level='4' entry='0x00007fba65707ba0' size='1496' address='0x00007fba65707a10' relocation_offset='368' insts_offset='400' stub_offset='1424' scopes_data_offset='1448' scopes_pcs_offset='1456' dependencies_offset='1488' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='22' count='3992' iicount='3992' stamp='0.349'/>
+<make_not_entrant thread='25160' compile_id='536' compiler='c1' level='3' stamp='0.349'/>
+<writer thread='25164'/>
+<nmethod compile_id='598' compiler='c2' level='4' entry='0x00007fba657081c0' size='1240' address='0x00007fba65708010' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='888' scopes_pcs_offset='1048' dependencies_offset='1208' nul_chk_table_offset='1216' metadata_offset='872' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanChar (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)I' bytes='236' count='7604' iicount='7604' stamp='0.350'/>
+<make_not_entrant thread='25164' compile_id='524' compiler='c1' level='3' stamp='0.350'/>
+<writer thread='25159'/>
+<nmethod compile_id='593' compiler='c2' level='4' entry='0x00007fba657086a0' size='1096' address='0x00007fba65708510' relocation_offset='368' insts_offset='400' stub_offset='816' scopes_data_offset='848' scopes_pcs_offset='912' dependencies_offset='1008' nul_chk_table_offset='1016' metadata_offset='840' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndexFast (Ljava/lang/String;)I' bytes='38' count='3607' backedge_count='24157' iicount='3608' stamp='0.350'/>
+<make_not_entrant thread='25159' compile_id='545' compiler='c1' level='3' stamp='0.350'/>
+<writer thread='25110'/>
+<task_queued compile_id='603' method='com.sun.hotspot.tools.compiler.LogParser parseLong (Ljava/lang/String;)J' bytes='179' count='256' iicount='256' level='3' stamp='0.350' comment='tiered' hot_count='256'/>
+<task_queued compile_id='604' method='java.lang.Long decode (Ljava/lang/String;)Ljava/lang/Long;' bytes='244' count='256' iicount='256' level='3' stamp='0.350' comment='tiered' hot_count='256'/>
+<task_queued compile_id='605' method='java.lang.Long valueOf (Ljava/lang/String;I)Ljava/lang/Long;' bytes='9' count='256' iicount='256' level='3' stamp='0.350' comment='tiered' hot_count='256'/>
+<task_queued compile_id='606' method='java.lang.Long parseLong (Ljava/lang/String;I)J' bytes='267' count='256' backedge_count='2510' iicount='256' level='3' stamp='0.350' comment='tiered' hot_count='256'/>
+<task_queued compile_id='607' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='5384' iicount='5384' stamp='0.350' comment='tiered' hot_count='5384'/>
+<task_queued compile_id='608' method='com.sun.org.apache.xerces.internal.xni.XMLString toString ()Ljava/lang/String;' bytes='32' count='621' iicount='621' level='3' stamp='0.351' comment='tiered' hot_count='621'/>
+<task_queued compile_id='609' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (ILjava/lang/String;I)V' bytes='260' count='5396' iicount='5396' stamp='0.352' comment='tiered' hot_count='5396'/>
+<writer thread='25162'/>
+<nmethod compile_id='580' compiler='c2' level='4' entry='0x00007fba65708b40' size='2184' address='0x00007fba65708990' relocation_offset='368' insts_offset='432' stub_offset='1584' scopes_data_offset='1640' scopes_pcs_offset='1920' dependencies_offset='2112' handler_table_offset='2120' nul_chk_table_offset='2144' metadata_offset='1624' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='4925' backedge_count='42224' iicount='4925' stamp='0.352'/>
+<make_not_entrant thread='25162' compile_id='535' compiler='c1' level='3' stamp='0.352'/>
+<writer thread='25160'/>
+<nmethod compile_id='607' compiler='c2' level='4' entry='0x00007fba65709440' size='1192' address='0x00007fba65709290' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='856' scopes_pcs_offset='1016' dependencies_offset='1160' nul_chk_table_offset='1168' metadata_offset='840' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='6237' iicount='6237' stamp='0.352'/>
+<make_not_entrant thread='25160' compile_id='522' compiler='c1' level='3' stamp='0.352'/>
+<writer thread='25166'/>
+<nmethod compile_id='577' compiler='c1' level='3' entry='0x00007fba5e39a6a0' size='9232' address='0x00007fba5e39a390' relocation_offset='368' insts_offset='784' stub_offset='7152' scopes_data_offset='7528' scopes_pcs_offset='8144' dependencies_offset='9040' nul_chk_table_offset='9048' oops_offset='7384' metadata_offset='7408' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl checkDepth (Ljava/lang/String;)V' bytes='100' count='553' iicount='553' stamp='0.353'/>
+<writer thread='25110'/>
+<task_queued compile_id='610' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='253' count='5169' iicount='5169' stamp='0.353' comment='tiered' hot_count='5169'/>
+<writer thread='25163'/>
+<nmethod compile_id='597' compiler='c2' level='4' entry='0x00007fba65709940' size='2032' address='0x00007fba65709790' relocation_offset='368' insts_offset='432' stub_offset='1552' scopes_data_offset='1640' scopes_pcs_offset='1784' dependencies_offset='1928' handler_table_offset='1936' nul_chk_table_offset='2008' metadata_offset='1608' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='28118' iicount='28118' decompiles='1' unstable_if_traps='1' stamp='0.353'/>
+<make_not_entrant thread='25163' compile_id='588' compiler='c1' level='3' stamp='0.353'/>
+<writer thread='25165'/>
+<nmethod compile_id='594' compiler='c2' level='4' entry='0x00007fba6570a160' size='1440' address='0x00007fba65709f90' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1048' scopes_pcs_offset='1192' dependencies_offset='1400' nul_chk_table_offset='1408' metadata_offset='1032' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (ILcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='111' count='11900' iicount='11900' stamp='0.354'/>
+<make_not_entrant thread='25165' compile_id='517' compiler='c1' level='3' stamp='0.354'/>
+<writer thread='25110'/>
+<task_queued compile_id='611' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='5436' iicount='5436' stamp='0.354' comment='tiered' hot_count='5436'/>
+<task_queued compile_id='612' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Ljava/lang/String;I)V' bytes='11' count='6418' iicount='6418' stamp='0.354' comment='tiered' hot_count='6418'/>
+<task_queued compile_id='613' method='com.sun.org.apache.xerces.internal.impl.XMLScanner scanAttributeValue (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/XMLString;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;IZLjava/lang/String;Z)V' bytes='991' count='5442' backedge_count='112' iicount='5442' stamp='0.356' comment='tiered' hot_count='5442'/>
+<task_queued compile_id='614' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='5445' iicount='5445' stamp='0.356' comment='tiered' hot_count='5445'/>
+<task_queued compile_id='615' method='java.lang.Long valueOf (J)Ljava/lang/Long;' bytes='40' count='384' iicount='384' level='3' stamp='0.356' comment='tiered' hot_count='384'/>
+<task_queued compile_id='616' method='java.lang.Long &lt;init&gt; (J)V' bytes='10' count='384' iicount='384' level='3' stamp='0.356' comment='tiered' hot_count='384'/>
+<task_queued compile_id='617' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getString ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='76' count='5496' iicount='5496' stamp='0.356' comment='tiered' hot_count='5496'/>
+<writer thread='25161'/>
+<nmethod compile_id='589' compiler='c2' level='4' entry='0x00007fba6570a780' size='3144' address='0x00007fba6570a590' relocation_offset='368' insts_offset='496' stub_offset='2064' scopes_data_offset='2128' scopes_pcs_offset='2696' dependencies_offset='3064' handler_table_offset='3072' nul_chk_table_offset='3096' metadata_offset='2104' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='6421' backedge_count='53518' iicount='6421' stamp='0.358'/>
+<make_not_entrant thread='25161' compile_id='540' compiler='c1' level='3' stamp='0.358'/>
+<writer thread='25165'/>
+<nmethod compile_id='611' compiler='c2' level='4' entry='0x00007fba6570b400' size='2488' address='0x00007fba6570b210' relocation_offset='368' insts_offset='496' stub_offset='1488' scopes_data_offset='1608' scopes_pcs_offset='2048' dependencies_offset='2416' handler_table_offset='2432' nul_chk_table_offset='2456' oops_offset='1528' metadata_offset='1536' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='7131' iicount='7131' stamp='0.361'/>
+<make_not_entrant thread='25165' compile_id='537' compiler='c1' level='3' stamp='0.361'/>
+<writer thread='25110'/>
+<task_queued compile_id='618' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='5389' iicount='5389' stamp='0.362' comment='tiered' hot_count='5389'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='611' compiler='c2' level='4' stamp='0.363'>
+<jvms bci='19' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='7131' iicount='7131'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='611' compiler='c2' level='4' stamp='0.363'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='571' compiler='c2' level='4' stamp='0.364'>
+<jvms bci='343' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='9428' backedge_count='2914' iicount='9428'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='571' compiler='c2' level='4' stamp='0.364'/>
+<task_queued compile_id='619' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='9507' backedge_count='2915' iicount='9507' decompiles='1' unstable_if_traps='1' level='3' stamp='0.365' comment='tiered' hot_count='9507'/>
+<task_queued compile_id='620' method='com.sun.org.apache.xerces.internal.util.XMLChar isSpace (I)Z' bytes='22' count='12571' iicount='12571' stamp='0.365' comment='tiered' hot_count='12571'/>
+<task_queued compile_id='621' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='7228' iicount='7228' decompiles='1' unstable_if_traps='1' level='3' stamp='0.365' comment='tiered' hot_count='7228'/>
+<task_queued compile_id='622' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='6429' iicount='6429' stamp='0.365' comment='tiered' hot_count='6429'/>
+<task_queued compile_id='623' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='679' count='6528' backedge_count='36' iicount='6528' stamp='0.367' comment='tiered' hot_count='6528'/>
+<task_queued compile_id='624' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;)Ljava/lang/String;' bytes='39' count='382' iicount='382' level='3' stamp='0.367' comment='tiered' hot_count='382'/>
+<writer thread='25166'/>
+<nmethod compile_id='606' compiler='c1' level='3' entry='0x00007fba5e39cd00' size='15320' address='0x00007fba5e39c810' relocation_offset='368' insts_offset='1264' stub_offset='11312' scopes_data_offset='12056' scopes_pcs_offset='13664' dependencies_offset='15200' nul_chk_table_offset='15208' oops_offset='11880' metadata_offset='11904' method='java.lang.Long parseLong (Ljava/lang/String;I)J' bytes='267' count='460' backedge_count='4499' iicount='460' stamp='0.368'/>
+<writer thread='25161'/>
+<nmethod compile_id='617' compiler='c2' level='4' entry='0x00007fba6570bde0' size='2144' address='0x00007fba6570bc10' relocation_offset='368' insts_offset='464' stub_offset='1424' scopes_data_offset='1536' scopes_pcs_offset='1776' dependencies_offset='2032' handler_table_offset='2048' nul_chk_table_offset='2096' metadata_offset='1464' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getString ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='76' count='6656' iicount='6656' stamp='0.368'/>
+<make_not_entrant thread='25161' compile_id='542' compiler='c1' level='3' stamp='0.368'/>
+<writer thread='25110'/>
+<task_queued compile_id='625' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='6656' iicount='6656' stamp='0.368' comment='tiered' hot_count='6656'/>
+<task_queued compile_id='626' method='jdk.internal.math.FloatingDecimal readJavaFormatString (Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;' bytes='826' count='331' backedge_count='1654' iicount='331' level='3' stamp='0.370' comment='tiered' hot_count='331'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='590' compiler='c2' level='4' stamp='0.371'>
+<jvms bci='14' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='7224' iicount='7224'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='590' compiler='c2' level='4' stamp='0.371'/>
+<writer thread='25165'/>
+<nmethod compile_id='618' compiler='c2' level='4' entry='0x00007fba6570c640' size='1744' address='0x00007fba6570c490' relocation_offset='368' insts_offset='432' stub_offset='1392' scopes_data_offset='1448' scopes_pcs_offset='1584' dependencies_offset='1696' handler_table_offset='1704' nul_chk_table_offset='1728' metadata_offset='1416' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='5517' iicount='5517' stamp='0.371'/>
+<make_not_entrant thread='25165' compile_id='131' compiler='c1' level='3' stamp='0.371'/>
+<writer thread='25110'/>
+<task_queued compile_id='627' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='7314' iicount='7314' decompiles='1' unstable_if_traps='1' level='3' stamp='0.372' comment='tiered' hot_count='7314'/>
+<task_queued compile_id='628' method='java.lang.String trim ()Ljava/lang/String;' bytes='35' count='384' iicount='384' level='3' stamp='0.372' comment='tiered' hot_count='384'/>
+<task_queued compile_id='629' method='java.lang.StringLatin1 trim ([B)Ljava/lang/String;' bytes='76' count='384' backedge_count='3' iicount='384' level='3' stamp='0.372' comment='tiered' hot_count='384'/>
+<task_queued compile_id='630' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;' bytes='19' count='384' iicount='384' level='3' stamp='0.372' comment='tiered' hot_count='384'/>
+<task_queued compile_id='631' method='java.lang.Double parseDouble (Ljava/lang/String;)D' bytes='5' count='382' iicount='382' level='3' stamp='0.373' comment='tiered' hot_count='382'/>
+<task_queued compile_id='632' method='jdk.internal.math.FloatingDecimal parseDouble (Ljava/lang/String;)D' bytes='10' count='382' iicount='382' level='3' stamp='0.373' comment='tiered' hot_count='382'/>
+<task_queued compile_id='633' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='384' iicount='384' level='3' stamp='0.373' comment='tiered' hot_count='384'/>
+<task_queued compile_id='634' method='java.util.regex.Pattern$$Lambda$1/6738746 is (I)Z' bytes='9' count='384' iicount='384' level='3' stamp='0.373' comment='tiered' hot_count='384'/>
+<task_queued compile_id='635' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='925' backedge_count='27672' iicount='925' stamp='0.373' comment='tiered' hot_count='925'/>
+<writer thread='25165'/>
+<nmethod compile_id='620' compiler='c2' level='4' entry='0x00007fba6570cd20' size='672' address='0x00007fba6570cb90' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='568' scopes_pcs_offset='600' dependencies_offset='664' oops_offset='552' metadata_offset='560' method='com.sun.org.apache.xerces.internal.util.XMLChar isSpace (I)Z' bytes='22' count='15547' iicount='15547' stamp='0.374'/>
+<make_not_entrant thread='25165' compile_id='514' compiler='c1' level='3' stamp='0.374'/>
+<writer thread='25166'/>
+<nmethod compile_id='619' compiler='c1' level='3' entry='0x00007fba5e3a0680' size='5056' address='0x00007fba5e3a0410' relocation_offset='368' insts_offset='624' stub_offset='3696' scopes_data_offset='3952' scopes_pcs_offset='4224' dependencies_offset='4864' nul_chk_table_offset='4872' metadata_offset='3928' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='11875' backedge_count='2920' iicount='11876' decompiles='1' unstable_if_traps='1' stamp='0.374'/>
+<writer thread='25110'/>
+<task_queued compile_id='636' method='java.lang.Integer parseInt (Ljava/lang/String;)I' bytes='7' count='384' iicount='384' level='3' stamp='0.374' comment='tiered' hot_count='384'/>
+<writer thread='25166'/>
+<nmethod compile_id='627' compiler='c1' level='3' entry='0x00007fba5e3a19e0' size='1560' address='0x00007fba5e3a1810' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1320' scopes_pcs_offset='1368' dependencies_offset='1512' nul_chk_table_offset='1520' metadata_offset='1304' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='8038' iicount='8038' decompiles='1' unstable_if_traps='1' stamp='0.374'/>
+<writer thread='25110'/>
+<task_queued compile_id='637' method='java.util.regex.Pattern lambda$Single$8 (II)Z' bytes='11' count='512' iicount='512' level='3' stamp='0.374' comment='tiered' hot_count='512'/>
+<task_queued compile_id='638' method='java.lang.StringUTF16 compress ([CI[BII)I' bytes='50' count='2178' backedge_count='17106' iicount='2178' stamp='0.376' comment='tiered' hot_count='2178'/>
+<task_queued compile_id='639' method='java.lang.Integer parseInt (Ljava/lang/String;I)I' bytes='259' count='512' backedge_count='608' iicount='512' level='3' stamp='0.377' comment='tiered' hot_count='512'/>
+<writer thread='25168'/>
+<nmethod compile_id='596' compiler='c1' level='3' entry='0x00007fba5e3a2a80' size='41832' address='0x00007fba5e3a1e90' relocation_offset='368' insts_offset='3056' stub_offset='26320' scopes_data_offset='28376' scopes_pcs_offset='32424' dependencies_offset='36680' handler_table_offset='36688' nul_chk_table_offset='41512' oops_offset='28152' metadata_offset='28224' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='1191' iicount='1191' stamp='0.377'/>
+<writer thread='25167'/>
+<nmethod compile_id='601' compile_kind='osr' compiler='c1' level='3' entry='0x00007fba5e3acc40' size='38400' address='0x00007fba5e3ac210' relocation_offset='368' insts_offset='2608' stub_offset='28656' scopes_data_offset='30264' scopes_pcs_offset='34184' dependencies_offset='38008' nul_chk_table_offset='38016' metadata_offset='30104' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='44' backedge_count='172035' iicount='44' stamp='0.378'/>
+<writer thread='25166'/>
+<nmethod compile_id='621' compiler='c1' level='3' entry='0x00007fba5e3b5b40' size='5720' address='0x00007fba5e3b5890' relocation_offset='368' insts_offset='688' stub_offset='4336' scopes_data_offset='4688' scopes_pcs_offset='5032' dependencies_offset='5592' nul_chk_table_offset='5608' oops_offset='4600' metadata_offset='4616' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='8674' iicount='8674' decompiles='1' unstable_if_traps='1' stamp='0.378'/>
+<writer thread='25110'/>
+<task_queued compile_id='640' method='java.util.ArrayList$SubList access$100 (Ljava/util/ArrayList$SubList;)Ljava/util/ArrayList;' bytes='5' count='128' iicount='128' level='1' stamp='0.378' comment='tiered' hot_count='128'/>
+<task_queued compile_id='641' method='java.util.ArrayList$SubList access$200 (Ljava/util/ArrayList$SubList;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.378' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='608' compiler='c1' level='3' entry='0x00007fba5e3b7100' size='1744' address='0x00007fba5e3b6f10' relocation_offset='368' insts_offset='496' stub_offset='1232' scopes_data_offset='1440' scopes_pcs_offset='1576' dependencies_offset='1720' nul_chk_table_offset='1728' metadata_offset='1416' method='com.sun.org.apache.xerces.internal.xni.XMLString toString ()Ljava/lang/String;' bytes='32' count='2023' iicount='2023' stamp='0.378'/>
+<nmethod compile_id='624' compiler='c1' level='3' entry='0x00007fba5e3b78a0' size='4696' address='0x00007fba5e3b7610' relocation_offset='368' insts_offset='656' stub_offset='3472' scopes_data_offset='3864' scopes_pcs_offset='4240' dependencies_offset='4656' nul_chk_table_offset='4672' oops_offset='3736' metadata_offset='3752' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;)Ljava/lang/String;' bytes='39' count='1193' iicount='1194' stamp='0.380'/>
+<writer thread='25110'/>
+<task_queued compile_id='642' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='45' backedge_count='172082' iicount='45' level='3' stamp='0.380' comment='tiered' hot_count='45'/>
+<task_queued compile_id='643' method='java.util.ArrayList$SubList access$300 (Ljava/util/ArrayList$SubList;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.381' comment='tiered' hot_count='128'/>
+<task_queued compile_id='644' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer &lt;init&gt; (ZI[CI)V' bytes='26' count='512' iicount='512' level='3' stamp='0.381' comment='tiered' hot_count='512'/>
+<task_queued compile_id='645' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer doubleValue ()D' bytes='1194' count='512' backedge_count='976' iicount='512' level='3' stamp='0.381' comment='tiered' hot_count='512'/>
+<task_queued compile_id='646' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='6404' iicount='6404' stamp='0.382' comment='tiered' hot_count='6404'/>
+<writer thread='25166'/>
+<nmethod compile_id='639' compiler='c1' level='3' entry='0x00007fba5e3b8d80' size='15152' address='0x00007fba5e3b8890' relocation_offset='368' insts_offset='1264' stub_offset='11248' scopes_data_offset='11992' scopes_pcs_offset='13488' dependencies_offset='15024' nul_chk_table_offset='15032' oops_offset='11816' metadata_offset='11840' method='java.lang.Integer parseInt (Ljava/lang/String;I)I' bytes='259' count='775' backedge_count='907' iicount='775' stamp='0.383'/>
+<writer thread='25110'/>
+<task_queued compile_id='647' method='com.sun.hotspot.tools.compiler.CallSite getCalls ()Ljava/util/List;' bytes='5' count='128' iicount='128' level='1' stamp='0.383' comment='tiered' hot_count='128'/>
+<task_queued compile_id='648' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='15651' backedge_count='4013' iicount='15651' decompiles='1' unstable_if_traps='1' stamp='0.385' comment='tiered' hot_count='15651'/>
+<task_queued compile_id='649' method='com.sun.hotspot.tools.compiler.BasicLogEvent getId ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.385' comment='tiered' hot_count='128'/>
+<task_queued compile_id='650' method='com.sun.hotspot.tools.compiler.BasicLogEvent setEnd (D)V' bytes='6' count='128' iicount='128' level='1' stamp='0.385' comment='tiered' hot_count='128'/>
+<task_queued compile_id='651' method='com.sun.hotspot.tools.compiler.Phase setEndNodes (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.385' comment='tiered' hot_count='128'/>
+<task_queued compile_id='652' method='com.sun.hotspot.tools.compiler.Phase setEndLiveNodes (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.385' comment='tiered' hot_count='128'/>
+<task_queued compile_id='653' method='com.sun.hotspot.tools.compiler.Compilation getPhases ()Ljava/util/ArrayList;' bytes='5' count='128' iicount='128' level='1' stamp='0.385' comment='tiered' hot_count='128'/>
+<task_queued compile_id='654' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndex (Ljava/lang/String;)I' bytes='51' count='4333' backedge_count='16364' iicount='4333' stamp='0.388' comment='tiered' hot_count='4333'/>
+<task_queued compile_id='655' method='java.util.ArrayDeque elementAt ([Ljava/lang/Object;I)Ljava/lang/Object;' bytes='4' count='479' iicount='479' level='3' stamp='0.389' comment='tiered' hot_count='479'/>
+<task_queued compile_id='656' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='13586' iicount='13586' decompiles='1' unstable_if_traps='1' stamp='0.390' comment='tiered' hot_count='13586'/>
+<writer thread='25165'/>
+<nmethod compile_id='635' compiler='c2' level='4' entry='0x00007fba6570d040' size='2040' address='0x00007fba6570ce90' relocation_offset='368' insts_offset='432' stub_offset='1552' scopes_data_offset='1608' scopes_pcs_offset='1808' dependencies_offset='1968' handler_table_offset='1976' nul_chk_table_offset='2024' metadata_offset='1576' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='1009' backedge_count='30166' iicount='1009' stamp='0.394'/>
+<make_not_entrant thread='25165' compile_id='231' compiler='c1' level='3' stamp='0.394'/>
+<writer thread='25166'/>
+<nmethod compile_id='645' compiler='c1' level='3' entry='0x00007fba5e3bc900' size='13576' address='0x00007fba5e3bc410' relocation_offset='368' consts_offset='1136' insts_offset='1264' stub_offset='9680' scopes_data_offset='10056' scopes_pcs_offset='12296' dependencies_offset='13400' nul_chk_table_offset='13408' metadata_offset='10024' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer doubleValue ()D' bytes='1194' count='843' backedge_count='1585' iicount='843' stamp='0.394'/>
+<nmethod compile_id='630' compiler='c1' level='3' entry='0x00007fba5e3bfb60' size='1576' address='0x00007fba5e3bf990' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1320' scopes_pcs_offset='1400' dependencies_offset='1544' nul_chk_table_offset='1552' oops_offset='1272' metadata_offset='1280' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;' bytes='19' count='1763' iicount='1763' stamp='0.395'/>
+<nmethod compile_id='633' compiler='c1' level='3' entry='0x00007fba5e3c0200' size='2016' address='0x00007fba5e3c0010' relocation_offset='368' insts_offset='496' stub_offset='1520' scopes_data_offset='1728' scopes_pcs_offset='1808' dependencies_offset='1968' nul_chk_table_offset='1976' metadata_offset='1720' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='1758' iicount='1758' stamp='0.396'/>
+<nmethod compile_id='634' compiler='c1' level='3' entry='0x00007fba5e3c09c0' size='1096' address='0x00007fba5e3c0810' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1024' dependencies_offset='1088' oops_offset='960' metadata_offset='968' method='java.util.regex.Pattern$$Lambda$1/6738746 is (I)Z' bytes='9' count='1809' iicount='1809' stamp='0.396'/>
+<nmethod compile_id='629' compiler='c1' level='3' entry='0x00007fba5e3c0e80' size='2464' address='0x00007fba5e3c0c90' relocation_offset='368' insts_offset='496' stub_offset='1872' scopes_data_offset='2072' scopes_pcs_offset='2216' dependencies_offset='2440' nul_chk_table_offset='2448' metadata_offset='2040' method='java.lang.StringLatin1 trim ([B)Ljava/lang/String;' bytes='76' count='922' backedge_count='3' iicount='922' stamp='0.397'/>
+<nmethod compile_id='637' compiler='c1' level='3' entry='0x00007fba5e3c1840' size='912' address='0x00007fba5e3c1690' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.util.regex.Pattern lambda$Single$8 (II)Z' bytes='11' count='1866' iicount='1866' stamp='0.398'/>
+<nmethod compile_id='636' compiler='c1' level='3' entry='0x00007fba5e3c1c40' size='896' address='0x00007fba5e3c1a90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='800' scopes_pcs_offset='824' dependencies_offset='888' metadata_offset='792' method='java.lang.Integer parseInt (Ljava/lang/String;)I' bytes='7' count='1718' iicount='1718' stamp='0.398'/>
+<nmethod compile_id='628' compiler='c1' level='3' entry='0x00007fba5e3c2060' size='1456' address='0x00007fba5e3c1e90' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1304' scopes_pcs_offset='1352' dependencies_offset='1448' metadata_offset='1288' method='java.lang.String trim ()Ljava/lang/String;' bytes='35' count='952' iicount='952' stamp='0.399'/>
+<writer thread='25167'/>
+<nmethod compile_id='642' compiler='c1' level='3' entry='0x00007fba5e3c2f20' size='41984' address='0x00007fba5e3c2490' relocation_offset='368' insts_offset='2704' stub_offset='32144' scopes_data_offset='33768' scopes_pcs_offset='37832' dependencies_offset='41752' nul_chk_table_offset='41760' metadata_offset='33592' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='55' backedge_count='221182' iicount='55' stamp='0.399'/>
+<writer thread='25110'/>
+<task_queued compile_id='657' method='com.sun.hotspot.tools.compiler.BasicLogEvent &lt;init&gt; (DLjava/lang/String;)V' bytes='20' count='535' iicount='535' level='3' stamp='0.399' comment='tiered' hot_count='535'/>
+<task_queued compile_id='658' method='java.util.ArrayDeque inc (II)I' bytes='12' count='512' iicount='512' level='3' stamp='0.399' comment='tiered' hot_count='512'/>
+<writer thread='25167'/>
+<nmethod compile_id='631' compiler='c1' level='3' entry='0x00007fba5e3ccae0' size='1288' address='0x00007fba5e3cc910' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1112' scopes_pcs_offset='1152' dependencies_offset='1264' nul_chk_table_offset='1272' metadata_offset='1096' method='java.lang.Double parseDouble (Ljava/lang/String;)D' bytes='5' count='967' iicount='967' stamp='0.399'/>
+<writer thread='25110'/>
+<task_queued compile_id='659' method='com.sun.hotspot.tools.compiler.Method setHolder (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.400' comment='tiered' hot_count='128'/>
+<task_queued compile_id='660' method='com.sun.hotspot.tools.compiler.Method setName (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.400' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='644' compiler='c1' level='3' entry='0x00007fba5e3cd040' size='1096' address='0x00007fba5e3cce90' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1024' dependencies_offset='1088' metadata_offset='960' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer &lt;init&gt; (ZI[CI)V' bytes='26' count='972' iicount='972' stamp='0.400'/>
+<writer thread='25166'/>
+<nmethod compile_id='632' compiler='c1' level='3' entry='0x00007fba5e3cd4e0' size='1160' address='0x00007fba5e3cd310' relocation_offset='368' insts_offset='464' stub_offset='816' scopes_data_offset='1008' scopes_pcs_offset='1040' dependencies_offset='1136' nul_chk_table_offset='1144' metadata_offset='1000' method='jdk.internal.math.FloatingDecimal parseDouble (Ljava/lang/String;)D' bytes='10' count='980' iicount='980' stamp='0.400'/>
+<writer thread='25167'/>
+<nmethod compile_id='655' compiler='c1' level='3' entry='0x00007fba5e3cd9c0' size='928' address='0x00007fba5e3cd810' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='800' dependencies_offset='896' nul_chk_table_offset='904' metadata_offset='768' method='java.util.ArrayDeque elementAt ([Ljava/lang/Object;I)Ljava/lang/Object;' bytes='4' count='681' iicount='681' stamp='0.400'/>
+<writer thread='25110'/>
+<task_queued compile_id='661' method='java.util.ArrayDeque dec (II)I' bytes='13' count='433' iicount='433' level='3' stamp='0.400' comment='tiered' hot_count='433'/>
+<writer thread='25168'/>
+<nmethod compile_id='626' compiler='c1' level='3' entry='0x00007fba5e3ce5e0' size='45896' address='0x00007fba5e3cdc10' relocation_offset='368' insts_offset='2512' stub_offset='31664' scopes_data_offset='32624' scopes_pcs_offset='38880' dependencies_offset='42704' handler_table_offset='42712' nul_chk_table_offset='45640' oops_offset='32440' metadata_offset='32472' method='jdk.internal.math.FloatingDecimal readJavaFormatString (Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;' bytes='826' count='991' backedge_count='4955' iicount='991' stamp='0.401'/>
+<writer thread='25167'/>
+<nmethod compile_id='658' compiler='c1' level='3' entry='0x00007fba5e3d9140' size='880' address='0x00007fba5e3d8f90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.util.ArrayDeque inc (II)I' bytes='12' count='528' iicount='528' stamp='0.401'/>
+<writer thread='25166'/>
+<nmethod compile_id='640' compiler='c1' level='1' entry='0x00007fba6570d8c0' size='768' address='0x00007fba6570d710' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.ArrayList$SubList access$100 (Ljava/util/ArrayList$SubList;)Ljava/util/ArrayList;' bytes='5' count='396' iicount='396' stamp='0.401'/>
+<writer thread='25167'/>
+<nmethod compile_id='641' compiler='c1' level='1' entry='0x00007fba6570dc40' size='768' address='0x00007fba6570da90' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.ArrayList$SubList access$200 (Ljava/util/ArrayList$SubList;)I' bytes='5' count='396' iicount='396' stamp='0.401'/>
+<writer thread='25168'/>
+<nmethod compile_id='643' compiler='c1' level='1' entry='0x00007fba6570dfc0' size='768' address='0x00007fba6570de10' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.ArrayList$SubList access$300 (Ljava/util/ArrayList$SubList;)I' bytes='5' count='338' iicount='338' stamp='0.401'/>
+<writer thread='25166'/>
+<nmethod compile_id='657' compiler='c1' level='3' entry='0x00007fba5e3d94c0' size='1104' address='0x00007fba5e3d9310' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1096' oops_offset='960' metadata_offset='968' method='com.sun.hotspot.tools.compiler.BasicLogEvent &lt;init&gt; (DLjava/lang/String;)V' bytes='20' count='561' iicount='561' stamp='0.401'/>
+<writer thread='25167'/>
+<nmethod compile_id='661' compiler='c1' level='3' entry='0x00007fba5e3d9940' size='880' address='0x00007fba5e3d9790' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.util.ArrayDeque dec (II)I' bytes='13' count='450' iicount='450' stamp='0.402'/>
+<writer thread='25168'/>
+<nmethod compile_id='649' compiler='c1' level='1' entry='0x00007fba6570e340' size='760' address='0x00007fba6570e190' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.BasicLogEvent getId ()Ljava/lang/String;' bytes='5' count='323' iicount='323' stamp='0.402'/>
+<writer thread='25110'/>
+<task_queued compile_id='662' compile_kind='osr' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='57' backedge_count='221234' iicount='57' osr_bci='73' stamp='0.402' comment='tiered' hot_count='221234'/>
+<writer thread='25166'/>
+<nmethod compile_id='650' compiler='c1' level='1' entry='0x00007fba6570e6c0' size='760' address='0x00007fba6570e510' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.BasicLogEvent setEnd (D)V' bytes='6' count='323' iicount='323' stamp='0.402'/>
+<writer thread='25168'/>
+<nmethod compile_id='651' compiler='c1' level='1' entry='0x00007fba6570ea40' size='760' address='0x00007fba6570e890' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Phase setEndNodes (I)V' bytes='6' count='324' iicount='324' stamp='0.402'/>
+<writer thread='25110'/>
+<task_queued compile_id='663' method='com.sun.hotspot.tools.compiler.Method setFlags (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.402' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='653' compiler='c1' level='1' entry='0x00007fba6570edc0' size='760' address='0x00007fba6570ec10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Compilation getPhases ()Ljava/util/ArrayList;' bytes='5' count='324' iicount='324' stamp='0.402'/>
+<writer thread='25167'/>
+<nmethod compile_id='652' compiler='c1' level='1' entry='0x00007fba6570f140' size='760' address='0x00007fba6570ef90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Phase setEndLiveNodes (I)V' bytes='6' count='324' iicount='324' stamp='0.402'/>
+<writer thread='25110'/>
+<task_queued compile_id='664' method='com.sun.hotspot.tools.compiler.Method setBytes (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.402' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='647' compiler='c1' level='1' entry='0x00007fba6570f4c0' size='760' address='0x00007fba6570f310' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getCalls ()Ljava/util/List;' bytes='5' count='250' iicount='250' stamp='0.402'/>
+<writer thread='25166'/>
+<nmethod compile_id='579' compiler='c1' level='1' entry='0x00007fba6570f840' size='752' address='0x00007fba6570f690' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Long longValue ()J' bytes='5' count='460' iicount='460' stamp='0.402'/>
+<nmethod compile_id='605' compiler='c1' level='3' entry='0x00007fba5e3d9ce0' size='1000' address='0x00007fba5e3d9b10' relocation_offset='368' insts_offset='464' stub_offset='688' scopes_data_offset='880' scopes_pcs_offset='912' dependencies_offset='992' metadata_offset='872' method='java.lang.Long valueOf (Ljava/lang/String;I)Ljava/lang/Long;' bytes='9' count='460' iicount='460' stamp='0.403'/>
+<writer thread='25110'/>
+<task_queued compile_id='665' method='java.util.ArrayDeque pollFirst ()Ljava/lang/Object;' bytes='36' count='512' iicount='512' level='3' stamp='0.403' comment='tiered' hot_count='512'/>
+<writer thread='25166'/>
+<nmethod compile_id='615' compiler='c1' level='3' entry='0x00007fba5e3da0e0' size='1880' address='0x00007fba5e3d9f10' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1536' scopes_pcs_offset='1632' dependencies_offset='1840' nul_chk_table_offset='1848' metadata_offset='1504' method='java.lang.Long valueOf (J)Ljava/lang/Long;' bytes='40' count='460' iicount='460' stamp='0.404'/>
+<writer thread='25110'/>
+<task_queued compile_id='666' method='com.sun.org.apache.xerces.internal.impl.XMLScanner checkEntityLimit (ZLjava/lang/String;I)V' bytes='317' count='264' iicount='264' level='3' stamp='0.404' comment='tiered' hot_count='264'/>
+<task_queued compile_id='667' method='java.util.regex.Matcher search (I)Z' bytes='154' count='205' backedge_count='4096' iicount='205' level='3' stamp='0.404' comment='tiered' hot_count='205'/>
+<writer thread='25166'/>
+<nmethod compile_id='665' compiler='c1' level='3' entry='0x00007fba5e3da860' size='1944' address='0x00007fba5e3da690' relocation_offset='368' insts_offset='464' stub_offset='1456' scopes_data_offset='1624' scopes_pcs_offset='1728' dependencies_offset='1904' nul_chk_table_offset='1912' metadata_offset='1600' method='java.util.ArrayDeque pollFirst ()Ljava/lang/Object;' bytes='36' count='527' iicount='527' stamp='0.404'/>
+<nmethod compile_id='667' compiler='c1' level='3' entry='0x00007fba5e3db080' size='2408' address='0x00007fba5e3dae90' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2008' scopes_pcs_offset='2128' dependencies_offset='2352' nul_chk_table_offset='2360' metadata_offset='1992' method='java.util.regex.Matcher search (I)Z' bytes='154' count='208' backedge_count='4160' iicount='208' stamp='0.405'/>
+<writer thread='25110'/>
+<task_queued compile_id='668' method='java.util.ArrayList newCapacity (I)I' bytes='65' count='329' iicount='329' level='3' stamp='0.405' comment='tiered' hot_count='329'/>
+<task_queued compile_id='669' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='7564' iicount='7564' stamp='0.406' comment='tiered' hot_count='7564'/>
+<task_queued compile_id='670' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='7596' iicount='7596' stamp='0.406' comment='tiered' hot_count='7596'/>
+<task_queued compile_id='671' method='java.util.ArrayDeque push (Ljava/lang/Object;)V' bytes='6' count='512' iicount='512' level='3' stamp='0.406' comment='tiered' hot_count='512'/>
+<task_queued compile_id='672' method='java.util.ArrayDeque addFirst (Ljava/lang/Object;)V' bytes='51' count='512' iicount='512' level='3' stamp='0.406' comment='tiered' hot_count='512'/>
+<writer thread='25165'/>
+<nmethod compile_id='648' compiler='c2' level='4' entry='0x00007fba6570fb60' size='1952' address='0x00007fba6570f990' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1328' scopes_pcs_offset='1608' dependencies_offset='1880' handler_table_offset='1888' nul_chk_table_offset='1912' metadata_offset='1304' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='23867' backedge_count='6362' iicount='23867' decompiles='1' unstable_if_traps='1' stamp='0.406'/>
+<make_not_entrant thread='25165' compile_id='619' compiler='c1' level='3' stamp='0.406'/>
+<writer thread='25110'/>
+<task_queued compile_id='673' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner arrangeCapacity (IZ)Z' bytes='227' count='512' backedge_count='1' iicount='512' level='3' stamp='0.406' comment='tiered' hot_count='512'/>
+<writer thread='25168'/>
+<nmethod compile_id='604' compiler='c1' level='3' entry='0x00007fba5e3dbc20' size='11704' address='0x00007fba5e3db810' relocation_offset='368' insts_offset='1040' stub_offset='9008' scopes_data_offset='9672' scopes_pcs_offset='10544' dependencies_offset='11520' handler_table_offset='11528' nul_chk_table_offset='11648' oops_offset='9528' metadata_offset='9536' method='java.lang.Long decode (Ljava/lang/String;)Ljava/lang/Long;' bytes='244' count='460' iicount='460' stamp='0.407'/>
+<writer thread='25110'/>
+<task_queued compile_id='674' method='com.sun.hotspot.tools.compiler.Phase &lt;init&gt; (Ljava/lang/String;DII)V' bytes='19' count='384' iicount='384' level='3' stamp='0.407' comment='tiered' hot_count='384'/>
+<task_queued compile_id='675' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanEndElement ()I' bytes='170' count='522' iicount='522' level='3' stamp='0.407' comment='tiered' hot_count='522'/>
+<task_queued compile_id='676' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipString (Ljava/lang/String;)Z' bytes='122' count='526' backedge_count='2093' iicount='526' level='3' stamp='0.407' comment='tiered' hot_count='526'/>
+<writer thread='25168'/>
+<nmethod compile_id='668' compiler='c1' level='3' entry='0x00007fba5e3de820' size='2336' address='0x00007fba5e3de610' relocation_offset='368' insts_offset='528' stub_offset='1808' scopes_data_offset='2016' scopes_pcs_offset='2120' dependencies_offset='2312' nul_chk_table_offset='2320' metadata_offset='1992' method='java.util.ArrayList newCapacity (I)I' bytes='65' count='346' iicount='346' stamp='0.408'/>
+<writer thread='25110'/>
+<task_queued compile_id='677' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='56' count='7430' iicount='7430' stamp='0.408' comment='tiered' hot_count='7430'/>
+<writer thread='25160'/>
+<nmethod compile_id='613' compiler='c2' level='4' entry='0x00007fba657105a0' size='11472' address='0x00007fba65710190' relocation_offset='368' insts_offset='1040' stub_offset='6064' scopes_data_offset='6736' scopes_pcs_offset='9040' dependencies_offset='10544' handler_table_offset='10584' nul_chk_table_offset='11376' oops_offset='6552' metadata_offset='6592' method='com.sun.org.apache.xerces.internal.impl.XMLScanner scanAttributeValue (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/XMLString;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;IZLjava/lang/String;Z)V' bytes='991' count='10771' backedge_count='268' iicount='10771' stamp='0.409'/>
+<make_not_entrant thread='25160' compile_id='543' compiler='c1' level='3' stamp='0.409'/>
+<writer thread='25165'/>
+<nmethod compile_id='656' compiler='c2' level='4' entry='0x00007fba65713040' size='1096' address='0x00007fba65712e90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='800' scopes_pcs_offset='896' dependencies_offset='1040' handler_table_offset='1048' nul_chk_table_offset='1072' metadata_offset='792' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='20107' iicount='20107' decompiles='1' unstable_if_traps='1' stamp='0.409'/>
+<make_not_entrant thread='25165' compile_id='627' compiler='c1' level='3' stamp='0.409'/>
+<writer thread='25110'/>
+<task_queued compile_id='678' method='java.util.ArrayDeque pop ()Ljava/lang/Object;' bytes='5' count='512' iicount='512' level='3' stamp='0.409' comment='tiered' hot_count='512'/>
+<task_queued compile_id='679' method='java.util.ArrayDeque removeFirst ()Ljava/lang/Object;' bytes='19' count='512' iicount='512' level='3' stamp='0.409' comment='tiered' hot_count='512'/>
+<task_queued compile_id='680' method='com.sun.hotspot.tools.compiler.Method setReturnType (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.410' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='603' compiler='c1' level='3' entry='0x00007fba5e3df580' size='20440' address='0x00007fba5e3def90' relocation_offset='368' insts_offset='1520' stub_offset='14832' scopes_data_offset='15720' scopes_pcs_offset='17848' dependencies_offset='19784' handler_table_offset='19792' nul_chk_table_offset='20272' oops_offset='15528' metadata_offset='15552' method='com.sun.hotspot.tools.compiler.LogParser parseLong (Ljava/lang/String;)J' bytes='179' count='460' iicount='460' stamp='0.410'/>
+<writer thread='25110'/>
+<task_queued compile_id='681' method='com.sun.hotspot.tools.compiler.Method setIICount (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.411' comment='tiered' hot_count='128'/>
+<task_queued compile_id='682' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='13628' iicount='13628' decompiles='1' unstable_if_traps='1' stamp='0.411' comment='tiered' hot_count='13628'/>
+<writer thread='25168'/>
+<nmethod compile_id='676' compiler='c1' level='3' entry='0x00007fba5e3e41e0' size='4552' address='0x00007fba5e3e3f90' relocation_offset='368' insts_offset='592' stub_offset='3280' scopes_data_offset='3576' scopes_pcs_offset='4008' dependencies_offset='4472' nul_chk_table_offset='4480' metadata_offset='3496' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipString (Ljava/lang/String;)Z' bytes='122' count='583' backedge_count='2321' iicount='583' stamp='0.411'/>
+<writer thread='25166'/>
+<nmethod compile_id='666' compiler='c1' level='3' entry='0x00007fba5e3e57c0' size='28560' address='0x00007fba5e3e5190' relocation_offset='368' insts_offset='1584' stub_offset='22384' scopes_data_offset='22976' scopes_pcs_offset='24984' dependencies_offset='27928' nul_chk_table_offset='27936' oops_offset='22792' metadata_offset='22840' method='com.sun.org.apache.xerces.internal.impl.XMLScanner checkEntityLimit (ZLjava/lang/String;I)V' bytes='317' count='270' iicount='270' stamp='0.412'/>
+<writer thread='25167'/>
+<nmethod compile_id='673' compiler='c1' level='3' entry='0x00007fba5e3ec3a0' size='2816' address='0x00007fba5e3ec190' relocation_offset='368' insts_offset='528' stub_offset='2000' scopes_data_offset='2232' scopes_pcs_offset='2408' dependencies_offset='2728' nul_chk_table_offset='2736' metadata_offset='2216' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner arrangeCapacity (IZ)Z' bytes='227' count='598' backedge_count='1' iicount='598' stamp='0.412'/>
+<writer thread='25166'/>
+<nmethod compile_id='671' compiler='c1' level='3' entry='0x00007fba5e3ecec0' size='936' address='0x00007fba5e3ecd10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='840' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.util.ArrayDeque push (Ljava/lang/Object;)V' bytes='6' count='601' iicount='601' stamp='0.413'/>
+<nmethod compile_id='678' compiler='c1' level='3' entry='0x00007fba5e3ed2e0' size='1352' address='0x00007fba5e3ed110' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1152' scopes_pcs_offset='1216' dependencies_offset='1344' metadata_offset='1128' method='java.util.ArrayDeque pop ()Ljava/lang/Object;' bytes='5' count='561' iicount='561' stamp='0.413'/>
+<writer thread='25167'/>
+<nmethod compile_id='672' compiler='c1' level='3' entry='0x00007fba5e3ed880' size='2104' address='0x00007fba5e3ed690' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1792' scopes_pcs_offset='1880' dependencies_offset='2072' nul_chk_table_offset='2080' metadata_offset='1768' method='java.util.ArrayDeque addFirst (Ljava/lang/Object;)V' bytes='51' count='614' iicount='614' stamp='0.414'/>
+<writer thread='25166'/>
+<nmethod compile_id='679' compiler='c1' level='3' entry='0x00007fba5e3ee0e0' size='1208' address='0x00007fba5e3edf10' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1048' scopes_pcs_offset='1088' dependencies_offset='1200' metadata_offset='1032' method='java.util.ArrayDeque removeFirst ()Ljava/lang/Object;' bytes='19' count='568' iicount='568' stamp='0.414'/>
+<nmethod compile_id='659' compiler='c1' level='1' entry='0x00007fba657134c0' size='856' address='0x00007fba65713310' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Method setHolder (Ljava/lang/String;)V' bytes='6' count='186' iicount='186' stamp='0.414'/>
+<nmethod compile_id='660' compiler='c1' level='1' entry='0x00007fba65713840' size='856' address='0x00007fba65713690' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Method setName (Ljava/lang/String;)V' bytes='6' count='188' iicount='188' stamp='0.414'/>
+<writer thread='25167'/>
+<nmethod compile_id='674' compiler='c1' level='3' entry='0x00007fba5e3ee5c0' size='1296' address='0x00007fba5e3ee410' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1128' scopes_pcs_offset='1208' dependencies_offset='1288' oops_offset='1088' metadata_offset='1096' method='com.sun.hotspot.tools.compiler.Phase &lt;init&gt; (Ljava/lang/String;DII)V' bytes='19' count='473' iicount='473' stamp='0.414'/>
+<writer thread='25168'/>
+<nmethod compile_id='675' compiler='c1' level='3' entry='0x00007fba5e3eec60' size='6368' address='0x00007fba5e3ee990' relocation_offset='368' insts_offset='720' stub_offset='4784' scopes_data_offset='5168' scopes_pcs_offset='5608' dependencies_offset='6232' nul_chk_table_offset='6248' oops_offset='5080' metadata_offset='5112' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanEndElement ()I' bytes='170' count='637' iicount='637' stamp='0.415'/>
+<writer thread='25110'/>
+<task_queued compile_id='683' method='java.lang.CharacterDataLatin1 digit (II)I' bytes='91' count='7666' iicount='7666' stamp='0.415' comment='tiered' hot_count='7666'/>
+<writer thread='25166'/>
+<nmethod compile_id='663' compiler='c1' level='1' entry='0x00007fba65713bc0' size='856' address='0x00007fba65713a10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Method setFlags (Ljava/lang/String;)V' bytes='6' count='186' iicount='186' stamp='0.415'/>
+<writer thread='25168'/>
+<nmethod compile_id='680' compiler='c1' level='1' entry='0x00007fba65713f40' size='856' address='0x00007fba65713d90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Method setReturnType (Ljava/lang/String;)V' bytes='6' count='150' iicount='150' stamp='0.415'/>
+<writer thread='25166'/>
+<nmethod compile_id='681' compiler='c1' level='1' entry='0x00007fba657142c0' size='856' address='0x00007fba65714110' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Method setIICount (Ljava/lang/String;)V' bytes='6' count='147' iicount='147' stamp='0.415'/>
+<writer thread='25167'/>
+<nmethod compile_id='664' compiler='c1' level='1' entry='0x00007fba65714640' size='856' address='0x00007fba65714490' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Method setBytes (Ljava/lang/String;)V' bytes='6' count='188' iicount='188' stamp='0.415'/>
+<writer thread='25110'/>
+<task_queued compile_id='684' method='com.sun.hotspot.tools.compiler.CallSite setCount (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.415' comment='tiered' hot_count='128'/>
+<task_queued compile_id='685' method='com.sun.hotspot.tools.compiler.CallSite setReason (Ljava/lang/String;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.415' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='602' compiler='c1' level='1' entry='0x00007fba657149c0' size='752' address='0x00007fba65714810' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.LinkedHashMap removeEldestEntry (Ljava/util/Map$Entry;)Z' bytes='2' count='242' iicount='242' stamp='0.415'/>
+<writer thread='25167'/>
+<nmethod compile_id='684' compiler='c1' level='1' entry='0x00007fba65714cc0' size='760' address='0x00007fba65714b10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite setCount (I)V' bytes='6' count='129' iicount='129' stamp='0.416'/>
+<writer thread='25110'/>
+<task_queued compile_id='686' method='java.util.regex.Matcher reset ()Ljava/util/regex/Matcher;' bytes='128' count='128' backedge_count='2540' iicount='128' level='3' stamp='0.416' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='685' compiler='c1' level='1' entry='0x00007fba65715040' size='856' address='0x00007fba65714e90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.CallSite setReason (Ljava/lang/String;)V' bytes='6' count='129' iicount='129' stamp='0.416'/>
+<writer thread='25168'/>
+<nmethod compile_id='616' compiler='c1' level='3' entry='0x00007fba5e3f0440' size='1120' address='0x00007fba5e3f0290' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.lang.Long &lt;init&gt; (J)V' bytes='10' count='460' iicount='460' stamp='0.416'/>
+<writer thread='25110'/>
+<task_queued compile_id='687' method='java.util.ArrayList &lt;init&gt; ()V' bytes='12' count='318' iicount='318' level='3' stamp='0.416' comment='tiered' hot_count='318'/>
+<task_queued compile_id='688' method='java.util.regex.Pattern$Start match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='90' count='290' backedge_count='3072' iicount='290' level='3' stamp='0.416' comment='tiered' hot_count='290'/>
+<writer thread='25160'/>
+<nmethod compile_id='638' compiler='c2' level='4' entry='0x00007fba657153a0' size='1304' address='0x00007fba65715210' relocation_offset='368' insts_offset='400' stub_offset='1072' scopes_data_offset='1104' scopes_pcs_offset='1192' dependencies_offset='1272' nul_chk_table_offset='1280' metadata_offset='1096' method='java.lang.StringUTF16 compress ([CI[BII)I' bytes='50' count='5952' backedge_count='44306' iicount='5952' stamp='0.416'/>
+<make_not_entrant thread='25160' compile_id='474' compiler='c1' level='3' stamp='0.416'/>
+<writer thread='25166'/>
+<nmethod compile_id='687' compiler='c1' level='3' entry='0x00007fba5e3f08e0' size='1416' address='0x00007fba5e3f0710' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1256' scopes_pcs_offset='1312' dependencies_offset='1408' metadata_offset='1216' method='java.util.ArrayList &lt;init&gt; ()V' bytes='12' count='320' iicount='320' stamp='0.417'/>
+<writer thread='25167'/>
+<nmethod compile_id='686' compiler='c1' level='3' entry='0x00007fba5e3f0f00' size='2640' address='0x00007fba5e3f0d10' relocation_offset='368' insts_offset='496' stub_offset='1968' scopes_data_offset='2176' scopes_pcs_offset='2312' dependencies_offset='2584' nul_chk_table_offset='2592' metadata_offset='2152' method='java.util.regex.Matcher reset ()Ljava/util/regex/Matcher;' bytes='128' count='133' backedge_count='2660' iicount='133' stamp='0.417'/>
+<writer thread='25158'/>
+<nmethod compile_id='584' compiler='c2' level='4' entry='0x00007fba65715a20' size='7488' address='0x00007fba65715790' relocation_offset='368' insts_offset='656' stub_offset='4560' scopes_data_offset='4792' scopes_pcs_offset='6336' dependencies_offset='7216' handler_table_offset='7240' nul_chk_table_offset='7360' oops_offset='4640' metadata_offset='4656' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='15144' backedge_count='90337' iicount='15147' stamp='0.417'/>
+<make_not_entrant thread='25158' compile_id='534' compiler='c1' level='3' stamp='0.417'/>
+<writer thread='25168'/>
+<nmethod compile_id='688' compiler='c1' level='3' entry='0x00007fba5e3f1960' size='1848' address='0x00007fba5e3f1790' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1504' scopes_pcs_offset='1608' dependencies_offset='1800' nul_chk_table_offset='1808' metadata_offset='1496' method='java.util.regex.Pattern$Start match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='90' count='298' backedge_count='3119' iicount='298' stamp='0.417'/>
+<writer thread='25110'/>
+<task_queued compile_id='689' method='java.util.ArrayList$SubList$1 next ()Ljava/lang/Object;' bytes='85' count='256' iicount='256' level='3' stamp='0.417' comment='tiered' hot_count='256'/>
+<task_queued compile_id='690' method='java.util.ArrayList$SubList$1 checkForComodification ()V' bytes='26' count='256' iicount='256' level='3' stamp='0.417' comment='tiered' hot_count='256'/>
+<task_queued compile_id='691' method='java.util.regex.Matcher start ()I' bytes='22' count='256' iicount='256' level='3' stamp='0.418' comment='tiered' hot_count='256'/>
+<task_queued compile_id='692' method='java.lang.String subSequence (II)Ljava/lang/CharSequence;' bytes='7' count='256' iicount='256' level='3' stamp='0.418' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='690' compiler='c1' level='3' entry='0x00007fba5e3f20e0' size='1272' address='0x00007fba5e3f1f10' relocation_offset='368' insts_offset='464' stub_offset='880' scopes_data_offset='1064' scopes_pcs_offset='1112' dependencies_offset='1240' nul_chk_table_offset='1248' metadata_offset='1048' method='java.util.ArrayList$SubList$1 checkForComodification ()V' bytes='26' count='261' iicount='261' stamp='0.418'/>
+<writer thread='25166'/>
+<nmethod compile_id='689' compiler='c1' level='3' entry='0x00007fba5e3f26a0' size='2296' address='0x00007fba5e3f2490' relocation_offset='368' insts_offset='528' stub_offset='1616' scopes_data_offset='1848' scopes_pcs_offset='1984' dependencies_offset='2256' nul_chk_table_offset='2264' metadata_offset='1816' method='java.util.ArrayList$SubList$1 next ()Ljava/lang/Object;' bytes='85' count='261' iicount='261' stamp='0.418'/>
+<writer thread='25168'/>
+<nmethod compile_id='691' compiler='c1' level='3' entry='0x00007fba5e3f2fe0' size='1128' address='0x00007fba5e3f2e10' relocation_offset='368' insts_offset='464' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1024' dependencies_offset='1120' metadata_offset='984' method='java.util.regex.Matcher start ()I' bytes='22' count='260' iicount='260' stamp='0.418'/>
+<writer thread='25167'/>
+<nmethod compile_id='692' compiler='c1' level='3' entry='0x00007fba5e3f3440' size='1064' address='0x00007fba5e3f3290' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1056' metadata_offset='952' method='java.lang.String subSequence (II)Ljava/lang/CharSequence;' bytes='7' count='260' iicount='260' stamp='0.419'/>
+<writer thread='25162'/>
+<nmethod compile_id='612' compiler='c2' level='4' entry='0x00007fba657177e0' size='10952' address='0x00007fba65717510' relocation_offset='368' insts_offset='720' stub_offset='7152' scopes_data_offset='7408' scopes_pcs_offset='9680' dependencies_offset='10592' handler_table_offset='10600' nul_chk_table_offset='10816' metadata_offset='7264' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Ljava/lang/String;I)V' bytes='11' count='18545' iicount='18545' stamp='0.419'/>
+<make_not_entrant thread='25162' compile_id='530' compiler='c1' level='3' stamp='0.419'/>
+<writer thread='25164'/>
+<nmethod compile_id='609' compiler='c2' level='4' entry='0x00007fba6571a2e0' size='12048' address='0x00007fba6571a010' relocation_offset='368' insts_offset='720' stub_offset='8368' scopes_data_offset='8616' scopes_pcs_offset='10800' dependencies_offset='11696' handler_table_offset='11704' nul_chk_table_offset='11920' metadata_offset='8480' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (ILjava/lang/String;I)V' bytes='260' count='18631' iicount='18631' stamp='0.420'/>
+<make_not_entrant thread='25164' compile_id='531' compiler='c1' level='3' stamp='0.420'/>
+<writer thread='25110'/>
+<task_queued compile_id='693' method='java.lang.String checkBoundsOffCount (III)V' bytes='61' count='6500' iicount='6500' stamp='0.421' comment='tiered' hot_count='6500'/>
+<writer thread='25164'/>
+<nmethod compile_id='622' compiler='c2' level='4' entry='0x00007fba6571d120' size='752' address='0x00007fba6571cf90' relocation_offset='368' insts_offset='400' stub_offset='560' scopes_data_offset='608' scopes_pcs_offset='664' dependencies_offset='744' oops_offset='584' metadata_offset='592' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='12709' iicount='12710' stamp='0.421'/>
+<make_not_entrant thread='25164' compile_id='539' compiler='c1' level='3' stamp='0.421'/>
+<writer thread='25110'/>
+<task_queued compile_id='694' method='java.util.ArrayDeque size ()I' bytes='17' count='256' iicount='256' level='3' stamp='0.421' comment='tiered' hot_count='256'/>
+<task_queued compile_id='695' method='java.util.ArrayDeque sub (III)I' bytes='14' count='256' iicount='256' level='3' stamp='0.421' comment='tiered' hot_count='256'/>
+<task_queued compile_id='696' method='com.sun.hotspot.tools.compiler.CallSite setEndNodes (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.421' comment='tiered' hot_count='128'/>
+<task_queued compile_id='697' method='com.sun.hotspot.tools.compiler.CallSite setEndLiveNodes (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.421' comment='tiered' hot_count='128'/>
+<task_queued compile_id='698' method='com.sun.hotspot.tools.compiler.CallSite setTimeStamp (D)V' bytes='6' count='128' iicount='128' level='1' stamp='0.421' comment='tiered' hot_count='128'/>
+<writer thread='25164'/>
+<nmethod compile_id='625' compiler='c2' level='4' entry='0x00007fba6571d420' size='640' address='0x00007fba6571d290' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='560' scopes_pcs_offset='584' dependencies_offset='632' metadata_offset='552' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='12812' iicount='12812' stamp='0.421'/>
+<make_not_entrant thread='25164' compile_id='551' compiler='c1' level='3' stamp='0.421'/>
+<writer thread='25110'/>
+<task_queued compile_id='699' method='java.util.ArrayList$SubList$1 hasNext ()Z' bytes='20' count='384' iicount='384' level='3' stamp='0.422' comment='tiered' hot_count='384'/>
+<writer thread='25167'/>
+<nmethod compile_id='696' compiler='c1' level='1' entry='0x00007fba6571d740' size='760' address='0x00007fba6571d590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite setEndNodes (I)V' bytes='6' count='128' iicount='128' stamp='0.422'/>
+<writer thread='25166'/>
+<nmethod compile_id='694' compiler='c1' level='3' entry='0x00007fba5e3f38c0' size='1128' address='0x00007fba5e3f3710' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1024' dependencies_offset='1104' nul_chk_table_offset='1112' metadata_offset='960' method='java.util.ArrayDeque size ()I' bytes='17' count='261' iicount='261' stamp='0.422'/>
+<writer thread='25168'/>
+<nmethod compile_id='695' compiler='c1' level='3' entry='0x00007fba5e3f3d40' size='880' address='0x00007fba5e3f3b90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.util.ArrayDeque sub (III)I' bytes='14' count='264' iicount='264' stamp='0.422'/>
+<writer thread='25110'/>
+<task_queued compile_id='700' method='java.util.HashMap clear ()V' bytes='50' count='107' backedge_count='3072' iicount='107' level='3' stamp='0.422' comment='tiered' hot_count='107'/>
+<writer thread='25166'/>
+<nmethod compile_id='697' compiler='c1' level='1' entry='0x00007fba6571dac0' size='760' address='0x00007fba6571d910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite setEndLiveNodes (I)V' bytes='6' count='132' iicount='132' stamp='0.422'/>
+<writer thread='25168'/>
+<nmethod compile_id='698' compiler='c1' level='1' entry='0x00007fba6571de40' size='760' address='0x00007fba6571dc90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite setTimeStamp (D)V' bytes='6' count='132' iicount='132' stamp='0.422'/>
+<writer thread='25167'/>
+<nmethod compile_id='699' compiler='c1' level='3' entry='0x00007fba5e3f40c0' size='1032' address='0x00007fba5e3f3f10' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='912' scopes_pcs_offset='944' dependencies_offset='1008' nul_chk_table_offset='1016' metadata_offset='896' method='java.util.ArrayList$SubList$1 hasNext ()Z' bytes='20' count='397' iicount='397' stamp='0.422'/>
+<writer thread='25158'/>
+<nmethod compile_id='654' compiler='c2' level='4' entry='0x00007fba6571e1c0' size='1744' address='0x00007fba6571e010' relocation_offset='368' insts_offset='432' stub_offset='1360' scopes_data_offset='1400' scopes_pcs_offset='1512' dependencies_offset='1640' nul_chk_table_offset='1648' metadata_offset='1384' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndex (Ljava/lang/String;)I' bytes='51' count='10719' backedge_count='28211' iicount='10719' stamp='0.422'/>
+<make_not_entrant thread='25158' compile_id='565' compiler='c1' level='3' stamp='0.422'/>
+<writer thread='25110'/>
+<task_queued compile_id='701' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='6414' backedge_count='167' iicount='6414' stamp='0.422' comment='tiered' hot_count='6414'/>
+<task_queued compile_id='702' method='com.sun.hotspot.tools.compiler.LogParser method (Ljava/lang/String;)Lcom/sun/hotspot/tools/compiler/Method;' bytes='23' count='289' iicount='289' level='3' stamp='0.422' comment='tiered' hot_count='289'/>
+<writer thread='25166'/>
+<nmethod compile_id='700' compiler='c1' level='3' entry='0x00007fba5e3f4560' size='1728' address='0x00007fba5e3f4390' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1512' scopes_pcs_offset='1568' dependencies_offset='1696' nul_chk_table_offset='1704' metadata_offset='1504' method='java.util.HashMap clear ()V' bytes='50' count='107' backedge_count='3072' iicount='107' stamp='0.422'/>
+<writer thread='25164'/>
+<nmethod compile_id='669' compiler='c2' level='4' entry='0x00007fba6571e8c0' size='808' address='0x00007fba6571e710' relocation_offset='368' insts_offset='432' stub_offset='592' scopes_data_offset='648' scopes_pcs_offset='680' dependencies_offset='760' handler_table_offset='768' nul_chk_table_offset='792' metadata_offset='632' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='10951' iicount='10951' stamp='0.423'/>
+<make_not_entrant thread='25164' compile_id='546' compiler='c1' level='3' stamp='0.423'/>
+<writer thread='25168'/>
+<nmethod compile_id='702' compiler='c1' level='3' entry='0x00007fba5e3f4c60' size='1760' address='0x00007fba5e3f4a90' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1520' scopes_pcs_offset='1608' dependencies_offset='1736' nul_chk_table_offset='1744' oops_offset='1480' metadata_offset='1488' method='com.sun.hotspot.tools.compiler.LogParser method (Ljava/lang/String;)Lcom/sun/hotspot/tools/compiler/Method;' bytes='23' count='299' iicount='299' stamp='0.423'/>
+<writer thread='25110'/>
+<task_queued compile_id='703' method='com.sun.hotspot.tools.compiler.LogParser sigtype (Ljava/lang/String;)Ljava/lang/String;' bytes='75' count='411' iicount='411' level='3' stamp='0.424' comment='tiered' hot_count='411'/>
+<task_queued compile_id='704' method='java.util.regex.Matcher find ()Z' bytes='69' count='384' iicount='384' level='3' stamp='0.425' comment='tiered' hot_count='384'/>
+<task_queued compile_id='705' method='java.lang.String toString ()Ljava/lang/String;' bytes='2' count='427' iicount='427' level='3' stamp='0.425' comment='tiered' hot_count='427'/>
+<task_queued compile_id='706' method='com.sun.hotspot.tools.compiler.LogParser type (Ljava/lang/String;Ljava/lang/String;)V' bytes='33' count='265' iicount='265' level='3' stamp='0.425' comment='tiered' hot_count='265'/>
+<writer thread='25168'/>
+<nmethod compile_id='705' compiler='c1' level='3' entry='0x00007fba5e3f5340' size='848' address='0x00007fba5e3f5190' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.lang.String toString ()Ljava/lang/String;' bytes='2' count='436' iicount='436' stamp='0.425'/>
+<writer thread='25110'/>
+<task_queued compile_id='707' method='java.lang.String &lt;init&gt; ([CIILjava/lang/Void;)V' bytes='74' count='7426' iicount='7426' stamp='0.425' comment='tiered' hot_count='7426'/>
+<writer thread='25166'/>
+<nmethod compile_id='704' compiler='c1' level='3' entry='0x00007fba5e3f56e0' size='1560' address='0x00007fba5e3f5510' relocation_offset='368' insts_offset='464' stub_offset='1200' scopes_data_offset='1376' scopes_pcs_offset='1424' dependencies_offset='1536' nul_chk_table_offset='1544' metadata_offset='1368' method='java.util.regex.Matcher find ()Z' bytes='69' count='394' iicount='394' stamp='0.425'/>
+<writer thread='25110'/>
+<task_queued compile_id='708' method='com.sun.hotspot.tools.compiler.Method &lt;init&gt; ()V' bytes='5' count='258' iicount='258' level='3' stamp='0.425' comment='tiered' hot_count='258'/>
+<task_queued compile_id='709' method='com.sun.hotspot.tools.compiler.Method setSignature (Ljava/lang/String;)V' bytes='13' count='258' iicount='258' level='3' stamp='0.425' comment='tiered' hot_count='258'/>
+<task_queued compile_id='710' method='com.sun.hotspot.tools.compiler.LogParser type (Ljava/lang/String;)Ljava/lang/String;' bytes='31' count='406' iicount='406' level='3' stamp='0.425' comment='tiered' hot_count='406'/>
+<writer thread='25166'/>
+<nmethod compile_id='708' compiler='c1' level='3' entry='0x00007fba5e3f5d40' size='1000' address='0x00007fba5e3f5b90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='896' scopes_pcs_offset='928' dependencies_offset='992' oops_offset='864' metadata_offset='872' method='com.sun.hotspot.tools.compiler.Method &lt;init&gt; ()V' bytes='5' count='261' iicount='261' stamp='0.425'/>
+<writer thread='25168'/>
+<nmethod compile_id='706' compiler='c1' level='3' entry='0x00007fba5e3f6160' size='1880' address='0x00007fba5e3f5f90' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1576' scopes_pcs_offset='1704' dependencies_offset='1848' nul_chk_table_offset='1856' oops_offset='1544' metadata_offset='1552' method='com.sun.hotspot.tools.compiler.LogParser type (Ljava/lang/String;Ljava/lang/String;)V' bytes='33' count='275' iicount='275' stamp='0.426'/>
+<writer thread='25160'/>
+<nmethod compile_id='682' compiler='c2' level='4' entry='0x00007fba6571ecc0' size='3576' address='0x00007fba6571ea90' relocation_offset='368' insts_offset='560' stub_offset='2064' scopes_data_offset='2200' scopes_pcs_offset='2856' dependencies_offset='3432' handler_table_offset='3448' nul_chk_table_offset='3496' oops_offset='2120' metadata_offset='2128' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='17538' iicount='17538' decompiles='1' unstable_if_traps='1' stamp='0.426'/>
+<make_not_entrant thread='25160' compile_id='621' compiler='c1' level='3' stamp='0.426'/>
+<writer thread='25110'/>
+<task_queued compile_id='711' method='java.util.ArrayDeque peek ()Ljava/lang/Object;' bytes='5' count='384' iicount='384' level='3' stamp='0.426' comment='tiered' hot_count='384'/>
+<task_queued compile_id='712' method='java.util.ArrayDeque peekFirst ()Ljava/lang/Object;' bytes='12' count='384' iicount='384' level='3' stamp='0.426' comment='tiered' hot_count='384'/>
+<writer thread='25166'/>
+<nmethod compile_id='710' compiler='c1' level='3' entry='0x00007fba5e3f6920' size='2856' address='0x00007fba5e3f6710' relocation_offset='368' insts_offset='528' stub_offset='2192' scopes_data_offset='2432' scopes_pcs_offset='2608' dependencies_offset='2816' nul_chk_table_offset='2824' oops_offset='2392' metadata_offset='2408' method='com.sun.hotspot.tools.compiler.LogParser type (Ljava/lang/String;)Ljava/lang/String;' bytes='31' count='410' iicount='410' stamp='0.426'/>
+<writer thread='25168'/>
+<nmethod compile_id='709' compiler='c1' level='3' entry='0x00007fba5e3f7440' size='1240' address='0x00007fba5e3f7290' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1096' scopes_pcs_offset='1136' dependencies_offset='1216' nul_chk_table_offset='1224' oops_offset='1080' metadata_offset='1088' method='com.sun.hotspot.tools.compiler.Method setSignature (Ljava/lang/String;)V' bytes='13' count='266' iicount='266' stamp='0.426'/>
+<writer thread='25166'/>
+<nmethod compile_id='711' compiler='c1' level='3' entry='0x00007fba5e3f7940' size='1272' address='0x00007fba5e3f7790' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1112' dependencies_offset='1240' nul_chk_table_offset='1248' metadata_offset='1024' method='java.util.ArrayDeque peek ()Ljava/lang/Object;' bytes='5' count='389' iicount='389' stamp='0.427'/>
+<writer thread='25168'/>
+<nmethod compile_id='712' compiler='c1' level='3' entry='0x00007fba5e3f7ec0' size='1104' address='0x00007fba5e3f7d10' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='912' scopes_pcs_offset='960' dependencies_offset='1072' nul_chk_table_offset='1080' metadata_offset='896' method='java.util.ArrayDeque peekFirst ()Ljava/lang/Object;' bytes='12' count='391' iicount='391' stamp='0.427'/>
+<writer thread='25160'/>
+<nmethod compile_id='693' compiler='c2' level='4' entry='0x00007fba6571faa0' size='704' address='0x00007fba6571f910' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='560' scopes_pcs_offset='616' dependencies_offset='696' metadata_offset='552' method='java.lang.String checkBoundsOffCount (III)V' bytes='61' count='7714' iicount='7714' stamp='0.427'/>
+<make_not_entrant thread='25160' compile_id='587' compiler='c1' level='3' stamp='0.427'/>
+<writer thread='25110'/>
+<task_queued compile_id='713' method='java.lang.String startsWith (Ljava/lang/String;I)Z' bytes='138' count='7367' backedge_count='7162' iicount='7367' stamp='0.427' comment='tiered' hot_count='7367'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='607' compiler='c2' level='4' stamp='0.427'>
+<jvms bci='14' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='6243' iicount='6243'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='607' compiler='c2' level='4' stamp='0.427'/>
+<writer thread='25160'/>
+<nmethod compile_id='646' compiler='c2' level='4' entry='0x00007fba6571fda0' size='616' address='0x00007fba6571fc10' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='544' scopes_pcs_offset='560' dependencies_offset='608' metadata_offset='520' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='10284' iicount='10284' stamp='0.428'/>
+<make_not_entrant thread='25160' compile_id='124' compiler='c1' level='3' stamp='0.428'/>
+<writer thread='25110'/>
+<task_queued compile_id='714' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='6280' iicount='6280' decompiles='1' unstable_if_traps='1' level='3' stamp='0.428' comment='tiered' hot_count='6280'/>
+<writer thread='25167'/>
+<nmethod compile_id='703' compiler='c1' level='3' entry='0x00007fba5e3f84e0' size='8296' address='0x00007fba5e3f8190' relocation_offset='368' insts_offset='848' stub_offset='6288' scopes_data_offset='6808' scopes_pcs_offset='7512' dependencies_offset='8232' nul_chk_table_offset='8240' oops_offset='6632' metadata_offset='6664' method='com.sun.hotspot.tools.compiler.LogParser sigtype (Ljava/lang/String;)Ljava/lang/String;' bytes='75' count='443' iicount='443' stamp='0.428'/>
+<writer thread='25110'/>
+<task_queued compile_id='715' method='com.sun.hotspot.tools.compiler.Compilation getMethod ()Lcom/sun/hotspot/tools/compiler/Method;' bytes='5' count='128' iicount='128' level='1' stamp='0.428' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='715' compiler='c1' level='1' entry='0x00007fba65720040' size='760' address='0x00007fba6571fe90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Compilation getMethod ()Lcom/sun/hotspot/tools/compiler/Method;' bytes='5' count='129' iicount='129' stamp='0.428'/>
+<writer thread='25158'/>
+<nmethod compile_id='701' compiler='c2' level='4' entry='0x00007fba657203e0' size='2728' address='0x00007fba65720210' relocation_offset='368' insts_offset='464' stub_offset='1904' scopes_data_offset='1960' scopes_pcs_offset='2392' dependencies_offset='2664' handler_table_offset='2672' nul_chk_table_offset='2696' metadata_offset='1928' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='6718' backedge_count='173' iicount='6718' stamp='0.428'/>
+<make_not_entrant thread='25158' compile_id='70' compiler='c1' level='3' stamp='0.428'/>
+<writer thread='25169'/>
+<nmethod compile_id='595' compiler='c1' level='3' entry='0x00007fba5e3fcb80' size='146392' address='0x00007fba5e3fa210' relocation_offset='368' insts_offset='10608' stub_offset='107920' scopes_data_offset='114160' scopes_pcs_offset='128392' dependencies_offset='143736' handler_table_offset='143776' nul_chk_table_offset='144616' oops_offset='113400' metadata_offset='113696' method='com.sun.hotspot.tools.compiler.LogParser startElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V' bytes='3082' count='3973' backedge_count='238' iicount='3973' stamp='0.430'/>
+<writer thread='25166'/>
+<nmethod compile_id='714' compiler='c1' level='3' entry='0x00007fba5e41e040' size='2960' address='0x00007fba5e41de10' relocation_offset='368' insts_offset='560' stub_offset='2128' scopes_data_offset='2376' scopes_pcs_offset='2528' dependencies_offset='2864' nul_chk_table_offset='2872' metadata_offset='2360' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='7125' iicount='7125' decompiles='1' unstable_if_traps='1' stamp='0.430'/>
+<writer thread='25110'/>
+<task_queued compile_id='716' method='java.util.ArrayList$SubList checkForComodification ()V' bytes='23' count='256' iicount='256' level='3' stamp='0.431' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='716' compiler='c1' level='3' entry='0x00007fba5e41ebe0' size='1200' address='0x00007fba5e41ea10' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1064' dependencies_offset='1176' nul_chk_table_offset='1184' metadata_offset='1016' method='java.util.ArrayList$SubList checkForComodification ()V' bytes='23' count='258' iicount='258' stamp='0.431'/>
+<writer thread='25110'/>
+<task_queued compile_id='717' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='17' count='422' iicount='422' level='3' stamp='0.432' comment='tiered' hot_count='422'/>
+<task_queued compile_id='718' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append ([CII)V' bytes='110' count='422' iicount='422' level='3' stamp='0.432' comment='tiered' hot_count='422'/>
+<writer thread='25158'/>
+<nmethod compile_id='707' compiler='c2' level='4' entry='0x00007fba65720ea0' size='1536' address='0x00007fba65720d10' relocation_offset='368' insts_offset='400' stub_offset='1232' scopes_data_offset='1280' scopes_pcs_offset='1408' dependencies_offset='1504' handler_table_offset='1512' metadata_offset='1256' method='java.lang.String &lt;init&gt; ([CIILjava/lang/Void;)V' bytes='74' count='8367' iicount='8367' stamp='0.432'/>
+<make_not_entrant thread='25158' compile_id='527' compiler='c1' level='3' stamp='0.432'/>
+<writer thread='25168'/>
+<nmethod compile_id='717' compiler='c1' level='3' entry='0x00007fba5e41f0c0' size='1008' address='0x00007fba5e41ef10' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='872' scopes_pcs_offset='904' dependencies_offset='984' nul_chk_table_offset='992' metadata_offset='856' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='17' count='427' iicount='427' stamp='0.432'/>
+<writer thread='25169'/>
+<nmethod compile_id='718' compiler='c1' level='3' entry='0x00007fba5e41f4e0' size='2024' address='0x00007fba5e41f310' relocation_offset='368' insts_offset='464' stub_offset='1584' scopes_data_offset='1776' scopes_pcs_offset='1888' dependencies_offset='2000' nul_chk_table_offset='2008' metadata_offset='1768' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append ([CII)V' bytes='110' count='427' iicount='427' stamp='0.432'/>
+<writer thread='25160'/>
+<nmethod compile_id='713' compiler='c2' level='4' entry='0x00007fba65721540' size='1376' address='0x00007fba65721390' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1016' scopes_pcs_offset='1192' dependencies_offset='1336' nul_chk_table_offset='1344' metadata_offset='1000' method='java.lang.String startsWith (Ljava/lang/String;I)Z' bytes='138' count='7630' backedge_count='7172' iicount='7630' stamp='0.433'/>
+<make_not_entrant thread='25160' compile_id='501' compiler='c1' level='3' stamp='0.433'/>
+<writer thread='25162'/>
+<nmethod compile_id='677' compiler='c2' level='4' entry='0x00007fba65721b00' size='4536' address='0x00007fba65721910' relocation_offset='368' insts_offset='496' stub_offset='3152' scopes_data_offset='3264' scopes_pcs_offset='3944' dependencies_offset='4344' handler_table_offset='4352' nul_chk_table_offset='4400' metadata_offset='3176' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='56' count='13274' iicount='13274' stamp='0.433'/>
+<make_not_entrant thread='25162' compile_id='567' compiler='c1' level='3' stamp='0.433'/>
+<writer thread='25158'/>
+<nmethod compile_id='683' compiler='c2' level='4' entry='0x00007fba65722ca0' size='960' address='0x00007fba65722b10' relocation_offset='368' insts_offset='400' stub_offset='688' scopes_data_offset='736' scopes_pcs_offset='856' dependencies_offset='952' oops_offset='712' metadata_offset='720' method='java.lang.CharacterDataLatin1 digit (II)I' bytes='91' count='9576' iicount='9576' stamp='0.433'/>
+<make_not_entrant thread='25158' compile_id='559' compiler='c1' level='3' stamp='0.433'/>
+<writer thread='25110'/>
+<task_queued compile_id='719' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkNodeCount (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;)V' bytes='22' count='5165' iicount='5165' stamp='0.435' comment='tiered' hot_count='5165'/>
+<task_queued compile_id='720' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;)Ljava/lang/String;' bytes='39' count='6270' iicount='6270' stamp='0.436' comment='tiered' hot_count='6270'/>
+<writer thread='25160'/>
+<nmethod compile_id='719' compiler='c2' level='4' entry='0x00007fba657230a0' size='680' address='0x00007fba65722f10' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='560' scopes_pcs_offset='592' dependencies_offset='656' nul_chk_table_offset='664' metadata_offset='552' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkNodeCount (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;)V' bytes='22' count='5204' iicount='5204' stamp='0.436'/>
+<make_not_entrant thread='25160' compile_id='586' compiler='c1' level='3' stamp='0.436'/>
+<writer thread='25110'/>
+<task_queued compile_id='721' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5632' iicount='5632' stamp='0.436' comment='tiered' hot_count='5632'/>
+<task_queued compile_id='722' method='java.util.regex.Pattern$LastNode match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='45' count='256' iicount='256' level='3' stamp='0.436' comment='tiered' hot_count='256'/>
+<task_queued compile_id='723' method='java.util.regex.Matcher end ()I' bytes='22' count='256' iicount='256' level='3' stamp='0.436' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='722' compiler='c1' level='3' entry='0x00007fba5e41fcc0' size='1216' address='0x00007fba5e41fb10' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1000' scopes_pcs_offset='1048' dependencies_offset='1176' nul_chk_table_offset='1184' metadata_offset='992' method='java.util.regex.Pattern$LastNode match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='45' count='258' iicount='258' stamp='0.437'/>
+<writer thread='25167'/>
+<nmethod compile_id='723' compiler='c1' level='3' entry='0x00007fba5e4201e0' size='1128' address='0x00007fba5e420010' relocation_offset='368' insts_offset='464' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1024' dependencies_offset='1120' metadata_offset='984' method='java.util.regex.Matcher end ()I' bytes='22' count='258' iicount='258' stamp='0.437'/>
+<writer thread='25160'/>
+<nmethod compile_id='720' compiler='c2' level='4' entry='0x00007fba657233c0' size='1064' address='0x00007fba65723210' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='768' scopes_pcs_offset='880' dependencies_offset='1008' handler_table_offset='1016' nul_chk_table_offset='1040' oops_offset='728' metadata_offset='736' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;)Ljava/lang/String;' bytes='39' count='6377' iicount='6377' stamp='0.437'/>
+<make_not_entrant thread='25160' compile_id='624' compiler='c1' level='3' stamp='0.437'/>
+<writer thread='25165'/>
+<nmethod compile_id='662' compile_kind='osr' compiler='c2' level='4' entry='0x00007fba657239a0' size='7864' address='0x00007fba65723690' relocation_offset='368' insts_offset='784' stub_offset='4464' scopes_data_offset='4872' scopes_pcs_offset='6424' dependencies_offset='7240' handler_table_offset='7248' nul_chk_table_offset='7800' metadata_offset='4832' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='83' backedge_count='335842' iicount='83' stamp='0.437'/>
+<make_not_entrant thread='25165' compile_id='601' compile_kind='osr' compiler='c1' level='3' stamp='0.437'/>
+<writer thread='25110'/>
+<task_queued compile_id='724' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanContent (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='690' count='5333' backedge_count='16385' iicount='5333' stamp='0.438' comment='tiered' hot_count='5333'/>
+<task_queued compile_id='725' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getCharacterData ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='17' count='5377' iicount='5377' stamp='0.439' comment='tiered' hot_count='5377'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='648' compiler='c2' level='4' count='1' stamp='0.440'>
+<jvms bci='14' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='23867' backedge_count='6362' iicount='23867' decompiles='1' unstable_if_traps='1'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='648' compiler='c2' level='4' stamp='0.440'/>
+<writer thread='25162'/>
+<nmethod compile_id='721' compiler='c2' level='4' entry='0x00007fba65725760' size='1840' address='0x00007fba65725590' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1224' scopes_pcs_offset='1520' dependencies_offset='1776' nul_chk_table_offset='1784' oops_offset='1160' metadata_offset='1168' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5885' iicount='5885' stamp='0.440'/>
+<make_not_entrant thread='25162' compile_id='633' compiler='c1' level='3' stamp='0.440'/>
+<writer thread='25110'/>
+<task_queued compile_id='726' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='85' backedge_count='335922' iicount='85' stamp='0.440' comment='tiered' hot_count='85'/>
+<deoptimized thread='25110' reason='constraint' pc='0x00007fba5e3c9465' compile_id='642' compiler='c1' level='3'>
+<jvms bci='103' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='85' backedge_count='335922' iicount='85'/>
+</deoptimized>
+<writer thread='25160'/>
+<nmethod compile_id='725' compiler='c2' level='4' entry='0x00007fba65725ea0' size='600' address='0x00007fba65725d10' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='552' scopes_pcs_offset='560' dependencies_offset='592' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getCharacterData ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='17' count='5395' iicount='5395' stamp='0.440'/>
+<make_not_entrant thread='25160' compile_id='570' compiler='c1' level='3' stamp='0.440'/>
+<writer thread='25110'/>
+<task_queued compile_id='727' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='23971' backedge_count='6362' iicount='23971' decompiles='2' unstable_if_traps='2' level='3' stamp='0.440' comment='tiered' hot_count='23971'/>
+<writer thread='25163'/>
+<nmethod compile_id='614' compiler='c2' level='4' entry='0x00007fba65726320' size='13592' address='0x00007fba65725f90' relocation_offset='368' insts_offset='912' stub_offset='8368' scopes_data_offset='8864' scopes_pcs_offset='11504' dependencies_offset='13040' handler_table_offset='13096' nul_chk_table_offset='13360' oops_offset='8528' metadata_offset='8560' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='15389' iicount='15389' stamp='0.440'/>
+<make_not_entrant thread='25163' compile_id='541' compiler='c1' level='3' stamp='0.440'/>
+<writer thread='25168'/>
+<nmethod compile_id='727' compiler='c1' level='3' entry='0x00007fba5e420700' size='5056' address='0x00007fba5e420490' relocation_offset='368' insts_offset='624' stub_offset='3696' scopes_data_offset='3952' scopes_pcs_offset='4224' dependencies_offset='4864' nul_chk_table_offset='4872' metadata_offset='3928' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='24473' backedge_count='6363' iicount='24473' decompiles='2' unstable_if_traps='2' stamp='0.442'/>
+<writer thread='25110'/>
+<task_queued compile_id='728' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='4353' backedge_count='15218' iicount='4353' stamp='0.443' comment='tiered' hot_count='4353'/>
+<deoptimized thread='25110' reason='constraint' pc='0x00007fba5e3c9465' compile_id='642' compiler='c1' level='3'>
+<jvms bci='103' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='87' backedge_count='344114' iicount='87'/>
+</deoptimized>
+<task_queued compile_id='729' method='com.sun.org.apache.xerces.internal.impl.XMLScanner resolveCharacter (Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/util/XMLStringBuffer;)Z' bytes='109' count='260' iicount='260' level='3' stamp='0.444' comment='tiered' hot_count='260'/>
+<task_queued compile_id='730' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append (C)V' bytes='87' count='262' iicount='262' level='3' stamp='0.445' comment='tiered' hot_count='262'/>
+<writer thread='25169'/>
+<nmethod compile_id='730' compiler='c1' level='3' entry='0x00007fba5e421a60' size='1704' address='0x00007fba5e421890' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1440' scopes_pcs_offset='1520' dependencies_offset='1664' nul_chk_table_offset='1672' metadata_offset='1432' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append (C)V' bytes='87' count='263' iicount='263' stamp='0.445'/>
+<writer thread='25166'/>
+<nmethod compile_id='729' compiler='c1' level='3' entry='0x00007fba5e4221c0' size='2616' address='0x00007fba5e421f90' relocation_offset='368' insts_offset='560' stub_offset='1840' scopes_data_offset='2128' scopes_pcs_offset='2224' dependencies_offset='2528' nul_chk_table_offset='2536' metadata_offset='2104' method='com.sun.org.apache.xerces.internal.impl.XMLScanner resolveCharacter (Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/util/XMLStringBuffer;)Z' bytes='109' count='261' iicount='261' stamp='0.445'/>
+<writer thread='25110'/>
+<task_queued compile_id='731' method='java.nio.Buffer &lt;init&gt; (IIII)V' bytes='99' count='256' iicount='256' level='3' stamp='0.447' comment='tiered' hot_count='256'/>
+<deoptimized thread='25110' reason='constraint' pc='0x00007fba5e3c9465' compile_id='642' compiler='c1' level='3'>
+<jvms bci='103' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='89' backedge_count='352306' iicount='89'/>
+</deoptimized>
+<writer thread='25167'/>
+<nmethod compile_id='731' compiler='c1' level='3' entry='0x00007fba5e422d00' size='6192' address='0x00007fba5e422a10' relocation_offset='368' insts_offset='752' stub_offset='4720' scopes_data_offset='5168' scopes_pcs_offset='5640' dependencies_offset='6168' nul_chk_table_offset='6176' oops_offset='5064' metadata_offset='5088' method='java.nio.Buffer &lt;init&gt; (IIII)V' bytes='99' count='256' iicount='256' stamp='0.449'/>
+<writer thread='25110'/>
+<deoptimized thread='25110' reason='constraint' pc='0x00007fba5e3c9465' compile_id='642' compiler='c1' level='3'>
+<jvms bci='103' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='91' backedge_count='360498' iicount='91'/>
+</deoptimized>
+<writer thread='25161'/>
+<nmethod compile_id='623' compiler='c2' level='4' entry='0x00007fba65729820' size='16336' address='0x00007fba65729510' relocation_offset='368' insts_offset='784' stub_offset='12432' scopes_data_offset='12728' scopes_pcs_offset='14552' dependencies_offset='15672' handler_table_offset='15696' nul_chk_table_offset='16080' metadata_offset='12576' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='679' count='16523' backedge_count='36' iicount='16523' stamp='0.451'/>
+<make_not_entrant thread='25161' compile_id='548' compiler='c1' level='3' stamp='0.451'/>
+<writer thread='25158'/>
+<nmethod compile_id='724' compiler='c2' level='4' entry='0x00007fba6572d740' size='3976' address='0x00007fba6572d510' relocation_offset='368' insts_offset='560' stub_offset='2544' scopes_data_offset='2648' scopes_pcs_offset='3264' dependencies_offset='3808' handler_table_offset='3816' nul_chk_table_offset='3888' metadata_offset='2616' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanContent (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='690' count='6079' backedge_count='18626' iicount='6079' stamp='0.451'/>
+<make_not_entrant thread='25158' compile_id='592' compiler='c1' level='3' stamp='0.451'/>
+<writer thread='25110'/>
+<task_queued compile_id='732' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='28963' backedge_count='7643' iicount='28963' decompiles='2' unstable_if_traps='2' stamp='0.453' comment='tiered' hot_count='28963'/>
+<task_queued compile_id='733' method='java.lang.Integer parseInt (Ljava/lang/String;)I' bytes='7' count='5632' iicount='5632' stamp='0.453' comment='tiered' hot_count='5632'/>
+<deoptimized thread='25110' reason='constraint' pc='0x00007fba5e3c9465' compile_id='642' compiler='c1' level='3'>
+<jvms bci='103' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='93' backedge_count='368690' iicount='93'/>
+</deoptimized>
+<task_queued compile_id='734' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser characters (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='78' count='6403' iicount='6403' stamp='0.457' comment='tiered' hot_count='6403'/>
+<deoptimized thread='25110' reason='constraint' pc='0x00007fba5e3c9465' compile_id='642' compiler='c1' level='3'>
+<jvms bci='103' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='95' backedge_count='376882' iicount='95'/>
+</deoptimized>
+<writer thread='25163'/>
+<nmethod compile_id='732' compiler='c2' level='4' entry='0x00007fba6572e6e0' size='2112' address='0x00007fba6572e510' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1440' scopes_pcs_offset='1720' dependencies_offset='2008' handler_table_offset='2016' nul_chk_table_offset='2064' metadata_offset='1416' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='30897' backedge_count='8195' iicount='30898' decompiles='2' unstable_if_traps='2' stamp='0.457'/>
+<make_not_entrant thread='25163' compile_id='727' compiler='c1' level='3' stamp='0.457'/>
+<writer thread='25161'/>
+<nmethod compile_id='734' compiler='c2' level='4' entry='0x00007fba6572ef40' size='992' address='0x00007fba6572ed90' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='752' scopes_pcs_offset='848' dependencies_offset='960' nul_chk_table_offset='968' oops_offset='712' metadata_offset='720' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser characters (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='78' count='6474' iicount='6474' stamp='0.458'/>
+<make_not_entrant thread='25161' compile_id='568' compiler='c1' level='3' stamp='0.458'/>
+<writer thread='25160'/>
+<nmethod compile_id='733' compiler='c2' level='4' entry='0x00007fba6572f340' size='2112' address='0x00007fba6572f190' relocation_offset='368' insts_offset='432' stub_offset='1168' scopes_data_offset='1280' scopes_pcs_offset='1856' dependencies_offset='2080' nul_chk_table_offset='2088' metadata_offset='1192' method='java.lang.Integer parseInt (Ljava/lang/String;)I' bytes='7' count='5988' iicount='5988' stamp='0.458'/>
+<make_not_entrant thread='25160' compile_id='636' compiler='c1' level='3' stamp='0.458'/>
+<writer thread='25162'/>
+<nmethod compile_id='726' compiler='c2' level='4' entry='0x00007fba6572fd40' size='8264' address='0x00007fba6572fa10' relocation_offset='368' insts_offset='816' stub_offset='4560' scopes_data_offset='5000' scopes_pcs_offset='6712' dependencies_offset='7592' handler_table_offset='7600' nul_chk_table_offset='8200' metadata_offset='4960' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='95' backedge_count='377889' iicount='95' stamp='0.459'/>
+<make_not_entrant thread='25162' compile_id='642' compiler='c1' level='3' stamp='0.459'/>
+<writer thread='25110'/>
+<task_queued compile_id='735' method='java.util.regex.Pattern matcher (Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;' bytes='44' count='256' iicount='256' level='3' stamp='0.459' comment='tiered' hot_count='256'/>
+<task_queued compile_id='736' method='java.util.regex.Matcher &lt;init&gt; (Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V' bytes='95' count='256' iicount='256' level='3' stamp='0.459' comment='tiered' hot_count='256'/>
+<task_queued compile_id='737' method='java.util.regex.Pattern split (Ljava/lang/CharSequence;I)[Ljava/lang/String;' bytes='290' count='257' backedge_count='325' iicount='257' level='3' stamp='0.460' comment='tiered' hot_count='257'/>
+<task_queued compile_id='738' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='11528' iicount='11528' decompiles='1' unstable_if_traps='1' stamp='0.460' comment='tiered' hot_count='11528'/>
+<writer thread='25168'/>
+<nmethod compile_id='735' compiler='c1' level='3' entry='0x00007fba5e424460' size='1824' address='0x00007fba5e424290' relocation_offset='368' insts_offset='464' stub_offset='1392' scopes_data_offset='1584' scopes_pcs_offset='1680' dependencies_offset='1792' handler_table_offset='1800' metadata_offset='1576' method='java.util.regex.Pattern matcher (Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;' bytes='44' count='258' iicount='258' stamp='0.460'/>
+<writer thread='25169'/>
+<nmethod compile_id='736' compiler='c1' level='3' entry='0x00007fba5e424c00' size='2616' address='0x00007fba5e424a10' relocation_offset='368' insts_offset='496' stub_offset='2128' scopes_data_offset='2320' scopes_pcs_offset='2432' dependencies_offset='2592' nul_chk_table_offset='2600' metadata_offset='2296' method='java.util.regex.Matcher &lt;init&gt; (Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V' bytes='95' count='258' iicount='258' stamp='0.460'/>
+<writer thread='25110'/>
+<task_queued compile_id='739' method='java.nio.ByteBuffer arrayOffset ()I' bytes='35' count='369' iicount='369' level='3' stamp='0.461' comment='tiered' hot_count='369'/>
+<writer thread='25167'/>
+<nmethod compile_id='739' compiler='c1' level='3' entry='0x00007fba5e425660' size='1496' address='0x00007fba5e425490' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1264' scopes_pcs_offset='1312' dependencies_offset='1472' nul_chk_table_offset='1480' metadata_offset='1256' method='java.nio.ByteBuffer arrayOffset ()I' bytes='35' count='371' iicount='371' stamp='0.461'/>
+<writer thread='25159'/>
+<nmethod compile_id='610' compiler='c2' level='4' entry='0x00007fba65731dc0' size='13248' address='0x00007fba65731a90' relocation_offset='368' insts_offset='816' stub_offset='8592' scopes_data_offset='8880' scopes_pcs_offset='11576' dependencies_offset='12824' handler_table_offset='12832' nul_chk_table_offset='13048' metadata_offset='8704' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='253' count='15167' iicount='15167' stamp='0.462'/>
+<make_not_entrant thread='25159' compile_id='538' compiler='c1' level='3' stamp='0.462'/>
+<writer thread='25110'/>
+<task_queued compile_id='740' method='java.lang.StringBuilder &lt;init&gt; (Ljava/lang/String;)V' bytes='18' count='256' iicount='256' level='3' stamp='0.462' comment='tiered' hot_count='256'/>
+<task_queued compile_id='741' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='6416' iicount='6416' stamp='0.462' comment='tiered' hot_count='6416'/>
+<writer thread='25169'/>
+<nmethod compile_id='740' compiler='c1' level='3' entry='0x00007fba5e425c80' size='2040' address='0x00007fba5e425a90' relocation_offset='368' insts_offset='496' stub_offset='1520' scopes_data_offset='1736' scopes_pcs_offset='1848' dependencies_offset='2008' nul_chk_table_offset='2016' metadata_offset='1704' method='java.lang.StringBuilder &lt;init&gt; (Ljava/lang/String;)V' bytes='18' count='257' iicount='257' stamp='0.462'/>
+<writer thread='25158'/>
+<nmethod compile_id='738' compiler='c2' level='4' entry='0x00007fba65735040' size='1312' address='0x00007fba65734e90' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='936' scopes_pcs_offset='1096' dependencies_offset='1256' handler_table_offset='1264' nul_chk_table_offset='1288' metadata_offset='920' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='11781' iicount='11781' decompiles='1' unstable_if_traps='1' stamp='0.462'/>
+<make_not_entrant thread='25158' compile_id='714' compiler='c1' level='3' stamp='0.462'/>
+<writer thread='25166'/>
+<nmethod compile_id='737' compiler='c1' level='3' entry='0x00007fba5e4268a0' size='19896' address='0x00007fba5e426310' relocation_offset='368' insts_offset='1424' stub_offset='14960' scopes_data_offset='15704' scopes_pcs_offset='17656' dependencies_offset='19656' nul_chk_table_offset='19664' metadata_offset='15560' method='java.util.regex.Pattern split (Ljava/lang/CharSequence;I)[Ljava/lang/String;' bytes='290' count='268' backedge_count='345' iicount='268' stamp='0.463'/>
+<writer thread='25110'/>
+<task_queued compile_id='742' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='5135' iicount='5135' stamp='0.465' comment='tiered' hot_count='5135'/>
+<task_queued compile_id='743' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack nextElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='129' count='5378' iicount='5378' stamp='0.466' comment='tiered' hot_count='5378'/>
+<task_queued compile_id='744' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl checkDepth (Ljava/lang/String;)V' bytes='100' count='5394' iicount='5394' stamp='0.466' comment='tiered' hot_count='5394'/>
+<task_queued compile_id='745' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser startElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='318' count='5403' iicount='5403' stamp='0.467' comment='tiered' hot_count='5403'/>
+<task_queued compile_id='746' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack popElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='59' count='5403' iicount='5403' stamp='0.467' comment='tiered' hot_count='5403'/>
+<writer thread='25161'/>
+<nmethod compile_id='743' compiler='c2' level='4' entry='0x00007fba657355a0' size='880' address='0x00007fba65735410' relocation_offset='368' insts_offset='400' stub_offset='624' scopes_data_offset='656' scopes_pcs_offset='736' dependencies_offset='848' nul_chk_table_offset='856' metadata_offset='648' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack nextElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='129' count='5416' iicount='5416' stamp='0.467'/>
+<make_not_entrant thread='25161' compile_id='574' compiler='c1' level='3' stamp='0.467'/>
+<writer thread='25158'/>
+<nmethod compile_id='746' compiler='c2' level='4' entry='0x00007fba65735920' size='896' address='0x00007fba65735790' relocation_offset='368' insts_offset='400' stub_offset='656' scopes_data_offset='688' scopes_pcs_offset='752' dependencies_offset='864' nul_chk_table_offset='872' metadata_offset='680' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack popElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='59' count='5468' iicount='5468' stamp='0.468'/>
+<make_not_entrant thread='25158' compile_id='600' compiler='c1' level='3' stamp='0.468'/>
+<writer thread='25164'/>
+<nmethod compile_id='670' compiler='c2' level='4' entry='0x00007fba657362a0' size='16176' address='0x00007fba65735b90' relocation_offset='368' consts_offset='1520' insts_offset='1808' stub_offset='9392' scopes_data_offset='10400' scopes_pcs_offset='12080' dependencies_offset='14560' handler_table_offset='14624' nul_chk_table_offset='15824' oops_offset='10072' metadata_offset='10128' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='18088' iicount='18088' stamp='0.469'/>
+<make_not_entrant thread='25164' compile_id='547' compiler='c1' level='3' stamp='0.469'/>
+<writer thread='25110'/>
+<task_queued compile_id='747' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser endElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='108' count='5516' iicount='5516' stamp='0.469' comment='tiered' hot_count='5516'/>
+<writer thread='25163'/>
+<nmethod compile_id='741' compiler='c2' level='4' entry='0x00007fba65739ce0' size='2872' address='0x00007fba65739b10' relocation_offset='368' insts_offset='464' stub_offset='2000' scopes_data_offset='2072' scopes_pcs_offset='2520' dependencies_offset='2792' handler_table_offset='2800' nul_chk_table_offset='2848' metadata_offset='2024' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='6623' iicount='6623' stamp='0.469'/>
+<make_not_entrant thread='25163' compile_id='93' compiler='c1' level='3' stamp='0.469'/>
+<writer thread='25110'/>
+<task_queued compile_id='748' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='5532' iicount='5532' stamp='0.469' comment='tiered' hot_count='5532'/>
+<writer thread='25160'/>
+<nmethod compile_id='744' compiler='c2' level='4' entry='0x00007fba6573a860' size='1744' address='0x00007fba6573a690' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1184' scopes_pcs_offset='1424' dependencies_offset='1664' handler_table_offset='1672' nul_chk_table_offset='1696' oops_offset='1144' metadata_offset='1152' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl checkDepth (Ljava/lang/String;)V' bytes='100' count='5555' iicount='5555' stamp='0.470'/>
+<make_not_entrant thread='25160' compile_id='577' compiler='c1' level='3' stamp='0.470'/>
+<writer thread='25110'/>
+<task_queued compile_id='749' method='com.sun.hotspot.tools.compiler.LogParser startElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V' bytes='3082' count='5572' backedge_count='362' iicount='5572' stamp='0.470' comment='tiered' hot_count='5572'/>
+<writer thread='25162'/>
+<nmethod compile_id='745' compiler='c2' level='4' entry='0x00007fba6573af60' size='2152' address='0x00007fba6573ad90' relocation_offset='368' insts_offset='464' stub_offset='1520' scopes_data_offset='1608' scopes_pcs_offset='1832' dependencies_offset='2056' handler_table_offset='2064' nul_chk_table_offset='2128' oops_offset='1560' metadata_offset='1576' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser startElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='318' count='5616' iicount='5616' stamp='0.471'/>
+<make_not_entrant thread='25162' compile_id='578' compiler='c1' level='3' stamp='0.471'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='614' compiler='c2' level='4' stamp='0.471'>
+<jvms bci='69' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='15150' backedge_count='90353' iicount='15150'/>
+<jvms bci='32' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='15390' iicount='15390'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='614' compiler='c2' level='4' stamp='0.471'/>
+<task_queued compile_id='750' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='15429' iicount='15429' decompiles='1' level='3' stamp='0.472' comment='tiered' hot_count='15429'/>
+<writer thread='25163'/>
+<nmethod compile_id='747' compiler='c2' level='4' entry='0x00007fba6573b7e0' size='1720' address='0x00007fba6573b610' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1224' scopes_pcs_offset='1416' dependencies_offset='1624' handler_table_offset='1632' nul_chk_table_offset='1696' oops_offset='1176' metadata_offset='1192' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser endElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='108' count='5643' iicount='5643' stamp='0.472'/>
+<make_not_entrant thread='25163' compile_id='581' compiler='c1' level='3' stamp='0.472'/>
+<writer thread='25110'/>
+<task_queued compile_id='751' method='java.lang.String getBytes ([BIB)V' bytes='44' count='5379' iicount='5379' stamp='0.472' comment='tiered' hot_count='5379'/>
+<writer thread='25159'/>
+<nmethod compile_id='742' compiler='c2' level='4' entry='0x00007fba6573bec0' size='2664' address='0x00007fba6573bd10' relocation_offset='368' insts_offset='432' stub_offset='1840' scopes_data_offset='1936' scopes_pcs_offset='2360' dependencies_offset='2584' handler_table_offset='2592' nul_chk_table_offset='2616' metadata_offset='1864' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='5366' iicount='5366' stamp='0.472'/>
+<make_not_entrant thread='25159' compile_id='184' compiler='c1' level='3' stamp='0.472'/>
+<writer thread='25168'/>
+<nmethod compile_id='750' compiler='c1' level='3' entry='0x00007fba5e42b440' size='9448' address='0x00007fba5e42b110' relocation_offset='368' insts_offset='816' stub_offset='7184' scopes_data_offset='7656' scopes_pcs_offset='8328' dependencies_offset='9224' nul_chk_table_offset='9256' oops_offset='7496' metadata_offset='7528' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='15651' iicount='15651' decompiles='1' stamp='0.474'/>
+<writer thread='25159'/>
+<nmethod compile_id='751' compiler='c2' level='4' entry='0x00007fba6573c920' size='904' address='0x00007fba6573c790' relocation_offset='368' insts_offset='400' stub_offset='656' scopes_data_offset='688' scopes_pcs_offset='776' dependencies_offset='872' nul_chk_table_offset='880' metadata_offset='680' method='java.lang.String getBytes ([BIB)V' bytes='44' count='5392' iicount='5392' stamp='0.474'/>
+<make_not_entrant thread='25159' compile_id='182' compiler='c1' level='3' stamp='0.474'/>
+<writer thread='25110'/>
+<task_queued compile_id='752' method='jdk.internal.math.FloatingDecimal readJavaFormatString (Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;' bytes='826' count='3198' backedge_count='15985' iicount='3198' stamp='0.474' comment='tiered' hot_count='3198'/>
+<task_queued compile_id='753' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='5452' backedge_count='302' iicount='5452' stamp='0.487' comment='tiered' hot_count='5452'/>
+<writer thread='25161'/>
+<nmethod compile_id='748' compiler='c2' level='4' entry='0x00007fba6573cda0' size='4888' address='0x00007fba6573cb90' relocation_offset='368' insts_offset='528' stub_offset='3760' scopes_data_offset='3936' scopes_pcs_offset='4400' dependencies_offset='4768' handler_table_offset='4776' nul_chk_table_offset='4824' oops_offset='3816' metadata_offset='3840' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='6425' iicount='6425' stamp='0.488'/>
+<make_not_entrant thread='25161' compile_id='596' compiler='c1' level='3' stamp='0.488'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='589' compiler='c2' level='4' stamp='0.489'>
+<jvms bci='44' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='6421' backedge_count='53518' iicount='6421'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='589' compiler='c2' level='4' stamp='0.489'/>
+<task_queued compile_id='754' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='6433' backedge_count='53598' iicount='6433' decompiles='1' unstable_if_traps='1' level='3' stamp='0.489' comment='tiered' hot_count='6433'/>
+<writer thread='25164'/>
+<nmethod compile_id='752' compiler='c2' level='4' entry='0x00007fba6573e140' size='6192' address='0x00007fba6573df10' relocation_offset='368' insts_offset='560' stub_offset='3600' scopes_data_offset='3680' scopes_pcs_offset='5416' dependencies_offset='6040' handler_table_offset='6048' nul_chk_table_offset='6168' metadata_offset='3624' method='jdk.internal.math.FloatingDecimal readJavaFormatString (Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;' bytes='826' count='3692' backedge_count='18460' iicount='3692' stamp='0.491'/>
+<make_not_entrant thread='25164' compile_id='626' compiler='c1' level='3' stamp='0.491'/>
+<writer thread='25167'/>
+<nmethod compile_id='754' compiler='c1' level='3' entry='0x00007fba5e42d920' size='8352' address='0x00007fba5e42d610' relocation_offset='368' insts_offset='784' stub_offset='6160' scopes_data_offset='6488' scopes_pcs_offset='7160' dependencies_offset='8104' nul_chk_table_offset='8112' metadata_offset='6456' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='6706' backedge_count='55558' iicount='6706' decompiles='1' unstable_if_traps='1' stamp='0.492'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='670' compiler='c2' level='4' count='1' state='intrinsic_or_type_checked_inlining recompiled' stamp='0.492'>
+<jvms bci='14' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='11786' iicount='11786' decompiles='1' unstable_if_traps='1'/>
+<jvms bci='650' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='18090' iicount='18090'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='670' compiler='c2' level='4' stamp='0.492'/>
+<task_queued compile_id='755' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='18092' iicount='18092' decompiles='1' level='3' stamp='0.492' comment='tiered' hot_count='18092'/>
+<task_queued compile_id='756' method='java.util.ArrayList get (I)Ljava/lang/Object;' bytes='15' count='7425' iicount='7425' stamp='0.494' comment='tiered' hot_count='7425'/>
+<task_queued compile_id='757' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='5147' iicount='5147' stamp='0.494' comment='tiered' hot_count='5147'/>
+<task_queued compile_id='758' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer clear ()V' bytes='11' count='7269' iicount='7269' level='1' stamp='0.494' comment='tiered' hot_count='7269'/>
+<writer thread='25167'/>
+<nmethod compile_id='758' compiler='c1' level='1' entry='0x00007fba6573f940' size='752' address='0x00007fba6573f790' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer clear ()V' bytes='11' count='7275' iicount='7275' stamp='0.494'/>
+<make_not_entrant thread='25167' compile_id='564' compiler='c1' level='3' stamp='0.494'/>
+<writer thread='25162'/>
+<nmethod compile_id='756' compiler='c2' level='4' entry='0x00007fba6573fc20' size='856' address='0x00007fba6573fa90' relocation_offset='368' insts_offset='400' stub_offset='624' scopes_data_offset='672' scopes_pcs_offset='736' dependencies_offset='832' nul_chk_table_offset='840' metadata_offset='648' method='java.util.ArrayList get (I)Ljava/lang/Object;' bytes='15' count='7428' iicount='7428' stamp='0.495'/>
+<make_not_entrant thread='25162' compile_id='526' compiler='c1' level='3' stamp='0.495'/>
+<writer thread='25110'/>
+<task_queued compile_id='759' method='java.nio.CharBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='229' iicount='229' level='3' stamp='0.495' comment='tiered' hot_count='229'/>
+<task_queued compile_id='760' method='java.nio.CharBuffer position (I)Ljava/nio/CharBuffer;' bytes='8' count='229' iicount='229' level='3' stamp='0.495' comment='tiered' hot_count='229'/>
+<task_queued compile_id='761' method='com.sun.hotspot.tools.compiler.LogParser makeId (Lorg/xml/sax/Attributes;)Ljava/lang/String;' bytes='53' count='367' iicount='367' level='3' stamp='0.495' comment='tiered' hot_count='367'/>
+<writer thread='25161'/>
+<nmethod compile_id='757' compiler='c2' level='4' entry='0x00007fba6573ffa0' size='1216' address='0x00007fba6573fe10' relocation_offset='368' insts_offset='400' stub_offset='944' scopes_data_offset='984' scopes_pcs_offset='1072' dependencies_offset='1168' handler_table_offset='1176' nul_chk_table_offset='1200' metadata_offset='968' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='5174' iicount='5174' stamp='0.496'/>
+<make_not_entrant thread='25161' compile_id='188' compiler='c1' level='3' stamp='0.496'/>
+<writer thread='25167'/>
+<nmethod compile_id='760' compiler='c1' level='3' entry='0x00007fba5e42f8c0' size='936' address='0x00007fba5e42f710' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.nio.CharBuffer position (I)Ljava/nio/CharBuffer;' bytes='8' count='229' iicount='229' stamp='0.496'/>
+<writer thread='25168'/>
+<nmethod compile_id='759' compiler='c1' level='3' entry='0x00007fba5e42fcc0' size='1200' address='0x00007fba5e42fb10' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1064' scopes_pcs_offset='1112' dependencies_offset='1192' metadata_offset='1048' method='java.nio.CharBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='229' iicount='229' stamp='0.496'/>
+<writer thread='25166'/>
+<nmethod compile_id='761' compiler='c1' level='3' entry='0x00007fba5e4302c0' size='5328' address='0x00007fba5e430010' relocation_offset='368' insts_offset='688' stub_offset='3984' scopes_data_offset='4392' scopes_pcs_offset='4784' dependencies_offset='5280' nul_chk_table_offset='5288' oops_offset='4264' metadata_offset='4296' method='com.sun.hotspot.tools.compiler.LogParser makeId (Lorg/xml/sax/Attributes;)Ljava/lang/String;' bytes='53' count='368' iicount='368' stamp='0.497'/>
+<writer thread='25110'/>
+<task_queued compile_id='762' method='java.util.ArrayList$SubList size ()I' bytes='9' count='256' iicount='256' level='3' stamp='0.498' comment='tiered' hot_count='256'/>
+<task_queued compile_id='763' method='java.util.ArrayList$SubList iterator ()Ljava/util/Iterator;' bytes='5' count='256' iicount='256' level='3' stamp='0.498' comment='tiered' hot_count='256'/>
+<task_queued compile_id='764' method='java.util.AbstractList listIterator ()Ljava/util/ListIterator;' bytes='6' count='256' iicount='256' level='3' stamp='0.498' comment='tiered' hot_count='256'/>
+<task_queued compile_id='765' method='java.util.ArrayList$SubList listIterator (I)Ljava/util/ListIterator;' bytes='19' count='256' iicount='256' level='3' stamp='0.498' comment='tiered' hot_count='256'/>
+<task_queued compile_id='766' method='java.util.ArrayList$SubList rangeCheckForAdd (I)V' bytes='26' count='256' iicount='256' level='3' stamp='0.498' comment='tiered' hot_count='256'/>
+<task_queued compile_id='767' method='java.util.ArrayList$SubList$1 &lt;init&gt; (Ljava/util/ArrayList$SubList;I)V' bytes='42' count='256' iicount='256' level='3' stamp='0.498' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='764' compiler='c1' level='3' entry='0x00007fba5e4316c0' size='1056' address='0x00007fba5e431510' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='984' dependencies_offset='1048' metadata_offset='952' method='java.util.AbstractList listIterator ()Ljava/util/ListIterator;' bytes='6' count='257' iicount='257' stamp='0.498'/>
+<writer thread='25167'/>
+<nmethod compile_id='762' compiler='c1' level='3' entry='0x00007fba5e431b60' size='1352' address='0x00007fba5e431990' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1136' scopes_pcs_offset='1200' dependencies_offset='1328' nul_chk_table_offset='1336' metadata_offset='1112' method='java.util.ArrayList$SubList size ()I' bytes='9' count='257' iicount='257' stamp='0.499'/>
+<writer thread='25166'/>
+<nmethod compile_id='765' compiler='c1' level='3' entry='0x00007fba5e432120' size='2184' address='0x00007fba5e431f10' relocation_offset='368' insts_offset='528' stub_offset='1520' scopes_data_offset='1768' scopes_pcs_offset='1920' dependencies_offset='2160' nul_chk_table_offset='2168' metadata_offset='1736' method='java.util.ArrayList$SubList listIterator (I)Ljava/util/ListIterator;' bytes='19' count='260' iicount='260' stamp='0.499'/>
+<writer thread='25168'/>
+<nmethod compile_id='763' compiler='c1' level='3' entry='0x00007fba5e432a20' size='2544' address='0x00007fba5e432810' relocation_offset='368' insts_offset='528' stub_offset='1808' scopes_data_offset='2072' scopes_pcs_offset='2248' dependencies_offset='2520' nul_chk_table_offset='2528' metadata_offset='2024' method='java.util.ArrayList$SubList iterator ()Ljava/util/Iterator;' bytes='5' count='260' iicount='260' stamp='0.499'/>
+<writer thread='25167'/>
+<nmethod compile_id='766' compiler='c1' level='3' entry='0x00007fba5e433460' size='3480' address='0x00007fba5e433210' relocation_offset='368' insts_offset='592' stub_offset='2576' scopes_data_offset='2904' scopes_pcs_offset='3152' dependencies_offset='3472' oops_offset='2840' metadata_offset='2856' method='java.util.ArrayList$SubList rangeCheckForAdd (I)V' bytes='26' count='260' iicount='260' stamp='0.499'/>
+<writer thread='25166'/>
+<nmethod compile_id='767' compiler='c1' level='3' entry='0x00007fba5e4341c0' size='1256' address='0x00007fba5e434010' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1128' dependencies_offset='1224' nul_chk_table_offset='1232' metadata_offset='1024' method='java.util.ArrayList$SubList$1 &lt;init&gt; (Ljava/util/ArrayList$SubList;I)V' bytes='42' count='261' iicount='261' stamp='0.499'/>
+<writer thread='25169'/>
+<nmethod compile_id='755' compiler='c1' level='3' entry='0x00007fba5e434e80' size='40744' address='0x00007fba5e434510' relocation_offset='368' insts_offset='2416' stub_offset='27344' scopes_data_offset='28728' scopes_pcs_offset='30912' dependencies_offset='34992' handler_table_offset='35048' nul_chk_table_offset='39728' oops_offset='28440' metadata_offset='28464' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='19570' iicount='19570' decompiles='1' stamp='0.501'/>
+<writer thread='25165'/>
+<nmethod compile_id='728' compiler='c2' level='4' entry='0x00007fba65740780' size='16456' address='0x00007fba65740310' relocation_offset='368' insts_offset='1136' stub_offset='9904' scopes_data_offset='10384' scopes_pcs_offset='13240' dependencies_offset='15688' handler_table_offset='15736' nul_chk_table_offset='16136' oops_offset='10104' metadata_offset='10144' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='7122' backedge_count='22311' iicount='7122' stamp='0.502'/>
+<make_not_entrant thread='25165' compile_id='573' compiler='c1' level='3' stamp='0.502'/>
+<writer thread='25160'/>
+<nmethod compile_id='753' compiler='c2' level='4' entry='0x00007fba657445a0' size='5152' address='0x00007fba65744390' relocation_offset='368' insts_offset='528' stub_offset='3824' scopes_data_offset='3928' scopes_pcs_offset='4632' dependencies_offset='4936' handler_table_offset='4944' nul_chk_table_offset='5136' metadata_offset='3880' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='5610' backedge_count='303' iicount='5610' stamp='0.504'/>
+<make_not_entrant thread='25160' compile_id='74' compiler='c1' level='3' stamp='0.504'/>
+<writer thread='25110'/>
+<task_queued compile_id='768' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='8435' backedge_count='67516' iicount='8435' decompiles='1' unstable_if_traps='1' stamp='0.505' comment='tiered' hot_count='8435'/>
+<task_queued compile_id='769' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='20805' iicount='20805' decompiles='1' stamp='0.511' comment='tiered' hot_count='20805'/>
+<task_queued compile_id='770' method='com.sun.hotspot.tools.compiler.CallSite &lt;init&gt; ()V' bytes='5' count='302' iicount='302' level='3' stamp='0.512' comment='tiered' hot_count='302'/>
+<writer thread='25168'/>
+<nmethod compile_id='770' compiler='c1' level='3' entry='0x00007fba5e43e640' size='1000' address='0x00007fba5e43e490' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='896' scopes_pcs_offset='928' dependencies_offset='992' oops_offset='864' metadata_offset='872' method='com.sun.hotspot.tools.compiler.CallSite &lt;init&gt; ()V' bytes='5' count='302' iicount='302' stamp='0.512'/>
+<writer thread='25110'/>
+<task_queued compile_id='771' method='java.nio.CharBuffer arrayOffset ()I' bytes='35' count='358' iicount='358' level='3' stamp='0.514' comment='tiered' hot_count='358'/>
+<task_queued compile_id='772' method='java.nio.Buffer remaining ()I' bytes='10' count='256' iicount='256' level='3' stamp='0.514' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='772' compiler='c1' level='3' entry='0x00007fba5e43ea40' size='848' address='0x00007fba5e43e890' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.nio.Buffer remaining ()I' bytes='10' count='258' iicount='258' stamp='0.514'/>
+<writer thread='25167'/>
+<nmethod compile_id='771' compiler='c1' level='3' entry='0x00007fba5e43ede0' size='1496' address='0x00007fba5e43ec10' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1264' scopes_pcs_offset='1312' dependencies_offset='1472' nul_chk_table_offset='1480' metadata_offset='1256' method='java.nio.CharBuffer arrayOffset ()I' bytes='35' count='359' iicount='359' stamp='0.514'/>
+<writer thread='25110'/>
+<task_queued compile_id='773' method='java.util.AbstractList subListRangeCheck (III)V' bytes='110' count='305' iicount='305' level='3' stamp='0.516' comment='tiered' hot_count='305'/>
+<task_queued compile_id='774' method='java.util.ArrayList$SubList &lt;init&gt; (Ljava/util/ArrayList;II)V' bytes='35' count='305' iicount='305' level='3' stamp='0.516' comment='tiered' hot_count='305'/>
+<task_queued compile_id='775' method='java.util.AbstractCollection toArray ([Ljava/lang/Object;)[Ljava/lang/Object;' bytes='144' count='382' backedge_count='1998' iicount='382' level='3' stamp='0.516' comment='tiered' hot_count='382'/>
+<task_queued compile_id='776' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1024' backedge_count='20480' iicount='1024' stamp='0.516' comment='tiered' hot_count='1024'/>
+<task_queued compile_id='777' method='java.lang.String toString ()Ljava/lang/String;' bytes='2' count='1067' iicount='1067' level='1' stamp='0.516' comment='tiered' hot_count='1067'/>
+<writer thread='25166'/>
+<nmethod compile_id='774' compiler='c1' level='3' entry='0x00007fba5e43f3e0' size='1536' address='0x00007fba5e43f210' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1320' scopes_pcs_offset='1400' dependencies_offset='1512' nul_chk_table_offset='1520' metadata_offset='1280' method='java.util.ArrayList$SubList &lt;init&gt; (Ljava/util/ArrayList;II)V' bytes='35' count='307' iicount='307' stamp='0.516'/>
+<writer thread='25167'/>
+<nmethod compile_id='777' compiler='c1' level='1' entry='0x00007fba657459c0' size='752' address='0x00007fba65745810' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.String toString ()Ljava/lang/String;' bytes='2' count='1070' iicount='1070' stamp='0.516'/>
+<make_not_entrant thread='25167' compile_id='705' compiler='c1' level='3' stamp='0.516'/>
+<writer thread='25163'/>
+<nmethod compile_id='768' compiler='c2' level='4' entry='0x00007fba65745d20' size='3664' address='0x00007fba65745b10' relocation_offset='368' insts_offset='528' stub_offset='2352' scopes_data_offset='2456' scopes_pcs_offset='3072' dependencies_offset='3520' handler_table_offset='3528' nul_chk_table_offset='3600' metadata_offset='2424' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='10276' backedge_count='79925' iicount='10276' decompiles='1' unstable_if_traps='1' stamp='0.516'/>
+<make_not_entrant thread='25163' compile_id='754' compiler='c1' level='3' stamp='0.516'/>
+<writer thread='25169'/>
+<nmethod compile_id='775' compiler='c1' level='3' entry='0x00007fba5e43fb60' size='6632' address='0x00007fba5e43f890' relocation_offset='368' insts_offset='720' stub_offset='5360' scopes_data_offset='5704' scopes_pcs_offset='6072' dependencies_offset='6552' nul_chk_table_offset='6560' metadata_offset='5672' method='java.util.AbstractCollection toArray ([Ljava/lang/Object;)[Ljava/lang/Object;' bytes='144' count='387' backedge_count='2015' iicount='387' stamp='0.518'/>
+<writer thread='25168'/>
+<nmethod compile_id='773' compiler='c1' level='3' entry='0x00007fba5e4416a0' size='11336' address='0x00007fba5e441290' relocation_offset='368' insts_offset='1040' stub_offset='8720' scopes_data_offset='9320' scopes_pcs_offset='10272' dependencies_offset='11328' oops_offset='9208' metadata_offset='9248' method='java.util.AbstractList subListRangeCheck (III)V' bytes='110' count='313' iicount='313' stamp='0.519'/>
+<writer thread='25110'/>
+<task_queued compile_id='778' method='java.nio.charset.CoderResult isUnderflow ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.522' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='778' compiler='c1' level='3' entry='0x00007fba5e4440c0' size='944' address='0x00007fba5e443f10' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.nio.charset.CoderResult isUnderflow ()Z' bytes='13' count='256' iicount='256' stamp='0.522'/>
+<writer thread='25110'/>
+<task_queued compile_id='779' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='23980' iicount='23980' decompiles='1' stamp='0.524' comment='tiered' hot_count='23980'/>
+<writer thread='25162'/>
+<nmethod compile_id='776' compiler='c2' level='4' entry='0x00007fba65746b60' size='2632' address='0x00007fba65746990' relocation_offset='368' insts_offset='464' stub_offset='1744' scopes_data_offset='1848' scopes_pcs_offset='2272' dependencies_offset='2544' nul_chk_table_offset='2552' oops_offset='1768' metadata_offset='1776' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1103' backedge_count='22060' iicount='1103' stamp='0.525'/>
+<make_not_entrant thread='25162' compile_id='667' compiler='c1' level='3' stamp='0.525'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='584' compiler='c2' level='4' count='1' state='intrinsic_or_type_checked_inlining recompiled' stamp='0.526'>
+<jvms bci='69' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='15150' backedge_count='90357' iicount='15150' unstable_if_traps='1'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='584' compiler='c2' level='4' stamp='0.526'/>
+<task_queued compile_id='780' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='15241' backedge_count='90792' iicount='15241' decompiles='1' unstable_if_traps='2' level='3' stamp='0.527' comment='tiered' hot_count='15241'/>
+<writer thread='25166'/>
+<nmethod compile_id='780' compiler='c1' level='3' entry='0x00007fba5e4445c0' size='5088' address='0x00007fba5e444310' relocation_offset='368' insts_offset='688' stub_offset='3504' scopes_data_offset='3840' scopes_pcs_offset='4200' dependencies_offset='4904' nul_chk_table_offset='4912' metadata_offset='3800' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='15502' backedge_count='92044' iicount='15503' decompiles='1' unstable_if_traps='2' stamp='0.528'/>
+<writer thread='25159'/>
+<nmethod compile_id='769' compiler='c2' level='4' entry='0x00007fba657476a0' size='7528' address='0x00007fba65747410' relocation_offset='368' insts_offset='656' stub_offset='4880' scopes_data_offset='5232' scopes_pcs_offset='6416' dependencies_offset='7184' handler_table_offset='7224' nul_chk_table_offset='7416' oops_offset='4992' metadata_offset='5016' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='23924' iicount='23924' decompiles='1' stamp='0.532'/>
+<make_not_entrant thread='25159' compile_id='750' compiler='c1' level='3' stamp='0.532'/>
+<writer thread='25110'/>
+<task_queued compile_id='781' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='6159' iicount='6159' stamp='0.541' comment='tiered' hot_count='6159'/>
+<task_queued compile_id='782' method='com.sun.org.apache.xerces.internal.impl.XMLScanner getStringBuffer ()Lcom/sun/org/apache/xerces/internal/util/XMLStringBuffer;' bytes='76' count='260' iicount='260' level='3' stamp='0.542' comment='tiered' hot_count='260'/>
+<task_queued compile_id='783' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='17' count='261' iicount='261' level='3' stamp='0.542' comment='tiered' hot_count='261'/>
+<writer thread='25166'/>
+<nmethod compile_id='783' compiler='c1' level='3' entry='0x00007fba5e4458c0' size='1288' address='0x00007fba5e445710' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1136' scopes_pcs_offset='1184' dependencies_offset='1264' nul_chk_table_offset='1272' metadata_offset='1120' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='17' count='261' iicount='261' stamp='0.542'/>
+<writer thread='25110'/>
+<task_queued compile_id='784' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='18697' backedge_count='106661' iicount='18697' decompiles='1' unstable_if_traps='2' stamp='0.543' comment='tiered' hot_count='18697'/>
+<task_queued compile_id='785' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer doubleValue ()D' bytes='1194' count='5632' backedge_count='10581' iicount='5632' stamp='0.543' comment='tiered' hot_count='5632'/>
+<writer thread='25169'/>
+<nmethod compile_id='782' compiler='c1' level='3' entry='0x00007fba5e445f20' size='5528' address='0x00007fba5e445c90' relocation_offset='368' insts_offset='656' stub_offset='4048' scopes_data_offset='4376' scopes_pcs_offset='4872' dependencies_offset='5432' nul_chk_table_offset='5440' metadata_offset='4248' method='com.sun.org.apache.xerces.internal.impl.XMLScanner getStringBuffer ()Lcom/sun/org/apache/xerces/internal/util/XMLStringBuffer;' bytes='76' count='261' iicount='261' stamp='0.543'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='580' compiler='c2' level='4' stamp='0.545'>
+<jvms bci='64' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='4925' backedge_count='42224' iicount='4925'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='580' compiler='c2' level='4' stamp='0.545'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='748' compiler='c2' level='4' stamp='0.545'>
+<jvms bci='46' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='6426' iicount='6426'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='748' compiler='c2' level='4' stamp='0.545'/>
+<task_queued compile_id='786' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='6428' iicount='6428' decompiles='1' unstable_if_traps='1' level='3' stamp='0.545' comment='tiered' hot_count='6428'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='728' compiler='c2' level='4' stamp='0.545'>
+<jvms bci='194' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='7122' backedge_count='22311' iicount='7122'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='728' compiler='c2' level='4' stamp='0.546'/>
+<task_queued compile_id='787' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='5005' backedge_count='42613' iicount='5005' decompiles='1' unstable_if_traps='1' level='3' stamp='0.546' comment='tiered' hot_count='5005'/>
+<task_queued compile_id='788' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='7169' backedge_count='22410' iicount='7169' decompiles='1' unstable_if_traps='1' level='3' stamp='0.546' comment='tiered' hot_count='7169'/>
+<writer thread='25159'/>
+<nmethod compile_id='785' compiler='c2' level='4' entry='0x00007fba65749360' size='2120' address='0x00007fba65749190' relocation_offset='368' consts_offset='432' insts_offset='464' stub_offset='1168' scopes_data_offset='1208' scopes_pcs_offset='1904' dependencies_offset='2096' nul_chk_table_offset='2104' oops_offset='1192' metadata_offset='1200' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer doubleValue ()D' bytes='1194' count='5708' backedge_count='10735' iicount='5708' stamp='0.546'/>
+<make_not_entrant thread='25159' compile_id='645' compiler='c1' level='3' stamp='0.546'/>
+<writer thread='25168'/>
+<nmethod compile_id='787' compiler='c1' level='3' entry='0x00007fba5e447480' size='2264' address='0x00007fba5e447290' relocation_offset='368' insts_offset='496' stub_offset='1520' scopes_data_offset='1720' scopes_pcs_offset='1888' dependencies_offset='2192' nul_chk_table_offset='2200' metadata_offset='1704' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='5211' backedge_count='43834' iicount='5211' decompiles='1' unstable_if_traps='1' stamp='0.546'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='622' compiler='c2' level='4' stamp='0.547'>
+<jvms bci='13' method='com.sun.org.apache.xerces.internal.util.XMLChar isNameStart (I)Z' bytes='22' count='42126' iicount='42126'/>
+<jvms bci='1' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='13862' iicount='13862'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='622' compiler='c2' level='4' stamp='0.547'/>
+<task_queued compile_id='789' method='com.sun.org.apache.xerces.internal.util.XMLChar isInvalid (I)Z' bytes='13' count='269' iicount='269' level='3' stamp='0.547' comment='tiered' hot_count='269'/>
+<task_queued compile_id='790' method='com.sun.org.apache.xerces.internal.util.XMLChar isValid (I)Z' bytes='34' count='269' iicount='269' level='3' stamp='0.547' comment='tiered' hot_count='269'/>
+<task_queued compile_id='791' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isNoLimit (I)Z' bytes='10' count='23040' iicount='23040' stamp='0.548' comment='tiered' hot_count='23040'/>
+<writer thread='25166'/>
+<nmethod compile_id='789' compiler='c1' level='3' entry='0x00007fba5e447d60' size='1472' address='0x00007fba5e447b90' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1296' scopes_pcs_offset='1328' dependencies_offset='1440' nul_chk_table_offset='1448' metadata_offset='1280' method='com.sun.org.apache.xerces.internal.util.XMLChar isInvalid (I)Z' bytes='13' count='389' iicount='389' stamp='0.548'/>
+<writer thread='25168'/>
+<nmethod compile_id='790' compiler='c1' level='3' entry='0x00007fba5e448340' size='1216' address='0x00007fba5e448190' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1064' scopes_pcs_offset='1088' dependencies_offset='1184' nul_chk_table_offset='1192' metadata_offset='1056' method='com.sun.org.apache.xerces.internal.util.XMLChar isValid (I)Z' bytes='34' count='389' iicount='389' stamp='0.548'/>
+<writer thread='25165'/>
+<nmethod compile_id='791' compiler='c2' level='4' entry='0x00007fba65749ba0' size='600' address='0x00007fba65749a10' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='528' scopes_pcs_offset='544' dependencies_offset='592' metadata_offset='520' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isNoLimit (I)Z' bytes='10' count='23139' iicount='23139' stamp='0.548'/>
+<make_not_entrant thread='25165' compile_id='554' compiler='c1' level='3' stamp='0.548'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='class_check' action='maybe_recompile' debug_id='0' compile_id='669' compiler='c2' level='4' stamp='0.549'>
+<jvms bci='4' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='10955' iicount='10955'/>
+</uncommon_trap>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='732' compiler='c2' level='4' count='2' stamp='0.549'>
+<jvms bci='72' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='30911' backedge_count='8199' iicount='30911' decompiles='2' unstable_if_traps='2'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='732' compiler='c2' level='4' stamp='0.549'/>
+<writer thread='25167'/>
+<nmethod compile_id='788' compiler='c1' level='3' entry='0x00007fba5e448a80' size='11944' address='0x00007fba5e448690' relocation_offset='368' insts_offset='1008' stub_offset='9040' scopes_data_offset='9656' scopes_pcs_offset='10448' dependencies_offset='11664' nul_chk_table_offset='11688' oops_offset='9448' metadata_offset='9472' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='7338' backedge_count='22819' iicount='7338' decompiles='1' unstable_if_traps='1' stamp='0.549'/>
+<writer thread='25110'/>
+<uncommon_trap thread='25110' reason='unstable_if' action='reinterpret' debug_id='0' compile_id='625' compiler='c2' level='4' stamp='0.549'>
+<jvms bci='9' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='12814' iicount='12814'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='625' compiler='c2' level='4' stamp='0.549'/>
+<task_queued compile_id='792' method='java.util.ArrayList$Itr next ()Ljava/lang/Object;' bytes='66' count='256' iicount='256' level='3' stamp='0.549' comment='tiered' hot_count='256'/>
+<task_queued compile_id='793' method='java.util.ArrayList$Itr checkForComodification ()V' bytes='23' count='256' iicount='256' level='3' stamp='0.549' comment='tiered' hot_count='256'/>
+<task_queued compile_id='794' method='com.sun.hotspot.tools.compiler.BasicLogEvent setCompilation (Lcom/sun/hotspot/tools/compiler/Compilation;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.549' comment='tiered' hot_count='128'/>
+<task_queued compile_id='795' method='com.sun.hotspot.tools.compiler.Compilation setNMethod (Lcom/sun/hotspot/tools/compiler/NMethod;)V' bytes='6' count='128' iicount='128' level='1' stamp='0.549' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='794' compiler='c1' level='1' entry='0x00007fba65749e40' size='856' address='0x00007fba65749c90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.BasicLogEvent setCompilation (Lcom/sun/hotspot/tools/compiler/Compilation;)V' bytes='6' count='208' iicount='208' stamp='0.550'/>
+<writer thread='25168'/>
+<nmethod compile_id='793' compiler='c1' level='3' entry='0x00007fba5e44b760' size='1200' address='0x00007fba5e44b590' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1064' dependencies_offset='1176' nul_chk_table_offset='1184' metadata_offset='1016' method='java.util.ArrayList$Itr checkForComodification ()V' bytes='23' count='658' iicount='658' stamp='0.550'/>
+<writer thread='25166'/>
+<nmethod compile_id='792' compiler='c1' level='3' entry='0x00007fba5e44bc80' size='2128' address='0x00007fba5e44ba90' relocation_offset='368' insts_offset='496' stub_offset='1488' scopes_data_offset='1712' scopes_pcs_offset='1840' dependencies_offset='2096' nul_chk_table_offset='2104' metadata_offset='1688' method='java.util.ArrayList$Itr next ()Ljava/lang/Object;' bytes='66' count='658' iicount='658' stamp='0.550'/>
+<writer thread='25167'/>
+<nmethod compile_id='795' compiler='c1' level='1' entry='0x00007fba6574a1c0' size='856' address='0x00007fba6574a010' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='816' dependencies_offset='848' oops_offset='800' method='com.sun.hotspot.tools.compiler.Compilation setNMethod (Lcom/sun/hotspot/tools/compiler/NMethod;)V' bytes='6' count='200' iicount='200' stamp='0.550'/>
+<writer thread='25110'/>
+<task_queued compile_id='796' method='com.sun.hotspot.tools.compiler.BasicLogEvent getStart ()D' bytes='5' count='128' iicount='128' level='1' stamp='0.550' comment='tiered' hot_count='128'/>
+<task_queued compile_id='797' method='com.sun.hotspot.tools.compiler.LogParser$1 compare (Ljava/lang/Object;Ljava/lang/Object;)I' bytes='13' count='256' iicount='256' level='3' stamp='0.550' comment='tiered' hot_count='256'/>
+<task_queued compile_id='798' method='com.sun.hotspot.tools.compiler.LogParser$1 compare (Lcom/sun/hotspot/tools/compiler/LogEvent;Lcom/sun/hotspot/tools/compiler/LogEvent;)I' bytes='32' count='256' iicount='256' level='3' stamp='0.550' comment='tiered' hot_count='256'/>
+<task_queued compile_id='799' method='com.sun.hotspot.tools.compiler.Compilation getStart ()D' bytes='5' count='128' iicount='128' level='1' stamp='0.550' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='796' compiler='c1' level='1' entry='0x00007fba6574a540' size='760' address='0x00007fba6574a390' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.BasicLogEvent getStart ()D' bytes='5' count='475' iicount='475' stamp='0.550'/>
+<writer thread='25167'/>
+<nmethod compile_id='798' compiler='c1' level='3' entry='0x00007fba5e44c4e0' size='1680' address='0x00007fba5e44c310' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1464' scopes_pcs_offset='1536' dependencies_offset='1648' nul_chk_table_offset='1656' oops_offset='1448' metadata_offset='1456' method='com.sun.hotspot.tools.compiler.LogParser$1 compare (Lcom/sun/hotspot/tools/compiler/LogEvent;Lcom/sun/hotspot/tools/compiler/LogEvent;)I' bytes='32' count='874' iicount='875' stamp='0.551'/>
+<writer thread='25166'/>
+<nmethod compile_id='797' compiler='c1' level='3' entry='0x00007fba5e44cc00' size='2544' address='0x00007fba5e44ca10' relocation_offset='368' insts_offset='496' stub_offset='2032' scopes_data_offset='2240' scopes_pcs_offset='2352' dependencies_offset='2512' nul_chk_table_offset='2520' oops_offset='2216' metadata_offset='2224' method='com.sun.hotspot.tools.compiler.LogParser$1 compare (Ljava/lang/Object;Ljava/lang/Object;)I' bytes='13' count='950' iicount='951' stamp='0.551'/>
+<writer thread='25168'/>
+<nmethod compile_id='799' compiler='c1' level='1' entry='0x00007fba6574a8c0' size='760' address='0x00007fba6574a710' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Compilation getStart ()D' bytes='5' count='1492' iicount='1494' stamp='0.551'/>
+<writer thread='25110'/>
+<task_queued compile_id='800' method='java.nio.charset.CoderResult isOverflow ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.551' comment='tiered' hot_count='256'/>
+<writer thread='25164'/>
+<nmethod compile_id='781' compiler='c2' level='4' entry='0x00007fba6574ac40' size='2704' address='0x00007fba6574aa90' relocation_offset='368' insts_offset='432' stub_offset='1904' scopes_data_offset='1992' scopes_pcs_offset='2400' dependencies_offset='2624' handler_table_offset='2632' nul_chk_table_offset='2656' metadata_offset='1928' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='6206' iicount='6206' stamp='0.551'/>
+<make_not_entrant thread='25164' compile_id='185' compiler='c1' level='3' stamp='0.551'/>
+<writer thread='25167'/>
+<nmethod compile_id='800' compiler='c1' level='3' entry='0x00007fba5e44d5c0' size='944' address='0x00007fba5e44d410' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.nio.charset.CoderResult isOverflow ()Z' bytes='14' count='274' iicount='274' stamp='0.551'/>
+<writer thread='25110'/>
+<nmethod compile_id='801' compile_kind='c2n' compiler='' level='0' entry='0x00007fba6574b720' size='424' address='0x00007fba6574b590' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (ILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.552'/>
+<nmethod compile_id='802' compile_kind='c2n' compiler='' level='0' entry='0x00007fba6574b920' size='424' address='0x00007fba6574b790' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (Ljava/lang/Object;ILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.553'/>
+<task_queued compile_id='803' method='jdk.internal.org.objectweb.asm.Item &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.553' comment='tiered' hot_count='256'/>
+<task_queued compile_id='804' method='jdk.internal.org.objectweb.asm.ByteVector enlarge (I)V' bytes='51' count='282' iicount='282' level='3' stamp='0.553' comment='tiered' hot_count='282'/>
+<writer thread='25168'/>
+<nmethod compile_id='803' compiler='c1' level='3' entry='0x00007fba5e44d9c0' size='984' address='0x00007fba5e44d810' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='880' scopes_pcs_offset='912' dependencies_offset='976' metadata_offset='864' method='jdk.internal.org.objectweb.asm.Item &lt;init&gt; ()V' bytes='5' count='260' iicount='260' stamp='0.554'/>
+<writer thread='25166'/>
+<nmethod compile_id='804' compiler='c1' level='3' entry='0x00007fba5e44dde0' size='1512' address='0x00007fba5e44dc10' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1312' scopes_pcs_offset='1392' dependencies_offset='1488' nul_chk_table_offset='1496' metadata_offset='1304' method='jdk.internal.org.objectweb.asm.ByteVector enlarge (I)V' bytes='51' count='288' iicount='288' stamp='0.554'/>
+<writer thread='25110'/>
+<nmethod compile_id='805' compile_kind='c2n' compiler='' level='0' entry='0x00007fba6574bb20' size='424' address='0x00007fba6574b990' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToStatic (IIILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.554'/>
+<nmethod compile_id='806' compile_kind='c2n' compiler='' level='0' entry='0x00007fba6574bd20' size='424' address='0x00007fba6574bb90' relocation_offset='368' consts_offset='424' insts_offset='400' method='java.lang.invoke.MethodHandle linkToSpecial (Ljava/lang/Object;Ljava/lang/Object;ILjava/lang/invoke/MemberName;)I' bytes='0' count='0' iicount='0' stamp='0.555'/>
+<uncommon_trap thread='25110' reason='class_check' action='maybe_recompile' debug_id='0' compile_id='776' compiler='c2' level='4' stamp='0.556'>
+<jvms bci='36' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5885' iicount='5885'/>
+<jvms bci='44' method='java.util.regex.Pattern$Start match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='90' count='1103' backedge_count='12294' iicount='1103'/>
+<jvms bci='121' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1103' backedge_count='22060' iicount='1103'/>
+</uncommon_trap>
+<uncommon_trap thread='25110' reason='class_check' action='maybe_recompile' debug_id='0' compile_id='721' compiler='c2' level='4' count='1' state='class_check' stamp='0.556'>
+<jvms bci='36' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5885' iicount='5885' class_check_traps='1'/>
+</uncommon_trap>
+<uncommon_trap thread='25110' reason='class_check' action='maybe_recompile' debug_id='0' compile_id='721' compiler='c2' level='4' count='2' stamp='0.556'>
+<jvms bci='19' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5885' iicount='5885' class_check_traps='2'/>
+</uncommon_trap>
+<uncommon_trap thread='25110' reason='class_check' action='maybe_recompile' debug_id='0' compile_id='721' compiler='c2' level='4' count='3' state='class_check' stamp='0.556'>
+<jvms bci='19' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5885' iicount='5885' class_check_traps='3'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='721' compiler='c2' level='4' stamp='0.556'/>
+<writer thread='25169'/>
+<nmethod compile_id='786' compiler='c1' level='3' entry='0x00007fba5e44ef40' size='54744' address='0x00007fba5e44e210' relocation_offset='368' insts_offset='3376' stub_offset='37296' scopes_data_offset='39216' scopes_pcs_offset='44504' dependencies_offset='49448' handler_table_offset='49472' nul_chk_table_offset='54248' oops_offset='38792' metadata_offset='38880' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='6656' iicount='6656' decompiles='1' unstable_if_traps='1' stamp='0.556'/>
+<writer thread='25110'/>
+<task_queued compile_id='807' method='java.nio.ByteBuffer array ()[B' bytes='35' count='301' iicount='301' level='3' stamp='0.558' comment='tiered' hot_count='301'/>
+<uncommon_trap thread='25110' reason='class_check' action='maybe_recompile' debug_id='0' compile_id='776' compiler='c2' level='4' count='4' state='class_check' stamp='0.558'>
+<jvms bci='36' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5885' iicount='5885' decompiles='1' class_check_traps='4'/>
+<jvms bci='44' method='java.util.regex.Pattern$Start match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='90' count='1103' backedge_count='12294' iicount='1103'/>
+<jvms bci='121' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1103' backedge_count='22060' iicount='1103'/>
+</uncommon_trap>
+<make_not_entrant thread='25110' compile_id='776' compiler='c2' level='4' stamp='0.558'/>
+<task_queued compile_id='808' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5888' iicount='5888' decompiles='1' class_check_traps='5' stamp='0.558' comment='tiered' hot_count='5888'/>
+<writer thread='25167'/>
+<nmethod compile_id='807' compiler='c1' level='3' entry='0x00007fba5e45b9e0' size='1496' address='0x00007fba5e45b810' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1264' scopes_pcs_offset='1312' dependencies_offset='1472' nul_chk_table_offset='1480' metadata_offset='1256' method='java.nio.ByteBuffer array ()[B' bytes='35' count='319' iicount='319' stamp='0.558'/>
+<writer thread='25110'/>
+<task_queued compile_id='809' method='jdk.internal.math.FDBigInteger mult ([III[I)V' bytes='64' count='219' backedge_count='2048' iicount='219' level='3' stamp='0.559' comment='tiered' hot_count='219'/>
+<task_queued compile_id='810' method='jdk.internal.math.FDBigInteger &lt;init&gt; ([II)V' bytes='30' count='256' iicount='256' level='3' stamp='0.559' comment='tiered' hot_count='256'/>
+<task_queued compile_id='811' method='jdk.internal.math.FDBigInteger trimLeadingZeros ()V' bytes='57' count='256' iicount='256' level='3' stamp='0.559' comment='tiered' hot_count='256'/>
+<task_queued compile_id='812' method='jdk.internal.math.FDBigInteger makeImmutable ()V' bytes='6' count='256' iicount='256' level='3' stamp='0.559' comment='tiered' hot_count='256'/>
+<task_queued compile_id='813' method='jdk.internal.math.FDBigInteger mult (I)Ljdk/internal/math/FDBigInteger;' bytes='44' count='256' iicount='256' level='3' stamp='0.559' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='812' compiler='c1' level='3' entry='0x00007fba5e45bfc0' size='848' address='0x00007fba5e45be10' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='jdk.internal.math.FDBigInteger makeImmutable ()V' bytes='6' count='341' iicount='341' stamp='0.559'/>
+<writer thread='25166'/>
+<nmethod compile_id='810' compiler='c1' level='3' entry='0x00007fba5e45c360' size='1280' address='0x00007fba5e45c190' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1104' scopes_pcs_offset='1160' dependencies_offset='1256' nul_chk_table_offset='1264' metadata_offset='1080' method='jdk.internal.math.FDBigInteger &lt;init&gt; ([II)V' bytes='30' count='341' iicount='341' stamp='0.559'/>
+<writer thread='25168'/>
+<nmethod compile_id='809' compiler='c1' level='3' entry='0x00007fba5e45c8e0' size='1528' address='0x00007fba5e45c710' relocation_offset='368' insts_offset='464' stub_offset='976' scopes_data_offset='1128' scopes_pcs_offset='1240' dependencies_offset='1464' nul_chk_table_offset='1472' metadata_offset='1120' method='jdk.internal.math.FDBigInteger mult ([III[I)V' bytes='64' count='326' backedge_count='4316' iicount='326' stamp='0.559'/>
+<writer thread='25169'/>
+<nmethod compile_id='811' compiler='c1' level='3' entry='0x00007fba5e45cf60' size='1512' address='0x00007fba5e45cd90' relocation_offset='368' insts_offset='464' stub_offset='1136' scopes_data_offset='1288' scopes_pcs_offset='1336' dependencies_offset='1480' nul_chk_table_offset='1488' metadata_offset='1280' method='jdk.internal.math.FDBigInteger trimLeadingZeros ()V' bytes='57' count='341' iicount='341' stamp='0.559'/>
+<writer thread='25167'/>
+<nmethod compile_id='813' compiler='c1' level='3' entry='0x00007fba5e45d580' size='1896' address='0x00007fba5e45d390' relocation_offset='368' insts_offset='496' stub_offset='1424' scopes_data_offset='1632' scopes_pcs_offset='1744' dependencies_offset='1888' metadata_offset='1608' method='jdk.internal.math.FDBigInteger mult (I)Ljdk/internal/math/FDBigInteger;' bytes='44' count='326' iicount='326' stamp='0.560'/>
+<writer thread='25110'/>
+<task_queued compile_id='814' method='java.nio.ByteBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='256' iicount='256' level='3' stamp='0.560' comment='tiered' hot_count='256'/>
+<task_queued compile_id='815' method='java.nio.CharBuffer hasArray ()Z' bytes='20' count='256' iicount='256' level='3' stamp='0.560' comment='tiered' hot_count='256'/>
+<task_queued compile_id='816' method='java.nio.ByteBuffer hasArray ()Z' bytes='20' count='256' iicount='256' level='3' stamp='0.560' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='814' compiler='c1' level='3' entry='0x00007fba5e45dcc0' size='1056' address='0x00007fba5e45db10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='984' dependencies_offset='1048' metadata_offset='952' method='java.nio.ByteBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='272' iicount='272' stamp='0.560'/>
+<writer thread='25110'/>
+<task_queued compile_id='817' method='java.util.Formatter$Flags valueOf ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.560' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='815' compiler='c1' level='3' entry='0x00007fba5e45e140' size='1008' address='0x00007fba5e45df90' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='952' dependencies_offset='1000' metadata_offset='928' method='java.nio.CharBuffer hasArray ()Z' bytes='20' count='268' iicount='268' stamp='0.561'/>
+<writer thread='25169'/>
+<nmethod compile_id='817' compiler='c1' level='1' entry='0x00007fba6574bf40' size='752' address='0x00007fba6574bd90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Formatter$Flags valueOf ()I' bytes='5' count='162' iicount='162' stamp='0.561'/>
+<writer thread='25168'/>
+<nmethod compile_id='816' compiler='c1' level='3' entry='0x00007fba5e45e540' size='1008' address='0x00007fba5e45e390' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='952' dependencies_offset='1000' metadata_offset='928' method='java.nio.ByteBuffer hasArray ()Z' bytes='20' count='275' iicount='275' stamp='0.561'/>
+<writer thread='25110'/>
+<task_queued compile_id='818' method='java.nio.CharBuffer array ()[C' bytes='35' count='290' iicount='290' level='3' stamp='0.561' comment='tiered' hot_count='290'/>
+<task_queued compile_id='819' method='sun.nio.cs.UTF_8 access$200 (Ljava/nio/Buffer;ILjava/nio/Buffer;I)V' bytes='8' count='290' iicount='290' level='3' stamp='0.561' comment='tiered' hot_count='290'/>
+<task_queued compile_id='820' method='java.io.BufferedWriter ensureOpen ()V' bytes='18' count='256' iicount='256' level='3' stamp='0.561' comment='tiered' hot_count='256'/>
+<task_queued compile_id='821' method='java.io.PrintStream ensureOpen ()V' bytes='18' count='256' iicount='256' level='3' stamp='0.561' comment='tiered' hot_count='256'/>
+<task_queued compile_id='822' method='sun.nio.cs.UTF_8 updatePositions (Ljava/nio/Buffer;ILjava/nio/Buffer;I)V' bytes='23' count='294' iicount='294' level='3' stamp='0.561' comment='tiered' hot_count='294'/>
+<task_queued compile_id='823' method='java.nio.CharBuffer &lt;init&gt; (IIII[CI)V' bytes='22' count='256' iicount='256' level='3' stamp='0.561' comment='tiered' hot_count='256'/>
+<task_queued compile_id='824' method='java.nio.CharBuffer limit (I)Ljava/nio/Buffer;' bytes='6' count='256' iicount='256' level='3' stamp='0.561' comment='tiered' hot_count='256'/>
+<task_queued compile_id='825' method='java.nio.CharBuffer limit (I)Ljava/nio/CharBuffer;' bytes='8' count='256' iicount='256' level='3' stamp='0.561' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='818' compiler='c1' level='3' entry='0x00007fba5e45e960' size='1496' address='0x00007fba5e45e790' relocation_offset='368' insts_offset='464' stub_offset='1072' scopes_data_offset='1264' scopes_pcs_offset='1312' dependencies_offset='1472' nul_chk_table_offset='1480' metadata_offset='1256' method='java.nio.CharBuffer array ()[C' bytes='35' count='301' iicount='301' stamp='0.561'/>
+<writer thread='25166'/>
+<nmethod compile_id='819' compiler='c1' level='3' entry='0x00007fba5e45ef80' size='2032' address='0x00007fba5e45ed90' relocation_offset='368' insts_offset='496' stub_offset='1488' scopes_data_offset='1720' scopes_pcs_offset='1840' dependencies_offset='2000' nul_chk_table_offset='2008' metadata_offset='1704' method='sun.nio.cs.UTF_8 access$200 (Ljava/nio/Buffer;ILjava/nio/Buffer;I)V' bytes='8' count='301' iicount='301' stamp='0.562'/>
+<writer thread='25110'/>
+<task_queued compile_id='826' method='java.io.FileDescriptor access$100 (Ljava/io/FileDescriptor;)Z' bytes='5' count='128' iicount='128' level='1' stamp='0.562' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='821' compiler='c1' level='3' entry='0x00007fba5e45f760' size='1224' address='0x00007fba5e45f590' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1120' dependencies_offset='1216' metadata_offset='1080' method='java.io.PrintStream ensureOpen ()V' bytes='18' count='286' iicount='286' stamp='0.562'/>
+<writer thread='25169'/>
+<nmethod compile_id='820' compiler='c1' level='3' entry='0x00007fba5e45fc60' size='1224' address='0x00007fba5e45fa90' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1120' dependencies_offset='1216' metadata_offset='1080' method='java.io.BufferedWriter ensureOpen ()V' bytes='18' count='292' iicount='292' stamp='0.562'/>
+<writer thread='25163'/>
+<nmethod compile_id='808' compiler='c2' level='4' entry='0x00007fba6574c260' size='2024' address='0x00007fba6574c090' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1352' scopes_pcs_offset='1656' dependencies_offset='1912' handler_table_offset='1920' nul_chk_table_offset='1968' oops_offset='1288' metadata_offset='1296' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='6093' iicount='6093' decompiles='1' class_check_traps='5' stamp='0.562'/>
+<writer thread='25166'/>
+<nmethod compile_id='822' compiler='c1' level='3' entry='0x00007fba5e460180' size='1880' address='0x00007fba5e45ff90' relocation_offset='368' insts_offset='496' stub_offset='1392' scopes_data_offset='1616' scopes_pcs_offset='1704' dependencies_offset='1848' nul_chk_table_offset='1856' metadata_offset='1608' method='sun.nio.cs.UTF_8 updatePositions (Ljava/nio/Buffer;ILjava/nio/Buffer;I)V' bytes='23' count='314' iicount='314' stamp='0.562'/>
+<writer thread='25110'/>
+<task_queued compile_id='827' method='java.lang.String &lt;init&gt; ([C)V' bytes='10' count='256' iicount='256' level='3' stamp='0.562' comment='tiered' hot_count='256'/>
+<task_queued compile_id='828' method='com.sun.hotspot.tools.compiler.CallSite getMethod ()Lcom/sun/hotspot/tools/compiler/Method;' bytes='5' count='128' iicount='128' level='1' stamp='0.562' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='825' compiler='c1' level='3' entry='0x00007fba5e4608c0' size='936' address='0x00007fba5e460710' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='864' dependencies_offset='928' metadata_offset='824' method='java.nio.CharBuffer limit (I)Ljava/nio/CharBuffer;' bytes='8' count='277' iicount='277' stamp='0.562'/>
+<writer thread='25167'/>
+<nmethod compile_id='823' compiler='c1' level='3' entry='0x00007fba5e460cc0' size='1088' address='0x00007fba5e460b10' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='1016' dependencies_offset='1080' metadata_offset='952' method='java.nio.CharBuffer &lt;init&gt; (IIII[CI)V' bytes='22' count='278' iicount='278' stamp='0.562'/>
+<writer thread='25168'/>
+<nmethod compile_id='824' compiler='c1' level='3' entry='0x00007fba5e461140' size='1200' address='0x00007fba5e460f90' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1064' scopes_pcs_offset='1112' dependencies_offset='1192' metadata_offset='1048' method='java.nio.CharBuffer limit (I)Ljava/nio/Buffer;' bytes='6' count='279' iicount='279' stamp='0.562'/>
+<writer thread='25166'/>
+<nmethod compile_id='827' compiler='c1' level='3' entry='0x00007fba5e461640' size='1000' address='0x00007fba5e461490' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='864' scopes_pcs_offset='896' dependencies_offset='976' nul_chk_table_offset='984' metadata_offset='856' method='java.lang.String &lt;init&gt; ([C)V' bytes='10' count='256' iicount='256' stamp='0.562'/>
+<writer thread='25169'/>
+<nmethod compile_id='826' compiler='c1' level='1' entry='0x00007fba6574ca40' size='768' address='0x00007fba6574c890' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.io.FileDescriptor access$100 (Ljava/io/FileDescriptor;)Z' bytes='5' count='153' iicount='153' stamp='0.562'/>
+<writer thread='25167'/>
+<nmethod compile_id='828' compiler='c1' level='1' entry='0x00007fba6574cdc0' size='760' address='0x00007fba6574cc10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getMethod ()Lcom/sun/hotspot/tools/compiler/Method;' bytes='5' count='132' iicount='132' stamp='0.563'/>
+<writer thread='25110'/>
+<task_queued compile_id='829' method='java.nio.CharBuffer wrap ([CII)Ljava/nio/CharBuffer;' bytes='20' count='256' iicount='256' level='3' stamp='0.563' comment='tiered' hot_count='256'/>
+<task_queued compile_id='830' method='java.nio.HeapCharBuffer &lt;init&gt; ([CII)V' bytes='14' count='256' iicount='256' level='3' stamp='0.563' comment='tiered' hot_count='256'/>
+<task_queued compile_id='831' method='java.nio.ByteBuffer flip ()Ljava/nio/ByteBuffer;' bytes='7' count='256' iicount='256' level='3' stamp='0.563' comment='tiered' hot_count='256'/>
+<task_queued compile_id='832' method='java.nio.Buffer flip ()Ljava/nio/Buffer;' bytes='20' count='256' iicount='256' level='3' stamp='0.563' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='830' compiler='c1' level='3' entry='0x00007fba5e461a60' size='1344' address='0x00007fba5e461890' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1136' scopes_pcs_offset='1224' dependencies_offset='1320' nul_chk_table_offset='1328' metadata_offset='1112' method='java.nio.HeapCharBuffer &lt;init&gt; ([CII)V' bytes='14' count='273' iicount='273' stamp='0.563'/>
+<writer thread='25168'/>
+<nmethod compile_id='829' compiler='c1' level='3' entry='0x00007fba5e462000' size='1944' address='0x00007fba5e461e10' relocation_offset='368' insts_offset='496' stub_offset='1296' scopes_data_offset='1504' scopes_pcs_offset='1672' dependencies_offset='1848' handler_table_offset='1856' nul_chk_table_offset='1928' metadata_offset='1480' method='java.nio.CharBuffer wrap ([CII)Ljava/nio/CharBuffer;' bytes='20' count='280' iicount='280' stamp='0.563'/>
+<writer thread='25110'/>
+<task_queued compile_id='833' method='java.lang.String checkIndex (II)V' bytes='46' count='256' iicount='256' level='3' stamp='0.563' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='832' compiler='c1' level='3' entry='0x00007fba5e4627c0' size='880' address='0x00007fba5e462610' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.nio.Buffer flip ()Ljava/nio/Buffer;' bytes='20' count='270' iicount='270' stamp='0.563'/>
+<writer thread='25169'/>
+<nmethod compile_id='831' compiler='c1' level='3' entry='0x00007fba5e462b40' size='1008' address='0x00007fba5e462990' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='912' scopes_pcs_offset='936' dependencies_offset='1000' metadata_offset='896' method='java.nio.ByteBuffer flip ()Ljava/nio/ByteBuffer;' bytes='7' count='273' iicount='273' stamp='0.563'/>
+<writer thread='25110'/>
+<task_queued compile_id='834' method='java.lang.StringLatin1 toBytes (C)[B' bytes='9' count='256' iicount='256' level='3' stamp='0.563' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='834' compiler='c1' level='3' entry='0x00007fba5e462f40' size='1000' address='0x00007fba5e462d90' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='928' dependencies_offset='992' metadata_offset='896' method='java.lang.StringLatin1 toBytes (C)[B' bytes='9' count='259' iicount='259' stamp='0.564'/>
+<writer thread='25162'/>
+<nmethod compile_id='784' compiler='c2' level='4' entry='0x00007fba6574d200' size='6104' address='0x00007fba6574cf90' relocation_offset='368' insts_offset='624' stub_offset='3856' scopes_data_offset='4104' scopes_pcs_offset='5040' dependencies_offset='5744' handler_table_offset='5768' nul_chk_table_offset='5984' oops_offset='4000' metadata_offset='4008' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='20089' backedge_count='113640' iicount='20089' decompiles='1' unstable_if_traps='2' stamp='0.564'/>
+<make_not_entrant thread='25162' compile_id='780' compiler='c1' level='3' stamp='0.564'/>
+<writer thread='25110'/>
+<task_queued compile_id='835' method='sun.nio.cs.UTF_8$Encoder encodeArrayLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='489' count='229' backedge_count='3072' iicount='229' level='3' stamp='0.564' comment='tiered' hot_count='229'/>
+<task_queued compile_id='836' method='java.io.BufferedOutputStream flush ()V' bytes='12' count='256' iicount='256' level='3' stamp='0.564' comment='tiered' hot_count='256'/>
+<task_queued compile_id='837' method='java.io.BufferedOutputStream flushBuffer ()V' bytes='29' count='256' iicount='256' level='3' stamp='0.564' comment='tiered' hot_count='256'/>
+<task_queued compile_id='838' method='java.io.OutputStream flush ()V' bytes='1' count='256' iicount='256' level='3' stamp='0.564' comment='tiered' hot_count='256'/>
+<task_queued compile_id='839' method='java.io.Writer write (Ljava/lang/String;)V' bytes='11' count='256' iicount='256' level='3' stamp='0.564' comment='tiered' hot_count='256'/>
+<task_queued compile_id='840' method='java.io.BufferedWriter write (Ljava/lang/String;II)V' bytes='117' count='256' backedge_count='231' iicount='256' level='3' stamp='0.564' comment='tiered' hot_count='256'/>
+<task_queued compile_id='841' method='java.io.BufferedWriter flushBuffer ()V' bytes='53' count='256' iicount='256' level='3' stamp='0.564' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='836' compiler='c1' level='3' entry='0x00007fba5e463360' size='2000' address='0x00007fba5e463190' relocation_offset='368' insts_offset='464' stub_offset='1552' scopes_data_offset='1760' scopes_pcs_offset='1824' dependencies_offset='1968' nul_chk_table_offset='1976' metadata_offset='1736' method='java.io.BufferedOutputStream flush ()V' bytes='12' count='270' iicount='270' stamp='0.564'/>
+<writer thread='25167'/>
+<nmethod compile_id='837' compiler='c1' level='3' entry='0x00007fba5e463b40' size='1224' address='0x00007fba5e463990' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1120' dependencies_offset='1200' nul_chk_table_offset='1208' metadata_offset='1080' method='java.io.BufferedOutputStream flushBuffer ()V' bytes='29' count='270' iicount='270' stamp='0.565'/>
+<writer thread='25168'/>
+<nmethod compile_id='833' compiler='c1' level='3' entry='0x00007fba5e464120' size='4760' address='0x00007fba5e463e90' relocation_offset='368' insts_offset='656' stub_offset='3632' scopes_data_offset='4000' scopes_pcs_offset='4352' dependencies_offset='4752' oops_offset='3912' metadata_offset='3928' method='java.lang.String checkIndex (II)V' bytes='46' count='293' iicount='293' stamp='0.565'/>
+<writer thread='25110'/>
+<task_queued compile_id='842' method='java.io.OutputStreamWriter flushBuffer ()V' bytes='8' count='256' iicount='256' level='3' stamp='0.565' comment='tiered' hot_count='256'/>
+<task_queued compile_id='843' method='sun.nio.cs.StreamEncoder flushBuffer ()V' bytes='42' count='256' iicount='256' level='3' stamp='0.565' comment='tiered' hot_count='256'/>
+<task_queued compile_id='844' method='sun.nio.cs.StreamEncoder isOpen ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.565' comment='tiered' hot_count='256'/>
+<task_queued compile_id='845' method='sun.nio.cs.StreamEncoder implFlushBuffer ()V' bytes='15' count='256' iicount='256' level='3' stamp='0.565' comment='tiered' hot_count='256'/>
+<task_queued compile_id='846' method='java.lang.String valueOf (C)Ljava/lang/String;' bytes='39' count='264' iicount='264' level='3' stamp='0.565' comment='tiered' hot_count='264'/>
+<writer thread='25168'/>
+<nmethod compile_id='838' compiler='c1' level='3' entry='0x00007fba5e465340' size='848' address='0x00007fba5e465190' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.io.OutputStream flush ()V' bytes='1' count='285' iicount='285' stamp='0.565'/>
+<writer thread='25110'/>
+<task_queued compile_id='847' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1127' backedge_count='22528' iicount='1127' decompiles='1' stamp='0.565' comment='tiered' hot_count='1127'/>
+<task_queued compile_id='848' method='java.util.regex.Matcher groupCount ()I' bytes='10' count='256' iicount='256' level='3' stamp='0.565' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='839' compiler='c1' level='3' entry='0x00007fba5e4656e0' size='1792' address='0x00007fba5e465510' relocation_offset='368' insts_offset='464' stub_offset='1360' scopes_data_offset='1552' scopes_pcs_offset='1632' dependencies_offset='1760' nul_chk_table_offset='1768' metadata_offset='1528' method='java.io.Writer write (Ljava/lang/String;)V' bytes='11' count='282' iicount='282' stamp='0.565'/>
+<writer thread='25166'/>
+<nmethod compile_id='840' compiler='c1' level='3' entry='0x00007fba5e465ea0' size='3272' address='0x00007fba5e465c90' relocation_offset='368' insts_offset='528' stub_offset='2256' scopes_data_offset='2488' scopes_pcs_offset='2816' dependencies_offset='3072' handler_table_offset='3080' nul_chk_table_offset='3248' metadata_offset='2456' method='java.io.BufferedWriter write (Ljava/lang/String;II)V' bytes='117' count='288' backedge_count='261' iicount='288' stamp='0.565'/>
+<writer thread='25168'/>
+<nmethod compile_id='841' compiler='c1' level='3' entry='0x00007fba5e466b80' size='2512' address='0x00007fba5e466990' relocation_offset='368' insts_offset='496' stub_offset='1808' scopes_data_offset='2016' scopes_pcs_offset='2144' dependencies_offset='2336' handler_table_offset='2344' nul_chk_table_offset='2488' metadata_offset='1992' method='java.io.BufferedWriter flushBuffer ()V' bytes='53' count='296' iicount='296' stamp='0.566'/>
+<writer thread='25167'/>
+<nmethod compile_id='842' compiler='c1' level='3' entry='0x00007fba5e467540' size='1000' address='0x00007fba5e467390' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='872' scopes_pcs_offset='896' dependencies_offset='976' nul_chk_table_offset='984' metadata_offset='856' method='java.io.OutputStreamWriter flushBuffer ()V' bytes='8' count='296' iicount='296' stamp='0.566'/>
+<writer thread='25110'/>
+<task_queued compile_id='849' method='java.lang.AbstractStringBuilder length ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.566' comment='tiered' hot_count='128'/>
+<task_queued compile_id='850' method='java.io.PrintStream write (Ljava/lang/String;)V' bytes='83' count='256' iicount='256' level='3' stamp='0.566' comment='tiered' hot_count='256'/>
+<task_queued compile_id='851' method='java.util.Formatter$Flags contains (Ljava/util/Formatter$Flags;)Z' bytes='22' count='256' iicount='256' level='3' stamp='0.566' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='844' compiler='c1' level='3' entry='0x00007fba5e467940' size='944' address='0x00007fba5e467790' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='sun.nio.cs.StreamEncoder isOpen ()Z' bytes='13' count='307' iicount='307' stamp='0.566'/>
+<writer thread='25166'/>
+<nmethod compile_id='843' compiler='c1' level='3' entry='0x00007fba5e467d80' size='2648' address='0x00007fba5e467b90' relocation_offset='368' insts_offset='496' stub_offset='1904' scopes_data_offset='2120' scopes_pcs_offset='2264' dependencies_offset='2472' handler_table_offset='2480' nul_chk_table_offset='2624' metadata_offset='2088' method='sun.nio.cs.StreamEncoder flushBuffer ()V' bytes='42' count='307' iicount='307' stamp='0.566'/>
+<writer thread='25110'/>
+<task_queued compile_id='852' method='java.lang.StringBuilder charAt (I)C' bytes='6' count='256' iicount='256' level='3' stamp='0.566' comment='tiered' hot_count='256'/>
+<task_queued compile_id='853' method='java.lang.AbstractStringBuilder charAt (I)C' bytes='36' count='256' iicount='256' level='3' stamp='0.566' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='845' compiler='c1' level='3' entry='0x00007fba5e4687c0' size='1200' address='0x00007fba5e468610' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1064' scopes_pcs_offset='1096' dependencies_offset='1176' nul_chk_table_offset='1184' metadata_offset='1048' method='sun.nio.cs.StreamEncoder implFlushBuffer ()V' bytes='15' count='309' iicount='309' stamp='0.566'/>
+<writer thread='25167'/>
+<nmethod compile_id='848' compiler='c1' level='3' entry='0x00007fba5e468cc0' size='920' address='0x00007fba5e468b10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='832' dependencies_offset='896' nul_chk_table_offset='904' metadata_offset='800' method='java.util.regex.Matcher groupCount ()I' bytes='10' count='300' iicount='300' stamp='0.566'/>
+<writer thread='25168'/>
+<nmethod compile_id='851' compiler='c1' level='3' entry='0x00007fba5e4690c0' size='1088' address='0x00007fba5e468f10' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='976' scopes_pcs_offset='1000' dependencies_offset='1064' nul_chk_table_offset='1072' metadata_offset='960' method='java.util.Formatter$Flags contains (Ljava/util/Formatter$Flags;)Z' bytes='22' count='279' iicount='279' stamp='0.567'/>
+<writer thread='25167'/>
+<nmethod compile_id='849' compiler='c1' level='1' entry='0x00007fba6574e940' size='752' address='0x00007fba6574e790' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.AbstractStringBuilder length ()I' bytes='5' count='140' iicount='140' stamp='0.567'/>
+<writer thread='25110'/>
+<task_queued compile_id='854' method='java.lang.String valueOf (Ljava/lang/Object;)Ljava/lang/String;' bytes='14' count='256' iicount='256' level='3' stamp='0.567' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='846' compiler='c1' level='3' entry='0x00007fba5e469580' size='2744' address='0x00007fba5e469390' relocation_offset='368' insts_offset='496' stub_offset='2160' scopes_data_offset='2352' scopes_pcs_offset='2512' dependencies_offset='2736' metadata_offset='2304' method='java.lang.String valueOf (C)Ljava/lang/String;' bytes='39' count='281' iicount='281' stamp='0.567'/>
+<writer thread='25168'/>
+<nmethod compile_id='852' compiler='c1' level='3' entry='0x00007fba5e46a040' size='928' address='0x00007fba5e469e90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='832' scopes_pcs_offset='856' dependencies_offset='920' metadata_offset='824' method='java.lang.StringBuilder charAt (I)C' bytes='6' count='297' iicount='297' stamp='0.567'/>
+<writer thread='25110'/>
+<task_queued compile_id='855' method='java.util.regex.Matcher getTextLength ()I' bytes='10' count='642' iicount='642' level='3' stamp='0.567' comment='tiered' hot_count='642'/>
+<writer thread='25168'/>
+<nmethod compile_id='854' compiler='c1' level='3' entry='0x00007fba5e46a440' size='1184' address='0x00007fba5e46a290' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1056' scopes_pcs_offset='1080' dependencies_offset='1160' nul_chk_table_offset='1168' metadata_offset='1048' method='java.lang.String valueOf (Ljava/lang/Object;)Ljava/lang/String;' bytes='14' count='278' iicount='278' stamp='0.567'/>
+<writer thread='25166'/>
+<nmethod compile_id='853' compiler='c1' level='3' entry='0x00007fba5e46a980' size='2192' address='0x00007fba5e46a790' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1808' scopes_pcs_offset='1944' dependencies_offset='2152' nul_chk_table_offset='2160' metadata_offset='1768' method='java.lang.AbstractStringBuilder charAt (I)C' bytes='36' count='315' iicount='315' stamp='0.567'/>
+<writer thread='25110'/>
+<task_queued compile_id='856' method='java.util.ArrayList iterator ()Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.568' comment='tiered' hot_count='256'/>
+<task_queued compile_id='857' method='java.util.ArrayList$Itr &lt;init&gt; (Ljava/util/ArrayList;)V' bytes='26' count='256' iicount='256' level='3' stamp='0.568' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='855' compiler='c1' level='3' entry='0x00007fba5e46b240' size='1120' address='0x00007fba5e46b090' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1016' dependencies_offset='1096' nul_chk_table_offset='1104' metadata_offset='984' method='java.util.regex.Matcher getTextLength ()I' bytes='10' count='649' iicount='649' stamp='0.568'/>
+<writer thread='25110'/>
+<task_queued compile_id='858' method='java.lang.String getChars (II[CI)V' bytes='54' count='366' iicount='366' level='3' stamp='0.568' comment='tiered' hot_count='366'/>
+<writer thread='25166'/>
+<nmethod compile_id='857' compiler='c1' level='3' entry='0x00007fba5e46b6c0' size='1168' address='0x00007fba5e46b510' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1016' scopes_pcs_offset='1064' dependencies_offset='1144' nul_chk_table_offset='1152' metadata_offset='992' method='java.util.ArrayList$Itr &lt;init&gt; (Ljava/util/ArrayList;)V' bytes='26' count='259' iicount='259' stamp='0.568'/>
+<writer thread='25110'/>
+<task_queued compile_id='859' method='java.nio.charset.CharsetEncoder encode (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;Z)Ljava/nio/charset/CoderResult;' bytes='285' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='860' method='sun.nio.cs.UTF_8$Encoder encodeLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='28' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<writer thread='25168'/>
+<nmethod compile_id='856' compiler='c1' level='3' entry='0x00007fba5e46bbc0' size='1344' address='0x00007fba5e46ba10' relocation_offset='368' insts_offset='432' stub_offset='1008' scopes_data_offset='1176' scopes_pcs_offset='1240' dependencies_offset='1336' metadata_offset='1152' method='java.util.ArrayList iterator ()Ljava/util/Iterator;' bytes='9' count='260' iicount='260' stamp='0.568'/>
+<writer thread='25110'/>
+<task_queued compile_id='861' method='java.io.FileDescriptor$1 getAppend (Ljava/io/FileDescriptor;)Z' bytes='5' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<nmethod compile_id='862' compile_kind='c2n' compiler='' level='0' entry='0x00007fba6574ec60' size='944' address='0x00007fba6574ea90' relocation_offset='368' consts_offset='944' insts_offset='464' method='java.io.FileOutputStream writeBytes ([BIIZ)V' bytes='0' count='384' iicount='384' stamp='0.568'/>
+<task_queued compile_id='863' method='java.io.OutputStreamWriter write ([CII)V' bytes='11' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='864' method='sun.nio.cs.StreamEncoder write ([CII)V' bytes='78' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='865' method='sun.nio.cs.StreamEncoder ensureOpen ()V' bytes='18' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='866' method='sun.nio.cs.StreamEncoder implWrite ([CII)V' bytes='15' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='867' method='sun.nio.cs.StreamEncoder implWrite (Ljava/nio/CharBuffer;)V' bytes='137' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='868' method='java.io.PrintStream write ([BII)V' bytes='69' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='869' method='java.io.BufferedOutputStream write ([BII)V' bytes='67' count='384' iicount='384' level='3' stamp='0.568' comment='tiered' hot_count='384'/>
+<task_queued compile_id='870' method='java.io.FileOutputStream write ([BII)V' bytes='20' count='384' iicount='384' level='3' stamp='0.569' comment='tiered' hot_count='384'/>
+<task_queued compile_id='871' method='java.nio.ByteBuffer clear ()Ljava/nio/ByteBuffer;' bytes='7' count='384' iicount='384' level='3' stamp='0.569' comment='tiered' hot_count='384'/>
+<task_queued compile_id='872' method='java.nio.Buffer clear ()Ljava/nio/Buffer;' bytes='20' count='384' iicount='384' level='3' stamp='0.569' comment='tiered' hot_count='384'/>
+<writer thread='25167'/>
+<nmethod compile_id='850' compiler='c1' level='3' entry='0x00007fba5e46c240' size='6008' address='0x00007fba5e46bf90' relocation_offset='368' insts_offset='688' stub_offset='4144' scopes_data_offset='4536' scopes_pcs_offset='4960' dependencies_offset='5472' handler_table_offset='5488' nul_chk_table_offset='5936' metadata_offset='4424' method='java.io.PrintStream write (Ljava/lang/String;)V' bytes='83' count='364' iicount='364' stamp='0.569'/>
+<writer thread='25166'/>
+<nmethod compile_id='858' compiler='c1' level='3' entry='0x00007fba5e46d9a0' size='2536' address='0x00007fba5e46d790' relocation_offset='368' insts_offset='528' stub_offset='1872' scopes_data_offset='2128' scopes_pcs_offset='2296' dependencies_offset='2504' nul_chk_table_offset='2512' metadata_offset='2088' method='java.lang.String getChars (II[CI)V' bytes='54' count='396' iicount='396' stamp='0.569'/>
+<writer thread='25110'/>
+<task_queued compile_id='873' method='sun.nio.cs.StreamEncoder writeBytes ()V' bytes='132' count='396' iicount='396' level='3' stamp='0.569' comment='tiered' hot_count='396'/>
+<writer thread='25167'/>
+<nmethod compile_id='860' compiler='c1' level='3' entry='0x00007fba5e46e380' size='2112' address='0x00007fba5e46e190' relocation_offset='368' insts_offset='496' stub_offset='1648' scopes_data_offset='1856' scopes_pcs_offset='1936' dependencies_offset='2080' nul_chk_table_offset='2088' metadata_offset='1832' method='sun.nio.cs.UTF_8$Encoder encodeLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='28' count='444' iicount='444' stamp='0.569'/>
+<writer thread='25169'/>
+<nmethod compile_id='835' compiler='c1' level='3' entry='0x00007fba5e46f020' size='21728' address='0x00007fba5e46ea10' relocation_offset='368' insts_offset='1552' stub_offset='16464' scopes_data_offset='17336' scopes_pcs_offset='19248' dependencies_offset='21536' nul_chk_table_offset='21544' metadata_offset='17240' method='sun.nio.cs.UTF_8$Encoder encodeArrayLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='489' count='461' backedge_count='6162' iicount='462' stamp='0.570'/>
+<writer thread='25167'/>
+<nmethod compile_id='861' compiler='c1' level='3' entry='0x00007fba5e4740c0' size='944' address='0x00007fba5e473f10' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='816' scopes_pcs_offset='856' dependencies_offset='920' nul_chk_table_offset='928' metadata_offset='800' method='java.io.FileDescriptor$1 getAppend (Ljava/io/FileDescriptor;)Z' bytes='5' count='454' iicount='454' stamp='0.570'/>
+<writer thread='25166'/>
+<nmethod compile_id='873' compiler='c1' level='3' entry='0x00007fba5e474580' size='4360' address='0x00007fba5e474310' relocation_offset='368' insts_offset='624' stub_offset='3312' scopes_data_offset='3616' scopes_pcs_offset='3864' dependencies_offset='4296' nul_chk_table_offset='4304' metadata_offset='3592' method='sun.nio.cs.StreamEncoder writeBytes ()V' bytes='132' count='455' iicount='455' stamp='0.570'/>
+<nmethod compile_id='865' compiler='c1' level='3' entry='0x00007fba5e475660' size='1224' address='0x00007fba5e475490' relocation_offset='368' insts_offset='464' stub_offset='912' scopes_data_offset='1088' scopes_pcs_offset='1120' dependencies_offset='1216' metadata_offset='1080' method='sun.nio.cs.StreamEncoder ensureOpen ()V' bytes='18' count='477' iicount='477' stamp='0.570'/>
+<writer thread='25167'/>
+<nmethod compile_id='863' compiler='c1' level='3' entry='0x00007fba5e475b40' size='1016' address='0x00007fba5e475990' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='872' scopes_pcs_offset='912' dependencies_offset='992' nul_chk_table_offset='1000' metadata_offset='856' method='java.io.OutputStreamWriter write ([CII)V' bytes='11' count='478' iicount='478' stamp='0.570'/>
+<writer thread='25110'/>
+<task_queued compile_id='874' method='java.util.regex.Pattern$Branch match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='66' count='256' backedge_count='102' iicount='256' level='3' stamp='0.571' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='868' compiler='c1' level='3' entry='0x00007fba5e476040' size='3272' address='0x00007fba5e475e10' relocation_offset='368' insts_offset='560' stub_offset='2288' scopes_data_offset='2536' scopes_pcs_offset='2744' dependencies_offset='3000' handler_table_offset='3008' nul_chk_table_offset='3240' metadata_offset='2504' method='java.io.PrintStream write ([BII)V' bytes='69' count='519' iicount='519' stamp='0.571'/>
+<writer thread='25168'/>
+<nmethod compile_id='859' compiler='c1' level='3' entry='0x00007fba5e476e40' size='8176' address='0x00007fba5e476b10' relocation_offset='368' insts_offset='816' stub_offset='6288' scopes_data_offset='6680' scopes_pcs_offset='7376' dependencies_offset='8048' handler_table_offset='8064' nul_chk_table_offset='8104' metadata_offset='6568' method='java.nio.charset.CharsetEncoder encode (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;Z)Ljava/nio/charset/CoderResult;' bytes='285' count='544' iicount='544' stamp='0.571'/>
+<writer thread='25167'/>
+<nmethod compile_id='869' compiler='c1' level='3' entry='0x00007fba5e478d20' size='3152' address='0x00007fba5e478b10' relocation_offset='368' insts_offset='528' stub_offset='2448' scopes_data_offset='2688' scopes_pcs_offset='2880' dependencies_offset='3104' nul_chk_table_offset='3112' metadata_offset='2664' method='java.io.BufferedOutputStream write ([BII)V' bytes='67' count='538' iicount='538' stamp='0.571'/>
+<writer thread='25169'/>
+<nmethod compile_id='864' compiler='c1' level='3' entry='0x00007fba5e479a00' size='4672' address='0x00007fba5e479790' relocation_offset='368' insts_offset='624' stub_offset='3088' scopes_data_offset='3376' scopes_pcs_offset='3816' dependencies_offset='4232' handler_table_offset='4240' nul_chk_table_offset='4648' metadata_offset='3320' method='sun.nio.cs.StreamEncoder write ([CII)V' bytes='78' count='547' iicount='547' stamp='0.571'/>
+<writer thread='25166'/>
+<nmethod compile_id='874' compiler='c1' level='3' entry='0x00007fba5e47ac00' size='2152' address='0x00007fba5e47aa10' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1776' scopes_pcs_offset='1888' dependencies_offset='2096' nul_chk_table_offset='2104' metadata_offset='1768' method='java.util.regex.Pattern$Branch match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='66' count='290' backedge_count='116' iicount='290' stamp='0.571'/>
+<nmethod compile_id='871' compiler='c1' level='3' entry='0x00007fba5e47b440' size='1008' address='0x00007fba5e47b290' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='912' scopes_pcs_offset='936' dependencies_offset='1000' metadata_offset='896' method='java.nio.ByteBuffer clear ()Ljava/nio/ByteBuffer;' bytes='7' count='578' iicount='578' stamp='0.572'/>
+<writer thread='25110'/>
+<task_queued compile_id='875' method='java.lang.StringBuilder length ()I' bytes='5' count='256' iicount='256' level='3' stamp='0.572' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='870' compiler='c1' level='3' entry='0x00007fba5e47b860' size='1248' address='0x00007fba5e47b690' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1056' scopes_pcs_offset='1128' dependencies_offset='1224' nul_chk_table_offset='1232' metadata_offset='1016' method='java.io.FileOutputStream write ([BII)V' bytes='20' count='588' iicount='588' stamp='0.572'/>
+<writer thread='25166'/>
+<nmethod compile_id='872' compiler='c1' level='3' entry='0x00007fba5e47bd40' size='880' address='0x00007fba5e47bb90' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.nio.Buffer clear ()Ljava/nio/Buffer;' bytes='20' count='593' iicount='593' stamp='0.572'/>
+<writer thread='25168'/>
+<nmethod compile_id='866' compiler='c1' level='3' entry='0x00007fba5e47c100' size='2224' address='0x00007fba5e47bf10' relocation_offset='368' insts_offset='496' stub_offset='1456' scopes_data_offset='1696' scopes_pcs_offset='1920' dependencies_offset='2128' handler_table_offset='2136' nul_chk_table_offset='2208' metadata_offset='1656' method='sun.nio.cs.StreamEncoder implWrite ([CII)V' bytes='15' count='595' iicount='595' stamp='0.572'/>
+<writer thread='25110'/>
+<task_queued compile_id='876' method='com.sun.hotspot.tools.compiler.CallSite getReason ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.572' comment='tiered' hot_count='128'/>
+<task_queued compile_id='877' method='java.util.regex.Pattern$BmpCharPropertyGreedy match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='89' count='256' backedge_count='255' iicount='256' level='3' stamp='0.572' comment='tiered' hot_count='256'/>
+<task_queued compile_id='878' method='java.util.regex.CharPredicates$$Lambda$11/517210187 is (I)Z' bytes='5' count='384' iicount='384' level='3' stamp='0.572' comment='tiered' hot_count='384'/>
+<task_queued compile_id='879' method='java.util.regex.CharPredicates lambda$ASCII_DIGIT$15 (I)Z' bytes='20' count='384' iicount='384' level='3' stamp='0.572' comment='tiered' hot_count='384'/>
+<task_queued compile_id='880' method='java.util.regex.ASCII isDigit (I)Z' bytes='18' count='384' iicount='384' level='3' stamp='0.572' comment='tiered' hot_count='384'/>
+<task_queued compile_id='881' method='java.util.regex.Pattern$GroupHead match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='47' count='384' iicount='384' level='3' stamp='0.572' comment='tiered' hot_count='384'/>
+<task_queued compile_id='882' method='java.util.regex.Matcher start (I)I' bytes='65' count='384' iicount='384' level='3' stamp='0.572' comment='tiered' hot_count='384'/>
+<task_queued compile_id='883' method='java.util.Formatter access$000 (Ljava/util/Formatter;)Ljava/lang/Appendable;' bytes='5' count='128' iicount='128' level='1' stamp='0.572' comment='tiered' hot_count='128'/>
+<writer thread='25169'/>
+<nmethod compile_id='875' compiler='c1' level='3' entry='0x00007fba5e47c9c0' size='880' address='0x00007fba5e47c810' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.lang.StringBuilder length ()I' bytes='5' count='272' iicount='272' stamp='0.572'/>
+<writer thread='25167'/>
+<nmethod compile_id='867' compiler='c1' level='3' entry='0x00007fba5e47cde0' size='3632' address='0x00007fba5e47cb90' relocation_offset='368' insts_offset='592' stub_offset='2832' scopes_data_offset='3120' scopes_pcs_offset='3288' dependencies_offset='3592' nul_chk_table_offset='3600' metadata_offset='3064' method='sun.nio.cs.StreamEncoder implWrite (Ljava/nio/CharBuffer;)V' bytes='137' count='635' iicount='635' stamp='0.573'/>
+<writer thread='25168'/>
+<nmethod compile_id='878' compiler='c1' level='3' entry='0x00007fba5e47dbe0' size='1416' address='0x00007fba5e47da10' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1280' scopes_pcs_offset='1328' dependencies_offset='1408' oops_offset='1248' metadata_offset='1256' method='java.util.regex.CharPredicates$$Lambda$11/517210187 is (I)Z' bytes='5' count='402' iicount='402' stamp='0.573'/>
+<writer thread='25166'/>
+<nmethod compile_id='877' compiler='c1' level='3' entry='0x00007fba5e47e200' size='2584' address='0x00007fba5e47e010' relocation_offset='368' insts_offset='496' stub_offset='1936' scopes_data_offset='2144' scopes_pcs_offset='2312' dependencies_offset='2536' nul_chk_table_offset='2544' metadata_offset='2136' method='java.util.regex.Pattern$BmpCharPropertyGreedy match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='89' count='272' backedge_count='272' iicount='272' stamp='0.573'/>
+<writer thread='25169'/>
+<nmethod compile_id='879' compiler='c1' level='3' entry='0x00007fba5e47ec40' size='1208' address='0x00007fba5e47ea90' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1104' scopes_pcs_offset='1136' dependencies_offset='1200' metadata_offset='1088' method='java.util.regex.CharPredicates lambda$ASCII_DIGIT$15 (I)Z' bytes='20' count='410' iicount='410' stamp='0.573'/>
+<writer thread='25167'/>
+<nmethod compile_id='880' compiler='c1' level='3' entry='0x00007fba5e47f140' size='944' address='0x00007fba5e47ef90' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.util.regex.ASCII isDigit (I)Z' bytes='18' count='414' iicount='414' stamp='0.573'/>
+<writer thread='25169'/>
+<nmethod compile_id='876' compiler='c1' level='1' entry='0x00007fba6574f040' size='760' address='0x00007fba6574ee90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getReason ()Ljava/lang/String;' bytes='5' count='144' iicount='144' stamp='0.573'/>
+<writer thread='25110'/>
+<task_queued compile_id='884' method='java.io.PrintStream print (Ljava/lang/String;)V' bytes='9' count='384' iicount='384' level='3' stamp='0.573' comment='tiered' hot_count='384'/>
+<writer thread='25167'/>
+<nmethod compile_id='883' compiler='c1' level='1' entry='0x00007fba6574f3c0' size='768' address='0x00007fba6574f210' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.Formatter access$000 (Ljava/util/Formatter;)Ljava/lang/Appendable;' bytes='5' count='142' iicount='142' stamp='0.573'/>
+<writer thread='25168'/>
+<nmethod compile_id='881' compiler='c1' level='3' entry='0x00007fba5e47f560' size='1496' address='0x00007fba5e47f390' relocation_offset='368' insts_offset='464' stub_offset='976' scopes_data_offset='1152' scopes_pcs_offset='1240' dependencies_offset='1432' nul_chk_table_offset='1440' metadata_offset='1144' method='java.util.regex.Pattern$GroupHead match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='47' count='432' iicount='432' stamp='0.573'/>
+<writer thread='25110'/>
+<task_queued compile_id='885' method='java.lang.ThreadLocal getMap (Ljava/lang/Thread;)Ljava/lang/ThreadLocal$ThreadLocalMap;' bytes='5' count='256' iicount='256' level='3' stamp='0.573' comment='tiered' hot_count='256'/>
+<task_queued compile_id='886' method='java.io.PrintStream print (C)V' bytes='9' count='256' iicount='256' level='3' stamp='0.573' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='884' compiler='c1' level='3' entry='0x00007fba5e47fb60' size='1376' address='0x00007fba5e47f990' relocation_offset='368' insts_offset='464' stub_offset='976' scopes_data_offset='1176' scopes_pcs_offset='1240' dependencies_offset='1352' nul_chk_table_offset='1360' metadata_offset='1144' method='java.io.PrintStream print (Ljava/lang/String;)V' bytes='9' count='405' iicount='405' stamp='0.574'/>
+<writer thread='25168'/>
+<nmethod compile_id='885' compiler='c1' level='3' entry='0x00007fba5e4800c0' size='888' address='0x00007fba5e47ff10' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='800' dependencies_offset='864' nul_chk_table_offset='872' metadata_offset='768' method='java.lang.ThreadLocal getMap (Ljava/lang/Thread;)Ljava/lang/ThreadLocal$ThreadLocalMap;' bytes='5' count='260' iicount='260' stamp='0.574'/>
+<writer thread='25167'/>
+<nmethod compile_id='886' compiler='c1' level='3' entry='0x00007fba5e4804e0' size='1048' address='0x00007fba5e480310' relocation_offset='368' insts_offset='464' stub_offset='720' scopes_data_offset='920' scopes_pcs_offset='960' dependencies_offset='1040' metadata_offset='904' method='java.io.PrintStream print (C)V' bytes='9' count='266' iicount='266' stamp='0.574'/>
+<writer thread='25166'/>
+<nmethod compile_id='882' compiler='c1' level='3' entry='0x00007fba5e480a20' size='4824' address='0x00007fba5e480790' relocation_offset='368' insts_offset='656' stub_offset='3600' scopes_data_offset='3952' scopes_pcs_offset='4304' dependencies_offset='4784' nul_chk_table_offset='4792' oops_offset='3864' metadata_offset='3872' method='java.util.regex.Matcher start (I)I' bytes='65' count='474' iicount='474' stamp='0.574'/>
+<writer thread='25110'/>
+<task_queued compile_id='887' method='java.lang.ThreadLocal get ()Ljava/lang/Object;' bytes='38' count='256' iicount='256' level='3' stamp='0.574' comment='tiered' hot_count='256'/>
+<task_queued compile_id='888' method='java.lang.ThreadLocal$ThreadLocalMap access$000 (Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;' bytes='6' count='256' iicount='256' level='3' stamp='0.574' comment='tiered' hot_count='256'/>
+<task_queued compile_id='889' method='java.lang.ThreadLocal$ThreadLocalMap getEntry (Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;' bytes='42' count='256' iicount='256' level='3' stamp='0.574' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='888' compiler='c1' level='3' entry='0x00007fba5e481c40' size='936' address='0x00007fba5e481a90' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='808' scopes_pcs_offset='832' dependencies_offset='912' nul_chk_table_offset='920' metadata_offset='792' method='java.lang.ThreadLocal$ThreadLocalMap access$000 (Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;' bytes='6' count='262' iicount='262' stamp='0.575'/>
+<writer thread='25169'/>
+<nmethod compile_id='887' compiler='c1' level='3' entry='0x00007fba5e482080' size='1800' address='0x00007fba5e481e90' relocation_offset='368' insts_offset='496' stub_offset='1264' scopes_data_offset='1480' scopes_pcs_offset='1600' dependencies_offset='1760' nul_chk_table_offset='1768' metadata_offset='1448' method='java.lang.ThreadLocal get ()Ljava/lang/Object;' bytes='38' count='265' iicount='265' stamp='0.575'/>
+<writer thread='25167'/>
+<nmethod compile_id='889' compiler='c1' level='3' entry='0x00007fba5e4827e0' size='1544' address='0x00007fba5e482610' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1304' scopes_pcs_offset='1376' dependencies_offset='1504' nul_chk_table_offset='1512' metadata_offset='1272' method='java.lang.ThreadLocal$ThreadLocalMap getEntry (Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;' bytes='42' count='264' iicount='264' stamp='0.575'/>
+<writer thread='25110'/>
+<task_queued compile_id='890' method='java.util.Formatter ensureOpen ()V' bytes='16' count='256' iicount='256' level='3' stamp='0.575' comment='tiered' hot_count='256'/>
+<task_queued compile_id='891' method='java.util.regex.Pattern$BranchConn match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='11' count='256' iicount='256' level='3' stamp='0.575' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='890' compiler='c1' level='3' entry='0x00007fba5e482e40' size='1096' address='0x00007fba5e482c90' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='960' scopes_pcs_offset='992' dependencies_offset='1088' metadata_offset='952' method='java.util.Formatter ensureOpen ()V' bytes='16' count='262' iicount='262' stamp='0.576'/>
+<writer thread='25166'/>
+<nmethod compile_id='891' compiler='c1' level='3' entry='0x00007fba5e4832c0' size='1136' address='0x00007fba5e483110' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='992' scopes_pcs_offset='1032' dependencies_offset='1112' nul_chk_table_offset='1120' metadata_offset='984' method='java.util.regex.Pattern$BranchConn match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='11' count='265' iicount='265' stamp='0.576'/>
+<writer thread='25110'/>
+<task_queued compile_id='892' method='com.sun.hotspot.tools.compiler.Method getHolder ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.576' comment='tiered' hot_count='128'/>
+<task_queued compile_id='893' method='com.sun.hotspot.tools.compiler.Method getName ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.576' comment='tiered' hot_count='128'/>
+<task_queued compile_id='894' method='java.util.regex.Matcher end (I)I' bytes='67' count='384' iicount='384' level='3' stamp='0.576' comment='tiered' hot_count='384'/>
+<task_queued compile_id='895' method='java.lang.StringLatin1 inflate ([BI[CII)V' bytes='34' count='1127' backedge_count='21857' iicount='1127' stamp='0.577' comment='tiered' hot_count='1127'/>
+<writer thread='25169'/>
+<nmethod compile_id='892' compiler='c1' level='1' entry='0x00007fba6574f740' size='760' address='0x00007fba6574f590' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Method getHolder ()Ljava/lang/String;' bytes='5' count='131' iicount='131' stamp='0.577'/>
+<writer thread='25167'/>
+<nmethod compile_id='893' compiler='c1' level='1' entry='0x00007fba6574fac0' size='760' address='0x00007fba6574f910' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Method getName ()Ljava/lang/String;' bytes='5' count='131' iicount='131' stamp='0.577'/>
+<writer thread='25160'/>
+<nmethod compile_id='847' compiler='c2' level='4' entry='0x00007fba6574fe80' size='3216' address='0x00007fba6574fc90' relocation_offset='368' insts_offset='496' stub_offset='1968' scopes_data_offset='2072' scopes_pcs_offset='2680' dependencies_offset='3080' handler_table_offset='3088' nul_chk_table_offset='3136' oops_offset='1992' metadata_offset='2000' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1199' backedge_count='23980' iicount='1199' decompiles='1' stamp='0.577'/>
+<writer thread='25110'/>
+<task_queued compile_id='896' method='java.util.regex.Pattern$GroupTail match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='111' count='384' iicount='384' level='3' stamp='0.577' comment='tiered' hot_count='384'/>
+<writer thread='25168'/>
+<nmethod compile_id='896' compiler='c1' level='3' entry='0x00007fba5e483760' size='1904' address='0x00007fba5e483590' relocation_offset='368' insts_offset='464' stub_offset='1264' scopes_data_offset='1440' scopes_pcs_offset='1552' dependencies_offset='1824' nul_chk_table_offset='1832' metadata_offset='1432' method='java.util.regex.Pattern$GroupTail match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='111' count='402' iicount='402' stamp='0.577'/>
+<writer thread='25166'/>
+<nmethod compile_id='894' compiler='c1' level='3' entry='0x00007fba5e483fa0' size='4824' address='0x00007fba5e483d10' relocation_offset='368' insts_offset='656' stub_offset='3600' scopes_data_offset='3952' scopes_pcs_offset='4304' dependencies_offset='4784' nul_chk_table_offset='4792' oops_offset='3864' metadata_offset='3872' method='java.util.regex.Matcher end (I)I' bytes='67' count='424' iicount='424' stamp='0.578'/>
+<writer thread='25110'/>
+<task_queued compile_id='897' method='java.io.OutputStream flush ()V' bytes='1' count='1295' iicount='1295' level='1' stamp='0.579' comment='tiered' hot_count='1295'/>
+<writer thread='25169'/>
+<nmethod compile_id='897' compiler='c1' level='1' entry='0x00007fba65750b40' size='752' address='0x00007fba65750990' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.io.OutputStream flush ()V' bytes='1' count='1331' iicount='1331' stamp='0.579'/>
+<make_not_entrant thread='25169' compile_id='838' compiler='c1' level='3' stamp='0.579'/>
+<writer thread='25110'/>
+<task_queued compile_id='898' method='java.util.Locale getDefault (Ljava/util/Locale$Category;)Ljava/util/Locale;' bytes='132' count='256' iicount='256' level='3' stamp='0.580' comment='tiered' hot_count='256'/>
+<task_queued compile_id='899' method='java.util.regex.Pattern$$Lambda$13/1273765644 is (I)Z' bytes='9' count='256' iicount='256' level='3' stamp='0.580' comment='tiered' hot_count='256'/>
+<task_queued compile_id='900' method='java.util.regex.Pattern lambda$clazz$1 (Ljava/util/regex/Pattern$BitClass;I)Z' bytes='22' count='256' iicount='256' level='3' stamp='0.580' comment='tiered' hot_count='256'/>
+<task_queued compile_id='901' method='java.util.regex.Pattern$BmpCharPredicate$$Lambda$15/764577347 is (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.580' comment='tiered' hot_count='256'/>
+<task_queued compile_id='902' method='java.util.regex.Pattern$BmpCharPredicate lambda$union$2 (Ljava/util/regex/Pattern$CharPredicate;I)Z' bytes='26' count='256' iicount='256' level='3' stamp='0.580' comment='tiered' hot_count='256'/>
+<task_queued compile_id='903' method='java.util.Formatter$Conversion isGeneral (C)Z' bytes='64' count='256' iicount='256' level='3' stamp='0.580' comment='tiered' hot_count='256'/>
+<task_queued compile_id='904' method='java.util.Formatter$FixedString index ()I' bytes='3' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='905' method='java.util.Formatter$FormatSpecifier index ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<writer thread='25160'/>
+<nmethod compile_id='895' compiler='c2' level='4' entry='0x00007fba65750e20' size='1136' address='0x00007fba65750c90' relocation_offset='368' insts_offset='400' stub_offset='944' scopes_data_offset='976' scopes_pcs_offset='1040' dependencies_offset='1104' nul_chk_table_offset='1112' metadata_offset='968' method='java.lang.StringLatin1 inflate ([BI[CII)V' bytes='34' count='1449' backedge_count='26025' iicount='1449' stamp='0.580'/>
+<make_not_entrant thread='25160' compile_id='440' compiler='c1' level='3' stamp='0.580'/>
+<writer thread='25110'/>
+<task_queued compile_id='906' method='com.sun.hotspot.tools.compiler.CallSite getBci ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='907' method='com.sun.hotspot.tools.compiler.CallSite getTimeStamp ()D' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='908' method='java.lang.Double doubleValue ()D' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='909' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer isExceptional ()Z' bytes='2' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='910' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer getDecimalExponent ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='911' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer isNegative ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<writer thread='25168'/>
+<nmethod compile_id='899' compiler='c1' level='3' entry='0x00007fba5e4851c0' size='1328' address='0x00007fba5e485010' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1160' dependencies_offset='1288' nul_chk_table_offset='1296' oops_offset='1088' metadata_offset='1096' method='java.util.regex.Pattern$$Lambda$13/1273765644 is (I)Z' bytes='9' count='260' iicount='260' stamp='0.580'/>
+<writer thread='25110'/>
+<task_queued compile_id='912' method='jdk.internal.math.FormattedFloatingDecimal getMantissa ()[C' bytes='5' count='128' iicount='128' level='1' stamp='0.580' comment='tiered' hot_count='128'/>
+<task_queued compile_id='913' method='java.util.Formatter access$400 (Ljava/util/Formatter;)C' bytes='5' count='128' iicount='128' level='1' stamp='0.581' comment='tiered' hot_count='128'/>
+<writer thread='25166'/>
+<nmethod compile_id='900' compiler='c1' level='3' entry='0x00007fba5e485740' size='1120' address='0x00007fba5e485590' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='936' scopes_pcs_offset='968' dependencies_offset='1080' nul_chk_table_offset='1088' metadata_offset='928' method='java.util.regex.Pattern lambda$clazz$1 (Ljava/util/regex/Pattern$BitClass;I)Z' bytes='22' count='260' iicount='260' stamp='0.581'/>
+<writer thread='25110'/>
+<task_queued compile_id='914' method='com.sun.hotspot.tools.compiler.CallSite getEndNodes ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.581' comment='tiered' hot_count='128'/>
+<task_queued compile_id='915' method='com.sun.hotspot.tools.compiler.CallSite getReceiver ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.581' comment='tiered' hot_count='128'/>
+<writer thread='25167'/>
+<nmethod compile_id='898' compiler='c1' level='3' entry='0x00007fba5e485c20' size='3256' address='0x00007fba5e485a10' relocation_offset='368' insts_offset='528' stub_offset='2608' scopes_data_offset='2816' scopes_pcs_offset='2928' dependencies_offset='3152' handler_table_offset='3160' nul_chk_table_offset='3208' oops_offset='2792' metadata_offset='2800' method='java.util.Locale getDefault (Ljava/util/Locale$Category;)Ljava/util/Locale;' bytes='132' count='262' iicount='262' stamp='0.581'/>
+<writer thread='25169'/>
+<nmethod compile_id='901' compiler='c1' level='3' entry='0x00007fba5e4868e0' size='1736' address='0x00007fba5e486710' relocation_offset='368' insts_offset='464' stub_offset='1296' scopes_data_offset='1504' scopes_pcs_offset='1576' dependencies_offset='1704' nul_chk_table_offset='1712' oops_offset='1480' metadata_offset='1488' method='java.util.regex.Pattern$BmpCharPredicate$$Lambda$15/764577347 is (I)Z' bytes='13' count='262' iicount='262' stamp='0.581'/>
+<writer thread='25168'/>
+<nmethod compile_id='902' compiler='c1' level='3' entry='0x00007fba5e486fe0' size='1528' address='0x00007fba5e486e10' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1360' scopes_pcs_offset='1408' dependencies_offset='1504' nul_chk_table_offset='1512' metadata_offset='1352' method='java.util.regex.Pattern$BmpCharPredicate lambda$union$2 (Ljava/util/regex/Pattern$CharPredicate;I)Z' bytes='26' count='264' iicount='264' stamp='0.581'/>
+<writer thread='25166'/>
+<nmethod compile_id='903' compiler='c1' level='3' entry='0x00007fba5e487640' size='880' address='0x00007fba5e487490' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.util.Formatter$Conversion isGeneral (C)Z' bytes='64' count='264' iicount='264' stamp='0.581'/>
+<writer thread='25167'/>
+<nmethod compile_id='904' compiler='c1' level='1' entry='0x00007fba657512c0' size='752' address='0x00007fba65751110' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Formatter$FixedString index ()I' bytes='3' count='133' iicount='133' stamp='0.581'/>
+<writer thread='25168'/>
+<nmethod compile_id='905' compiler='c1' level='1' entry='0x00007fba657515c0' size='752' address='0x00007fba65751410' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.util.Formatter$FormatSpecifier index ()I' bytes='5' count='133' iicount='133' stamp='0.581'/>
+<writer thread='25169'/>
+<nmethod compile_id='906' compiler='c1' level='1' entry='0x00007fba657518c0' size='760' address='0x00007fba65751710' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getBci ()I' bytes='5' count='132' iicount='132' stamp='0.581'/>
+<writer thread='25167'/>
+<nmethod compile_id='908' compiler='c1' level='1' entry='0x00007fba65751c40' size='752' address='0x00007fba65751a90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='java.lang.Double doubleValue ()D' bytes='5' count='133' iicount='133' stamp='0.581'/>
+<writer thread='25166'/>
+<nmethod compile_id='907' compiler='c1' level='1' entry='0x00007fba65751f40' size='760' address='0x00007fba65751d90' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getTimeStamp ()D' bytes='5' count='134' iicount='134' stamp='0.581'/>
+<writer thread='25168'/>
+<nmethod compile_id='909' compiler='c1' level='1' entry='0x00007fba657522c0' size='752' address='0x00007fba65752110' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer isExceptional ()Z' bytes='2' count='134' iicount='134' stamp='0.581'/>
+<writer thread='25169'/>
+<nmethod compile_id='910' compiler='c1' level='1' entry='0x00007fba657525c0' size='752' address='0x00007fba65752410' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer getDecimalExponent ()I' bytes='5' count='135' iicount='135' stamp='0.581'/>
+<writer thread='25167'/>
+<nmethod compile_id='911' compiler='c1' level='1' entry='0x00007fba657528c0' size='752' address='0x00007fba65752710' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer isNegative ()Z' bytes='5' count='135' iicount='135' stamp='0.581'/>
+<writer thread='25166'/>
+<nmethod compile_id='912' compiler='c1' level='1' entry='0x00007fba65752bc0' size='752' address='0x00007fba65752a10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.math.FormattedFloatingDecimal getMantissa ()[C' bytes='5' count='136' iicount='136' stamp='0.581'/>
+<writer thread='25169'/>
+<nmethod compile_id='914' compiler='c1' level='1' entry='0x00007fba65752ec0' size='760' address='0x00007fba65752d10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getEndNodes ()I' bytes='5' count='138' iicount='138' stamp='0.582'/>
+<writer thread='25168'/>
+<nmethod compile_id='913' compiler='c1' level='1' entry='0x00007fba65753240' size='768' address='0x00007fba65753090' relocation_offset='368' insts_offset='432' stub_offset='528' scopes_data_offset='680' scopes_pcs_offset='696' dependencies_offset='744' nul_chk_table_offset='752' metadata_offset='672' method='java.util.Formatter access$400 (Ljava/util/Formatter;)C' bytes='5' count='139' iicount='139' stamp='0.582'/>
+<writer thread='25167'/>
+<nmethod compile_id='915' compiler='c1' level='1' entry='0x00007fba657535c0' size='760' address='0x00007fba65753410' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.CallSite getReceiver ()Ljava/lang/String;' bytes='5' count='139' iicount='139' stamp='0.582'/>
+<writer thread='25110'/>
+<task_queued compile_id='916' method='java.lang.Double isNaN (D)Z' bytes='12' count='256' iicount='256' level='3' stamp='0.582' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='916' compiler='c1' level='3' entry='0x00007fba5e4879c0' size='944' address='0x00007fba5e487810' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='872' scopes_pcs_offset='888' dependencies_offset='936' metadata_offset='864' method='java.lang.Double isNaN (D)Z' bytes='12' count='267' iicount='267' stamp='0.582'/>
+<writer thread='25110'/>
+<task_queued compile_id='917' method='java.util.regex.Matcher reset ()Ljava/util/regex/Matcher;' bytes='128' count='854' backedge_count='18944' iicount='854' stamp='0.583' comment='tiered' hot_count='854'/>
+<task_queued compile_id='918' method='java.nio.Buffer position (I)Ljava/nio/Buffer;' bytes='55' count='5380' iicount='5380' stamp='0.583' comment='tiered' hot_count='5380'/>
+<task_queued compile_id='919' method='sun.nio.cs.UTF_8$Encoder encodeArrayLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='489' count='1526' backedge_count='19529' iicount='1526' stamp='0.584' comment='tiered' hot_count='1526'/>
+<task_queued compile_id='920' method='com.sun.hotspot.tools.compiler.Compilation getId ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.584' comment='tiered' hot_count='128'/>
+<writer thread='25159'/>
+<nmethod compile_id='918' compiler='c2' level='4' entry='0x00007fba65753920' size='760' address='0x00007fba65753790' relocation_offset='368' insts_offset='400' stub_offset='592' scopes_data_offset='624' scopes_pcs_offset='672' dependencies_offset='752' metadata_offset='616' method='java.nio.Buffer position (I)Ljava/nio/Buffer;' bytes='55' count='5592' iicount='5592' stamp='0.584'/>
+<make_not_entrant thread='25159' compile_id='484' compiler='c1' level='3' stamp='0.584'/>
+<writer thread='25168'/>
+<nmethod compile_id='920' compiler='c1' level='1' entry='0x00007fba65753cc0' size='760' address='0x00007fba65753b10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Compilation getId ()I' bytes='5' count='129' iicount='129' stamp='0.584'/>
+<writer thread='25110'/>
+<task_queued compile_id='921' method='java.util.Formatter checkText (Ljava/lang/String;II)V' bytes='58' count='170' backedge_count='2048' iicount='170' level='3' stamp='0.584' comment='tiered' hot_count='170'/>
+<writer thread='25169'/>
+<nmethod compile_id='921' compiler='c1' level='3' entry='0x00007fba5e487ec0' size='5392' address='0x00007fba5e487c10' relocation_offset='368' insts_offset='688' stub_offset='3888' scopes_data_offset='4192' scopes_pcs_offset='4760' dependencies_offset='5336' nul_chk_table_offset='5344' metadata_offset='4136' method='java.util.Formatter checkText (Ljava/lang/String;II)V' bytes='58' count='187' backedge_count='2256' iicount='187' stamp='0.585'/>
+<writer thread='25162'/>
+<nmethod compile_id='917' compiler='c2' level='4' entry='0x00007fba65754040' size='1160' address='0x00007fba65753e90' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='856' scopes_pcs_offset='952' dependencies_offset='1096' handler_table_offset='1104' nul_chk_table_offset='1128' metadata_offset='840' method='java.util.regex.Matcher reset ()Ljava/util/regex/Matcher;' bytes='128' count='919' backedge_count='20648' iicount='919' stamp='0.586'/>
+<make_not_entrant thread='25162' compile_id='686' compiler='c1' level='3' stamp='0.586'/>
+<writer thread='25110'/>
+<task_queued compile_id='922' method='java.lang.System lineSeparator ()Ljava/lang/String;' bytes='4' count='256' iicount='256' level='3' stamp='0.586' comment='tiered' hot_count='256'/>
+<task_queued compile_id='923' method='java.io.PrintStream newLine ()V' bytes='73' count='256' iicount='256' level='3' stamp='0.586' comment='tiered' hot_count='256'/>
+<task_queued compile_id='924' method='java.io.BufferedWriter newLine ()V' bytes='8' count='256' iicount='256' level='3' stamp='0.586' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='922' compiler='c1' level='3' entry='0x00007fba5e489340' size='840' address='0x00007fba5e489190' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='784' dependencies_offset='832' metadata_offset='768' method='java.lang.System lineSeparator ()Ljava/lang/String;' bytes='4' count='259' iicount='259' stamp='0.586'/>
+<writer thread='25110'/>
+<task_queued compile_id='925' method='java.io.PrintStream append (Ljava/lang/CharSequence;)Ljava/io/PrintStream;' bytes='10' count='384' iicount='384' level='3' stamp='0.586' comment='tiered' hot_count='384'/>
+<task_queued compile_id='926' method='java.util.Formatter locale ()Ljava/util/Locale;' bytes='9' count='384' iicount='384' level='3' stamp='0.586' comment='tiered' hot_count='384'/>
+<task_queued compile_id='927' method='java.lang.Integer parseInt (Ljava/lang/CharSequence;III)I' bytes='302' count='384' backedge_count='383' iicount='384' level='3' stamp='0.586' comment='tiered' hot_count='384'/>
+<task_queued compile_id='928' method='java.util.Formatter$Conversion isInteger (C)Z' bytes='48' count='384' iicount='384' level='3' stamp='0.586' comment='tiered' hot_count='384'/>
+<task_queued compile_id='929' method='java.util.Formatter$Conversion isFloat (C)Z' bytes='72' count='384' iicount='384' level='3' stamp='0.586' comment='tiered' hot_count='384'/>
+<task_queued compile_id='930' method='java.util.Locale equals (Ljava/lang/Object;)Z' bytes='75' count='384' iicount='384' level='3' stamp='0.586' comment='tiered' hot_count='384'/>
+<writer thread='25166'/>
+<nmethod compile_id='924' compiler='c1' level='3' entry='0x00007fba5e4896e0' size='2072' address='0x00007fba5e489510' relocation_offset='368' insts_offset='464' stub_offset='1552' scopes_data_offset='1768' scopes_pcs_offset='1880' dependencies_offset='2040' nul_chk_table_offset='2048' metadata_offset='1720' method='java.io.BufferedWriter newLine ()V' bytes='8' count='268' iicount='268' stamp='0.587'/>
+<writer thread='25168'/>
+<nmethod compile_id='925' compiler='c1' level='3' entry='0x00007fba5e489f80' size='2144' address='0x00007fba5e489d90' relocation_offset='368' insts_offset='496' stub_offset='1584' scopes_data_offset='1816' scopes_pcs_offset='1936' dependencies_offset='2112' nul_chk_table_offset='2120' metadata_offset='1784' method='java.io.PrintStream append (Ljava/lang/CharSequence;)Ljava/io/PrintStream;' bytes='10' count='394' iicount='394' stamp='0.587'/>
+<writer thread='25166'/>
+<nmethod compile_id='928' compiler='c1' level='3' entry='0x00007fba5e48a7c0' size='880' address='0x00007fba5e48a610' relocation_offset='368' insts_offset='432' stub_offset='656' scopes_data_offset='808' scopes_pcs_offset='824' dependencies_offset='872' metadata_offset='800' method='java.util.Formatter$Conversion isInteger (C)Z' bytes='48' count='394' iicount='394' stamp='0.587'/>
+<writer thread='25168'/>
+<nmethod compile_id='926' compiler='c1' level='3' entry='0x00007fba5e48ab60' size='1304' address='0x00007fba5e48a990' relocation_offset='368' insts_offset='464' stub_offset='944' scopes_data_offset='1128' scopes_pcs_offset='1184' dependencies_offset='1296' metadata_offset='1112' method='java.util.Formatter locale ()Ljava/util/Locale;' bytes='9' count='400' iicount='400' stamp='0.587'/>
+<writer thread='25169'/>
+<nmethod compile_id='923' compiler='c1' level='3' entry='0x00007fba5e48b180' size='4992' address='0x00007fba5e48af10' relocation_offset='368' insts_offset='624' stub_offset='3376' scopes_data_offset='3728' scopes_pcs_offset='4040' dependencies_offset='4504' handler_table_offset='4520' nul_chk_table_offset='4920' metadata_offset='3624' method='java.io.PrintStream newLine ()V' bytes='73' count='276' iicount='276' stamp='0.587'/>
+<writer thread='25166'/>
+<nmethod compile_id='930' compiler='c1' level='3' entry='0x00007fba5e48c520' size='2840' address='0x00007fba5e48c310' relocation_offset='368' insts_offset='528' stub_offset='2320' scopes_data_offset='2512' scopes_pcs_offset='2600' dependencies_offset='2792' nul_chk_table_offset='2800' metadata_offset='2504' method='java.util.Locale equals (Ljava/lang/Object;)Z' bytes='75' count='401' iicount='401' stamp='0.587'/>
+<writer thread='25168'/>
+<nmethod compile_id='929' compiler='c1' level='3' entry='0x00007fba5e48d040' size='912' address='0x00007fba5e48ce90' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='856' dependencies_offset='904' metadata_offset='832' method='java.util.Formatter$Conversion isFloat (C)Z' bytes='72' count='402' iicount='402' stamp='0.587'/>
+<writer thread='25167'/>
+<nmethod compile_id='927' compiler='c1' level='3' entry='0x00007fba5e48d6e0' size='12240' address='0x00007fba5e48d290' relocation_offset='368' insts_offset='1104' stub_offset='9136' scopes_data_offset='9824' scopes_pcs_offset='10928' dependencies_offset='12144' nul_chk_table_offset='12152' oops_offset='9704' metadata_offset='9728' method='java.lang.Integer parseInt (Ljava/lang/CharSequence;III)I' bytes='302' count='439' backedge_count='439' iicount='439' stamp='0.589'/>
+<writer thread='25110'/>
+<task_queued compile_id='931' method='java.util.Formatter$Flags &lt;init&gt; (I)V' bytes='10' count='256' iicount='256' level='3' stamp='0.591' comment='tiered' hot_count='256'/>
+<task_queued compile_id='932' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer setSign (Z)V' bytes='6' count='128' iicount='128' level='1' stamp='0.591' comment='tiered' hot_count='128'/>
+<writer thread='25161'/>
+<nmethod compile_id='779' compiler='c2' level='4' entry='0x00007fba65754ba0' size='22312' address='0x00007fba65754390' relocation_offset='368' consts_offset='1776' insts_offset='2064' stub_offset='13040' scopes_data_offset='14104' scopes_pcs_offset='17032' dependencies_offset='20456' handler_table_offset='20520' nul_chk_table_offset='21712' oops_offset='13752' metadata_offset='13800' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='28995' iicount='28995' decompiles='1' stamp='0.591'/>
+<make_not_entrant thread='25161' compile_id='755' compiler='c1' level='3' stamp='0.591'/>
+<writer thread='25110'/>
+<task_queued compile_id='933' method='java.nio.CharBuffer arrayOffset ()I' bytes='35' count='7270' iicount='7270' stamp='0.591' comment='tiered' hot_count='7270'/>
+<task_queued compile_id='934' method='java.lang.Character getType (I)I' bytes='9' count='256' iicount='256' level='3' stamp='0.591' comment='tiered' hot_count='256'/>
+<task_queued compile_id='935' method='java.lang.CharacterDataLatin1 getType (I)I' bytes='11' count='256' iicount='256' level='3' stamp='0.591' comment='tiered' hot_count='256'/>
+<writer thread='25166'/>
+<nmethod compile_id='932' compiler='c1' level='1' entry='0x00007fba65759cc0' size='752' address='0x00007fba65759b10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='704' scopes_pcs_offset='712' dependencies_offset='744' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer setSign (Z)V' bytes='6' count='130' iicount='130' stamp='0.591'/>
+<writer thread='25110'/>
+<task_queued compile_id='936' method='java.util.regex.Matcher find (I)Z' bytes='35' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<writer thread='25169'/>
+<nmethod compile_id='931' compiler='c1' level='3' entry='0x00007fba5e490440' size='992' address='0x00007fba5e490290' relocation_offset='368' insts_offset='432' stub_offset='720' scopes_data_offset='888' scopes_pcs_offset='920' dependencies_offset='984' metadata_offset='864' method='java.util.Formatter$Flags &lt;init&gt; (I)V' bytes='10' count='264' iicount='264' stamp='0.592'/>
+<writer thread='25168'/>
+<nmethod compile_id='934' compiler='c1' level='3' entry='0x00007fba5e490860' size='1192' address='0x00007fba5e490690' relocation_offset='368' insts_offset='464' stub_offset='848' scopes_data_offset='1040' scopes_pcs_offset='1072' dependencies_offset='1168' nul_chk_table_offset='1176' metadata_offset='1032' method='java.lang.Character getType (I)I' bytes='9' count='259' iicount='259' stamp='0.592'/>
+<writer thread='25163'/>
+<nmethod compile_id='919' compiler='c2' level='4' entry='0x00007fba65759fe0' size='2904' address='0x00007fba65759e10' relocation_offset='368' insts_offset='464' stub_offset='1776' scopes_data_offset='1920' scopes_pcs_offset='2560' dependencies_offset='2848' nul_chk_table_offset='2864' metadata_offset='1800' method='sun.nio.cs.UTF_8$Encoder encodeArrayLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='489' count='2368' backedge_count='29833' iicount='2368' stamp='0.592'/>
+<make_not_entrant thread='25163' compile_id='835' compiler='c1' level='3' stamp='0.592'/>
+<writer thread='25110'/>
+<task_queued compile_id='937' method='java.util.regex.Pattern$$Lambda$14/701141022 is (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='938' method='java.util.regex.Pattern lambda$Range$11 (III)Z' bytes='7' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='939' method='java.util.regex.Pattern inRange (III)Z' bytes='16' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<writer thread='25167'/>
+<nmethod compile_id='935' compiler='c1' level='3' entry='0x00007fba5e490d40' size='1160' address='0x00007fba5e490b90' relocation_offset='368' insts_offset='432' stub_offset='784' scopes_data_offset='952' scopes_pcs_offset='1016' dependencies_offset='1128' nul_chk_table_offset='1136' metadata_offset='928' method='java.lang.CharacterDataLatin1 getType (I)I' bytes='11' count='259' iicount='259' stamp='0.592'/>
+<writer thread='25110'/>
+<task_queued compile_id='940' method='java.util.Formatter$FixedString &lt;init&gt; (Ljava/util/Formatter;Ljava/lang/String;II)V' bytes='26' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='941' method='java.util.Formatter$FormatSpecifier &lt;init&gt; (Ljava/util/Formatter;Ljava/lang/String;Ljava/util/regex/Matcher;)V' bytes='259' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<writer thread='25165'/>
+<nmethod compile_id='933' compiler='c2' level='4' entry='0x00007fba6575ab20' size='680' address='0x00007fba6575a990' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='576' scopes_pcs_offset='608' dependencies_offset='672' metadata_offset='552' method='java.nio.CharBuffer arrayOffset ()I' bytes='35' count='7456' iicount='7456' stamp='0.592'/>
+<make_not_entrant thread='25165' compile_id='771' compiler='c1' level='3' stamp='0.592'/>
+<writer thread='25169'/>
+<nmethod compile_id='936' compiler='c1' level='3' entry='0x00007fba5e491280' size='2192' address='0x00007fba5e491090' relocation_offset='368' insts_offset='496' stub_offset='1648' scopes_data_offset='1880' scopes_pcs_offset='1992' dependencies_offset='2168' nul_chk_table_offset='2176' metadata_offset='1864' method='java.util.regex.Matcher find (I)Z' bytes='35' count='258' iicount='258' stamp='0.592'/>
+<writer thread='25110'/>
+<task_queued compile_id='942' method='java.util.Formatter$FormatSpecifier index (Ljava/lang/String;II)I' bytes='50' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='943' method='java.util.Formatter$FormatSpecifier flags (Ljava/lang/String;II)Ljava/util/Formatter$Flags;' bytes='33' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='944' method='java.util.Formatter$Flags parse (Ljava/lang/String;II)Ljava/util/Formatter$Flags;' bytes='70' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='945' method='java.util.Formatter$FormatSpecifier width (Ljava/lang/String;II)I' bytes='64' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<task_queued compile_id='946' method='java.util.Formatter$FormatSpecifier precision (Ljava/lang/String;II)I' bytes='66' count='256' iicount='256' level='3' stamp='0.592' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='937' compiler='c1' level='3' entry='0x00007fba5e491b40' size='1312' address='0x00007fba5e491990' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1152' scopes_pcs_offset='1224' dependencies_offset='1304' oops_offset='1120' metadata_offset='1128' method='java.util.regex.Pattern$$Lambda$14/701141022 is (I)Z' bytes='13' count='257' iicount='257' stamp='0.592'/>
+<writer thread='25166'/>
+<nmethod compile_id='938' compiler='c1' level='3' entry='0x00007fba5e4920c0' size='1128' address='0x00007fba5e491f10' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1008' scopes_pcs_offset='1056' dependencies_offset='1120' metadata_offset='992' method='java.util.regex.Pattern lambda$Range$11 (III)Z' bytes='7' count='257' iicount='257' stamp='0.592'/>
+<writer thread='25169'/>
+<nmethod compile_id='939' compiler='c1' level='3' entry='0x00007fba5e492540' size='976' address='0x00007fba5e492390' relocation_offset='368' insts_offset='432' stub_offset='752' scopes_data_offset='904' scopes_pcs_offset='920' dependencies_offset='968' metadata_offset='896' method='java.util.regex.Pattern inRange (III)Z' bytes='16' count='258' iicount='258' stamp='0.592'/>
+<writer thread='25167'/>
+<nmethod compile_id='940' compiler='c1' level='3' entry='0x00007fba5e492940' size='1240' address='0x00007fba5e492790' relocation_offset='368' insts_offset='432' stub_offset='944' scopes_data_offset='1112' scopes_pcs_offset='1168' dependencies_offset='1232' metadata_offset='1088' method='java.util.Formatter$FixedString &lt;init&gt; (Ljava/util/Formatter;Ljava/lang/String;II)V' bytes='26' count='259' iicount='259' stamp='0.593'/>
+<writer thread='25110'/>
+<task_queued compile_id='947' method='java.lang.Double valueOf (D)Ljava/lang/Double;' bytes='9' count='256' iicount='256' level='3' stamp='0.593' comment='tiered' hot_count='256'/>
+<task_queued compile_id='948' method='java.lang.Double &lt;init&gt; (D)V' bytes='10' count='256' iicount='256' level='3' stamp='0.593' comment='tiered' hot_count='256'/>
+<task_queued compile_id='949' method='com.sun.hotspot.tools.compiler.CallSite print (Ljava/io/PrintStream;IZZ)V' bytes='428' count='256' backedge_count='101' iicount='256' level='3' stamp='0.593' comment='tiered' hot_count='256'/>
+<task_queued compile_id='950' method='com.sun.hotspot.tools.compiler.CallSite emit (Ljava/io/PrintStream;I)V' bytes='20' count='256' backedge_count='822' iicount='256' level='3' stamp='0.593' comment='tiered' hot_count='256'/>
+<writer thread='25168'/>
+<nmethod compile_id='942' compiler='c1' level='3' entry='0x00007fba5e492e40' size='1168' address='0x00007fba5e492c90' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1024' scopes_pcs_offset='1072' dependencies_offset='1136' handler_table_offset='1144' metadata_offset='1016' method='java.util.Formatter$FormatSpecifier index (Ljava/lang/String;II)I' bytes='50' count='262' iicount='262' stamp='0.593'/>
+<writer thread='25110'/>
+<task_queued compile_id='951' method='java.io.PrintStream ensureOpen ()V' bytes='18' count='5383' iicount='5383' stamp='0.593' comment='tiered' hot_count='5383'/>
+<writer thread='25169'/>
+<nmethod compile_id='943' compiler='c1' level='3' entry='0x00007fba5e493360' size='1624' address='0x00007fba5e493190' relocation_offset='368' insts_offset='464' stub_offset='1168' scopes_data_offset='1376' scopes_pcs_offset='1480' dependencies_offset='1592' nul_chk_table_offset='1600' oops_offset='1336' metadata_offset='1344' method='java.util.Formatter$FormatSpecifier flags (Ljava/lang/String;II)Ljava/util/Formatter$Flags;' bytes='33' count='265' iicount='265' stamp='0.593'/>
+<writer thread='25168'/>
+<nmethod compile_id='950' compiler='c1' level='3' entry='0x00007fba5e4939e0' size='1544' address='0x00007fba5e493810' relocation_offset='368' insts_offset='464' stub_offset='1040' scopes_data_offset='1256' scopes_pcs_offset='1376' dependencies_offset='1520' nul_chk_table_offset='1528' oops_offset='1224' metadata_offset='1232' method='com.sun.hotspot.tools.compiler.CallSite emit (Ljava/io/PrintStream;I)V' bytes='20' count='260' backedge_count='832' iicount='260' stamp='0.593'/>
+<writer thread='25164'/>
+<nmethod compile_id='951' compiler='c2' level='4' entry='0x00007fba6575ae20' size='600' address='0x00007fba6575ac90' relocation_offset='368' insts_offset='400' stub_offset='496' scopes_data_offset='528' scopes_pcs_offset='544' dependencies_offset='592' metadata_offset='520' method='java.io.PrintStream ensureOpen ()V' bytes='18' count='5489' iicount='5489' stamp='0.593'/>
+<make_not_entrant thread='25164' compile_id='821' compiler='c1' level='3' stamp='0.593'/>
+<writer thread='25168'/>
+<nmethod compile_id='945' compiler='c1' level='3' entry='0x00007fba5e494060' size='1568' address='0x00007fba5e493e90' relocation_offset='368' insts_offset='464' stub_offset='1040' scopes_data_offset='1232' scopes_pcs_offset='1312' dependencies_offset='1440' handler_table_offset='1448' metadata_offset='1224' method='java.util.Formatter$FormatSpecifier width (Ljava/lang/String;II)I' bytes='64' count='272' iicount='272' stamp='0.594'/>
+<writer thread='25167'/>
+<nmethod compile_id='944' compiler='c1' level='3' entry='0x00007fba5e4947a0' size='4720' address='0x00007fba5e494510' relocation_offset='368' insts_offset='656' stub_offset='3248' scopes_data_offset='3576' scopes_pcs_offset='4192' dependencies_offset='4672' nul_chk_table_offset='4680' metadata_offset='3480' method='java.util.Formatter$Flags parse (Ljava/lang/String;II)Ljava/util/Formatter$Flags;' bytes='70' count='273' iicount='273' stamp='0.594'/>
+<writer thread='25110'/>
+<task_queued compile_id='952' method='java.lang.Double doubleToLongBits (D)J' bytes='16' count='256' iicount='256' level='3' stamp='0.594' comment='tiered' hot_count='256'/>
+<task_queued compile_id='953' method='java.nio.CharBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='5221' iicount='5221' stamp='0.594' comment='tiered' hot_count='5221'/>
+<writer thread='25167'/>
+<nmethod compile_id='947' compiler='c1' level='3' entry='0x00007fba5e495960' size='1384' address='0x00007fba5e495790' relocation_offset='368' insts_offset='464' stub_offset='1008' scopes_data_offset='1184' scopes_pcs_offset='1264' dependencies_offset='1376' metadata_offset='1152' method='java.lang.Double valueOf (D)Ljava/lang/Double;' bytes='9' count='272' iicount='272' stamp='0.594'/>
+<writer thread='25168'/>
+<nmethod compile_id='946' compiler='c1' level='3' entry='0x00007fba5e495ee0' size='1568' address='0x00007fba5e495d10' relocation_offset='368' insts_offset='464' stub_offset='1040' scopes_data_offset='1232' scopes_pcs_offset='1312' dependencies_offset='1440' handler_table_offset='1448' metadata_offset='1224' method='java.util.Formatter$FormatSpecifier precision (Ljava/lang/String;II)I' bytes='66' count='281' iicount='281' stamp='0.595'/>
+<writer thread='25167'/>
+<nmethod compile_id='948' compiler='c1' level='3' entry='0x00007fba5e496540' size='1120' address='0x00007fba5e496390' relocation_offset='368' insts_offset='432' stub_offset='816' scopes_data_offset='984' scopes_pcs_offset='1032' dependencies_offset='1112' metadata_offset='960' method='java.lang.Double &lt;init&gt; (D)V' bytes='10' count='276' iicount='276' stamp='0.595'/>
+<writer thread='25168'/>
+<nmethod compile_id='952' compiler='c1' level='3' entry='0x00007fba5e4969c0' size='1176' address='0x00007fba5e496810' relocation_offset='368' insts_offset='432' stub_offset='912' scopes_data_offset='1072' scopes_pcs_offset='1104' dependencies_offset='1168' metadata_offset='1056' method='java.lang.Double doubleToLongBits (D)J' bytes='16' count='262' iicount='262' stamp='0.595'/>
+<writer thread='25166'/>
+<nmethod compile_id='941' compiler='c1' level='3' entry='0x00007fba5e497180' size='11264' address='0x00007fba5e496d10' relocation_offset='368' insts_offset='1136' stub_offset='8272' scopes_data_offset='9056' scopes_pcs_offset='10056' dependencies_offset='11160' nul_chk_table_offset='11168' oops_offset='8904' metadata_offset='8920' method='java.util.Formatter$FormatSpecifier &lt;init&gt; (Ljava/util/Formatter;Ljava/lang/String;Ljava/util/regex/Matcher;)V' bytes='259' count='289' iicount='289' stamp='0.595'/>
+<writer thread='25165'/>
+<nmethod compile_id='953' compiler='c2' level='4' entry='0x00007fba6575b0a0' size='824' address='0x00007fba6575af10' relocation_offset='368' insts_offset='400' stub_offset='592' scopes_data_offset='656' scopes_pcs_offset='736' dependencies_offset='816' metadata_offset='616' method='java.nio.CharBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='5341' iicount='5341' stamp='0.595'/>
+<make_not_entrant thread='25165' compile_id='759' compiler='c1' level='3' stamp='0.595'/>
+<writer thread='25110'/>
+<task_queued compile_id='954' method='java.util.ArrayList add (Ljava/lang/Object;)Z' bytes='25' count='5381' iicount='5381' stamp='0.596' comment='tiered' hot_count='5381'/>
+<task_queued compile_id='955' method='com.sun.hotspot.tools.compiler.Compilation isOsr ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.596' comment='tiered' hot_count='128'/>
+<task_queued compile_id='956' method='com.sun.hotspot.tools.compiler.Method getFlags ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.596' comment='tiered' hot_count='128'/>
+<task_queued compile_id='957' method='com.sun.hotspot.tools.compiler.Method getBytes ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.596' comment='tiered' hot_count='128'/>
+<task_queued compile_id='958' method='com.sun.hotspot.tools.compiler.Compilation getFailureReason ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.596' comment='tiered' hot_count='128'/>
+<task_queued compile_id='959' method='java.util.Formatter$FormatSpecifier localizedMagnitude (Ljava/lang/StringBuilder;Ljava/lang/CharSequence;ILjava/util/Formatter$Flags;ILjava/util/Locale;)Ljava/lang/StringBuilder;' bytes='335' count='294' backedge_count='2048' iicount='294' level='3' stamp='0.597' comment='tiered' hot_count='294'/>
+<task_queued compile_id='960' method='java.lang.String checkBoundsBeginEnd (III)V' bytes='60' count='5381' iicount='5381' stamp='0.597' comment='tiered' hot_count='5381'/>
+<writer thread='25167'/>
+<nmethod compile_id='955' compiler='c1' level='1' entry='0x00007fba6575b440' size='760' address='0x00007fba6575b290' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Compilation isOsr ()Z' bytes='5' count='132' iicount='132' stamp='0.597'/>
+<writer thread='25166'/>
+<nmethod compile_id='957' compiler='c1' level='1' entry='0x00007fba6575b7c0' size='760' address='0x00007fba6575b610' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Method getBytes ()Ljava/lang/String;' bytes='5' count='133' iicount='133' stamp='0.597'/>
+<writer thread='25168'/>
+<nmethod compile_id='956' compiler='c1' level='1' entry='0x00007fba6575bb40' size='760' address='0x00007fba6575b990' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Method getFlags ()Ljava/lang/String;' bytes='5' count='133' iicount='133' stamp='0.597'/>
+<writer thread='25166'/>
+<nmethod compile_id='958' compiler='c1' level='1' entry='0x00007fba6575bec0' size='760' address='0x00007fba6575bd10' relocation_offset='368' insts_offset='432' stub_offset='560' scopes_data_offset='712' scopes_pcs_offset='720' dependencies_offset='752' oops_offset='704' method='com.sun.hotspot.tools.compiler.Compilation getFailureReason ()Ljava/lang/String;' bytes='5' count='137' iicount='137' stamp='0.597'/>
+<writer thread='25159'/>
+<nmethod compile_id='960' compiler='c2' level='4' entry='0x00007fba6575c220' size='704' address='0x00007fba6575c090' relocation_offset='368' insts_offset='400' stub_offset='528' scopes_data_offset='560' scopes_pcs_offset='616' dependencies_offset='696' metadata_offset='552' method='java.lang.String checkBoundsBeginEnd (III)V' bytes='60' count='5477' iicount='5477' stamp='0.597'/>
+<make_not_entrant thread='25159' compile_id='287' compiler='c1' level='3' stamp='0.597'/>
+<writer thread='25167'/>
+<nmethod compile_id='959' compiler='c1' level='3' entry='0x00007fba5e499d00' size='9336' address='0x00007fba5e499990' relocation_offset='368' insts_offset='880' stub_offset='6608' scopes_data_offset='7120' scopes_pcs_offset='8520' dependencies_offset='9256' nul_chk_table_offset='9264' oops_offset='7032' metadata_offset='7048' method='java.util.Formatter$FormatSpecifier localizedMagnitude (Ljava/lang/StringBuilder;Ljava/lang/CharSequence;ILjava/util/Formatter$Flags;ILjava/util/Locale;)Ljava/lang/StringBuilder;' bytes='335' count='319' backedge_count='2227' iicount='319' stamp='0.599'/>
+<writer thread='25110'/>
+<task_queued compile_id='961' method='java.lang.AbstractStringBuilder &lt;init&gt; (I)V' bytes='39' count='5129' iicount='5129' stamp='0.599' comment='tiered' hot_count='5129'/>
+<writer thread='25163'/>
+<nmethod compile_id='961' compiler='c2' level='4' entry='0x00007fba6575c520' size='1064' address='0x00007fba6575c390' relocation_offset='368' insts_offset='400' stub_offset='912' scopes_data_offset='960' scopes_pcs_offset='984' dependencies_offset='1032' handler_table_offset='1040' metadata_offset='936' method='java.lang.AbstractStringBuilder &lt;init&gt; (I)V' bytes='39' count='5249' iicount='5249' stamp='0.600'/>
+<make_not_entrant thread='25163' compile_id='236' compiler='c1' level='3' stamp='0.600'/>
+<writer thread='25110'/>
+<task_queued compile_id='962' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='5379' iicount='5379' stamp='0.601' comment='tiered' hot_count='5379'/>
+<writer thread='25160'/>
+<nmethod compile_id='954' compiler='c2' level='4' entry='0x00007fba6575c9c0' size='2368' address='0x00007fba6575c810' relocation_offset='368' insts_offset='432' stub_offset='1840' scopes_data_offset='1928' scopes_pcs_offset='2176' dependencies_offset='2320' handler_table_offset='2328' nul_chk_table_offset='2352' oops_offset='1864' metadata_offset='1872' method='java.util.ArrayList add (Ljava/lang/Object;)Z' bytes='25' count='5510' iicount='5510' stamp='0.601'/>
+<make_not_entrant thread='25160' compile_id='405' compiler='c1' level='3' stamp='0.601'/>
+<writer thread='25110'/>
+<task_queued compile_id='963' method='java.util.Formatter$Conversion isValid (C)Z' bytes='47' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='964' method='java.lang.Character isUpperCase (C)Z' bytes='5' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='965' method='java.lang.Character isUpperCase (I)Z' bytes='25' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='966' method='java.lang.CharacterDataLatin1 isOtherUppercase (I)Z' bytes='18' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='967' method='java.lang.CharacterDataLatin1 getPropertiesEx (I)I' bytes='11' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='968' method='java.util.Formatter$FixedString print (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='26' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='969' method='java.io.PrintStream append (Ljava/lang/CharSequence;II)Ljava/lang/Appendable;' bytes='8' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='970' method='java.io.PrintStream append (Ljava/lang/CharSequence;II)Ljava/io/PrintStream;' bytes='20' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='971' method='java.util.Formatter$FormatSpecifier print (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='243' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='972' method='java.util.Formatter$FormatSpecifier appendJustified (Ljava/lang/Appendable;Ljava/lang/CharSequence;)Ljava/lang/Appendable;' bytes='91' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='973' method='java.io.PrintStream append (Ljava/lang/CharSequence;)Ljava/lang/Appendable;' bytes='6' count='384' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='974' method='java.util.Formatter format (Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/Formatter;' bytes='280' count='384' backedge_count='770' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<task_queued compile_id='975' method='java.util.Formatter parse (Ljava/lang/String;)Ljava/util/List;' bytes='137' count='384' backedge_count='385' iicount='384' level='3' stamp='0.603' comment='tiered' hot_count='384'/>
+<writer thread='25168'/>
+<nmethod compile_id='964' compiler='c1' level='3' entry='0x00007fba5e49c080' size='1944' address='0x00007fba5e49be90' relocation_offset='368' insts_offset='496' stub_offset='1424' scopes_data_offset='1664' scopes_pcs_offset='1736' dependencies_offset='1912' nul_chk_table_offset='1920' metadata_offset='1640' method='java.lang.Character isUpperCase (C)Z' bytes='5' count='386' iicount='386' stamp='0.603'/>
+<writer thread='25167'/>
+<nmethod compile_id='963' compiler='c1' level='3' entry='0x00007fba5e49c880' size='1816' address='0x00007fba5e49c690' relocation_offset='368' insts_offset='496' stub_offset='1392' scopes_data_offset='1616' scopes_pcs_offset='1680' dependencies_offset='1808' metadata_offset='1592' method='java.util.Formatter$Conversion isValid (C)Z' bytes='47' count='388' iicount='388' stamp='0.604'/>
+<writer thread='25166'/>
+<nmethod compile_id='965' compiler='c1' level='3' entry='0x00007fba5e49d000' size='1816' address='0x00007fba5e49ce10' relocation_offset='368' insts_offset='496' stub_offset='1328' scopes_data_offset='1560' scopes_pcs_offset='1624' dependencies_offset='1784' nul_chk_table_offset='1792' metadata_offset='1544' method='java.lang.Character isUpperCase (I)Z' bytes='25' count='388' iicount='388' stamp='0.604'/>
+<writer thread='25110'/>
+<task_queued compile_id='976' method='java.util.Formatter$FormatSpecifier checkNumeric ()V' bytes='168' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='977' method='java.util.Formatter$FormatSpecifier leadingSign (Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;' bytes='82' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='978' method='java.util.Formatter$FormatSpecifier adjustWidth (ILjava/util/Formatter$Flags;Z)I' bytes='29' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='979' method='java.util.Formatter$FormatSpecifier trailingSign (Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;' bytes='26' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<writer thread='25166'/>
+<nmethod compile_id='966' compiler='c1' level='3' entry='0x00007fba5e49d740' size='1256' address='0x00007fba5e49d590' relocation_offset='368' insts_offset='432' stub_offset='880' scopes_data_offset='1048' scopes_pcs_offset='1112' dependencies_offset='1224' nul_chk_table_offset='1232' metadata_offset='1024' method='java.lang.CharacterDataLatin1 isOtherUppercase (I)Z' bytes='18' count='392' iicount='392' stamp='0.604'/>
+<writer thread='25110'/>
+<task_queued compile_id='980' method='java.io.PrintStream println (Ljava/lang/String;)V' bytes='24' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<writer thread='25166'/>
+<nmethod compile_id='967' compiler='c1' level='3' entry='0x00007fba5e49dc40' size='1000' address='0x00007fba5e49da90' relocation_offset='368' insts_offset='432' stub_offset='688' scopes_data_offset='840' scopes_pcs_offset='872' dependencies_offset='968' nul_chk_table_offset='976' metadata_offset='832' method='java.lang.CharacterDataLatin1 getPropertiesEx (I)I' bytes='11' count='395' iicount='395' stamp='0.604'/>
+<writer thread='25110'/>
+<task_queued compile_id='981' method='java.util.Formatter$FormatSpecifier printFloat (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='86' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='982' method='java.util.Formatter$FormatSpecifier print (DLjava/util/Locale;)V' bytes='160' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='983' method='java.lang.Double compare (DD)I' bytes='54' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='984' method='java.lang.Double isInfinite (D)Z' bytes='22' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='985' method='java.util.Formatter$FormatSpecifier print (Ljava/lang/StringBuilder;DLjava/util/Locale;Ljava/util/Formatter$Flags;CIZ)V' bytes='889' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='986' method='jdk.internal.math.FormattedFloatingDecimal valueOf (DILjdk/internal/math/FormattedFloatingDecimal$Form;)Ljdk/internal/math/FormattedFloatingDecimal;' bytes='30' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='987' method='jdk.internal.math.FloatingDecimal getBinaryToASCIIConverter (DZ)Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;' bytes='183' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='988' method='jdk.internal.math.FormattedFloatingDecimal &lt;init&gt; (ILjdk/internal/math/FormattedFloatingDecimal$Form;Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;)V' bytes='289' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<task_queued compile_id='989' method='jdk.internal.math.FormattedFloatingDecimal getBuffer ()[C' bytes='10' count='384' iicount='384' level='3' stamp='0.604' comment='tiered' hot_count='384'/>
+<writer thread='25166'/>
+<nmethod compile_id='968' compiler='c1' level='3' entry='0x00007fba5e49e040' size='1216' address='0x00007fba5e49de90' relocation_offset='368' insts_offset='432' stub_offset='848' scopes_data_offset='1032' scopes_pcs_offset='1088' dependencies_offset='1184' nul_chk_table_offset='1192' metadata_offset='1016' method='java.util.Formatter$FixedString print (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='26' count='397' iicount='397' stamp='0.605'/>
+<writer thread='25110'/>
+<task_queued compile_id='990' method='java.util.Formatter$FormatSpecifier conversion (C)C' bytes='90' count='398' iicount='398' level='3' stamp='0.605' comment='tiered' hot_count='398'/>
+<writer thread='25169'/>
+<nmethod compile_id='949' compiler='c1' level='3' entry='0x00007fba5e49eda0' size='37344' address='0x00007fba5e49e390' relocation_offset='368' insts_offset='2576' stub_offset='28528' scopes_data_offset='30040' scopes_pcs_offset='33464' dependencies_offset='36872' handler_table_offset='36888' nul_chk_table_offset='37128' oops_offset='29720' metadata_offset='29816' method='com.sun.hotspot.tools.compiler.CallSite print (Ljava/io/PrintStream;IZZ)V' bytes='428' count='389' backedge_count='145' iicount='389' stamp='0.605'/>
+<writer thread='25168'/>
+<nmethod compile_id='974' compiler='c1' level='3' entry='0x00007fba5e4a78e0' size='8512' address='0x00007fba5e4a7590' relocation_offset='368' insts_offset='848' stub_offset='5648' scopes_data_offset='6072' scopes_pcs_offset='6872' dependencies_offset='7656' handler_table_offset='7664' nul_chk_table_offset='8408' metadata_offset='6056' method='java.util.Formatter format (Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/Formatter;' bytes='280' count='398' backedge_count='798' iicount='398' stamp='0.605'/>
+<writer thread='25110'/>
+<task_queued compile_id='991' method='java.util.Formatter$Conversion isText (C)Z' bytes='32' count='400' iicount='400' level='3' stamp='0.605' comment='tiered' hot_count='400'/>
+<writer thread='25166'/>
+<nmethod compile_id='969' compiler='c1' level='3' entry='0x00007fba5e4a9940' size='2832' address='0x00007fba5e4a9710' relocation_offset='368' insts_offset='560' stub_offset='2128' scopes_data_offset='2392' scopes_pcs_offset='2552' dependencies_offset='2792' nul_chk_table_offset='2800' metadata_offset='2344' method='java.io.PrintStream append (Ljava/lang/CharSequence;II)Ljava/lang/Appendable;' bytes='8' count='403' iicount='403' stamp='0.606'/>
+<writer thread='25110'/>
+<task_queued compile_id='992' method='java.util.Formatter$FormatSpecifier checkFloat ()V' bytes='98' count='393' iicount='393' level='3' stamp='0.606' comment='tiered' hot_count='393'/>
+<writer thread='25168'/>
+<nmethod compile_id='972' compiler='c1' level='3' entry='0x00007fba5e4aa4c0' size='3216' address='0x00007fba5e4aa290' relocation_offset='368' insts_offset='560' stub_offset='2352' scopes_data_offset='2624' scopes_pcs_offset='2856' dependencies_offset='3144' nul_chk_table_offset='3152' oops_offset='2584' metadata_offset='2592' method='java.util.Formatter$FormatSpecifier appendJustified (Ljava/lang/Appendable;Ljava/lang/CharSequence;)Ljava/lang/Appendable;' bytes='91' count='404' iicount='404' stamp='0.606'/>
+<writer thread='25169'/>
+<nmethod compile_id='973' compiler='c1' level='3' entry='0x00007fba5e4ab1a0' size='2304' address='0x00007fba5e4aaf90' relocation_offset='368' insts_offset='528' stub_offset='1712' scopes_data_offset='1952' scopes_pcs_offset='2080' dependencies_offset='2272' nul_chk_table_offset='2280' metadata_offset='1912' method='java.io.PrintStream append (Ljava/lang/CharSequence;)Ljava/lang/Appendable;' bytes='6' count='407' iicount='407' stamp='0.606'/>
+<writer thread='25168'/>
+<nmethod compile_id='978' compiler='c1' level='3' entry='0x00007fba5e4abae0' size='1504' address='0x00007fba5e4ab910' relocation_offset='368' insts_offset='464' stub_offset='1104' scopes_data_offset='1288' scopes_pcs_offset='1376' dependencies_offset='1472' nul_chk_table_offset='1480' oops_offset='1248' metadata_offset='1256' method='java.util.Formatter$FormatSpecifier adjustWidth (ILjava/util/Formatter$Flags;Z)I' bytes='29' count='405' iicount='405' stamp='0.606'/>
+<writer thread='25166'/>
+<nmethod compile_id='977' compiler='c1' level='3' entry='0x00007fba5e4ac160' size='4064' address='0x00007fba5e4abf10' relocation_offset='368' insts_offset='592' stub_offset='2992' scopes_data_offset='3272' scopes_pcs_offset='3608' dependencies_offset='3976' nul_chk_table_offset='3984' oops_offset='3208' metadata_offset='3232' method='java.util.Formatter$FormatSpecifier leadingSign (Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;' bytes='82' count='410' iicount='410' stamp='0.607'/>
+<writer thread='25165'/>
+<nmethod compile_id='962' compiler='c2' level='4' entry='0x00007fba6575d340' size='2152' address='0x00007fba6575d190' relocation_offset='368' insts_offset='432' stub_offset='1584' scopes_data_offset='1664' scopes_pcs_offset='1920' dependencies_offset='2096' handler_table_offset='2104' nul_chk_table_offset='2128' metadata_offset='1608' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='5864' iicount='5864' stamp='0.607'/>
+<make_not_entrant thread='25165' compile_id='222' compiler='c1' level='3' stamp='0.607'/>
+<writer thread='25169'/>
+<nmethod compile_id='979' compiler='c1' level='3' entry='0x00007fba5e4ad0e0' size='1856' address='0x00007fba5e4acf10' relocation_offset='368' insts_offset='464' stub_offset='1328' scopes_data_offset='1544' scopes_pcs_offset='1672' dependencies_offset='1816' nul_chk_table_offset='1824' oops_offset='1496' metadata_offset='1504' method='java.util.Formatter$FormatSpecifier trailingSign (Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;' bytes='26' count='412' iicount='412' stamp='0.607'/>
+<writer thread='25110'/>
+<task_queued compile_id='993' method='java.lang.StringBuilder &lt;init&gt; ()V' bytes='7' count='5129' iicount='5129' stamp='0.607' comment='tiered' hot_count='5129'/>
+<writer thread='25168'/>
+<nmethod compile_id='970' compiler='c1' level='3' entry='0x00007fba5e4ad8a0' size='2600' address='0x00007fba5e4ad690' relocation_offset='368' insts_offset='528' stub_offset='1936' scopes_data_offset='2192' scopes_pcs_offset='2336' dependencies_offset='2560' nul_chk_table_offset='2568' metadata_offset='2152' method='java.io.PrintStream append (Ljava/lang/CharSequence;II)Ljava/io/PrintStream;' bytes='20' count='425' iicount='425' stamp='0.607'/>
+<writer thread='25110'/>
+<task_queued compile_id='994' method='com.sun.hotspot.tools.compiler.CallSite getIntrinsicOrEmptyString ()Ljava/lang/String;' bytes='38' count='417' iicount='417' level='3' stamp='0.607' comment='tiered' hot_count='417'/>
+<task_queued compile_id='995' method='java.io.PrintStream format (Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;' bytes='92' count='430' iicount='430' level='3' stamp='0.608' comment='tiered' hot_count='430'/>
+<writer thread='25168'/>
+<nmethod compile_id='980' compiler='c1' level='3' entry='0x00007fba5e4ae300' size='2192' address='0x00007fba5e4ae110' relocation_offset='368' insts_offset='496' stub_offset='1552' scopes_data_offset='1776' scopes_pcs_offset='1936' dependencies_offset='2096' handler_table_offset='2104' nul_chk_table_offset='2176' metadata_offset='1736' method='java.io.PrintStream println (Ljava/lang/String;)V' bytes='24' count='418' iicount='418' stamp='0.608'/>
+<writer thread='25167'/>
+<nmethod compile_id='975' compiler='c1' level='3' entry='0x00007fba5e4aeec0' size='15936' address='0x00007fba5e4aea10' relocation_offset='368' insts_offset='1200' stub_offset='11952' scopes_data_offset='12536' scopes_pcs_offset='14200' dependencies_offset='15752' nul_chk_table_offset='15760' metadata_offset='12392' method='java.util.Formatter parse (Ljava/lang/String;)Ljava/util/List;' bytes='137' count='430' backedge_count='434' iicount='430' stamp='0.608'/>
+<writer thread='25110'/>
+<task_queued compile_id='996' method='java.util.Formatter$FormatSpecifier getZero (Ljava/util/Locale;)C' bytes='36' count='426' iicount='426' level='3' stamp='0.608' comment='tiered' hot_count='426'/>
+<writer thread='25167'/>
+<nmethod compile_id='991' compiler='c1' level='3' entry='0x00007fba5e4b2a40' size='848' address='0x00007fba5e4b2890' relocation_offset='368' insts_offset='432' stub_offset='624' scopes_data_offset='776' scopes_pcs_offset='792' dependencies_offset='840' metadata_offset='768' method='java.util.Formatter$Conversion isText (C)Z' bytes='32' count='436' iicount='436' stamp='0.608'/>
+<writer thread='25166'/>
+<nmethod compile_id='971' compiler='c1' level='3' entry='0x00007fba5e4b2ea0' size='3584' address='0x00007fba5e4b2c10' relocation_offset='368' insts_offset='656' stub_offset='2608' scopes_data_offset='2984' scopes_pcs_offset='3176' dependencies_offset='3528' nul_chk_table_offset='3536' metadata_offset='2936' method='java.util.Formatter$FormatSpecifier print (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='243' count='438' iicount='438' stamp='0.608'/>
+<writer thread='25169'/>
+<nmethod compile_id='976' compiler='c1' level='3' entry='0x00007fba5e4b3d40' size='4896' address='0x00007fba5e4b3a90' relocation_offset='368' insts_offset='688' stub_offset='3664' scopes_data_offset='3984' scopes_pcs_offset='4320' dependencies_offset='4816' nul_chk_table_offset='4824' oops_offset='3912' metadata_offset='3944' method='java.util.Formatter$FormatSpecifier checkNumeric ()V' bytes='168' count='441' iicount='441' stamp='0.609'/>
+<writer thread='25168'/>
+<nmethod compile_id='990' compiler='c1' level='3' entry='0x00007fba5e4b50a0' size='4136' address='0x00007fba5e4b4e10' relocation_offset='368' insts_offset='656' stub_offset='2960' scopes_data_offset='3352' scopes_pcs_offset='3648' dependencies_offset='4080' nul_chk_table_offset='4088' oops_offset='3256' metadata_offset='3264' method='java.util.Formatter$FormatSpecifier conversion (C)C' bytes='90' count='450' iicount='450' stamp='0.609'/>
+<writer thread='25167'/>
+<nmethod compile_id='994' compiler='c1' level='3' entry='0x00007fba5e4b6100' size='4144' address='0x00007fba5e4b5e90' relocation_offset='368' insts_offset='624' stub_offset='3216' scopes_data_offset='3560' scopes_pcs_offset='3816' dependencies_offset='4136' oops_offset='3464' metadata_offset='3488' method='com.sun.hotspot.tools.compiler.CallSite getIntrinsicOrEmptyString ()Ljava/lang/String;' bytes='38' count='436' iicount='436' stamp='0.609'/>
+<writer thread='25162'/>
+<nmethod compile_id='993' compiler='c2' level='4' entry='0x00007fba6575dba0' size='1008' address='0x00007fba6575da10' relocation_offset='368' insts_offset='400' stub_offset='848' scopes_data_offset='896' scopes_pcs_offset='928' dependencies_offset='976' handler_table_offset='984' metadata_offset='872' method='java.lang.StringBuilder &lt;init&gt; ()V' bytes='7' count='5287' iicount='5287' stamp='0.609'/>
+<make_not_entrant thread='25162' compile_id='252' compiler='c1' level='3' stamp='0.609'/>
+<writer thread='25167'/>
+<nmethod compile_id='983' compiler='c1' level='3' entry='0x00007fba5e4b7100' size='2352' address='0x00007fba5e4b6f10' relocation_offset='368' insts_offset='496' stub_offset='1936' scopes_data_offset='2104' scopes_pcs_offset='2232' dependencies_offset='2344' metadata_offset='2080' method='java.lang.Double compare (DD)I' bytes='54' count='444' iicount='444' stamp='0.609'/>
+<writer thread='25169'/>
+<nmethod compile_id='981' compiler='c1' level='3' entry='0x00007fba5e4b7b00' size='4432' address='0x00007fba5e4b7890' relocation_offset='368' insts_offset='624' stub_offset='3632' scopes_data_offset='3896' scopes_pcs_offset='4072' dependencies_offset='4392' nul_chk_table_offset='4400' metadata_offset='3864' method='java.util.Formatter$FormatSpecifier printFloat (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='86' count='444' iicount='444' stamp='0.610'/>
+<writer thread='25167'/>
+<nmethod compile_id='996' compiler='c1' level='3' entry='0x00007fba5e4b8c20' size='2304' address='0x00007fba5e4b8a10' relocation_offset='368' insts_offset='528' stub_offset='1648' scopes_data_offset='1896' scopes_pcs_offset='2040' dependencies_offset='2264' nul_chk_table_offset='2272' metadata_offset='1864' method='java.util.Formatter$FormatSpecifier getZero (Ljava/util/Locale;)C' bytes='36' count='452' iicount='452' stamp='0.610'/>
+<writer thread='25166'/>
+<nmethod compile_id='995' compiler='c1' level='3' entry='0x00007fba5e4b9660' size='6304' address='0x00007fba5e4b9390' relocation_offset='368' insts_offset='720' stub_offset='4304' scopes_data_offset='4704' scopes_pcs_offset='5216' dependencies_offset='5760' handler_table_offset='5768' nul_chk_table_offset='6264' metadata_offset='4616' method='java.io.PrintStream format (Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;' bytes='92' count='456' iicount='456' stamp='0.610'/>
+<writer thread='25167'/>
+<nmethod compile_id='989' compiler='c1' level='3' entry='0x00007fba5e4bae40' size='1264' address='0x00007fba5e4bac90' relocation_offset='368' insts_offset='432' stub_offset='976' scopes_data_offset='1152' scopes_pcs_offset='1176' dependencies_offset='1256' metadata_offset='1144' method='jdk.internal.math.FormattedFloatingDecimal getBuffer ()[C' bytes='10' count='444' iicount='444' stamp='0.610'/>
+<writer thread='25166'/>
+<nmethod compile_id='984' compiler='c1' level='3' entry='0x00007fba5e4bb360' size='1072' address='0x00007fba5e4bb190' relocation_offset='368' consts_offset='432' insts_offset='464' stub_offset='848' scopes_data_offset='1000' scopes_pcs_offset='1016' dependencies_offset='1064' metadata_offset='992' method='java.lang.Double isInfinite (D)Z' bytes='22' count='444' iicount='444' stamp='0.610'/>
+<writer thread='25154'/>
+<destroy_vm stamp='0.611'/>
+<tty_done stamp='0.652'/>
+</tty>
+<compilation_log thread='25169'>
+<start_compile_thread name='C1 CompilerThread11' thread='25169' process='25109' stamp='0.108'/>
+<task compile_id='4' method='java.lang.String coder ()B' bytes='15' count='647' iicount='647' level='3' stamp='0.114'>
+<phase name='setup' stamp='0.114'>
+<phase_done name='setup' stamp='0.114'/>
+</phase>
+<phase name='buildIR' stamp='0.114'>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='coder' return='973' flags='0' bytes='15' iicount='660'/>
+<parse method='1093'  stamp='0.114'>
+<phase name='parse_hir' stamp='0.114'>
+<phase_done name='parse_hir' stamp='0.114'/>
+</phase>
+<parse_done stamp='0.114'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.114'>
+<phase_done name='optimize_blocks' stamp='0.114'/>
+</phase>
+<phase name='gvn' stamp='0.114'>
+<phase_done name='gvn' stamp='0.114'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.114'>
+<phase_done name='rangeCheckElimination' stamp='0.114'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.114'>
+<phase_done name='optimize_null_checks' stamp='0.114'/>
+</phase>
+<phase_done name='buildIR' stamp='0.114'/>
+</phase>
+<phase name='emit_lir' stamp='0.114'>
+<phase name='lirGeneration' stamp='0.114'>
+<phase_done name='lirGeneration' stamp='0.114'/>
+</phase>
+<phase name='linearScan' stamp='0.114'>
+<phase_done name='linearScan' stamp='0.114'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.114'/>
+</phase>
+<phase name='codeemit' stamp='0.114'>
+<phase_done name='codeemit' stamp='0.114'/>
+</phase>
+<phase name='codeinstall' stamp='0.114'>
+<phase_done name='codeinstall' stamp='0.114'/>
+</phase>
+<code_cache total_blobs='290' nmethods='4' adapters='146' free_code_cache='248776192'/>
+<task_done success='1' nmsize='368' count='665' stamp='0.114'/>
+</task>
+<task compile_id='8' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='416' iicount='416' level='3' stamp='0.120'>
+<phase name='setup' stamp='0.120'>
+<phase_done name='setup' stamp='0.120'/>
+</phase>
+<phase name='buildIR' stamp='0.120'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' iicount='416'/>
+<parse method='1093'  stamp='0.120'>
+<phase name='parse_hir' stamp='0.120'>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='823'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.120'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.120'/>
+</parse>
+<bc code='183' bci='31'/>
+<method id='1098' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='1' compiler='c1' level='3' iicount='1153'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.120'/>
+</parse>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='308'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='59'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='equals' return='969' arguments='1085 1085' flags='9' bytes='44' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.120'/>
+</phase>
+<parse_done stamp='0.120'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.120'>
+<phase_done name='optimize_blocks' stamp='0.120'/>
+</phase>
+<phase name='gvn' stamp='0.120'>
+<phase_done name='gvn' stamp='0.120'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.120'>
+<phase_done name='rangeCheckElimination' stamp='0.120'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.120'>
+<phase_done name='optimize_null_checks' stamp='0.120'/>
+</phase>
+<phase_done name='buildIR' stamp='0.120'/>
+</phase>
+<phase name='emit_lir' stamp='0.120'>
+<phase name='lirGeneration' stamp='0.120'>
+<phase_done name='lirGeneration' stamp='0.120'/>
+</phase>
+<phase name='linearScan' stamp='0.120'>
+<phase_done name='linearScan' stamp='0.120'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.120'/>
+</phase>
+<phase name='codeemit' stamp='0.120'>
+<phase_done name='codeemit' stamp='0.120'/>
+</phase>
+<phase name='codeinstall' stamp='0.120'>
+<phase_done name='codeinstall' stamp='0.120'/>
+</phase>
+<code_cache total_blobs='301' nmethods='8' adapters='153' free_code_cache='248763776'/>
+<task_done success='1' nmsize='1944' count='416' inlined_bytes='49' stamp='0.120'/>
+</task>
+<task compile_id='12' method='java.lang.Math floorDiv (II)I' bytes='22' count='283' iicount='283' level='3' stamp='0.128'>
+<phase name='setup' stamp='0.128'>
+<phase_done name='setup' stamp='0.128'/>
+</phase>
+<phase name='buildIR' stamp='0.128'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' iicount='283'/>
+<parse method='1094'  stamp='0.128'>
+<phase name='parse_hir' stamp='0.128'>
+<phase_done name='parse_hir' stamp='0.128'/>
+</phase>
+<parse_done stamp='0.128'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.128'>
+<phase_done name='optimize_blocks' stamp='0.128'/>
+</phase>
+<phase name='gvn' stamp='0.128'>
+<phase_done name='gvn' stamp='0.128'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.128'>
+<phase_done name='rangeCheckElimination' stamp='0.128'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.128'>
+<phase_done name='optimize_null_checks' stamp='0.128'/>
+</phase>
+<phase_done name='buildIR' stamp='0.128'/>
+</phase>
+<phase name='emit_lir' stamp='0.128'>
+<phase name='lirGeneration' stamp='0.128'>
+<phase_done name='lirGeneration' stamp='0.128'/>
+</phase>
+<phase name='linearScan' stamp='0.128'>
+<phase_done name='linearScan' stamp='0.128'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.128'/>
+</phase>
+<phase name='codeemit' stamp='0.128'>
+<phase_done name='codeemit' stamp='0.128'/>
+</phase>
+<phase name='codeinstall' stamp='0.128'>
+<phase_done name='codeinstall' stamp='0.128'/>
+</phase>
+<code_cache total_blobs='309' nmethods='11' adapters='158' free_code_cache='248756992'/>
+<task_done success='1' nmsize='464' count='317' stamp='0.128'/>
+</task>
+<task compile_id='17' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='290' iicount='290' level='3' stamp='0.131'>
+<phase name='setup' stamp='0.131'>
+<phase_done name='setup' stamp='0.131'/>
+</phase>
+<phase name='buildIR' stamp='0.131'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1095' flags='4096' bytes='10' iicount='290'/>
+<parse method='1096'  stamp='0.131'>
+<phase name='parse_hir' stamp='0.131'>
+<bc code='183' bci='6'/>
+<method id='1098' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' iicount='294'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1399'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.132'/>
+</parse>
+<parse_done stamp='0.132'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.132'/>
+</phase>
+<parse_done stamp='0.132'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.132'>
+<phase_done name='optimize_blocks' stamp='0.132'/>
+</phase>
+<phase name='gvn' stamp='0.132'>
+<phase_done name='gvn' stamp='0.132'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.132'>
+<phase_done name='rangeCheckElimination' stamp='0.132'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.132'>
+<phase_done name='optimize_null_checks' stamp='0.132'/>
+</phase>
+<phase_done name='buildIR' stamp='0.132'/>
+</phase>
+<phase name='emit_lir' stamp='0.132'>
+<phase name='lirGeneration' stamp='0.132'>
+<phase_done name='lirGeneration' stamp='0.132'/>
+</phase>
+<phase name='linearScan' stamp='0.132'>
+<phase_done name='linearScan' stamp='0.132'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.132'/>
+</phase>
+<phase name='codeemit' stamp='0.132'>
+<phase_done name='codeemit' stamp='0.132'/>
+</phase>
+<phase name='codeinstall' stamp='0.132'>
+<phase_done name='codeinstall' stamp='0.132'/>
+</phase>
+<code_cache total_blobs='316' nmethods='17' adapters='158' free_code_cache='248747136'/>
+<task_done success='1' nmsize='848' count='331' inlined_bytes='21' stamp='0.132'/>
+</task>
+<task compile_id='22' method='java.util.Objects equals (Ljava/lang/Object;Ljava/lang/Object;)Z' bytes='23' count='293' iicount='293' level='3' stamp='0.132'>
+<phase name='setup' stamp='0.132'>
+<phase_done name='setup' stamp='0.132'/>
+</phase>
+<phase name='buildIR' stamp='0.132'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Objects' flags='17'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982 982' flags='9' bytes='23' iicount='293'/>
+<parse method='1094'  stamp='0.132'>
+<phase name='parse_hir' stamp='0.132'>
+<bc code='182' bci='11'/>
+<method id='1096' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.132'/>
+</phase>
+<parse_done stamp='0.132'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.132'>
+<phase_done name='optimize_blocks' stamp='0.132'/>
+</phase>
+<phase name='gvn' stamp='0.132'>
+<phase_done name='gvn' stamp='0.132'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.132'>
+<phase_done name='rangeCheckElimination' stamp='0.132'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.132'>
+<phase_done name='optimize_null_checks' stamp='0.132'/>
+</phase>
+<phase_done name='buildIR' stamp='0.132'/>
+</phase>
+<phase name='emit_lir' stamp='0.132'>
+<phase name='lirGeneration' stamp='0.132'>
+<phase_done name='lirGeneration' stamp='0.132'/>
+</phase>
+<phase name='linearScan' stamp='0.132'>
+<phase_done name='linearScan' stamp='0.132'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.132'/>
+</phase>
+<phase name='codeemit' stamp='0.132'>
+<phase_done name='codeemit' stamp='0.132'/>
+</phase>
+<phase name='codeinstall' stamp='0.132'>
+<phase_done name='codeinstall' stamp='0.132'/>
+</phase>
+<code_cache total_blobs='320' nmethods='21' adapters='158' free_code_cache='248741376'/>
+<task_done success='1' nmsize='712' count='295' stamp='0.132'/>
+</task>
+<task compile_id='26' method='java.util.Set of ([Ljava/lang/Object;)Ljava/util/Set;' bytes='66' count='264' iicount='264' level='3' stamp='0.133'>
+<phase name='setup' stamp='0.133'>
+<phase_done name='setup' stamp='0.133'/>
+</phase>
+<phase name='buildIR' stamp='0.133'>
+<klass id='1093' name='java.util.Set' flags='1537'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1095' holder='1093' name='of' return='1093' arguments='1094' flags='137' bytes='66' iicount='265'/>
+<parse method='1095'  stamp='0.133'>
+<phase name='parse_hir' stamp='0.133'>
+<bc code='184' bci='28'/>
+<klass id='1097' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1098' holder='1097' name='instance' return='1097' flags='8' bytes='4' iicount='101'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.133'/>
+</parse>
+<bc code='183' bci='39'/>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1102' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1103' holder='1102' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='13' iicount='130'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<klass id='1105' name='java.util.ImmutableCollections$AbstractImmutableSet' flags='1032'/>
+<method id='1106' holder='1105' name='&lt;init&gt;' return='977' flags='0' bytes='5' compile_id='25' compiler='c1' level='3' iicount='364'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='1'/>
+<klass id='1108' name='java.util.AbstractSet' flags='1025'/>
+<method id='1109' holder='1108' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='365'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='1'/>
+<klass id='1111' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1112' holder='1111' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='430'/>
+<call method='1112' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='1'/>
+<method id='1114' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2116'/>
+<call method='1114' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1116' name='java.util.Objects' flags='17'/>
+<method id='1117' holder='1116' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='581'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1119' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='183' bci='53'/>
+<klass id='1121' name='java.util.ImmutableCollections$Set2' flags='24'/>
+<method id='1122' holder='1121' name='&lt;init&gt;' return='977' arguments='982 982' flags='0' bytes='72' iicount='76'/>
+<call method='1122' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='62'/>
+<klass id='1124' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1125' holder='1124' name='&lt;init&gt;' return='977' arguments='1094' flags='128' bytes='90' iicount='163'/>
+<call method='1125' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.134'/>
+</phase>
+<parse_done stamp='0.134'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.134'>
+<phase_done name='optimize_blocks' stamp='0.134'/>
+</phase>
+<phase name='gvn' stamp='0.134'>
+<phase_done name='gvn' stamp='0.134'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.134'>
+<phase_done name='rangeCheckElimination' stamp='0.134'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.134'>
+<phase_done name='optimize_null_checks' stamp='0.134'/>
+</phase>
+<phase_done name='buildIR' stamp='0.134'/>
+</phase>
+<phase name='emit_lir' stamp='0.134'>
+<phase name='lirGeneration' stamp='0.134'>
+<phase_done name='lirGeneration' stamp='0.134'/>
+</phase>
+<phase name='linearScan' stamp='0.134'>
+<phase_done name='linearScan' stamp='0.134'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.134'/>
+</phase>
+<phase name='codeemit' stamp='0.134'>
+<phase_done name='codeemit' stamp='0.134'/>
+</phase>
+<phase name='codeinstall' stamp='0.134'>
+<phase_done name='codeinstall' stamp='0.134'/>
+</phase>
+<code_cache total_blobs='329' nmethods='28' adapters='158' free_code_cache='248718464'/>
+<task_done success='1' nmsize='1896' count='306' inlined_bytes='47' stamp='0.134'/>
+</task>
+<task compile_id='33' method='java.util.ImmutableCollections$Set1 hashCode ()I' bytes='8' count='261' iicount='261' level='3' stamp='0.134'>
+<phase name='setup' stamp='0.134'>
+<phase_done name='setup' stamp='0.134'/>
+</phase>
+<phase name='buildIR' stamp='0.134'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='8' iicount='262'/>
+<parse method='1094'  stamp='0.134'>
+<phase name='parse_hir' stamp='0.134'>
+<bc code='182' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='78'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.135'/>
+</phase>
+<parse_done stamp='0.135'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.135'>
+<phase_done name='optimize_blocks' stamp='0.135'/>
+</phase>
+<phase name='gvn' stamp='0.135'>
+<phase_done name='gvn' stamp='0.135'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.135'>
+<phase_done name='rangeCheckElimination' stamp='0.135'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.135'>
+<phase_done name='optimize_null_checks' stamp='0.135'/>
+</phase>
+<phase_done name='buildIR' stamp='0.135'/>
+</phase>
+<phase name='emit_lir' stamp='0.135'>
+<phase name='lirGeneration' stamp='0.135'>
+<phase_done name='lirGeneration' stamp='0.135'/>
+</phase>
+<phase name='linearScan' stamp='0.135'>
+<phase_done name='linearScan' stamp='0.135'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.135'/>
+</phase>
+<phase name='codeemit' stamp='0.135'>
+<phase_done name='codeemit' stamp='0.135'/>
+</phase>
+<phase name='codeinstall' stamp='0.135'>
+<phase_done name='codeinstall' stamp='0.135'/>
+</phase>
+<code_cache total_blobs='333' nmethods='32' adapters='158' free_code_cache='248723840'/>
+<task_done success='1' nmsize='552' count='277' stamp='0.135'/>
+</task>
+<task compile_id='34' method='java.lang.module.ModuleDescriptor$Exports equals (Ljava/lang/Object;)Z' bytes='62' count='258' iicount='258' level='3' stamp='0.135'>
+<phase name='setup' stamp='0.135'>
+<phase_done name='setup' stamp='0.135'/>
+</phase>
+<phase name='buildIR' stamp='0.135'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982' flags='1' bytes='62' iicount='258'/>
+<parse method='1094'  stamp='0.135'>
+<phase name='parse_hir' stamp='0.135'>
+<bc code='184' bci='22'/>
+<klass id='1097' name='java.util.Objects' flags='17'/>
+<method id='1098' holder='1097' name='equals' return='969' arguments='982 982' flags='9' bytes='23' compile_id='22' compiler='c1' level='3' iicount='536'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<method id='1100' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='184' bci='36'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='184' bci='50'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.135'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.135'/>
+</phase>
+<parse_done stamp='0.135'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.135'>
+<phase_done name='optimize_blocks' stamp='0.135'/>
+</phase>
+<phase name='gvn' stamp='0.135'>
+<phase_done name='gvn' stamp='0.135'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.135'>
+<phase_done name='rangeCheckElimination' stamp='0.135'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.135'>
+<phase_done name='optimize_null_checks' stamp='0.135'/>
+</phase>
+<phase_done name='buildIR' stamp='0.135'/>
+</phase>
+<phase name='emit_lir' stamp='0.135'>
+<phase name='lirGeneration' stamp='0.135'>
+<phase_done name='lirGeneration' stamp='0.135'/>
+</phase>
+<phase name='linearScan' stamp='0.135'>
+<phase_done name='linearScan' stamp='0.135'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.135'/>
+</phase>
+<phase name='codeemit' stamp='0.135'>
+<phase_done name='codeemit' stamp='0.135'/>
+</phase>
+<phase name='codeinstall' stamp='0.135'>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='335' nmethods='34' adapters='158' free_code_cache='248719232'/>
+<task_done success='1' nmsize='2504' count='267' inlined_bytes='69' stamp='0.136'/>
+</task>
+<task compile_id='38' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;ZLjava/lang/module/ModuleDescriptor$1;)V' bytes='10' count='349' iicount='349' level='3' stamp='0.136'>
+<phase name='setup' stamp='0.136'>
+<phase_done name='setup' stamp='0.136'/>
+</phase>
+<phase name='buildIR' stamp='0.136'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<type id='969' name='boolean'/>
+<klass id='1096' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1097' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969 1096' flags='4096' bytes='10' iicount='349'/>
+<parse method='1097'  stamp='0.136'>
+<phase name='parse_hir' stamp='0.136'>
+<bc code='183' bci='6'/>
+<method id='1099' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969' flags='2' bytes='25' iicount='349'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2679'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.136'/>
+</parse>
+<parse_done stamp='0.136'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.136'/>
+</phase>
+<parse_done stamp='0.136'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.136'>
+<phase_done name='optimize_blocks' stamp='0.136'/>
+</phase>
+<phase name='gvn' stamp='0.136'>
+<phase_done name='gvn' stamp='0.136'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.136'>
+<phase_done name='rangeCheckElimination' stamp='0.136'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.136'>
+<phase_done name='optimize_null_checks' stamp='0.136'/>
+</phase>
+<phase_done name='buildIR' stamp='0.136'/>
+</phase>
+<phase name='emit_lir' stamp='0.136'>
+<phase name='lirGeneration' stamp='0.136'>
+<phase_done name='lirGeneration' stamp='0.136'/>
+</phase>
+<phase name='linearScan' stamp='0.136'>
+<phase_done name='linearScan' stamp='0.136'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.136'/>
+</phase>
+<phase name='codeemit' stamp='0.136'>
+<phase_done name='codeemit' stamp='0.136'/>
+</phase>
+<phase name='codeinstall' stamp='0.136'>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='338' nmethods='37' adapters='158' free_code_cache='248708864'/>
+<task_done success='1' nmsize='880' count='349' inlined_bytes='26' stamp='0.136'/>
+</task>
+<task compile_id='42' method='java.nio.Buffer checkIndex (I)I' bytes='22' count='292' iicount='292' level='3' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.138'/>
+</phase>
+<phase name='buildIR' stamp='0.138'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='checkIndex' return='975' arguments='975' flags='16' bytes='22' iicount='298'/>
+<parse method='1093'  stamp='0.138'>
+<phase name='parse_hir' stamp='0.138'>
+<bc code='183' bci='16'/>
+<type id='977' name='void'/>
+<klass id='1095' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1096' holder='1095' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.138'/>
+</phase>
+<parse_done stamp='0.138'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.138'>
+<phase_done name='optimize_blocks' stamp='0.138'/>
+</phase>
+<phase name='gvn' stamp='0.138'>
+<phase_done name='gvn' stamp='0.138'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.138'>
+<phase_done name='rangeCheckElimination' stamp='0.138'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.138'>
+<phase_done name='optimize_null_checks' stamp='0.138'/>
+</phase>
+<phase_done name='buildIR' stamp='0.138'/>
+</phase>
+<phase name='emit_lir' stamp='0.138'>
+<phase name='lirGeneration' stamp='0.138'>
+<phase_done name='lirGeneration' stamp='0.138'/>
+</phase>
+<phase name='linearScan' stamp='0.138'>
+<phase_done name='linearScan' stamp='0.138'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.138'/>
+</phase>
+<phase name='codeemit' stamp='0.138'>
+<phase_done name='codeemit' stamp='0.138'/>
+</phase>
+<phase name='codeinstall' stamp='0.138'>
+<phase_done name='codeinstall' stamp='0.138'/>
+</phase>
+<code_cache total_blobs='344' nmethods='43' adapters='158' free_code_cache='248698752'/>
+<task_done success='1' nmsize='584' count='382' stamp='0.138'/>
+</task>
+<task compile_id='48' method='java.net.URI toLower (C)I' bytes='19' count='297' iicount='297' level='3' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.139'/>
+</phase>
+<phase name='buildIR' stamp='0.139'>
+<type id='975' name='int'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.net.URI' flags='17'/>
+<method id='1094' holder='1093' name='toLower' return='975' arguments='970' flags='10' bytes='19' iicount='297'/>
+<parse method='1094'  stamp='0.139'>
+<phase name='parse_hir' stamp='0.139'>
+<phase_done name='parse_hir' stamp='0.139'/>
+</phase>
+<parse_done stamp='0.139'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.139'>
+<phase_done name='optimize_blocks' stamp='0.139'/>
+</phase>
+<phase name='gvn' stamp='0.139'>
+<phase_done name='gvn' stamp='0.139'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.139'>
+<phase_done name='rangeCheckElimination' stamp='0.139'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.139'>
+<phase_done name='optimize_null_checks' stamp='0.139'/>
+</phase>
+<phase_done name='buildIR' stamp='0.139'/>
+</phase>
+<phase name='emit_lir' stamp='0.139'>
+<phase name='lirGeneration' stamp='0.139'>
+<phase_done name='lirGeneration' stamp='0.139'/>
+</phase>
+<phase name='linearScan' stamp='0.139'>
+<phase_done name='linearScan' stamp='0.139'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.139'/>
+</phase>
+<phase name='codeemit' stamp='0.139'>
+<phase_done name='codeemit' stamp='0.139'/>
+</phase>
+<phase name='codeinstall' stamp='0.139'>
+<phase_done name='codeinstall' stamp='0.139'/>
+</phase>
+<code_cache total_blobs='348' nmethods='47' adapters='158' free_code_cache='248694656'/>
+<task_done success='1' nmsize='432' count='297' stamp='0.139'/>
+</task>
+<task compile_id='52' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='640' iicount='640' level='3' stamp='0.144'>
+<phase name='setup' stamp='0.144'>
+<phase_done name='setup' stamp='0.144'/>
+</phase>
+<phase name='buildIR' stamp='0.144'>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='tabAt' return='1094' arguments='1095 975' flags='24' bytes='22' iicount='640'/>
+<parse method='1096'  stamp='0.144'>
+<phase name='parse_hir' stamp='0.144'>
+<bc code='182' bci='15'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' iicount='640'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='3'/>
+<method id='1102' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='54' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.144'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.144'/>
+</phase>
+<parse_done stamp='0.144'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.144'>
+<phase_done name='optimize_blocks' stamp='0.144'/>
+</phase>
+<phase name='gvn' stamp='0.144'>
+<phase_done name='gvn' stamp='0.144'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.144'>
+<phase_done name='rangeCheckElimination' stamp='0.144'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.144'>
+<phase_done name='optimize_null_checks' stamp='0.144'/>
+</phase>
+<phase_done name='buildIR' stamp='0.144'/>
+</phase>
+<phase name='emit_lir' stamp='0.144'>
+<phase name='lirGeneration' stamp='0.144'>
+<phase_done name='lirGeneration' stamp='0.144'/>
+</phase>
+<phase name='linearScan' stamp='0.144'>
+<phase_done name='linearScan' stamp='0.144'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.144'/>
+</phase>
+<phase name='codeemit' stamp='0.144'>
+<phase_done name='codeemit' stamp='0.144'/>
+</phase>
+<phase name='codeinstall' stamp='0.144'>
+<phase_done name='codeinstall' stamp='0.144'/>
+</phase>
+<code_cache total_blobs='361' nmethods='54' adapters='162' free_code_cache='248683392'/>
+<task_done success='1' nmsize='784' count='640' inlined_bytes='7' stamp='0.144'/>
+</task>
+<task compile_id='58' method='java.util.concurrent.ConcurrentHashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;)V' bytes='20' count='259' iicount='259' level='3' stamp='0.145'>
+<phase name='setup' stamp='0.145'>
+<phase_done name='setup' stamp='0.145'/>
+</phase>
+<phase name='buildIR' stamp='0.145'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975 982 982' flags='0' bytes='20' iicount='263'/>
+<parse method='1094'  stamp='0.145'>
+<phase name='parse_hir' stamp='0.145'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3700'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.145'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.145'/>
+</phase>
+<parse_done stamp='0.145'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.145'>
+<phase_done name='optimize_blocks' stamp='0.145'/>
+</phase>
+<phase name='gvn' stamp='0.145'>
+<phase_done name='gvn' stamp='0.145'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.145'>
+<phase_done name='rangeCheckElimination' stamp='0.145'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.145'>
+<phase_done name='optimize_null_checks' stamp='0.145'/>
+</phase>
+<phase_done name='buildIR' stamp='0.145'/>
+</phase>
+<phase name='emit_lir' stamp='0.145'>
+<phase name='lirGeneration' stamp='0.145'>
+<phase_done name='lirGeneration' stamp='0.145'/>
+</phase>
+<phase name='linearScan' stamp='0.145'>
+<phase_done name='linearScan' stamp='0.145'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.145'/>
+</phase>
+<phase name='codeemit' stamp='0.145'>
+<phase_done name='codeemit' stamp='0.145'/>
+</phase>
+<phase name='codeinstall' stamp='0.145'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.145'/>
+</phase>
+<code_cache total_blobs='367' nmethods='60' adapters='162' free_code_cache='248676608'/>
+<task_done success='1' nmsize='656' count='277' inlined_bytes='1' stamp='0.145'/>
+</task>
+<task compile_id='64' method='java.lang.module.ModuleDescriptor exports ()Ljava/util/Set;' bytes='5' count='163' iicount='163' level='1' stamp='0.146'>
+<phase name='setup' stamp='0.146'>
+<phase_done name='setup' stamp='0.146'/>
+</phase>
+<phase name='buildIR' stamp='0.146'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='exports' return='1094' flags='1' bytes='5' iicount='163'/>
+<parse method='1095'  stamp='0.146'>
+<phase name='parse_hir' stamp='0.146'>
+<phase_done name='parse_hir' stamp='0.146'/>
+</phase>
+<parse_done stamp='0.146'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.146'>
+<phase_done name='optimize_blocks' stamp='0.146'/>
+</phase>
+<phase name='gvn' stamp='0.146'>
+<phase_done name='gvn' stamp='0.146'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.146'>
+<phase_done name='rangeCheckElimination' stamp='0.146'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.146'>
+<phase_done name='optimize_null_checks' stamp='0.146'/>
+</phase>
+<phase_done name='buildIR' stamp='0.146'/>
+</phase>
+<phase name='emit_lir' stamp='0.146'>
+<phase name='lirGeneration' stamp='0.146'>
+<phase_done name='lirGeneration' stamp='0.146'/>
+</phase>
+<phase name='linearScan' stamp='0.146'>
+<phase_done name='linearScan' stamp='0.146'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.146'/>
+</phase>
+<phase name='codeemit' stamp='0.146'>
+<phase_done name='codeemit' stamp='0.146'/>
+</phase>
+<phase name='codeinstall' stamp='0.146'>
+<phase_done name='codeinstall' stamp='0.146'/>
+</phase>
+<code_cache total_blobs='370' nmethods='63' adapters='162' free_code_cache='248670336'/>
+<task_done success='1' nmsize='272' count='169' stamp='0.146'/>
+</task>
+<task compile_id='67' method='java.util.ImmutableCollections$MapN probe (Ljava/lang/Object;)I' bytes='64' count='296' backedge_count='166' iicount='296' level='3' stamp='0.148'>
+<phase name='setup' stamp='0.148'>
+<phase_done name='setup' stamp='0.148'/>
+</phase>
+<phase name='buildIR' stamp='0.148'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$MapN' flags='24'/>
+<method id='1094' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='64' iicount='300'/>
+<parse method='1094'  stamp='0.148'>
+<phase name='parse_hir' stamp='0.148'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='15'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='floorMod' return='975' arguments='975 975' flags='9' bytes='10' compile_id='11' compiler='c1' level='3' iicount='3454'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='3'/>
+<method id='1103' holder='1100' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' compile_id='12' compiler='c1' level='3' iicount='3459'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.148'/>
+</parse>
+<parse_done stamp='0.148'/>
+</parse>
+<bc code='182' bci='39'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.148'/>
+</phase>
+<parse_done stamp='0.148'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.148'>
+<phase_done name='optimize_blocks' stamp='0.148'/>
+</phase>
+<phase name='gvn' stamp='0.148'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='376' nmethods='69' adapters='162' free_code_cache='248651520'/>
+<task_done success='1' nmsize='1528' count='371' backedge_count='180' inlined_bytes='32' stamp='0.149'/>
+</task>
+<task compile_id='74' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='313' backedge_count='39' iicount='313' level='3' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' iicount='319'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<bc code='182' bci='20'/>
+<klass id='1097' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1098' holder='1093' name='resize' return='1097' flags='16' bytes='356' iicount='61'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='56'/>
+<klass id='1096' name='java.util.HashMap$Node' flags='8'/>
+<method id='1100' holder='1093' name='newNode' return='1096' arguments='975 982 982 1096' flags='0' bytes='13' iicount='378'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='91'/>
+<method id='1101' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='123'/>
+<klass id='1102' name='java.util.HashMap$TreeNode' flags='24'/>
+<method id='1103' holder='1102' name='putTreeVal' return='1102' arguments='1093 1097 975 982 982' flags='16' bytes='314' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='152'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='169'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='treeifyBin' return='977' arguments='1097 975' flags='16' bytes='110' iicount='1'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='203'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='253'/>
+<method id='1106' holder='1093' name='afterNodeAccess' return='977' arguments='1096' flags='0' bytes='1' iicount='1'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='288'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='295'/>
+<method id='1107' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' iicount='378'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.150'/>
+</phase>
+<parse_done stamp='0.150'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.150'>
+<phase_done name='optimize_blocks' stamp='0.150'/>
+</phase>
+<phase name='gvn' stamp='0.150'>
+<phase_done name='gvn' stamp='0.150'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.150'>
+<phase_done name='rangeCheckElimination' stamp='0.150'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.150'>
+<phase_done name='optimize_null_checks' stamp='0.150'/>
+</phase>
+<phase_done name='buildIR' stamp='0.150'/>
+</phase>
+<phase name='emit_lir' stamp='0.150'>
+<phase name='lirGeneration' stamp='0.150'>
+<phase_done name='lirGeneration' stamp='0.150'/>
+</phase>
+<phase name='linearScan' stamp='0.150'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='386' nmethods='79' adapters='162' free_code_cache='248631168'/>
+<task_done success='1' nmsize='5016' count='467' backedge_count='51' stamp='0.150'/>
+</task>
+<task compile_id='84' method='java.util.Optional ofNullable (Ljava/lang/Object;)Ljava/util/Optional;' bytes='15' count='256' iicount='256' level='3' stamp='0.150'>
+<phase name='setup' stamp='0.150'>
+<phase_done name='setup' stamp='0.150'/>
+</phase>
+<phase name='buildIR' stamp='0.150'>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1094' holder='1093' name='ofNullable' return='1093' arguments='982' flags='9' bytes='15' iicount='256'/>
+<parse method='1094'  stamp='0.150'>
+<phase name='parse_hir' stamp='0.150'>
+<bc code='184' bci='4'/>
+<method id='1096' holder='1093' name='empty' return='1093' flags='9' bytes='6' iicount='1'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='184' bci='11'/>
+<method id='1100' holder='1093' name='of' return='1093' arguments='982' flags='9' bytes='9' iicount='259'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1102' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' iicount='259'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<method id='1104' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3896'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1106' name='java.util.Objects' flags='17'/>
+<method id='1107' holder='1106' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='1898'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1109' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.151'/>
+</parse>
+<parse_done stamp='0.151'/>
+</parse>
+<parse_done stamp='0.151'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.151'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.151'/>
+</phase>
+<phase name='codeemit' stamp='0.151'>
+<phase_done name='codeemit' stamp='0.151'/>
+</phase>
+<phase name='codeinstall' stamp='0.151'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='392' nmethods='85' adapters='162' free_code_cache='248622592'/>
+<task_done success='1' nmsize='1288' count='277' inlined_bytes='43' stamp='0.151'/>
+</task>
+<task compile_id='90' method='java.lang.module.Resolver findWithBeforeFinder (Ljava/lang/String;)Ljava/lang/module/ModuleReference;' bytes='18' count='271' iicount='271' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<klass id='1094' name='java.lang.module.ModuleReference' flags='1025'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.Resolver' flags='16'/>
+<method id='1095' holder='1093' name='findWithBeforeFinder' return='1094' arguments='983' flags='2' bytes='18' iicount='271'/>
+<parse method='1095'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='185' bci='5'/>
+<klass id='1098' name='java.util.Optional' flags='17'/>
+<klass id='1097' name='java.lang.module.ModuleFinder' flags='1537'/>
+<method id='1099' holder='1097' name='find' return='1098' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='11'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='1098' name='orElse' return='982' arguments='982' flags='1' bytes='16' compile_id='88' compiler='c1' level='3' iicount='274'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.151'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.151'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.151'/>
+</phase>
+<phase name='codeemit' stamp='0.151'>
+<phase_done name='codeemit' stamp='0.151'/>
+</phase>
+<phase name='codeinstall' stamp='0.151'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='396' nmethods='89' adapters='162' free_code_cache='248616960'/>
+<task_done success='1' nmsize='1096' count='271' inlined_bytes='16' stamp='0.152'/>
+</task>
+<task compile_id='94' method='jdk.internal.module.ModuleReferenceImpl hashCode ()I' bytes='56' count='313' iicount='313' level='3' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.module.ModuleReferenceImpl' flags='1'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='56' iicount='321'/>
+<parse method='1094'  stamp='0.152'>
+<phase name='parse_hir' stamp='0.152'>
+<bc code='182' bci='10'/>
+<klass id='1097' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<klass id='1096' name='java.lang.module.ModuleReference' flags='1025'/>
+<method id='1098' holder='1096' name='descriptor' return='1097' flags='17' bytes='5' compile_id='46' compiler='c1' level='1' iicount='227'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.152'/>
+</parse>
+<bc code='182' bci='13'/>
+<method id='1100' holder='1097' name='hashCode' return='975' flags='1' bytes='170' iicount='238'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='184' bci='25'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1103' name='java.util.Objects' flags='17'/>
+<method id='1104' holder='1103' name='hashCode' return='975' arguments='982' flags='9' bytes='13' iicount='198'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='5'/>
+<method id='1106' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.152'/>
+</parse>
+<bc code='184' bci='38'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.152'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.152'/>
+</phase>
+<parse_done stamp='0.152'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.152'>
+<phase_done name='optimize_blocks' stamp='0.152'/>
+</phase>
+<phase name='gvn' stamp='0.152'>
+<phase_done name='gvn' stamp='0.152'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.152'>
+<phase_done name='rangeCheckElimination' stamp='0.152'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.152'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='403' nmethods='96' adapters='162' free_code_cache='248602496'/>
+<task_done success='1' nmsize='1384' count='563' inlined_bytes='31' stamp='0.152'/>
+</task>
+<task compile_id='101' method='java.util.ImmutableCollections$Set1 contains (Ljava/lang/Object;)Z' bytes='9' count='269' iicount='269' level='3' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='982' flags='1' bytes='9' iicount='272'/>
+<parse method='1094'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='182' bci='5'/>
+<method id='1096' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<phase_done name='codeinstall' stamp='0.153'/>
+</phase>
+<code_cache total_blobs='407' nmethods='100' adapters='162' free_code_cache='248598784'/>
+<task_done success='1' nmsize='552' count='274' stamp='0.153'/>
+</task>
+<task compile_id='106' method='java.util.HashSet iterator ()Ljava/util/Iterator;' bytes='13' count='346' iicount='346' level='3' stamp='0.153'>
+<phase name='setup' stamp='0.153'>
+<phase_done name='setup' stamp='0.153'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='13' iicount='359'/>
+<parse method='1095'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='182' bci='4'/>
+<klass id='1099' name='java.util.Set' flags='1537'/>
+<klass id='1097' name='java.util.HashMap' flags='1'/>
+<method id='1100' holder='1097' name='keySet' return='1099' flags='1' bytes='25' iicount='400'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='7'/>
+<method id='1101' holder='1099' name='iterator' return='1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='415' nmethods='106' adapters='162' free_code_cache='248589184'/>
+<task_done success='1' nmsize='728' count='639' stamp='0.154'/>
+</task>
+<task compile_id='110' method='java.util.HashMap$ValueIterator next ()Ljava/lang/Object;' bytes='8' count='293' iicount='293' level='3' stamp='0.154'>
+<phase name='setup' stamp='0.154'>
+<phase_done name='setup' stamp='0.154'/>
+</phase>
+<phase name='buildIR' stamp='0.154'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap$ValueIterator' flags='16'/>
+<method id='1094' holder='1093' name='next' return='982' flags='17' bytes='8' iicount='293'/>
+<parse method='1094'  stamp='0.154'>
+<phase name='parse_hir' stamp='0.154'>
+<bc code='182' bci='1'/>
+<klass id='1097' name='java.util.HashMap$Node' flags='8'/>
+<klass id='1096' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1098' holder='1096' name='nextNode' return='1097' flags='16' bytes='100' compile_id='96' compiler='c1' level='3' iicount='1124'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.154'/>
+</phase>
+<parse_done stamp='0.154'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.154'>
+<phase_done name='optimize_blocks' stamp='0.154'/>
+</phase>
+<phase name='gvn' stamp='0.154'>
+<phase_done name='gvn' stamp='0.154'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.154'>
+<phase_done name='rangeCheckElimination' stamp='0.154'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.154'>
+<phase_done name='optimize_null_checks' stamp='0.154'/>
+</phase>
+<phase_done name='buildIR' stamp='0.154'/>
+</phase>
+<phase name='emit_lir' stamp='0.154'>
+<phase name='lirGeneration' stamp='0.154'>
+<phase_done name='lirGeneration' stamp='0.154'/>
+</phase>
+<phase name='linearScan' stamp='0.154'>
+<phase_done name='linearScan' stamp='0.154'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.154'/>
+</phase>
+<phase name='codeemit' stamp='0.154'>
+<phase_done name='codeemit' stamp='0.154'/>
+</phase>
+<phase name='codeinstall' stamp='0.154'>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='419' nmethods='110' adapters='162' free_code_cache='248583040'/>
+<task_done success='1' nmsize='520' count='293' stamp='0.154'/>
+</task>
+<task compile_id='113' method='java.lang.module.ResolvedModule reference ()Ljava/lang/module/ModuleReference;' bytes='5' count='154' iicount='154' level='1' stamp='0.154'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<klass id='1094' name='java.lang.module.ModuleReference' flags='1025'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1095' holder='1093' name='reference' return='1094' flags='1' bytes='5' iicount='154'/>
+<parse method='1095'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='422' nmethods='113' adapters='162' free_code_cache='248580736'/>
+<task_done success='1' nmsize='272' count='160' stamp='0.155'/>
+</task>
+<task compile_id='117' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='256' backedge_count='2255' iicount='257' level='3' stamp='0.155'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='259'/>
+<parse method='1094'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='339'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.155'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='424' nmethods='115' adapters='162' free_code_cache='248576768'/>
+<task_done success='1' nmsize='1008' count='299' backedge_count='2565' inlined_bytes='13' stamp='0.155'/>
+</task>
+<task compile_id='120' method='java.lang.Math min (II)I' bytes='11' count='260' iicount='260' level='3' stamp='0.156'>
+<phase name='setup' stamp='0.156'>
+<phase_done name='setup' stamp='0.156'/>
+</phase>
+<phase name='buildIR' stamp='0.156'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='min' return='975' arguments='975 975' flags='9' bytes='11' iicount='262'/>
+<parse method='1094'  stamp='0.156'>
+<phase name='parse_hir' stamp='0.156'>
+<phase_done name='parse_hir' stamp='0.156'/>
+</phase>
+<parse_done stamp='0.156'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.156'>
+<phase_done name='optimize_blocks' stamp='0.156'/>
+</phase>
+<phase name='gvn' stamp='0.156'>
+<phase_done name='gvn' stamp='0.156'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.156'>
+<phase_done name='rangeCheckElimination' stamp='0.156'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.156'>
+<phase_done name='optimize_null_checks' stamp='0.156'/>
+</phase>
+<phase_done name='buildIR' stamp='0.156'/>
+</phase>
+<phase name='emit_lir' stamp='0.156'>
+<phase name='lirGeneration' stamp='0.156'>
+<phase_done name='lirGeneration' stamp='0.156'/>
+</phase>
+<phase name='linearScan' stamp='0.156'>
+<phase_done name='linearScan' stamp='0.156'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.156'/>
+</phase>
+<phase name='codeemit' stamp='0.156'>
+<phase_done name='codeemit' stamp='0.156'/>
+</phase>
+<phase name='codeinstall' stamp='0.156'>
+<phase_done name='codeinstall' stamp='0.156'/>
+</phase>
+<code_cache total_blobs='430' nmethods='121' adapters='162' free_code_cache='248569728'/>
+<task_done success='1' nmsize='400' count='267' stamp='0.156'/>
+</task>
+<task compile_id='125' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='260' iicount='260' level='3' stamp='0.156'>
+<phase name='setup' stamp='0.156'>
+<phase_done name='setup' stamp='0.156'/>
+</phase>
+<phase name='buildIR' stamp='0.156'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' iicount='260'/>
+<parse method='1094'  stamp='0.156'>
+<phase name='parse_hir' stamp='0.156'>
+<phase_done name='parse_hir' stamp='0.157'/>
+</phase>
+<parse_done stamp='0.157'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.157'>
+<phase_done name='optimize_blocks' stamp='0.157'/>
+</phase>
+<phase name='gvn' stamp='0.157'>
+<phase_done name='gvn' stamp='0.157'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.157'>
+<phase_done name='rangeCheckElimination' stamp='0.157'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.157'>
+<phase_done name='optimize_null_checks' stamp='0.157'/>
+</phase>
+<phase_done name='buildIR' stamp='0.157'/>
+</phase>
+<phase name='emit_lir' stamp='0.157'>
+<phase name='lirGeneration' stamp='0.157'>
+<phase_done name='lirGeneration' stamp='0.157'/>
+</phase>
+<phase name='linearScan' stamp='0.157'>
+<phase_done name='linearScan' stamp='0.157'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.157'/>
+</phase>
+<phase name='codeemit' stamp='0.157'>
+<phase_done name='codeemit' stamp='0.157'/>
+</phase>
+<phase name='codeinstall' stamp='0.157'>
+<phase_done name='codeinstall' stamp='0.157'/>
+</phase>
+<code_cache total_blobs='434' nmethods='125' adapters='162' free_code_cache='248563840'/>
+<task_done success='1' nmsize='400' count='260' stamp='0.157'/>
+</task>
+<task compile_id='132' method='java.util.HashMap &lt;init&gt; ()V' bytes='11' count='277' iicount='277' level='3' stamp='0.159'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='11' iicount='278'/>
+<parse method='1094'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractMap' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='103' compiler='c1' level='3' iicount='322'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='6589'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.160'/>
+</parse>
+<parse_done stamp='0.160'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.160'/>
+</phase>
+<parse_done stamp='0.160'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.160'>
+<phase_done name='optimize_blocks' stamp='0.160'/>
+</phase>
+<phase name='gvn' stamp='0.160'>
+<phase_done name='gvn' stamp='0.160'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.160'>
+<phase_done name='rangeCheckElimination' stamp='0.160'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.160'>
+<phase_done name='optimize_null_checks' stamp='0.160'/>
+</phase>
+<phase_done name='buildIR' stamp='0.160'/>
+</phase>
+<phase name='emit_lir' stamp='0.160'>
+<phase name='lirGeneration' stamp='0.160'>
+<phase_done name='lirGeneration' stamp='0.160'/>
+</phase>
+<phase name='linearScan' stamp='0.160'>
+<phase_done name='linearScan' stamp='0.160'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.160'/>
+</phase>
+<phase name='codeemit' stamp='0.160'>
+<phase_done name='codeemit' stamp='0.160'/>
+</phase>
+<phase name='codeinstall' stamp='0.160'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.160'/>
+</phase>
+<code_cache total_blobs='446' nmethods='133' adapters='162' free_code_cache='248555008'/>
+<task_done success='1' nmsize='528' count='297' inlined_bytes='6' stamp='0.160'/>
+</task>
+<task compile_id='143' method='java.util.ImmutableCollections$SetN$1 &lt;init&gt; (Ljava/util/ImmutableCollections$SetN;)V' bytes='15' count='260' iicount='260' level='3' stamp='0.161'>
+<phase name='setup' stamp='0.161'>
+<phase_done name='setup' stamp='0.161'/>
+</phase>
+<phase name='buildIR' stamp='0.161'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='15' iicount='262'/>
+<parse method='1095'  stamp='0.161'>
+<phase name='parse_hir' stamp='0.161'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='7435'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.161'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.161'/>
+</phase>
+<parse_done stamp='0.161'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.161'>
+<phase_done name='optimize_blocks' stamp='0.161'/>
+</phase>
+<phase name='gvn' stamp='0.161'>
+<phase_done name='gvn' stamp='0.161'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.161'>
+<phase_done name='rangeCheckElimination' stamp='0.161'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.161'>
+<phase_done name='optimize_null_checks' stamp='0.161'/>
+</phase>
+<phase_done name='buildIR' stamp='0.161'/>
+</phase>
+<phase name='emit_lir' stamp='0.161'>
+<phase name='lirGeneration' stamp='0.161'>
+<phase_done name='lirGeneration' stamp='0.161'/>
+</phase>
+<phase name='linearScan' stamp='0.161'>
+<phase_done name='linearScan' stamp='0.161'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.161'/>
+</phase>
+<phase name='codeemit' stamp='0.161'>
+<phase_done name='codeemit' stamp='0.161'/>
+</phase>
+<phase name='codeinstall' stamp='0.161'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='455' nmethods='142' adapters='162' free_code_cache='248539264'/>
+<task_done success='1' nmsize='560' count='277' inlined_bytes='1' stamp='0.162'/>
+</task>
+<task compile_id='146' method='java.lang.module.ResolvedModule configuration ()Ljava/lang/module/Configuration;' bytes='5' count='135' iicount='135' level='1' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<klass id='1094' name='java.lang.module.Configuration' flags='17'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1095' holder='1093' name='configuration' return='1094' flags='1' bytes='5' iicount='135'/>
+<parse method='1095'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='458' nmethods='145' adapters='162' free_code_cache='248536320'/>
+<task_done success='1' nmsize='272' count='148' stamp='0.162'/>
+</task>
+<task compile_id='149' method='java.lang.module.ModuleDescriptor isOpen ()Z' bytes='5' count='130' iicount='130' level='1' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='isOpen' return='969' flags='1' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='461' nmethods='148' adapters='162' free_code_cache='248529664'/>
+<task_done success='1' nmsize='272' count='138' stamp='0.162'/>
+</task>
+<task compile_id='154' method='java.util.Collections$1 next ()Ljava/lang/Object;' bytes='25' count='258' iicount='258' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.163'/>
+</phase>
+<phase name='buildIR' stamp='0.163'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='25' iicount='261'/>
+<parse method='1094'  stamp='0.163'>
+<phase name='parse_hir' stamp='0.163'>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.163'/>
+</phase>
+<parse_done stamp='0.163'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.163'>
+<phase_done name='optimize_blocks' stamp='0.163'/>
+</phase>
+<phase name='gvn' stamp='0.163'>
+<phase_done name='gvn' stamp='0.163'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.163'>
+<phase_done name='rangeCheckElimination' stamp='0.163'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.163'>
+<phase_done name='optimize_null_checks' stamp='0.163'/>
+</phase>
+<phase_done name='buildIR' stamp='0.163'/>
+</phase>
+<phase name='emit_lir' stamp='0.163'>
+<phase name='lirGeneration' stamp='0.163'>
+<phase_done name='lirGeneration' stamp='0.163'/>
+</phase>
+<phase name='linearScan' stamp='0.163'>
+<phase_done name='linearScan' stamp='0.163'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.163'/>
+</phase>
+<phase name='codeemit' stamp='0.163'>
+<phase_done name='codeemit' stamp='0.163'/>
+</phase>
+<phase name='codeinstall' stamp='0.163'>
+<phase_done name='codeinstall' stamp='0.163'/>
+</phase>
+<code_cache total_blobs='468' nmethods='155' adapters='162' free_code_cache='248521216'/>
+<task_done success='1' nmsize='520' count='284' stamp='0.163'/>
+</task>
+<task compile_id='161' method='java.util.Map entry (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;' bytes='10' count='280' iicount='280' level='3' stamp='0.165'>
+<phase name='setup' stamp='0.165'>
+<phase_done name='setup' stamp='0.165'/>
+</phase>
+<phase name='buildIR' stamp='0.165'>
+<klass id='1094' name='java.util.Map$Entry' flags='1545'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Map' flags='1537'/>
+<method id='1095' holder='1093' name='entry' return='1094' arguments='982 982' flags='9' bytes='10' iicount='280'/>
+<parse method='1095'  stamp='0.165'>
+<phase name='parse_hir' stamp='0.165'>
+<bc code='183' bci='6'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='982 982' flags='0' bytes='21' iicount='280'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='8748'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.165'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1102' name='java.util.Objects' flags='17'/>
+<method id='1103' holder='1102' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='3378'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1105' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.165'/>
+</parse>
+<bc code='184' bci='14'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='8'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.165'/>
+</parse>
+<parse_done stamp='0.165'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.165'/>
+</phase>
+<parse_done stamp='0.165'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.165'>
+<phase_done name='optimize_blocks' stamp='0.165'/>
+</phase>
+<phase name='gvn' stamp='0.165'>
+<phase_done name='gvn' stamp='0.165'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.165'>
+<phase_done name='rangeCheckElimination' stamp='0.165'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.165'>
+<phase_done name='optimize_null_checks' stamp='0.165'/>
+</phase>
+<phase_done name='buildIR' stamp='0.165'/>
+</phase>
+<phase name='emit_lir' stamp='0.165'>
+<phase name='lirGeneration' stamp='0.165'>
+<phase_done name='lirGeneration' stamp='0.165'/>
+</phase>
+<phase name='linearScan' stamp='0.165'>
+<phase_done name='linearScan' stamp='0.166'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.166'/>
+</phase>
+<phase name='codeemit' stamp='0.166'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.166'/>
+</phase>
+<code_cache total_blobs='475' nmethods='162' adapters='162' free_code_cache='248512000'/>
+<task_done success='1' nmsize='1464' count='280' inlined_bytes='50' stamp='0.166'/>
+</task>
+<task compile_id='167' method='jdk.internal.module.ModuleBootstrap$2 next ()Ljava/lang/Object;' bytes='52' count='257' iicount='257' level='3' stamp='0.166'>
+<phase name='setup' stamp='0.166'>
+<phase_done name='setup' stamp='0.166'/>
+</phase>
+<phase name='buildIR' stamp='0.166'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='jdk.internal.module.ModuleBootstrap$2' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='52' iicount='265'/>
+<parse method='1094'  stamp='0.166'>
+<phase name='parse_hir' stamp='0.166'>
+<bc code='185' bci='4'/>
+<type id='969' name='boolean'/>
+<klass id='1097' name='java.util.Iterator' flags='1537'/>
+<method id='1098' holder='1097' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='16'/>
+<method id='1099' holder='1097' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='26'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='38'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='48'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.166'/>
+</phase>
+<parse_done stamp='0.166'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.166'>
+<phase_done name='optimize_blocks' stamp='0.166'/>
+</phase>
+<phase name='gvn' stamp='0.166'>
+<phase_done name='gvn' stamp='0.166'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.166'>
+<phase_done name='rangeCheckElimination' stamp='0.166'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.166'>
+<phase_done name='optimize_null_checks' stamp='0.166'/>
+</phase>
+<phase_done name='buildIR' stamp='0.166'/>
+</phase>
+<phase name='emit_lir' stamp='0.166'>
+<phase name='lirGeneration' stamp='0.166'>
+<phase_done name='lirGeneration' stamp='0.166'/>
+</phase>
+<phase name='linearScan' stamp='0.166'>
+<phase_done name='linearScan' stamp='0.166'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.166'/>
+</phase>
+<phase name='codeemit' stamp='0.166'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.166'/>
+</phase>
+<code_cache total_blobs='480' nmethods='167' adapters='162' free_code_cache='248505472'/>
+<task_done success='1' nmsize='1384' count='376' stamp='0.166'/>
+</task>
+<task compile_id='172' method='java.lang.CharacterDataLatin1 toLowerCase (I)I' bytes='39' count='256' iicount='256' level='3' stamp='0.170'>
+<phase name='setup' stamp='0.170'>
+<phase_done name='setup' stamp='0.170'/>
+</phase>
+<phase name='buildIR' stamp='0.170'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='toLowerCase' return='975' arguments='975' flags='0' bytes='39' iicount='256'/>
+<parse method='1094'  stamp='0.171'>
+<phase name='parse_hir' stamp='0.171'>
+<bc code='182' bci='4'/>
+<method id='1096' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='125' compiler='c1' level='3' iicount='272'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.171'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.171'/>
+</phase>
+<parse_done stamp='0.171'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.171'>
+<phase_done name='optimize_blocks' stamp='0.171'/>
+</phase>
+<phase name='gvn' stamp='0.171'>
+<phase_done name='gvn' stamp='0.171'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.171'>
+<phase_done name='rangeCheckElimination' stamp='0.171'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.171'>
+<phase_done name='optimize_null_checks' stamp='0.171'/>
+</phase>
+<phase_done name='buildIR' stamp='0.171'/>
+</phase>
+<phase name='emit_lir' stamp='0.171'>
+<phase name='lirGeneration' stamp='0.171'>
+<phase_done name='lirGeneration' stamp='0.171'/>
+</phase>
+<phase name='linearScan' stamp='0.171'>
+<phase_done name='linearScan' stamp='0.171'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.171'/>
+</phase>
+<phase name='codeemit' stamp='0.171'>
+<phase_done name='codeemit' stamp='0.171'/>
+</phase>
+<phase name='codeinstall' stamp='0.171'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.171'/>
+</phase>
+<code_cache total_blobs='488' nmethods='172' adapters='163' free_code_cache='248498816'/>
+<task_done success='1' nmsize='656' count='256' inlined_bytes='11' stamp='0.171'/>
+</task>
+<task compile_id='176' method='java.lang.String &lt;init&gt; ([BB)V' bytes='15' count='289' iicount='289' level='3' stamp='0.185'>
+<phase name='setup' stamp='0.185'>
+<phase_done name='setup' stamp='0.185'/>
+</phase>
+<phase name='buildIR' stamp='0.185'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' iicount='289'/>
+<parse method='1093'  stamp='0.185'>
+<phase name='parse_hir' stamp='0.185'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='9946'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.185'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.185'/>
+</phase>
+<parse_done stamp='0.185'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.185'>
+<phase_done name='optimize_blocks' stamp='0.185'/>
+</phase>
+<phase name='gvn' stamp='0.185'>
+<phase_done name='gvn' stamp='0.185'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.185'>
+<phase_done name='rangeCheckElimination' stamp='0.185'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.185'>
+<phase_done name='optimize_null_checks' stamp='0.185'/>
+</phase>
+<phase_done name='buildIR' stamp='0.185'/>
+</phase>
+<phase name='emit_lir' stamp='0.185'>
+<phase name='lirGeneration' stamp='0.185'>
+<phase_done name='lirGeneration' stamp='0.185'/>
+</phase>
+<phase name='linearScan' stamp='0.185'>
+<phase_done name='linearScan' stamp='0.185'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.185'/>
+</phase>
+<phase name='codeemit' stamp='0.185'>
+<phase_done name='codeemit' stamp='0.185'/>
+</phase>
+<phase name='codeinstall' stamp='0.185'>
+<phase_done name='codeinstall' stamp='0.185'/>
+</phase>
+<code_cache total_blobs='525' nmethods='177' adapters='195' free_code_cache='248474880'/>
+<task_done success='1' nmsize='528' count='290' inlined_bytes='1' stamp='0.185'/>
+</task>
+<task compile_id='181' method='java.lang.AbstractStringBuilder getCoder ()B' bytes='15' count='259' iicount='259' level='3' stamp='0.197'>
+<phase name='setup' stamp='0.197'>
+<phase_done name='setup' stamp='0.197'/>
+</phase>
+<phase name='buildIR' stamp='0.197'>
+<type id='973' name='byte'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='getCoder' return='973' flags='16' bytes='15' iicount='259'/>
+<parse method='1093'  stamp='0.197'>
+<phase name='parse_hir' stamp='0.197'>
+<phase_done name='parse_hir' stamp='0.197'/>
+</phase>
+<parse_done stamp='0.197'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.197'>
+<phase_done name='optimize_blocks' stamp='0.197'/>
+</phase>
+<phase name='gvn' stamp='0.197'>
+<phase_done name='gvn' stamp='0.197'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.197'>
+<phase_done name='rangeCheckElimination' stamp='0.197'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.197'>
+<phase_done name='optimize_null_checks' stamp='0.197'/>
+</phase>
+<phase_done name='buildIR' stamp='0.197'/>
+</phase>
+<phase name='emit_lir' stamp='0.197'>
+<phase name='lirGeneration' stamp='0.197'>
+<phase_done name='lirGeneration' stamp='0.197'/>
+</phase>
+<phase name='linearScan' stamp='0.197'>
+<phase_done name='linearScan' stamp='0.197'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.197'/>
+</phase>
+<phase name='codeemit' stamp='0.197'>
+<phase_done name='codeemit' stamp='0.197'/>
+</phase>
+<phase name='codeinstall' stamp='0.197'>
+<phase_done name='codeinstall' stamp='0.197'/>
+</phase>
+<code_cache total_blobs='531' nmethods='180' adapters='198' free_code_cache='248469760'/>
+<task_done success='1' nmsize='368' count='259' stamp='0.197'/>
+</task>
+<task compile_id='184' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='281' iicount='281' level='3' stamp='0.200'>
+<phase name='setup' stamp='0.200'>
+<phase_done name='setup' stamp='0.200'/>
+</phase>
+<phase name='buildIR' stamp='0.200'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' iicount='281'/>
+<parse method='1093'  stamp='0.200'>
+<phase name='parse_hir' stamp='0.200'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' iicount='281'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.200'/>
+</phase>
+<parse_done stamp='0.200'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.200'>
+<phase_done name='optimize_blocks' stamp='0.200'/>
+</phase>
+<phase name='gvn' stamp='0.200'>
+<phase_done name='gvn' stamp='0.200'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.200'>
+<phase_done name='rangeCheckElimination' stamp='0.200'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.200'>
+<phase_done name='optimize_null_checks' stamp='0.200'/>
+</phase>
+<phase_done name='buildIR' stamp='0.200'/>
+</phase>
+<phase name='emit_lir' stamp='0.200'>
+<phase name='lirGeneration' stamp='0.200'>
+<phase_done name='lirGeneration' stamp='0.200'/>
+</phase>
+<phase name='linearScan' stamp='0.200'>
+<phase_done name='linearScan' stamp='0.200'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.200'/>
+</phase>
+<phase name='codeemit' stamp='0.200'>
+<phase_done name='codeemit' stamp='0.200'/>
+</phase>
+<phase name='codeinstall' stamp='0.200'>
+<phase_done name='codeinstall' stamp='0.200'/>
+</phase>
+<code_cache total_blobs='535' nmethods='184' adapters='198' free_code_cache='248462848'/>
+<task_done success='1' nmsize='392' count='281' stamp='0.200'/>
+</task>
+<task compile_id='190' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='25' count='262' iicount='262' level='3' stamp='0.206'>
+<phase name='setup' stamp='0.206'>
+<phase_done name='setup' stamp='0.206'/>
+</phase>
+<phase name='buildIR' stamp='0.206'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1094' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1093' flags='0' bytes='25' iicount='265'/>
+<parse method='1094'  stamp='0.206'>
+<phase name='parse_hir' stamp='0.206'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10234'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<parse_done stamp='0.206'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.206'/>
+</phase>
+<parse_done stamp='0.206'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.206'>
+<phase_done name='optimize_blocks' stamp='0.206'/>
+</phase>
+<phase name='gvn' stamp='0.206'>
+<phase_done name='gvn' stamp='0.206'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.206'>
+<phase_done name='rangeCheckElimination' stamp='0.206'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.206'>
+<phase_done name='optimize_null_checks' stamp='0.206'/>
+</phase>
+<phase_done name='buildIR' stamp='0.206'/>
+</phase>
+<phase name='emit_lir' stamp='0.206'>
+<phase name='lirGeneration' stamp='0.206'>
+<phase_done name='lirGeneration' stamp='0.206'/>
+</phase>
+<phase name='linearScan' stamp='0.206'>
+<phase_done name='linearScan' stamp='0.206'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.206'/>
+</phase>
+<phase name='codeemit' stamp='0.206'>
+<phase_done name='codeemit' stamp='0.206'/>
+</phase>
+<phase name='codeinstall' stamp='0.206'>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<phase_done name='codeinstall' stamp='0.206'/>
+</phase>
+<code_cache total_blobs='564' nmethods='191' adapters='220' free_code_cache='248435584'/>
+<task_done success='1' nmsize='752' count='269' inlined_bytes='1' stamp='0.206'/>
+</task>
+<task compile_id='192' method='java.lang.AbstractStringBuilder isLatin1 ()Z' bytes='19' count='277' iicount='277' level='3' stamp='0.206'>
+<phase name='setup' stamp='0.206'>
+<phase_done name='setup' stamp='0.206'/>
+</phase>
+<phase name='buildIR' stamp='0.206'>
+<type id='969' name='boolean'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' iicount='277'/>
+<parse method='1093'  stamp='0.206'>
+<phase name='parse_hir' stamp='0.206'>
+<phase_done name='parse_hir' stamp='0.206'/>
+</phase>
+<parse_done stamp='0.206'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.206'>
+<phase_done name='optimize_blocks' stamp='0.206'/>
+</phase>
+<phase name='gvn' stamp='0.206'>
+<phase_done name='gvn' stamp='0.206'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.206'>
+<phase_done name='rangeCheckElimination' stamp='0.206'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.206'>
+<phase_done name='optimize_null_checks' stamp='0.206'/>
+</phase>
+<phase_done name='buildIR' stamp='0.206'/>
+</phase>
+<phase name='emit_lir' stamp='0.206'>
+<phase name='lirGeneration' stamp='0.206'>
+<phase_done name='lirGeneration' stamp='0.206'/>
+</phase>
+<phase name='linearScan' stamp='0.206'>
+<phase_done name='linearScan' stamp='0.206'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.206'/>
+</phase>
+<phase name='codeemit' stamp='0.206'>
+<phase_done name='codeemit' stamp='0.206'/>
+</phase>
+<phase name='codeinstall' stamp='0.206'>
+<phase_done name='codeinstall' stamp='0.206'/>
+</phase>
+<code_cache total_blobs='565' nmethods='192' adapters='220' free_code_cache='248434560'/>
+<task_done success='1' nmsize='464' count='277' stamp='0.206'/>
+</task>
+<task compile_id='199' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry hashCode ()I' bytes='5' count='145' iicount='145' level='1' stamp='0.210'>
+<phase name='setup' stamp='0.210'>
+<phase_done name='setup' stamp='0.210'/>
+</phase>
+<phase name='buildIR' stamp='0.210'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry' flags='10'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='5' iicount='145'/>
+<parse method='1094'  stamp='0.210'>
+<phase name='parse_hir' stamp='0.210'>
+<phase_done name='parse_hir' stamp='0.210'/>
+</phase>
+<parse_done stamp='0.210'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.210'>
+<phase_done name='optimize_blocks' stamp='0.210'/>
+</phase>
+<phase name='gvn' stamp='0.210'>
+<phase_done name='gvn' stamp='0.210'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.210'>
+<phase_done name='rangeCheckElimination' stamp='0.210'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.210'>
+<phase_done name='optimize_null_checks' stamp='0.210'/>
+</phase>
+<phase_done name='buildIR' stamp='0.210'/>
+</phase>
+<phase name='emit_lir' stamp='0.210'>
+<phase name='lirGeneration' stamp='0.210'>
+<phase_done name='lirGeneration' stamp='0.211'/>
+</phase>
+<phase name='linearScan' stamp='0.211'>
+<phase_done name='linearScan' stamp='0.211'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.211'/>
+</phase>
+<phase name='codeemit' stamp='0.211'>
+<phase_done name='codeemit' stamp='0.211'/>
+</phase>
+<phase name='codeinstall' stamp='0.211'>
+<phase_done name='codeinstall' stamp='0.211'/>
+</phase>
+<code_cache total_blobs='576' nmethods='199' adapters='224' free_code_cache='248423552'/>
+<task_done success='1' nmsize='272' count='145' stamp='0.211'/>
+</task>
+<task compile_id='208' method='java.lang.ref.Reference &lt;init&gt; (Ljava/lang/Object;)V' bytes='7' count='256' iicount='256' level='3' stamp='0.213'>
+<phase name='setup' stamp='0.213'>
+<phase_done name='setup' stamp='0.213'/>
+</phase>
+<phase name='buildIR' stamp='0.213'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1093' holder='1008' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='7' iicount='256'/>
+<parse method='1093'  stamp='0.213'>
+<phase name='parse_hir' stamp='0.213'>
+<bc code='183' bci='3'/>
+<klass id='1095' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1096' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1095' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='395'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10439'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<parse_done stamp='0.213'/>
+</parse>
+<parse_done stamp='0.213'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.213'/>
+</phase>
+<parse_done stamp='0.213'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.213'>
+<phase_done name='optimize_blocks' stamp='0.213'/>
+</phase>
+<phase name='gvn' stamp='0.213'>
+<phase_done name='gvn' stamp='0.213'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.213'>
+<phase_done name='rangeCheckElimination' stamp='0.213'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.213'>
+<phase_done name='optimize_null_checks' stamp='0.213'/>
+</phase>
+<phase_done name='buildIR' stamp='0.213'/>
+</phase>
+<phase name='emit_lir' stamp='0.213'>
+<phase name='lirGeneration' stamp='0.213'>
+<phase_done name='lirGeneration' stamp='0.213'/>
+</phase>
+<phase name='linearScan' stamp='0.213'>
+<phase_done name='linearScan' stamp='0.214'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.214'/>
+</phase>
+<phase name='codeemit' stamp='0.214'>
+<phase_done name='codeemit' stamp='0.214'/>
+</phase>
+<phase name='codeinstall' stamp='0.214'>
+<dependency type='no_finalizable_subclasses' ctxk='1008'/>
+<phase_done name='codeinstall' stamp='0.214'/>
+</phase>
+<code_cache total_blobs='585' nmethods='207' adapters='225' free_code_cache='248416128'/>
+<task_done success='1' nmsize='784' count='256' inlined_bytes='26' stamp='0.214'/>
+</task>
+<task compile_id='212' method='java.lang.invoke.MemberName testFlags (II)Z' bytes='16' count='264' iicount='264' level='3' stamp='0.218'>
+<phase name='setup' stamp='0.218'>
+<phase_done name='setup' stamp='0.218'/>
+</phase>
+<phase name='buildIR' stamp='0.218'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' iicount='264'/>
+<parse method='1093'  stamp='0.218'>
+<phase name='parse_hir' stamp='0.218'>
+<phase_done name='parse_hir' stamp='0.218'/>
+</phase>
+<parse_done stamp='0.218'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.218'>
+<phase_done name='optimize_blocks' stamp='0.218'/>
+</phase>
+<phase name='gvn' stamp='0.218'>
+<phase_done name='gvn' stamp='0.218'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.218'>
+<phase_done name='rangeCheckElimination' stamp='0.218'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.218'>
+<phase_done name='optimize_null_checks' stamp='0.218'/>
+</phase>
+<phase_done name='buildIR' stamp='0.218'/>
+</phase>
+<phase name='emit_lir' stamp='0.218'>
+<phase name='lirGeneration' stamp='0.218'>
+<phase_done name='lirGeneration' stamp='0.218'/>
+</phase>
+<phase name='linearScan' stamp='0.218'>
+<phase_done name='linearScan' stamp='0.218'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.218'/>
+</phase>
+<phase name='codeemit' stamp='0.218'>
+<phase_done name='codeemit' stamp='0.218'/>
+</phase>
+<phase name='codeinstall' stamp='0.218'>
+<phase_done name='codeinstall' stamp='0.218'/>
+</phase>
+<code_cache total_blobs='597' nmethods='212' adapters='232' free_code_cache='248404096'/>
+<task_done success='1' nmsize='432' count='269' stamp='0.218'/>
+</task>
+<task compile_id='223' method='java.lang.invoke.MemberName isInvocable ()Z' bytes='7' count='261' iicount='261' level='3' stamp='0.220'>
+<phase name='setup' stamp='0.220'>
+<phase_done name='setup' stamp='0.220'/>
+</phase>
+<phase name='buildIR' stamp='0.220'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isInvocable' return='969' flags='1' bytes='7' iicount='263'/>
+<parse method='1093'  stamp='0.220'>
+<phase name='parse_hir' stamp='0.220'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' iicount='263'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<method id='1097' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='400'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.220'/>
+</parse>
+<parse_done stamp='0.220'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.220'/>
+</phase>
+<parse_done stamp='0.220'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.220'>
+<phase_done name='optimize_blocks' stamp='0.220'/>
+</phase>
+<phase name='gvn' stamp='0.220'>
+<phase_done name='gvn' stamp='0.220'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.220'>
+<phase_done name='rangeCheckElimination' stamp='0.220'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.220'>
+<phase_done name='optimize_null_checks' stamp='0.220'/>
+</phase>
+<phase_done name='buildIR' stamp='0.220'/>
+</phase>
+<phase name='emit_lir' stamp='0.220'>
+<phase name='lirGeneration' stamp='0.220'>
+<phase_done name='lirGeneration' stamp='0.220'/>
+</phase>
+<phase name='linearScan' stamp='0.220'>
+<phase_done name='linearScan' stamp='0.220'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.220'/>
+</phase>
+<phase name='codeemit' stamp='0.220'>
+<phase_done name='codeemit' stamp='0.220'/>
+</phase>
+<phase name='codeinstall' stamp='0.220'>
+<phase_done name='codeinstall' stamp='0.220'/>
+</phase>
+<code_cache total_blobs='605' nmethods='218' adapters='232' free_code_cache='248397696'/>
+<task_done success='1' nmsize='720' count='263' inlined_bytes='31' stamp='0.220'/>
+</task>
+<task compile_id='221' method='java.lang.StringBuilder append (C)Ljava/lang/StringBuilder;' bytes='8' count='257' iicount='257' level='3' stamp='0.220'>
+<phase name='setup' stamp='0.220'>
+<phase_done name='setup' stamp='0.220'/>
+</phase>
+<phase name='buildIR' stamp='0.220'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<type id='970' name='char'/>
+<method id='1093' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' iicount='257'/>
+<parse method='1093'  stamp='0.221'>
+<phase name='parse_hir' stamp='0.221'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' iicount='259'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.221'/>
+</phase>
+<parse_done stamp='0.221'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.221'>
+<phase_done name='optimize_blocks' stamp='0.221'/>
+</phase>
+<phase name='gvn' stamp='0.221'>
+<phase_done name='gvn' stamp='0.221'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.221'>
+<phase_done name='rangeCheckElimination' stamp='0.221'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.221'>
+<phase_done name='optimize_null_checks' stamp='0.221'/>
+</phase>
+<phase_done name='buildIR' stamp='0.221'/>
+</phase>
+<phase name='emit_lir' stamp='0.221'>
+<phase name='lirGeneration' stamp='0.221'>
+<phase_done name='lirGeneration' stamp='0.221'/>
+</phase>
+<phase name='linearScan' stamp='0.221'>
+<phase_done name='linearScan' stamp='0.221'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.221'/>
+</phase>
+<phase name='codeemit' stamp='0.221'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='609' nmethods='222' adapters='232' free_code_cache='248392832'/>
+<task_done success='1' nmsize='392' count='261' stamp='0.221'/>
+</task>
+<task compile_id='225' method='jdk.internal.org.objectweb.asm.Item set (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='219' count='276' iicount='276' level='3' stamp='0.223'>
+<phase name='setup' stamp='0.223'>
+<phase_done name='setup' stamp='0.223'/>
+</phase>
+<phase name='buildIR' stamp='0.223'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1094' holder='1093' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' iicount='276'/>
+<parse method='1094'  stamp='0.223'>
+<phase name='parse_hir' stamp='0.223'>
+<bc code='182' bci='180'/>
+<method id='1096' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6267'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='184'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='166'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='199'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='203'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='209'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.223'/>
+</phase>
+<parse_done stamp='0.223'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.223'>
+<phase_done name='optimize_blocks' stamp='0.223'/>
+</phase>
+<phase name='gvn' stamp='0.223'>
+<phase_done name='gvn' stamp='0.223'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.223'>
+<phase_done name='rangeCheckElimination' stamp='0.223'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.223'>
+<phase_done name='optimize_null_checks' stamp='0.223'/>
+</phase>
+<phase_done name='buildIR' stamp='0.223'/>
+</phase>
+<phase name='emit_lir' stamp='0.223'>
+<phase name='lirGeneration' stamp='0.223'>
+<phase_done name='lirGeneration' stamp='0.223'/>
+</phase>
+<phase name='linearScan' stamp='0.223'>
+<phase_done name='linearScan' stamp='0.223'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.223'/>
+</phase>
+<phase name='codeemit' stamp='0.223'>
+<phase_done name='codeemit' stamp='0.223'/>
+</phase>
+<phase name='codeinstall' stamp='0.223'>
+<phase_done name='codeinstall' stamp='0.223'/>
+</phase>
+<code_cache total_blobs='615' nmethods='226' adapters='234' free_code_cache='248381056'/>
+<task_done success='1' nmsize='1976' count='291' stamp='0.223'/>
+</task>
+<task compile_id='234' method='java.lang.Class getName ()Ljava/lang/String;' bytes='21' count='259' iicount='259' level='3' stamp='0.227'>
+<phase name='setup' stamp='0.227'>
+<phase_done name='setup' stamp='0.227'/>
+</phase>
+<phase name='buildIR' stamp='0.227'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getName' return='983' flags='1' bytes='21' iicount='259'/>
+<parse method='1093'  stamp='0.227'>
+<phase name='parse_hir' stamp='0.227'>
+<bc code='183' bci='11'/>
+<method id='1095' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='53'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.227'/>
+</phase>
+<parse_done stamp='0.227'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.227'>
+<phase_done name='optimize_blocks' stamp='0.227'/>
+</phase>
+<phase name='gvn' stamp='0.227'>
+<phase_done name='gvn' stamp='0.227'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.227'>
+<phase_done name='rangeCheckElimination' stamp='0.227'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.227'>
+<phase_done name='optimize_null_checks' stamp='0.227'/>
+</phase>
+<phase_done name='buildIR' stamp='0.227'/>
+</phase>
+<phase name='emit_lir' stamp='0.227'>
+<phase name='lirGeneration' stamp='0.227'>
+<phase_done name='lirGeneration' stamp='0.227'/>
+</phase>
+<phase name='linearScan' stamp='0.227'>
+<phase_done name='linearScan' stamp='0.228'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.228'/>
+</phase>
+<phase name='codeemit' stamp='0.228'>
+<phase_done name='codeemit' stamp='0.228'/>
+</phase>
+<phase name='codeinstall' stamp='0.228'>
+<phase_done name='codeinstall' stamp='0.228'/>
+</phase>
+<code_cache total_blobs='622' nmethods='233' adapters='234' free_code_cache='248371840'/>
+<task_done success='1' nmsize='584' count='265' stamp='0.228'/>
+</task>
+<task compile_id='237' method='java.lang.StringBuilder toString ()Ljava/lang/String;' bytes='35' count='266' iicount='266' level='3' stamp='0.228'>
+<phase name='setup' stamp='0.228'>
+<phase_done name='setup' stamp='0.228'/>
+</phase>
+<phase name='buildIR' stamp='0.228'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1093' holder='1050' name='toString' return='983' flags='1' bytes='35' iicount='266'/>
+<parse method='1093'  stamp='0.228'>
+<phase name='parse_hir' stamp='0.228'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='676'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='509'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='184' bci='9'/>
+<klass id='1101' name='java.util.Arrays' flags='1'/>
+<method id='1102' holder='1101' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='527'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1104' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='770'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1106' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10982'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1108' name='java.lang.StringUTF16' flags='16'/>
+<method id='1109' holder='1108' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1109' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.228'/>
+</phase>
+<parse_done stamp='0.228'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.228'>
+<phase_done name='optimize_blocks' stamp='0.228'/>
+</phase>
+<phase name='gvn' stamp='0.228'>
+<phase_done name='gvn' stamp='0.228'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.228'>
+<phase_done name='rangeCheckElimination' stamp='0.228'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.228'>
+<phase_done name='optimize_null_checks' stamp='0.228'/>
+</phase>
+<phase_done name='buildIR' stamp='0.228'/>
+</phase>
+<phase name='emit_lir' stamp='0.228'>
+<phase name='lirGeneration' stamp='0.228'>
+<phase_done name='lirGeneration' stamp='0.228'/>
+</phase>
+<phase name='linearScan' stamp='0.228'>
+<phase_done name='linearScan' stamp='0.228'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.228'/>
+</phase>
+<phase name='codeemit' stamp='0.228'>
+<phase_done name='codeemit' stamp='0.228'/>
+</phase>
+<phase name='codeinstall' stamp='0.228'>
+<phase_done name='codeinstall' stamp='0.228'/>
+</phase>
+<code_cache total_blobs='624' nmethods='235' adapters='234' free_code_cache='248368128'/>
+<task_done success='1' nmsize='1368' count='271' inlined_bytes='52' stamp='0.228'/>
+</task>
+<task compile_id='239' method='java.lang.ref.WeakReference &lt;init&gt; (Ljava/lang/Object;)V' bytes='6' count='256' iicount='256' level='3' stamp='0.228'>
+<phase name='setup' stamp='0.228'>
+<phase_done name='setup' stamp='0.228'/>
+</phase>
+<phase name='buildIR' stamp='0.228'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1010' name='java.lang.ref.WeakReference' flags='1'/>
+<method id='1093' holder='1010' name='&lt;init&gt;' return='977' arguments='982' flags='1' bytes='6' iicount='256'/>
+<parse method='1093'  stamp='0.228'>
+<phase name='parse_hir' stamp='0.228'>
+<bc code='183' bci='2'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1095' holder='1008' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='7' compile_id='208' compiler='c1' level='3' iicount='398'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<klass id='1097' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1098' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1097' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='571'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='11000'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1010'/>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.228'/>
+</phase>
+<parse_done stamp='0.228'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.228'>
+<phase_done name='optimize_blocks' stamp='0.228'/>
+</phase>
+<phase name='gvn' stamp='0.228'>
+<phase_done name='gvn' stamp='0.229'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.229'>
+<phase_done name='rangeCheckElimination' stamp='0.229'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.229'>
+<phase_done name='optimize_null_checks' stamp='0.229'/>
+</phase>
+<phase_done name='buildIR' stamp='0.229'/>
+</phase>
+<phase name='emit_lir' stamp='0.229'>
+<phase name='lirGeneration' stamp='0.229'>
+<phase_done name='lirGeneration' stamp='0.229'/>
+</phase>
+<phase name='linearScan' stamp='0.229'>
+<phase_done name='linearScan' stamp='0.229'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.229'/>
+</phase>
+<phase name='codeemit' stamp='0.229'>
+<phase_done name='codeemit' stamp='0.229'/>
+</phase>
+<phase name='codeinstall' stamp='0.229'>
+<dependency type='no_finalizable_subclasses' ctxk='1010'/>
+<phase_done name='codeinstall' stamp='0.229'/>
+</phase>
+<code_cache total_blobs='628' nmethods='239' adapters='234' free_code_cache='248355712'/>
+<task_done success='1' nmsize='880' count='258' inlined_bytes='33' stamp='0.229'/>
+</task>
+<task compile_id='241' method='java.lang.invoke.MethodType makeImpl (Ljava/lang/Class;[Ljava/lang/Class;Z)Ljava/lang/invoke/MethodType;' bytes='66' count='259' iicount='259' level='3' stamp='0.229'>
+<phase name='setup' stamp='0.229'>
+<phase_done name='setup' stamp='0.229'/>
+</phase>
+<phase name='buildIR' stamp='0.229'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<type id='969' name='boolean'/>
+<method id='1094' holder='1041' name='makeImpl' return='1041' arguments='984 1093 969' flags='8' bytes='66' iicount='262'/>
+<parse method='1094'  stamp='0.229'>
+<phase name='parse_hir' stamp='0.229'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<method id='1099' holder='1041' name='&lt;init&gt;' return='977' arguments='1093 984' flags='2' bytes='15' iicount='262'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='11018'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.229'/>
+</parse>
+<parse_done stamp='0.229'/>
+</parse>
+<bc code='182' bci='12'/>
+<klass id='1096' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet' flags='10'/>
+<method id='1103' holder='1096' name='get' return='982' arguments='982' flags='1' bytes='54' iicount='263'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='183' bci='43'/>
+<method id='1106' holder='1041' name='&lt;init&gt;' return='977' arguments='984 1093 969' flags='2' bytes='40' iicount='84'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='49'/>
+<klass id='1108' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1109' holder='1108' name='findForm' return='1108' arguments='1041' flags='8' bytes='25' iicount='84'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='3'/>
+<type id='975' name='int'/>
+<method id='1111' holder='1108' name='canonicalize' return='1041' arguments='1041 975 975' flags='9' bytes='64' iicount='84'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='16'/>
+<method id='1113' holder='1108' name='&lt;init&gt;' return='977' arguments='1041' flags='4' bytes='687' iicount='33'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='21'/>
+<method id='1115' holder='1041' name='form' return='1108' flags='0' bytes='5' iicount='128'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.230'/>
+</parse>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='182' bci='59'/>
+<method id='1117' holder='1096' name='add' return='982' arguments='982' flags='1' bytes='66' iicount='86'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.230'/>
+</phase>
+<code_cache total_blobs='636' nmethods='247' adapters='234' free_code_cache='248340992'/>
+<task_done success='1' nmsize='2408' count='283' inlined_bytes='46' stamp='0.230'/>
+</task>
+<task compile_id='254' method='jdk.internal.org.objectweb.asm.ClassWriter put (Ljdk/internal/org/objectweb/asm/Item;)V' bytes='152' count='267' iicount='267' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='977' name='void'/>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='put' return='977' arguments='1094' flags='2' bytes='152' iicount='267'/>
+<parse method='1095'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='643' nmethods='254' adapters='234' free_code_cache='248328192'/>
+<task_done success='1' nmsize='2288' count='289' stamp='0.231'/>
+</task>
+<task compile_id='261' method='java.lang.invoke.LambdaForm$Name index ()I' bytes='5' count='132' iicount='132' level='1' stamp='0.232'>
+<phase name='setup' stamp='0.232'>
+<phase_done name='setup' stamp='0.232'/>
+</phase>
+<phase name='buildIR' stamp='0.232'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1094' holder='1093' name='index' return='975' flags='0' bytes='5' iicount='133'/>
+<parse method='1094'  stamp='0.232'>
+<phase name='parse_hir' stamp='0.232'>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.233'>
+<phase_done name='lirGeneration' stamp='0.233'/>
+</phase>
+<phase name='linearScan' stamp='0.233'>
+<phase_done name='linearScan' stamp='0.233'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.233'/>
+</phase>
+<phase name='codeemit' stamp='0.233'>
+<phase_done name='codeemit' stamp='0.233'/>
+</phase>
+<phase name='codeinstall' stamp='0.233'>
+<phase_done name='codeinstall' stamp='0.233'/>
+</phase>
+<code_cache total_blobs='650' nmethods='261' adapters='234' free_code_cache='248321024'/>
+<task_done success='1' nmsize='272' count='138' stamp='0.233'/>
+</task>
+<task compile_id='267' method='java.util.Arrays equals ([Ljava/lang/Object;[Ljava/lang/Object;)Z' bytes='57' count='256' backedge_count='671' iicount='256' level='3' stamp='0.234'>
+<phase name='setup' stamp='0.234'>
+<phase_done name='setup' stamp='0.234'/>
+</phase>
+<phase name='buildIR' stamp='0.234'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1095' holder='1093' name='equals' return='969' arguments='1094 1094' flags='9' bytes='57' iicount='256'/>
+<parse method='1095'  stamp='0.234'>
+<phase name='parse_hir' stamp='0.234'>
+<bc code='184' bci='41'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1097' name='java.util.Objects' flags='17'/>
+<method id='1098' holder='1097' name='equals' return='969' arguments='982 982' flags='9' bytes='23' compile_id='22' compiler='c1' level='3' iicount='1404'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<method id='1101' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='33'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.234'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.234'/>
+</phase>
+<parse_done stamp='0.234'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.234'>
+<phase_done name='optimize_blocks' stamp='0.234'/>
+</phase>
+<phase name='gvn' stamp='0.234'>
+<phase_done name='gvn' stamp='0.234'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.234'>
+<phase_done name='rangeCheckElimination' stamp='0.234'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.234'>
+<phase_done name='optimize_null_checks' stamp='0.234'/>
+</phase>
+<phase_done name='buildIR' stamp='0.234'/>
+</phase>
+<phase name='emit_lir' stamp='0.234'>
+<phase name='lirGeneration' stamp='0.234'>
+<phase_done name='lirGeneration' stamp='0.234'/>
+</phase>
+<phase name='linearScan' stamp='0.234'>
+<phase_done name='linearScan' stamp='0.234'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.234'/>
+</phase>
+<phase name='codeemit' stamp='0.234'>
+<phase_done name='codeemit' stamp='0.234'/>
+</phase>
+<phase name='codeinstall' stamp='0.234'>
+<phase_done name='codeinstall' stamp='0.235'/>
+</phase>
+<code_cache total_blobs='660' nmethods='270' adapters='235' free_code_cache='248311552'/>
+<task_done success='1' nmsize='1448' count='264' backedge_count='685' inlined_bytes='23' stamp='0.235'/>
+</task>
+<task compile_id='275' method='java.lang.reflect.Array newInstance (Ljava/lang/Class;I)Ljava/lang/Object;' bytes='6' count='258' iicount='258' level='3' stamp='0.236'>
+<phase name='setup' stamp='0.236'>
+<phase_done name='setup' stamp='0.236'/>
+</phase>
+<phase name='buildIR' stamp='0.236'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.reflect.Array' flags='17'/>
+<method id='1094' holder='1093' name='newInstance' return='982' arguments='984 975' flags='9' bytes='6' iicount='259'/>
+<parse method='1094'  stamp='0.236'>
+<phase name='parse_hir' stamp='0.236'>
+<bc code='184' bci='2'/>
+<method id='1096' holder='1093' name='newArray' return='982' arguments='984 975' flags='266' bytes='0' compile_id='276' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.236'/>
+</phase>
+<parse_done stamp='0.236'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.236'>
+<phase_done name='optimize_blocks' stamp='0.236'/>
+</phase>
+<phase name='gvn' stamp='0.236'>
+<phase_done name='gvn' stamp='0.236'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.236'>
+<phase_done name='rangeCheckElimination' stamp='0.236'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.236'>
+<phase_done name='optimize_null_checks' stamp='0.236'/>
+</phase>
+<phase_done name='buildIR' stamp='0.236'/>
+</phase>
+<phase name='emit_lir' stamp='0.236'>
+<phase name='lirGeneration' stamp='0.236'>
+<phase_done name='lirGeneration' stamp='0.236'/>
+</phase>
+<phase name='linearScan' stamp='0.236'>
+<phase_done name='linearScan' stamp='0.236'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.236'/>
+</phase>
+<phase name='codeemit' stamp='0.236'>
+<phase_done name='codeemit' stamp='0.236'/>
+</phase>
+<phase name='codeinstall' stamp='0.236'>
+<phase_done name='codeinstall' stamp='0.236'/>
+</phase>
+<code_cache total_blobs='668' nmethods='278' adapters='235' free_code_cache='248302336'/>
+<task_done success='1' nmsize='360' count='260' stamp='0.236'/>
+</task>
+<task compile_id='285' method='java.lang.invoke.LambdaForm internArgument (Ljava/lang/invoke/LambdaForm$Name;)Ljava/lang/invoke/LambdaForm$Name;' bytes='84' count='267' iicount='267' level='3' stamp='0.238'>
+<phase name='setup' stamp='0.238'>
+<phase_done name='setup' stamp='0.238'/>
+</phase>
+<phase name='buildIR' stamp='0.238'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1094' holder='1040' name='internArgument' return='1093' arguments='1093' flags='8' bytes='84' iicount='267'/>
+<parse method='1094'  stamp='0.238'>
+<phase name='parse_hir' stamp='0.238'>
+<bc code='184' bci='80'/>
+<type id='975' name='int'/>
+<klass id='1097' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1098' holder='1040' name='argument' return='1093' arguments='975 1097' flags='8' bytes='27' compile_id='259' compiler='c1' level='3' iicount='371'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='12'/>
+<type id='977' name='void'/>
+<method id='1100' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1097' flags='0' bytes='9' iicount='58'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='5'/>
+<klass id='1102' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<klass id='1103' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1104' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1097 1102 1103' flags='2' bytes='54' iicount='201'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.238'/>
+</parse>
+<bc code='182' bci='20'/>
+<klass id='1109' name='java.lang.Enum' flags='1025'/>
+<method id='1110' holder='1109' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.239'/>
+</parse>
+<parse_done stamp='0.239'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.239'/>
+</phase>
+<parse_done stamp='0.239'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.239'>
+<phase_done name='optimize_blocks' stamp='0.239'/>
+</phase>
+<phase name='gvn' stamp='0.239'>
+<phase_done name='gvn' stamp='0.239'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.239'>
+<phase_done name='rangeCheckElimination' stamp='0.239'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.239'>
+<phase_done name='optimize_null_checks' stamp='0.239'/>
+</phase>
+<phase_done name='buildIR' stamp='0.239'/>
+</phase>
+<phase name='emit_lir' stamp='0.239'>
+<phase name='lirGeneration' stamp='0.239'>
+<phase_done name='lirGeneration' stamp='0.239'/>
+</phase>
+<phase name='linearScan' stamp='0.239'>
+<phase_done name='linearScan' stamp='0.239'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.239'/>
+</phase>
+<phase name='codeemit' stamp='0.239'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='679' nmethods='285' adapters='239' free_code_cache='248286336'/>
+<task_done success='1' nmsize='1128' count='267' inlined_bytes='41' stamp='0.239'/>
+</task>
+<task compile_id='289' method='jdk.internal.org.objectweb.asm.ByteVector put12 (II)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='64' count='261' iicount='261' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='put12' return='1093' arguments='975 975' flags='0' bytes='64' iicount='261'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='57'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='681' nmethods='287' adapters='239' free_code_cache='248281600'/>
+<task_done success='1' nmsize='648' count='273' stamp='0.240'/>
+</task>
+<task compile_id='290' method='java.lang.invoke.LambdaForm$BasicType basicTypeClass ()Ljava/lang/Class;' bytes='5' count='138' iicount='138' level='1' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1094' holder='1093' name='basicTypeClass' return='984' flags='0' bytes='5' iicount='139'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='682' nmethods='288' adapters='239' free_code_cache='248280832'/>
+<task_done success='1' nmsize='272' count='139' stamp='0.240'/>
+</task>
+<task compile_id='291' method='sun.invoke.util.Wrapper basicTypeChar ()C' bytes='5' count='129' iicount='129' level='1' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<type id='970' name='char'/>
+<klass id='1093' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1094' holder='1093' name='basicTypeChar' return='970' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='684' nmethods='290' adapters='239' free_code_cache='248274432'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.240'/>
+</task>
+<task compile_id='293' method='java.lang.invoke.LambdaForm$Name type ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='5' count='137' iicount='137' level='1' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<klass id='1094' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1095' holder='1093' name='type' return='1094' flags='0' bytes='5' iicount='137'/>
+<parse method='1095'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='686' nmethods='292' adapters='239' free_code_cache='248268800'/>
+<task_done success='1' nmsize='272' count='137' stamp='0.241'/>
+</task>
+<task compile_id='298' method='sun.invoke.util.Wrapper hashPrim (Ljava/lang/Class;)I' bytes='30' count='260' iicount='260' level='3' stamp='0.242'>
+<phase name='setup' stamp='0.242'>
+<phase_done name='setup' stamp='0.242'/>
+</phase>
+<phase name='buildIR' stamp='0.242'>
+<type id='975' name='int'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1094' holder='1093' name='hashPrim' return='975' arguments='984' flags='10' bytes='30' iicount='261'/>
+<parse method='1094'  stamp='0.242'>
+<phase name='parse_hir' stamp='0.242'>
+<bc code='182' bci='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1096' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='591'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='11'/>
+<method id='1098' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='57'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1099' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='3310'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1101' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='13536'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.242'/>
+</parse>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='182' bci='17'/>
+<type id='970' name='char'/>
+<method id='1104' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='12047'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1106' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='19731'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1108' name='java.lang.StringLatin1' flags='16'/>
+<method id='1109' holder='1108' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='6' compiler='c1' level='3' iicount='12087'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1111' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1112' holder='1111' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1113' name='java.lang.StringUTF16' flags='16'/>
+<method id='1114' holder='1113' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='184' bci='2'/>
+<method id='1116' holder='1113' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='2'/>
+<method id='1118' holder='1113' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1120' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1122' holder='1113' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1122' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='22'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='1'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='15'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='184' bci='2'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='2'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1122' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='693' nmethods='299' adapters='239' free_code_cache='248256896'/>
+<task_done success='1' nmsize='3848' count='278' inlined_bytes='241' stamp='0.244'/>
+</task>
+<task compile_id='303' method='jdk.internal.org.objectweb.asm.MethodWriter visitVarInsn (II)V' bytes='292' count='265' iicount='265' level='3' stamp='0.244'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.MethodWriter' flags='0'/>
+<method id='1094' holder='1093' name='visitVarInsn' return='977' arguments='975 975' flags='1' bytes='292' iicount='265'/>
+<parse method='1094'  stamp='0.244'>
+<phase name='parse_hir' stamp='0.244'>
+<bc code='182' bci='36'/>
+<klass id='1099' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<klass id='1100' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1098' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1101' holder='1098' name='execute' return='977' arguments='975 975 1099 1100' flags='0' bytes='2252' iicount='410'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='76'/>
+<method id='1103' holder='1093' name='noSuccessor' return='977' flags='2' bytes='87' iicount='23'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='217'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1107' holder='1096' name='putByte' return='1096' arguments='975' flags='1' bytes='39' compile_id='262' compiler='c1' level='3' iicount='531'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='238'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='243'/>
+<method id='1109' holder='1096' name='put12' return='1096' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='378'/>
+<call method='1109' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='256'/>
+<method id='1111' holder='1096' name='put11' return='1096' arguments='975 975' flags='0' bytes='52' iicount='143'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='183' bci='285'/>
+<klass id='1097' name='jdk.internal.org.objectweb.asm.Label' flags='1'/>
+<method id='1113' holder='1097' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='40'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='12706'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.244'/>
+</parse>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='288'/>
+<method id='1117' holder='1093' name='visitLabel' return='977' arguments='1097' flags='1' bytes='281' iicount='23'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='698' nmethods='304' adapters='239' free_code_cache='248245376'/>
+<task_done success='1' nmsize='2664' count='270' inlined_bytes='6' stamp='0.245'/>
+</task>
+<task compile_id='306' method='java.lang.invoke.MethodType parameterCount ()I' bytes='6' count='256' iicount='256' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='parameterCount' return='975' flags='1' bytes='6' iicount='256'/>
+<parse method='1093'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='700' nmethods='306' adapters='239' free_code_cache='248243328'/>
+<task_done success='1' nmsize='368' count='256' stamp='0.245'/>
+</task>
+<task compile_id='311' method='java.lang.invoke.InvokerBytecodeGenerator isStaticallyNameable (Ljava/lang/Class;)Z' bytes='116' count='260' backedge_count='4' iicount='260' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1094' holder='1093' name='isStaticallyNameable' return='969' arguments='984' flags='8' bytes='116' iicount='261'/>
+<parse method='1094'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<bc code='182' bci='9'/>
+<method id='1097' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='16'/>
+<method id='1098' holder='984' name='getComponentType' return='984' flags='1' bytes='14' compile_id='266' compiler='c1' level='3' iicount='388'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='1'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='182' bci='24'/>
+<method id='1100' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='33'/>
+<klass id='1102' name='sun.reflect.misc.ReflectUtil' flags='17'/>
+<method id='1103' holder='1102' name='isVMAnonymousClass' return='969' arguments='984' flags='9' bytes='19' iicount='141'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1105' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='679'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<method id='1107' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='58'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1108' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' compile_id='115' compiler='c1' level='3' iicount='800'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='3'/>
+<method id='1110' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' compile_id='116' compiler='c1' level='3' iicount='858'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='182' bci='42'/>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<method id='1112' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' compile_id='240' compiler='c1' level='3' iicount='619'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<method id='1114' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1116' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='422'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1119' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1120' holder='1119' name='getCallerClass' return='984' flags='265' bytes='0' iicount='28'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<type id='977' name='void'/>
+<method id='1121' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='0'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1123' holder='986' name='getClassLoader' return='986' arguments='984' flags='8' bytes='11' iicount='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='7'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='15'/>
+<method id='1125' holder='986' name='needsClassLoaderPermissionCheck' return='969' arguments='986 986' flags='10' bytes='27' iicount='1'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='182' bci='15'/>
+<method id='1127' holder='986' name='isAncestor' return='969' arguments='986' flags='0' bytes='20' iicount='1'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1127'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='1132' name='java.security.Permission' flags='1025'/>
+<method id='1133' holder='994' name='checkPermission' return='977' arguments='1132' flags='1' bytes='5' iicount='1'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='182' bci='47'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='11'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='20'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='0'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='7'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='15'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='182' bci='15'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1127'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.246'/>
+</parse>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='58'/>
+<klass id='1135' name='sun.invoke.util.VerifyAccess' flags='1'/>
+<method id='1136' holder='1135' name='isSamePackage' return='969' arguments='984 984' flags='9' bytes='60' iicount='180'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='67'/>
+<method id='1138' holder='984' name='getModifiers' return='975' flags='257' bytes='0' iicount='21'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='70'/>
+<klass id='1139' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1140' holder='1139' name='isPublic' return='969' arguments='975' flags='9' bytes='12' iicount='50'/>
+<call method='1140' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='100'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.247'/>
+</phase>
+<parse_done stamp='0.247'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.247'>
+<phase_done name='optimize_blocks' stamp='0.247'/>
+</phase>
+<phase name='gvn' stamp='0.247'>
+<phase_done name='gvn' stamp='0.247'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.247'>
+<phase_done name='rangeCheckElimination' stamp='0.247'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.247'>
+<phase_done name='optimize_null_checks' stamp='0.247'/>
+</phase>
+<phase_done name='buildIR' stamp='0.247'/>
+</phase>
+<phase name='emit_lir' stamp='0.247'>
+<phase name='lirGeneration' stamp='0.247'>
+<phase_done name='lirGeneration' stamp='0.247'/>
+</phase>
+<phase name='linearScan' stamp='0.247'>
+<phase_done name='linearScan' stamp='0.248'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.248'/>
+</phase>
+<phase name='codeemit' stamp='0.248'>
+<phase_done name='codeemit' stamp='0.248'/>
+</phase>
+<phase name='codeinstall' stamp='0.248'>
+<dependency type='unique_concrete_method' ctxk='986' x='1127'/>
+<phase_done name='codeinstall' stamp='0.248'/>
+</phase>
+<code_cache total_blobs='712' nmethods='316' adapters='239' free_code_cache='248178432'/>
+<task_done success='1' nmsize='8552' count='308' backedge_count='4' inlined_bytes='285' stamp='0.248'/>
+</task>
+<task compile_id='322' method='java.lang.invoke.InvokerBytecodeGenerator emitPushArgument (Ljava/lang/Class;Ljava/lang/Object;)V' bytes='120' count='258' iicount='258' level='3' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1094' holder='1093' name='emitPushArgument' return='977' arguments='984 982' flags='2' bytes='120' iicount='263'/>
+<parse method='1094'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<bc code='184' bci='1'/>
+<klass id='1096' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1097' holder='1096' name='basicType' return='1096' arguments='984' flags='8' bytes='19' compile_id='246' compiler='c1' level='3' iicount='778'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='12'/>
+<klass id='1103' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1104' holder='1103' name='forPrimitiveType' return='1103' arguments='984' flags='9' bytes='49' iicount='320'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<method id='1106' holder='1096' name='basicType' return='1096' arguments='1103' flags='8' bytes='10' iicount='175'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='1'/>
+<type id='970' name='char'/>
+<method id='1108' holder='1103' name='basicTypeChar' return='970' flags='1' bytes='5' compile_id='291' compiler='c1' level='1' iicount='129'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='6'/>
+<method id='1110' holder='1096' name='basicType' return='1096' arguments='970' flags='8' bytes='172' iicount='196'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='26'/>
+<type id='975' name='int'/>
+<klass id='1112' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1113' holder='1112' name='index' return='975' flags='0' bytes='5' compile_id='261' compiler='c1' level='1' iicount='138'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='183' bci='29'/>
+<method id='1115' holder='1093' name='emitLoadInsn' return='977' arguments='1096 975' flags='2' bytes='21' iicount='270'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='2'/>
+<method id='1118' holder='1093' name='loadInsnOpcode' return='975' arguments='1096' flags='2' bytes='86' iicount='270'/>
+<call method='1118' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='17'/>
+<klass id='1120' name='jdk.internal.org.objectweb.asm.MethodVisitor' flags='1025'/>
+<method id='1121' holder='1120' name='visitVarInsn' return='977' arguments='975 975' flags='1' bytes='17' iicount='3'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='183' bci='41'/>
+<method id='1122' holder='1093' name='emitImplicitConversion' return='977' arguments='1096 984 982' flags='2' bytes='159' compile_id='316' compiler='c1' level='3' iicount='294'/>
+<call method='1122' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='67'/>
+<method id='1124' holder='1093' name='emitConst' return='977' arguments='982' flags='2' bytes='333' iicount='1'/>
+<call method='1124' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='74'/>
+<method id='1126' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='77'/>
+<method id='1128' holder='1103' name='isWrapperType' return='969' arguments='984' flags='9' bytes='13' iicount='1'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='184' bci='1'/>
+<method id='1130' holder='1103' name='findWrapperType' return='1103' arguments='984' flags='8' bytes='25' iicount='1'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='184' bci='4'/>
+<method id='1135' holder='1103' name='hashWrap' return='975' arguments='984' flags='10' bytes='62' iicount='10'/>
+<call method='1135' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='183' bci='92'/>
+<call method='1124' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='104'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1137' holder='1093' name='constantPlaceholder' return='983' arguments='982' flags='0' bytes='97' iicount='22'/>
+<call method='1137' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='107'/>
+<method id='1139' holder='1120' name='visitLdcInsn' return='977' arguments='982' flags='1' bytes='16' iicount='1'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='116'/>
+<call method='1122' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='723' nmethods='325' adapters='239' free_code_cache='248156672'/>
+<task_done success='1' nmsize='4040' count='274' inlined_bytes='98' stamp='0.251'/>
+</task>
+<task compile_id='328' method='java.util.Arrays copyOfRange ([Ljava/lang/Object;IILjava/lang/Class;)[Ljava/lang/Object;' bytes='89' count='262' iicount='262' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1095' holder='1093' name='copyOfRange' return='1094' arguments='1094 975 975 984' flags='9' bytes='89' iicount='263'/>
+<parse method='1095'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1098' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='498'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1100' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='515'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='22'/>
+<method id='1102' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='75'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<method id='1104' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='75'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='27'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1107' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='719'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<method id='1109' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='719'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='31'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='34'/>
+<method id='1111' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='515'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1113' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1435'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1116' name='java.lang.StringLatin1' flags='16'/>
+<method id='1117' holder='1116' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='949'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='9'/>
+<method id='1119' holder='1093' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='966'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1121' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1357'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1123' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='13505'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1125' name='java.lang.StringUTF16' flags='16'/>
+<method id='1126' holder='1125' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='183' bci='37'/>
+<klass id='1097' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1128' holder='1097' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='182' bci='56'/>
+<method id='1131' holder='984' name='getComponentType' return='984' flags='1' bytes='14' compile_id='266' compiler='c1' level='3' iicount='439'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='182' bci='1'/>
+<method id='1133' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='61'/>
+<klass id='1134' name='java.lang.reflect.Array' flags='17'/>
+<method id='1135' holder='1134' name='newInstance' return='982' arguments='984 975' flags='9' bytes='6' compile_id='275' compiler='c1' level='3' iicount='420'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='2'/>
+<method id='1137' holder='1134' name='newArray' return='982' arguments='984 975' flags='266' bytes='0' compile_id='276' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1137' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='80'/>
+<klass id='1138' name='java.lang.Math' flags='17'/>
+<method id='1139' holder='1138' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='120' compiler='c1' level='3' iicount='2634'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='83'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1141' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1141' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.252'/>
+</phase>
+<phase_done name='buildIR' stamp='0.252'/>
+</phase>
+<phase name='emit_lir' stamp='0.252'>
+<phase name='lirGeneration' stamp='0.252'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.252'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.252'/>
+</phase>
+<phase name='codeemit' stamp='0.252'>
+<phase_done name='codeemit' stamp='0.252'/>
+</phase>
+<phase name='codeinstall' stamp='0.252'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='733' nmethods='335' adapters='239' free_code_cache='248128896'/>
+<task_done success='1' nmsize='4728' count='275' inlined_bytes='149' stamp='0.252'/>
+</task>
+<task compile_id='340' method='java.lang.Class isLocalOrAnonymousClass ()Z' bytes='5' count='256' iicount='256' level='3' stamp='0.253'>
+<phase name='setup' stamp='0.253'>
+<phase_done name='setup' stamp='0.253'/>
+</phase>
+<phase name='buildIR' stamp='0.253'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='isLocalOrAnonymousClass' return='969' flags='2' bytes='5' iicount='256'/>
+<parse method='1093'  stamp='0.253'>
+<phase name='parse_hir' stamp='0.253'>
+<bc code='183' bci='1'/>
+<method id='1095' holder='984' name='hasEnclosingMethodInfo' return='969' flags='2' bytes='17' iicount='256'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<klass id='1097' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1098' holder='984' name='getEnclosingMethod0' return='1097' flags='258' bytes='0' compile_id='342' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1099' name='java.lang.Class$EnclosingMethodInfo' unloaded='1'/>
+<method id='1100' holder='1099' name='validate' return='977' arguments='1097' unloaded='1'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.253'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.253'/>
+</phase>
+<parse_done stamp='0.253'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.253'>
+<phase_done name='optimize_blocks' stamp='0.253'/>
+</phase>
+<phase name='gvn' stamp='0.253'>
+<phase_done name='gvn' stamp='0.253'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.253'>
+<phase_done name='rangeCheckElimination' stamp='0.253'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.253'>
+<phase_done name='optimize_null_checks' stamp='0.253'/>
+</phase>
+<phase_done name='buildIR' stamp='0.253'/>
+</phase>
+<phase name='emit_lir' stamp='0.253'>
+<phase name='lirGeneration' stamp='0.253'>
+<phase_done name='lirGeneration' stamp='0.253'/>
+</phase>
+<phase name='linearScan' stamp='0.253'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.253'/>
+</phase>
+<code_cache total_blobs='737' nmethods='339' adapters='239' free_code_cache='248120832'/>
+<task_done success='1' nmsize='600' count='256' inlined_bytes='17' stamp='0.253'/>
+</task>
+<task compile_id='345' method='java.lang.invoke.LambdaForm$NamedFunction returnType ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='11' count='265' iicount='265' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<klass id='1094' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<method id='1095' holder='1093' name='returnType' return='1094' flags='0' bytes='11' iicount='265'/>
+<parse method='1095'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='182' bci='1'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1097' holder='1093' name='methodType' return='1041' flags='0' bytes='23' compile_id='307' compiler='c1' level='3' iicount='387'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1097'>
+<bc code='182' bci='11'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1100' holder='1035' name='type' return='1041' flags='1' bytes='5' compile_id='260' compiler='c1' level='1' iicount='129'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1100'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='19'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1102' holder='1038' name='getInvocationType' return='1041' flags='1' bytes='56' iicount='191'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='4'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1104' holder='1041' name='returnType' return='984' flags='1' bytes='5' compile_id='204' compiler='c1' level='1' iicount='128'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1106' holder='1094' name='basicType' return='1094' arguments='984' flags='8' bytes='19' compile_id='246' compiler='c1' level='3' iicount='912'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1108' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='12'/>
+<klass id='1112' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1113' holder='1112' name='forPrimitiveType' return='1112' arguments='984' flags='9' bytes='49' compile_id='318' compiler='c1' level='3' iicount='401'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<method id='1115' holder='1094' name='basicType' return='1094' arguments='1112' flags='8' bytes='10' iicount='223'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='182' bci='1'/>
+<type id='970' name='char'/>
+<method id='1117' holder='1112' name='basicTypeChar' return='970' flags='1' bytes='5' compile_id='291' compiler='c1' level='1' iicount='129'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='184' bci='6'/>
+<method id='1119' holder='1094' name='basicType' return='1094' arguments='970' flags='8' bytes='172' iicount='251'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.254'/>
+</parse>
+<parse_done stamp='0.254'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.254'>
+<phase_done name='lirGeneration' stamp='0.254'/>
+</phase>
+<phase name='linearScan' stamp='0.254'>
+<phase_done name='linearScan' stamp='0.254'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.254'/>
+</phase>
+<phase name='codeemit' stamp='0.254'>
+<phase_done name='codeemit' stamp='0.254'/>
+</phase>
+<phase name='codeinstall' stamp='0.254'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1100'/>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='745' nmethods='345' adapters='239' free_code_cache='248102272'/>
+<task_done success='1' nmsize='1704' count='265' inlined_bytes='67' stamp='0.254'/>
+</task>
+<task compile_id='349' method='jdk.internal.org.objectweb.asm.ClassWriter addType (Ljava/lang/String;)I' bytes='39' count='278' iicount='278' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1094' holder='1093' name='addType' return='975' arguments='983' flags='0' bytes='39' iicount='278'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='182' bci='9'/>
+<type id='977' name='void'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1097' holder='1096' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' compile_id='225' compiler='c1' level='3' iicount='1466'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='17'/>
+<method id='1099' holder='1093' name='get' return='1096' arguments='1096' flags='2' bytes='49' compile_id='226' compiler='c1' level='3' iicount='1466'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<method id='1101' holder='1093' name='addType' return='1096' arguments='1096' flags='2' bytes='103' iicount='66'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='748' nmethods='348' adapters='239' free_code_cache='248094464'/>
+<task_done success='1' nmsize='744' count='287' stamp='0.255'/>
+</task>
+<task compile_id='353' method='java.util.Arrays copyOfRange ([Ljava/lang/Object;II)[Ljava/lang/Object;' bytes='11' count='258' iicount='258' level='3' stamp='0.256'>
+<phase name='setup' stamp='0.256'>
+<phase_done name='setup' stamp='0.256'/>
+</phase>
+<phase name='buildIR' stamp='0.256'>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1095' holder='1093' name='copyOfRange' return='1094' arguments='1094 975 975' flags='9' bytes='11' iicount='259'/>
+<parse method='1095'  stamp='0.256'>
+<phase name='parse_hir' stamp='0.256'>
+<bc code='182' bci='4'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='7'/>
+<method id='1099' holder='1093' name='copyOfRange' return='1094' arguments='1094 975 975 984' flags='9' bytes='89' compile_id='328' compiler='c1' level='3' iicount='303'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.256'/>
+</phase>
+<parse_done stamp='0.256'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.256'>
+<phase_done name='optimize_blocks' stamp='0.256'/>
+</phase>
+<phase name='gvn' stamp='0.256'>
+<phase_done name='gvn' stamp='0.256'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.256'>
+<phase_done name='rangeCheckElimination' stamp='0.256'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.256'>
+<phase_done name='optimize_null_checks' stamp='0.256'/>
+</phase>
+<phase_done name='buildIR' stamp='0.256'/>
+</phase>
+<phase name='emit_lir' stamp='0.256'>
+<phase name='lirGeneration' stamp='0.256'>
+<phase_done name='lirGeneration' stamp='0.256'/>
+</phase>
+<phase name='linearScan' stamp='0.256'>
+<phase_done name='linearScan' stamp='0.256'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.256'/>
+</phase>
+<phase name='codeemit' stamp='0.256'>
+<phase_done name='codeemit' stamp='0.256'/>
+</phase>
+<phase name='codeinstall' stamp='0.256'>
+<phase_done name='codeinstall' stamp='0.256'/>
+</phase>
+<code_cache total_blobs='753' nmethods='352' adapters='240' free_code_cache='248088704'/>
+<task_done success='1' nmsize='520' count='262' stamp='0.256'/>
+</task>
+<task compile_id='359' method='java.lang.invoke.MethodType insertParameterTypes (I[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;' bytes='106' count='256' iicount='256' level='3' stamp='0.257'>
+<phase name='setup' stamp='0.257'>
+<phase_done name='setup' stamp='0.257'/>
+</phase>
+<phase name='buildIR' stamp='0.257'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<method id='1094' holder='1041' name='insertParameterTypes' return='1041' arguments='975 1093' flags='129' bytes='106' iicount='257'/>
+<parse method='1094'  stamp='0.257'>
+<phase name='parse_hir' stamp='0.257'>
+<bc code='184' bci='24'/>
+<method id='1096' holder='1041' name='checkPtypes' return='975' arguments='1093' flags='10' bytes='61' compile_id='280' compiler='c1' level='3' iicount='443'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='30'/>
+<method id='1098' holder='1041' name='parameterSlotCount' return='975' flags='0' bytes='8' compile_id='332' compiler='c1' level='3' iicount='299'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='4'/>
+<klass id='1100' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1101' holder='1100' name='parameterSlotCount' return='975' flags='1' bytes='9' compile_id='333' compiler='c1' level='3' iicount='300'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='5'/>
+<type id='970' name='char'/>
+<type id='976' name='long'/>
+<method id='1103' holder='1100' name='unpack' return='970' arguments='976 975' flags='10' bytes='30' compile_id='334' compiler='c1' level='3' iicount='300'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='39'/>
+<type id='977' name='void'/>
+<method id='1105' holder='1041' name='checkSlotCount' return='977' arguments='975' flags='8' bytes='33' compile_id='233' compiler='c1' level='3' iicount='779'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='13'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1107' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='560'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1109' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='577'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1112' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='801'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<method id='1114' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='802'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='22'/>
+<method id='1116' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='88'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='183' bci='2'/>
+<method id='1118' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='88'/>
+<call method='1118' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='25'/>
+<method id='1120' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='578'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='28'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='1122' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1123' holder='1122' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='5'/>
+<klass id='1125' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1126' holder='1125' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1126' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='62'/>
+<klass id='1129' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1128' name='java.util.Arrays' flags='1'/>
+<method id='1130' holder='1128' name='copyOfRange' return='1129' arguments='1129 975 975' flags='9' bytes='11' compile_id='353' compiler='c1' level='3' iicount='272'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='4'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1132' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='7'/>
+<method id='1134' holder='1128' name='copyOfRange' return='1129' arguments='1129 975 975 984' flags='9' bytes='89' compile_id='328' compiler='c1' level='3' iicount='319'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='82'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1136' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='92'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='102'/>
+<type id='969' name='boolean'/>
+<method id='1138' holder='1041' name='makeImpl' return='1041' arguments='984 1093 969' flags='8' bytes='66' compile_id='241' compiler='c1' level='3' iicount='784'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='16'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1141' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='14'/>
+<call method='1141' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='183' bci='28'/>
+<method id='1147' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='261'/>
+<call method='1147' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1149' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='276'/>
+<call method='1149' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='183' bci='1'/>
+<method id='1151' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='14415'/>
+<call method='1151' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='19'/>
+<klass id='1153' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1154' holder='1041' name='newIndexOutOfBoundsException' return='1153' arguments='982' flags='10' bytes='39' iicount='1'/>
+<call method='1154' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.258'/>
+</phase>
+<parse_done stamp='0.258'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.258'>
+<phase_done name='optimize_blocks' stamp='0.258'/>
+</phase>
+<phase name='gvn' stamp='0.258'>
+<phase_done name='gvn' stamp='0.258'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.258'>
+<phase_done name='rangeCheckElimination' stamp='0.258'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.258'>
+<phase_done name='optimize_null_checks' stamp='0.258'/>
+</phase>
+<phase_done name='buildIR' stamp='0.258'/>
+</phase>
+<phase name='emit_lir' stamp='0.258'>
+<phase name='lirGeneration' stamp='0.258'>
+<phase_done name='lirGeneration' stamp='0.258'/>
+</phase>
+<phase name='linearScan' stamp='0.258'>
+<phase_done name='linearScan' stamp='0.258'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.258'/>
+</phase>
+<phase name='codeemit' stamp='0.258'>
+<phase_done name='codeemit' stamp='0.258'/>
+</phase>
+<phase name='codeinstall' stamp='0.258'>
+<phase_done name='codeinstall' stamp='0.258'/>
+</phase>
+<code_cache total_blobs='764' nmethods='362' adapters='241' free_code_cache='248061312'/>
+<task_done success='1' nmsize='4408' count='272' inlined_bytes='141' stamp='0.258'/>
+</task>
+<task compile_id='366' method='java.lang.invoke.InvokerBytecodeGenerator getInternalName (Ljava/lang/Class;)Ljava/lang/String;' bytes='75' count='262' iicount='262' level='3' stamp='0.259'>
+<phase name='setup' stamp='0.259'>
+<phase_done name='setup' stamp='0.259'/>
+</phase>
+<phase name='buildIR' stamp='0.259'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1094' holder='1093' name='getInternalName' return='983' arguments='984' flags='10' bytes='75' iicount='263'/>
+<parse method='1094'  stamp='0.259'>
+<phase name='parse_hir' stamp='0.259'>
+<bc code='182' bci='64'/>
+<method id='1106' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='1111'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='11'/>
+<method id='1108' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='62'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.259'/>
+</parse>
+<bc code='182' bci='71'/>
+<type id='970' name='char'/>
+<method id='1109' holder='983' name='replace' return='983' arguments='970 970' flags='1' bytes='42' compile_id='327' compiler='c1' level='3' iicount='369'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.259'/>
+</phase>
+<parse_done stamp='0.259'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.259'>
+<phase_done name='optimize_blocks' stamp='0.259'/>
+</phase>
+<phase name='gvn' stamp='0.259'>
+<phase_done name='gvn' stamp='0.259'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.259'>
+<phase_done name='rangeCheckElimination' stamp='0.259'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.259'>
+<phase_done name='optimize_null_checks' stamp='0.259'/>
+</phase>
+<phase_done name='buildIR' stamp='0.259'/>
+</phase>
+<phase name='emit_lir' stamp='0.259'>
+<phase name='lirGeneration' stamp='0.259'>
+<phase_done name='lirGeneration' stamp='0.259'/>
+</phase>
+<phase name='linearScan' stamp='0.259'>
+<phase_done name='linearScan' stamp='0.259'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.259'/>
+</phase>
+<phase name='codeemit' stamp='0.259'>
+<phase_done name='codeemit' stamp='0.259'/>
+</phase>
+<phase name='codeinstall' stamp='0.259'>
+<phase_done name='codeinstall' stamp='0.260'/>
+</phase>
+<code_cache total_blobs='767' nmethods='365' adapters='241' free_code_cache='248046208'/>
+<task_done success='1' nmsize='1336' count='273' inlined_bytes='21' stamp='0.260'/>
+</task>
+<task compile_id='369' method='java.lang.invoke.MethodHandleNatives refKindIsGetter (B)Z' bytes='32' count='212' iicount='212' level='3' stamp='0.260'>
+<phase name='setup' stamp='0.260'>
+<phase_done name='setup' stamp='0.260'/>
+</phase>
+<phase name='buildIR' stamp='0.260'>
+<type id='969' name='boolean'/>
+<type id='973' name='byte'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1093' holder='1039' name='refKindIsGetter' return='969' arguments='973' flags='8' bytes='32' iicount='212'/>
+<parse method='1093'  stamp='0.260'>
+<phase name='parse_hir' stamp='0.260'>
+<phase_done name='parse_hir' stamp='0.260'/>
+</phase>
+<parse_done stamp='0.260'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.260'>
+<phase_done name='optimize_blocks' stamp='0.260'/>
+</phase>
+<phase name='gvn' stamp='0.260'>
+<phase_done name='gvn' stamp='0.260'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.260'>
+<phase_done name='rangeCheckElimination' stamp='0.260'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.260'>
+<phase_done name='optimize_null_checks' stamp='0.260'/>
+</phase>
+<phase_done name='buildIR' stamp='0.260'/>
+</phase>
+<phase name='emit_lir' stamp='0.260'>
+<phase name='lirGeneration' stamp='0.260'>
+<phase_done name='lirGeneration' stamp='0.260'/>
+</phase>
+<phase name='linearScan' stamp='0.260'>
+<phase_done name='linearScan' stamp='0.260'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.260'/>
+</phase>
+<phase name='codeemit' stamp='0.260'>
+<phase_done name='codeemit' stamp='0.260'/>
+</phase>
+<phase name='codeinstall' stamp='0.260'>
+<phase_done name='codeinstall' stamp='0.260'/>
+</phase>
+<code_cache total_blobs='769' nmethods='367' adapters='241' free_code_cache='248035328'/>
+<task_done success='1' nmsize='432' count='212' stamp='0.260'/>
+</task>
+<task compile_id='377' method='java.lang.invoke.LambdaForm$Name internArguments ()V' bytes='59' count='256' backedge_count='655' iicount='256' level='3' stamp='0.264'>
+<phase name='setup' stamp='0.264'>
+<phase_done name='setup' stamp='0.264'/>
+</phase>
+<phase name='buildIR' stamp='0.264'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1094' holder='1093' name='internArguments' return='977' flags='0' bytes='59' iicount='256'/>
+<parse method='1094'  stamp='0.264'>
+<phase name='parse_hir' stamp='0.264'>
+<bc code='182' bci='30'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1093' name='isParam' return='969' flags='0' bytes='13' compile_id='302' compiler='c1' level='3' iicount='815'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.264'/>
+</parse>
+<bc code='184' bci='48'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1100' holder='1040' name='internArgument' return='1093' arguments='1093' flags='8' bytes='84' compile_id='285' compiler='c1' level='3' iicount='766'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.264'/>
+</phase>
+<parse_done stamp='0.264'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.264'>
+<phase_done name='optimize_blocks' stamp='0.264'/>
+</phase>
+<phase name='gvn' stamp='0.264'>
+<phase_done name='gvn' stamp='0.264'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.264'>
+<phase_done name='rangeCheckElimination' stamp='0.264'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.264'>
+<phase_done name='optimize_null_checks' stamp='0.264'/>
+</phase>
+<phase_done name='buildIR' stamp='0.264'/>
+</phase>
+<phase name='emit_lir' stamp='0.264'>
+<phase name='lirGeneration' stamp='0.264'>
+<phase_done name='lirGeneration' stamp='0.264'/>
+</phase>
+<phase name='linearScan' stamp='0.264'>
+<phase_done name='linearScan' stamp='0.264'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.264'/>
+</phase>
+<phase name='codeemit' stamp='0.264'>
+<phase_done name='codeemit' stamp='0.264'/>
+</phase>
+<phase name='codeinstall' stamp='0.264'>
+<phase_done name='codeinstall' stamp='0.264'/>
+</phase>
+<code_cache total_blobs='782' nmethods='378' adapters='241' free_code_cache='247998464'/>
+<task_done success='1' nmsize='1960' count='256' backedge_count='655' inlined_bytes='13' stamp='0.264'/>
+</task>
+<task compile_id='379' method='java.lang.invoke.InvokerBytecodeGenerator emitReferenceCast (Ljava/lang/Class;Ljava/lang/Object;)V' bytes='184' count='222' iicount='222' level='3' stamp='0.264'>
+<phase name='setup' stamp='0.264'>
+<phase_done name='setup' stamp='0.264'/>
+</phase>
+<phase name='buildIR' stamp='0.264'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1094' holder='1093' name='emitReferenceCast' return='977' arguments='984 982' flags='2' bytes='184' iicount='222'/>
+<parse method='1094'  stamp='0.264'>
+<phase name='parse_hir' stamp='0.264'>
+<bc code='182' bci='21'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1098' holder='1040' name='useCount' return='975' arguments='1096' flags='0' bytes='90' iicount='220'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='183' bci='35'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1093' name='assertStaticType' return='969' arguments='984 1096' flags='2' bytes='58' iicount='107'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='43'/>
+<method id='1102' holder='1093' name='isStaticallyNameable' return='969' arguments='984' flags='8' bytes='116' compile_id='311' compiler='c1' level='3' iicount='704'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='50'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1104' holder='1093' name='getInternalName' return='983' arguments='984' flags='10' bytes='75' compile_id='366' compiler='c1' level='3' iicount='360'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='64'/>
+<klass id='1106' name='jdk.internal.org.objectweb.asm.MethodVisitor' flags='1025'/>
+<method id='1107' holder='1106' name='visitTypeInsn' return='977' arguments='975 983' flags='1' bytes='17' iicount='1'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='76'/>
+<method id='1108' holder='1093' name='constantPlaceholder' return='983' arguments='982' flags='0' bytes='97' iicount='29'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='79'/>
+<method id='1112' holder='1106' name='visitLdcInsn' return='977' arguments='982' flags='1' bytes='16' iicount='1'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='91'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='100'/>
+<method id='1114' holder='1106' name='visitInsn' return='977' arguments='975' flags='1' bytes='16' iicount='2'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='117'/>
+<method id='1117' holder='1106' name='visitMethodInsn' return='977' arguments='975 983 983 983 969' flags='1' bytes='68' iicount='2'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='123'/>
+<method id='1120' holder='984' name='isAssignableFrom' return='969' arguments='984' flags='257' bytes='0' compile_id='360' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='138'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='172'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='177'/>
+<method id='1124' holder='1096' name='index' return='975' flags='0' bytes='5' compile_id='261' compiler='c1' level='1' iicount='138'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.265'/>
+</parse>
+<bc code='183' bci='180'/>
+<method id='1126' holder='1093' name='emitAstoreInsn' return='977' arguments='975' flags='2' bytes='9' iicount='22'/>
+<call method='1126' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='183' bci='5'/>
+<klass id='1128' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1131' holder='1093' name='emitStoreInsn' return='977' arguments='1128 975' flags='2' bytes='21' iicount='223'/>
+<call method='1131' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<method id='1133' holder='1093' name='storeInsnOpcode' return='975' arguments='1128' flags='2' bytes='86' iicount='223'/>
+<call method='1133' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='17'/>
+<method id='1135' holder='1106' name='visitVarInsn' return='977' arguments='975 975' flags='1' bytes='17' iicount='3'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.265'/>
+</parse>
+<parse_done stamp='0.265'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.265'/>
+</phase>
+<parse_done stamp='0.265'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.265'>
+<phase_done name='optimize_blocks' stamp='0.265'/>
+</phase>
+<phase name='gvn' stamp='0.265'>
+<phase_done name='gvn' stamp='0.265'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.265'>
+<phase_done name='rangeCheckElimination' stamp='0.265'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.265'>
+<phase_done name='optimize_null_checks' stamp='0.265'/>
+</phase>
+<phase_done name='buildIR' stamp='0.265'/>
+</phase>
+<phase name='emit_lir' stamp='0.265'>
+<phase name='lirGeneration' stamp='0.265'>
+<phase_done name='lirGeneration' stamp='0.265'/>
+</phase>
+<phase name='linearScan' stamp='0.265'>
+<phase_done name='linearScan' stamp='0.265'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.265'/>
+</phase>
+<phase name='codeemit' stamp='0.265'>
+<phase_done name='codeemit' stamp='0.265'/>
+</phase>
+<phase name='codeinstall' stamp='0.265'>
+<dependency type='leaf_type' ctxk='1040'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1098'/>
+<phase_done name='codeinstall' stamp='0.265'/>
+</phase>
+<code_cache total_blobs='785' nmethods='381' adapters='241' free_code_cache='247989504'/>
+<task_done success='1' nmsize='4072' count='236' inlined_bytes='35' stamp='0.265'/>
+</task>
+<task compile_id='386' method='sun.reflect.misc.ReflectUtil isVMAnonymousClass (Ljava/lang/Class;)Z' bytes='19' count='398' iicount='398' level='3' stamp='0.266'>
+<phase name='setup' stamp='0.266'>
+<phase_done name='setup' stamp='0.266'/>
+</phase>
+<phase name='buildIR' stamp='0.266'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='sun.reflect.misc.ReflectUtil' flags='17'/>
+<method id='1094' holder='1093' name='isVMAnonymousClass' return='969' arguments='984' flags='9' bytes='19' iicount='399'/>
+<parse method='1094'  stamp='0.266'>
+<phase name='parse_hir' stamp='0.266'>
+<bc code='182' bci='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1096' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='1486'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='11'/>
+<method id='1098' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='64'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1099' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' compile_id='115' compiler='c1' level='3' iicount='1170'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='182' bci='3'/>
+<method id='1101' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' compile_id='116' compiler='c1' level='3' iicount='1297'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<method id='1103' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='30675'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1106' name='java.lang.StringLatin1' flags='16'/>
+<method id='1107' holder='1106' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' compile_id='326' compiler='c2' level='4' iicount='964'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1109' name='java.lang.StringUTF16' flags='16'/>
+<method id='1110' holder='1109' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.266'/>
+</parse>
+<parse_done stamp='0.266'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.266'/>
+</phase>
+<parse_done stamp='0.266'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.266'>
+<phase_done name='optimize_blocks' stamp='0.266'/>
+</phase>
+<phase name='gvn' stamp='0.266'>
+<phase_done name='gvn' stamp='0.266'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.266'>
+<phase_done name='rangeCheckElimination' stamp='0.266'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.266'>
+<phase_done name='optimize_null_checks' stamp='0.266'/>
+</phase>
+<phase_done name='buildIR' stamp='0.266'/>
+</phase>
+<phase name='emit_lir' stamp='0.266'>
+<phase name='lirGeneration' stamp='0.266'>
+<phase_done name='lirGeneration' stamp='0.266'/>
+</phase>
+<phase name='linearScan' stamp='0.266'>
+<phase_done name='linearScan' stamp='0.266'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.266'/>
+</phase>
+<phase name='codeemit' stamp='0.266'>
+<phase_done name='codeemit' stamp='0.266'/>
+</phase>
+<phase name='codeinstall' stamp='0.266'>
+<phase_done name='codeinstall' stamp='0.266'/>
+</phase>
+<code_cache total_blobs='792' nmethods='387' adapters='242' free_code_cache='247976704'/>
+<task_done success='1' nmsize='1704' count='402' inlined_bytes='76' stamp='0.266'/>
+</task>
+<task compile_id='392' method='java.lang.AbstractStringBuilder appendChars ([CII)V' bytes='130' count='137' backedge_count='2192' iicount='137' level='3' stamp='0.267'>
+<phase name='setup' stamp='0.267'>
+<phase_done name='setup' stamp='0.267'/>
+</phase>
+<phase name='buildIR' stamp='0.267'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='appendChars' return='977' arguments='1082 975 975' flags='18' bytes='130' iicount='140'/>
+<parse method='1093'  stamp='0.267'>
+<phase name='parse_hir' stamp='0.267'>
+<bc code='182' bci='7'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='2252'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='184' bci='40'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='6171'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='183' bci='70'/>
+<method id='1101' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='83'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='putCharsSB' return='977' arguments='1085 975 1082 975 975' flags='9' bytes='21' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='184' bci='8'/>
+<method id='1106' holder='1103' name='checkBoundsBeginEnd' return='977' arguments='975 975 1085' flags='9' bytes='10' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='3'/>
+<method id='1108' holder='1103' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1110' holder='983' name='checkBoundsBeginEnd' return='977' arguments='975 975 975' flags='8' bytes='60' compile_id='287' compiler='c1' level='3' iicount='593'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='184' bci='17'/>
+<method id='1112' holder='1103' name='putChars' return='977' arguments='1085 975 1082 975 975' flags='10' bytes='24' iicount='1'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='184' bci='17'/>
+<method id='1114' holder='1103' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.268'/>
+</parse>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='184' bci='116'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='184' bci='8'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='3'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='184' bci='6'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='184' bci='17'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='184' bci='17'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.268'/>
+</parse>
+<parse_done stamp='0.268'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.268'/>
+</phase>
+<parse_done stamp='0.268'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.268'>
+<phase_done name='optimize_blocks' stamp='0.268'/>
+</phase>
+<phase name='gvn' stamp='0.268'>
+<phase_done name='gvn' stamp='0.268'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.268'>
+<phase_done name='rangeCheckElimination' stamp='0.268'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.268'>
+<phase_done name='optimize_null_checks' stamp='0.268'/>
+</phase>
+<phase_done name='buildIR' stamp='0.268'/>
+</phase>
+<phase name='emit_lir' stamp='0.268'>
+<phase name='lirGeneration' stamp='0.268'>
+<phase_done name='lirGeneration' stamp='0.268'/>
+</phase>
+<phase name='linearScan' stamp='0.268'>
+<phase_done name='linearScan' stamp='0.268'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.268'/>
+</phase>
+<phase name='codeemit' stamp='0.268'>
+<phase_done name='codeemit' stamp='0.268'/>
+</phase>
+<phase name='codeinstall' stamp='0.268'>
+<phase_done name='codeinstall' stamp='0.268'/>
+</phase>
+<code_cache total_blobs='798' nmethods='393' adapters='242' free_code_cache='247964416'/>
+<task_done success='1' nmsize='2984' count='140' backedge_count='2240' inlined_bytes='152' stamp='0.268'/>
+</task>
+<task compile_id='399' method='java.lang.invoke.InvokerBytecodeGenerator isStaticallyInvocable (Ljava/lang/invoke/MemberName;)Z' bytes='169' count='256' backedge_count='408' iicount='256' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1094' holder='1093' name='isStaticallyInvocable' return='969' arguments='1038' flags='8' bytes='169' iicount='256'/>
+<parse method='1094'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='182' bci='7'/>
+<method id='1096' holder='1038' name='isConstructor' return='969' flags='1' bytes='7' compile_id='300' compiler='c1' level='3' iicount='685'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1038' name='testAllFlags' return='969' arguments='975' flags='2' bytes='7' compile_id='264' compiler='c1' level='3' iicount='1145'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<method id='1100' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='3202'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='16'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1102' holder='1038' name='getDeclaringClass' return='984' flags='1' bytes='5' compile_id='218' compiler='c1' level='1' iicount='141'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1104' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='28'/>
+<method id='1105' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='37'/>
+<method id='1107' holder='984' name='isAnonymousClass' return='969' flags='1' bytes='27' iicount='260'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='1'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='183' bci='8'/>
+<method id='1109' holder='984' name='isLocalOrAnonymousClass' return='969' flags='2' bytes='5' compile_id='340' compiler='c1' level='3' iicount='540'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='1'/>
+<method id='1111' holder='984' name='hasEnclosingMethodInfo' return='969' flags='2' bytes='17' compile_id='341' compiler='c1' level='3' iicount='542'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='1'/>
+<klass id='1113' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1114' holder='984' name='getEnclosingMethod0' return='1113' flags='258' bytes='0' compile_id='342' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1115' name='java.lang.Class$EnclosingMethodInfo' unloaded='1'/>
+<method id='1116' holder='1115' name='validate' return='977' arguments='1113' unloaded='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='183' bci='15'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1117' holder='984' name='getSimpleBinaryName0' return='983' flags='258' bytes='0' iicount='1'/>
+<call method='1117' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='44'/>
+<method id='1118' holder='984' name='isLocalClass' return='969' flags='1' bytes='27' iicount='264'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='1'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='8'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='183' bci='15'/>
+<call method='1117' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='53'/>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<method id='1120' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' compile_id='240' compiler='c1' level='3' iicount='1509'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1120'>
+<bc code='182' bci='1'/>
+<method id='1122' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1124' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='585'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1127' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1128' holder='1127' name='getCallerClass' return='984' flags='265' bytes='0' iicount='35'/>
+<call method='1128' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<method id='1129' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='184' bci='0'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1131' holder='986' name='getClassLoader' return='986' arguments='984' flags='8' bytes='11' iicount='4'/>
+<call method='1131' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='182' bci='7'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='184' bci='15'/>
+<method id='1133' holder='986' name='needsClassLoaderPermissionCheck' return='969' arguments='986 986' flags='10' bytes='27' iicount='1'/>
+<call method='1133' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='182' bci='15'/>
+<method id='1135' holder='986' name='isAncestor' return='969' arguments='986' flags='0' bytes='20' iicount='1'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1135'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='1140' name='java.security.Permission' flags='1025'/>
+<method id='1141' holder='994' name='checkPermission' return='977' arguments='1140' flags='1' bytes='5' iicount='1'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='58'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1120'>
+<bc code='182' bci='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='11'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='20'/>
+<call method='1128' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='184' bci='0'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1131' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='182' bci='7'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='15'/>
+<call method='1133' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='182' bci='15'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1135'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='67'/>
+<klass id='1143' name='sun.reflect.misc.ReflectUtil' flags='17'/>
+<method id='1144' holder='1143' name='isVMAnonymousClass' return='969' arguments='984' flags='9' bytes='19' compile_id='386' compiler='c1' level='3' iicount='443'/>
+<call method='1144' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='182' bci='1'/>
+<method id='1146' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='1628'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1146'>
+<bc code='183' bci='11'/>
+<method id='1148' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='67'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1149' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' compile_id='115' compiler='c1' level='3' iicount='1233'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='182' bci='3'/>
+<method id='1151' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' compile_id='116' compiler='c1' level='3' iicount='1391'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='76'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1153' holder='1038' name='getMethodOrFieldType' return='1041' flags='1' bytes='72' compile_id='304' compiler='c1' level='3' iicount='704'/>
+<call method='1153' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='81'/>
+<method id='1155' holder='1041' name='returnType' return='984' flags='1' bytes='5' compile_id='204' compiler='c1' level='1' iicount='128'/>
+<call method='1155' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='84'/>
+<method id='1157' holder='1093' name='isStaticallyNameable' return='969' arguments='984' flags='8' bytes='116' compile_id='311' compiler='c1' level='3' iicount='877'/>
+<call method='1157' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='93'/>
+<klass id='1159' name='[Ljava.lang.Class;' flags='1041'/>
+<method id='1160' holder='1041' name='parameterArray' return='1159' flags='1' bytes='11' compile_id='397' compiler='c1' level='3' iicount='275'/>
+<call method='1160' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1160'>
+<bc code='182' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1162' holder='982' name='clone' return='982' flags='260' bytes='0' compile_id='248' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1162' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='119'/>
+<call method='1157' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='134'/>
+<method id='1163' holder='1038' name='isPrivate' return='969' flags='1' bytes='8' compile_id='402' compiler='c1' level='3' iicount='274'/>
+<call method='1163' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1163'>
+<bc code='184' bci='4'/>
+<klass id='1165' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1166' holder='1165' name='isPrivate' return='969' arguments='975' flags='9' bytes='12' compile_id='387' compiler='c1' level='3' iicount='285'/>
+<call method='1166' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1166'>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='143'/>
+<klass id='1168' name='sun.invoke.util.VerifyAccess' flags='1'/>
+<method id='1169' holder='1168' name='isSamePackage' return='969' arguments='984 984' flags='9' bytes='60' compile_id='368' compiler='c1' level='3' iicount='487'/>
+<call method='1169' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='152'/>
+<method id='1171' holder='1038' name='isPublic' return='969' flags='1' bytes='8' iicount='2'/>
+<call method='1171' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1171'>
+<bc code='184' bci='4'/>
+<method id='1173' holder='1165' name='isPublic' return='969' arguments='975' flags='9' bytes='12' iicount='64'/>
+<call method='1173' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='159'/>
+<call method='1157' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.270'/>
+</phase>
+<parse_done stamp='0.270'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.270'>
+<phase_done name='optimize_blocks' stamp='0.270'/>
+</phase>
+<phase name='gvn' stamp='0.270'>
+<phase_done name='gvn' stamp='0.271'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.271'>
+<phase_done name='rangeCheckElimination' stamp='0.271'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.271'>
+<phase_done name='optimize_null_checks' stamp='0.271'/>
+</phase>
+<phase_done name='buildIR' stamp='0.271'/>
+</phase>
+<phase name='emit_lir' stamp='0.271'>
+<phase name='lirGeneration' stamp='0.271'>
+<phase_done name='lirGeneration' stamp='0.271'/>
+</phase>
+<phase name='linearScan' stamp='0.271'>
+<phase_done name='linearScan' stamp='0.272'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.272'/>
+</phase>
+<phase name='codeemit' stamp='0.272'>
+<phase_done name='codeemit' stamp='0.272'/>
+</phase>
+<phase name='codeinstall' stamp='0.272'>
+<dependency type='unique_concrete_method' ctxk='986' x='1135'/>
+<phase_done name='codeinstall' stamp='0.272'/>
+</phase>
+<code_cache total_blobs='816' nmethods='411' adapters='242' free_code_cache='247911936'/>
+<task_done success='1' nmsize='12552' count='289' backedge_count='464' inlined_bytes='448' stamp='0.272'/>
+</task>
+<task compile_id='415' method='jdk.internal.org.objectweb.asm.Frame set (II)V' bytes='65' count='319' iicount='319' level='3' stamp='0.272'>
+<phase name='setup' stamp='0.272'>
+<phase_done name='setup' stamp='0.272'/>
+</phase>
+<phase name='buildIR' stamp='0.272'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1094' holder='1093' name='set' return='977' arguments='975 975' flags='2' bytes='65' iicount='319'/>
+<parse method='1094'  stamp='0.272'>
+<phase name='parse_hir' stamp='0.272'>
+<bc code='184' bci='32'/>
+<klass id='1096' name='java.lang.Math' flags='17'/>
+<method id='1097' holder='1096' name='max' return='975' arguments='975 975' flags='9' bytes='11' iicount='230'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.272'/>
+</parse>
+<bc code='184' bci='48'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1099' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.272'/>
+</phase>
+<parse_done stamp='0.272'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.272'>
+<phase_done name='optimize_blocks' stamp='0.272'/>
+</phase>
+<phase name='gvn' stamp='0.272'>
+<phase_done name='gvn' stamp='0.272'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.272'>
+<phase_done name='rangeCheckElimination' stamp='0.272'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.272'>
+<phase_done name='optimize_null_checks' stamp='0.272'/>
+</phase>
+<phase_done name='buildIR' stamp='0.272'/>
+</phase>
+<phase name='emit_lir' stamp='0.272'>
+<phase name='lirGeneration' stamp='0.272'>
+<phase_done name='lirGeneration' stamp='0.272'/>
+</phase>
+<phase name='linearScan' stamp='0.272'>
+<phase_done name='linearScan' stamp='0.273'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.273'/>
+</phase>
+<phase name='codeemit' stamp='0.273'>
+<phase_done name='codeemit' stamp='0.273'/>
+</phase>
+<phase name='codeinstall' stamp='0.273'>
+<phase_done name='codeinstall' stamp='0.273'/>
+</phase>
+<code_cache total_blobs='819' nmethods='414' adapters='242' free_code_cache='247906688'/>
+<task_done success='1' nmsize='1384' count='327' inlined_bytes='11' stamp='0.273'/>
+</task>
+<task compile_id='421' method='java.lang.invoke.MemberName flagsMods (IIB)I' bytes='72' count='256' iicount='256' level='3' stamp='0.273'>
+<phase name='setup' stamp='0.273'>
+<phase_done name='setup' stamp='0.273'/>
+</phase>
+<phase name='buildIR' stamp='0.273'>
+<type id='975' name='int'/>
+<type id='973' name='byte'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='flagsMods' return='975' arguments='975 975 973' flags='10' bytes='72' iicount='256'/>
+<parse method='1093'  stamp='0.273'>
+<phase name='parse_hir' stamp='0.273'>
+<phase_done name='parse_hir' stamp='0.273'/>
+</phase>
+<parse_done stamp='0.273'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.273'>
+<phase_done name='optimize_blocks' stamp='0.273'/>
+</phase>
+<phase name='gvn' stamp='0.273'>
+<phase_done name='gvn' stamp='0.273'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.273'>
+<phase_done name='rangeCheckElimination' stamp='0.273'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.273'>
+<phase_done name='optimize_null_checks' stamp='0.273'/>
+</phase>
+<phase_done name='buildIR' stamp='0.273'/>
+</phase>
+<phase name='emit_lir' stamp='0.273'>
+<phase name='lirGeneration' stamp='0.273'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='825' nmethods='420' adapters='242' free_code_cache='247901440'/>
+<task_done success='1' nmsize='368' count='257' stamp='0.274'/>
+</task>
+<task compile_id='424' method='java.lang.invoke.MemberName$Factory resolve (BLjava/lang/invoke/MemberName;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='143' count='256' iicount='256' level='3' stamp='0.274'>
+<phase name='setup' stamp='0.274'>
+<phase_done name='setup' stamp='0.274'/>
+</phase>
+<phase name='buildIR' stamp='0.274'>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<type id='973' name='byte'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.MemberName$Factory' flags='8'/>
+<method id='1094' holder='1093' name='resolve' return='1038' arguments='973 1038 984' flags='2' bytes='143' iicount='256'/>
+<parse method='1094'  stamp='0.274'>
+<phase name='parse_hir' stamp='0.274'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='1038' name='clone' return='1038' flags='4' bytes='14' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='clone' return='982' flags='260' bytes='0' compile_id='248' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<klass id='1100' name='java.lang.InternalError' flags='1'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<klass id='1099' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1101' holder='1099' name='newInternalError' return='1100' arguments='992' flags='8' bytes='9' iicount='1'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='989' name='java.lang.Throwable' flags='1'/>
+<method id='1103' holder='1100' name='&lt;init&gt;' return='977' arguments='989' flags='1' bytes='6' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.274'/>
+</parse>
+<parse_done stamp='0.274'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1105' holder='1039' name='resolve' return='1038' arguments='1038 984' flags='264' bytes='0' compile_id='426' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1105' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='41'/>
+<method id='1106' holder='1038' name='getDeclaringClass' return='984' flags='1' bytes='5' compile_id='218' compiler='c1' level='1' iicount='141'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.274'/>
+</parse>
+<bc code='182' bci='44'/>
+<method id='1108' holder='1038' name='checkForTypeAlias' return='977' arguments='984' flags='0' bytes='168' iicount='254'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='115'/>
+<type id='969' name='boolean'/>
+<method id='1110' holder='1038' name='initResolved' return='977' arguments='969' flags='0' bytes='53' compile_id='312' compiler='c1' level='3' iicount='513'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.274'/>
+</phase>
+<parse_done stamp='0.274'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.274'>
+<phase_done name='optimize_blocks' stamp='0.274'/>
+</phase>
+<phase name='gvn' stamp='0.274'>
+<phase_done name='gvn' stamp='0.274'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.274'>
+<phase_done name='rangeCheckElimination' stamp='0.274'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.274'>
+<phase_done name='optimize_null_checks' stamp='0.274'/>
+</phase>
+<phase_done name='buildIR' stamp='0.274'/>
+</phase>
+<phase name='emit_lir' stamp='0.274'>
+<phase name='lirGeneration' stamp='0.274'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='830' nmethods='425' adapters='242' free_code_cache='247889408'/>
+<task_done success='1' nmsize='2120' count='259' inlined_bytes='28' stamp='0.274'/>
+</task>
+<task compile_id='432' method='jdk.internal.org.objectweb.asm.ClassWriter newNameTypeItem (Ljava/lang/String;Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='71' count='256' iicount='256' level='3' stamp='0.276'>
+<phase name='setup' stamp='0.276'>
+<phase_done name='setup' stamp='0.276'/>
+</phase>
+<phase name='buildIR' stamp='0.276'>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='newNameTypeItem' return='1094' arguments='983 983' flags='0' bytes='71' iicount='256'/>
+<parse method='1095'  stamp='0.276'>
+<phase name='parse_hir' stamp='0.276'>
+<bc code='182' bci='9'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1094' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' compile_id='225' compiler='c1' level='3' iicount='2889'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='17'/>
+<method id='1099' holder='1093' name='get' return='1094' arguments='1094' flags='2' bytes='49' compile_id='226' compiler='c1' level='3' iicount='2889'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='30'/>
+<method id='1101' holder='1093' name='newUTF8' return='975' arguments='983' flags='1' bytes='70' compile_id='279' compiler='c1' level='3' iicount='1172'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='35'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='38'/>
+<method id='1104' holder='1093' name='put122' return='977' arguments='975 975 975' flags='2' bytes='15' compile_id='362' compiler='c1' level='3' iicount='512'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='6'/>
+<klass id='1103' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1106' holder='1103' name='put12' return='1103' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='1216'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1103'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1103'/>
+<bc code='182' bci='10'/>
+<method id='1108' holder='1103' name='putShort' return='1103' arguments='975' flags='1' bytes='52' compile_id='238' compiler='c1' level='3' iicount='1572'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1103'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1103'/>
+<parse_done stamp='0.276'/>
+</parse>
+<bc code='183' bci='60'/>
+<method id='1110' holder='1094' name='&lt;init&gt;' return='977' arguments='975 1094' flags='0' bytes='66' compile_id='253' compiler='c1' level='3' iicount='1672'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='66'/>
+<method id='1112' holder='1093' name='put' return='977' arguments='1094' flags='2' bytes='152' compile_id='254' compiler='c1' level='3' iicount='1672'/>
+<call method='1112' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.276'/>
+</phase>
+<parse_done stamp='0.276'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.276'>
+<phase_done name='optimize_blocks' stamp='0.276'/>
+</phase>
+<phase name='gvn' stamp='0.276'>
+<phase_done name='gvn' stamp='0.276'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.276'>
+<phase_done name='rangeCheckElimination' stamp='0.276'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.276'>
+<phase_done name='optimize_null_checks' stamp='0.276'/>
+</phase>
+<phase_done name='buildIR' stamp='0.276'/>
+</phase>
+<phase name='emit_lir' stamp='0.276'>
+<phase name='lirGeneration' stamp='0.276'>
+<phase_done name='lirGeneration' stamp='0.276'/>
+</phase>
+<phase name='linearScan' stamp='0.276'>
+<phase_done name='linearScan' stamp='0.276'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.276'/>
+</phase>
+<phase name='codeemit' stamp='0.276'>
+<phase_done name='codeemit' stamp='0.276'/>
+</phase>
+<phase name='codeinstall' stamp='0.276'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1103'/>
+<phase_done name='codeinstall' stamp='0.276'/>
+</phase>
+<code_cache total_blobs='837' nmethods='432' adapters='242' free_code_cache='247881728'/>
+<task_done success='1' nmsize='1336' count='256' inlined_bytes='15' stamp='0.276'/>
+</task>
+<task compile_id='440' method='java.lang.StringLatin1 inflate ([BI[CII)V' bytes='34' count='103' backedge_count='6190' iicount='103' level='3' stamp='0.278'>
+<phase name='setup' stamp='0.278'>
+<phase_done name='setup' stamp='0.278'/>
+</phase>
+<phase name='buildIR' stamp='0.278'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='inflate' return='977' arguments='1085 975 1082 975 975' flags='9' bytes='34' iicount='103'/>
+<parse method='1094'  stamp='0.278'>
+<phase name='parse_hir' stamp='0.278'>
+<phase_done name='parse_hir' stamp='0.278'/>
+</phase>
+<parse_done stamp='0.278'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.278'>
+<phase_done name='optimize_blocks' stamp='0.278'/>
+</phase>
+<phase name='gvn' stamp='0.278'>
+<phase_done name='gvn' stamp='0.278'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.278'>
+<phase_done name='rangeCheckElimination' stamp='0.278'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.278'>
+<phase_done name='optimize_null_checks' stamp='0.278'/>
+</phase>
+<phase_done name='buildIR' stamp='0.278'/>
+</phase>
+<phase name='emit_lir' stamp='0.278'>
+<phase name='lirGeneration' stamp='0.278'>
+<phase_done name='lirGeneration' stamp='0.278'/>
+</phase>
+<phase name='linearScan' stamp='0.278'>
+<phase_done name='linearScan' stamp='0.278'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.278'/>
+</phase>
+<phase name='codeemit' stamp='0.278'>
+<phase_done name='codeemit' stamp='0.278'/>
+</phase>
+<phase name='codeinstall' stamp='0.278'>
+<phase_done name='codeinstall' stamp='0.278'/>
+</phase>
+<code_cache total_blobs='846' nmethods='438' adapters='243' free_code_cache='247858560'/>
+<task_done success='1' nmsize='592' count='103' backedge_count='6190' stamp='0.278'/>
+</task>
+<task compile_id='447' method='java.lang.Integer stringSize (I)I' bytes='47' count='271' backedge_count='16' iicount='271' level='3' stamp='0.281'>
+<phase name='setup' stamp='0.281'>
+<phase_done name='setup' stamp='0.281'/>
+</phase>
+<phase name='buildIR' stamp='0.281'>
+<type id='975' name='int'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1093' holder='1076' name='stringSize' return='975' arguments='975' flags='8' bytes='47' iicount='271'/>
+<parse method='1093'  stamp='0.281'>
+<phase name='parse_hir' stamp='0.281'>
+<phase_done name='parse_hir' stamp='0.281'/>
+</phase>
+<parse_done stamp='0.281'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.281'>
+<phase_done name='optimize_blocks' stamp='0.281'/>
+</phase>
+<phase name='gvn' stamp='0.281'>
+<phase_done name='gvn' stamp='0.281'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.281'>
+<phase_done name='rangeCheckElimination' stamp='0.281'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.281'>
+<phase_done name='optimize_null_checks' stamp='0.281'/>
+</phase>
+<phase_done name='buildIR' stamp='0.281'/>
+</phase>
+<phase name='emit_lir' stamp='0.281'>
+<phase name='lirGeneration' stamp='0.281'>
+<phase_done name='lirGeneration' stamp='0.281'/>
+</phase>
+<phase name='linearScan' stamp='0.281'>
+<phase_done name='linearScan' stamp='0.281'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.281'/>
+</phase>
+<phase name='codeemit' stamp='0.281'>
+<phase_done name='codeemit' stamp='0.281'/>
+</phase>
+<phase name='codeinstall' stamp='0.281'>
+<phase_done name='codeinstall' stamp='0.281'/>
+</phase>
+<code_cache total_blobs='855' nmethods='446' adapters='244' free_code_cache='247857408'/>
+<task_done success='1' nmsize='656' count='281' backedge_count='16' stamp='0.281'/>
+</task>
+<task compile_id='450' method='java.lang.AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder;' bytes='55' count='279' iicount='279' level='3' stamp='0.282'>
+<phase name='setup' stamp='0.282'>
+<phase_done name='setup' stamp='0.282'/>
+</phase>
+<phase name='buildIR' stamp='0.282'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<type id='975' name='int'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='279'/>
+<parse method='1093'  stamp='0.282'>
+<phase name='parse_hir' stamp='0.282'>
+<bc code='184' bci='7'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1095' holder='1076' name='stringSize' return='975' arguments='975' flags='8' bytes='47' compile_id='447' compiler='c1' level='3' iicount='281'/>
+<call method='1095' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='14'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='131' compiler='c1' level='3' iicount='4230'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='3805'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='184' bci='30'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1102' holder='1076' name='getChars' return='975' arguments='975 975 1085' flags='8' bytes='131' iicount='281'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='44'/>
+<klass id='1104' name='java.lang.StringUTF16' flags='16'/>
+<method id='1105' holder='1104' name='getChars' return='975' arguments='975 975 975 1085' flags='9' bytes='37' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.282'/>
+</phase>
+<parse_done stamp='0.282'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.282'>
+<phase_done name='optimize_blocks' stamp='0.282'/>
+</phase>
+<phase name='gvn' stamp='0.282'>
+<phase_done name='gvn' stamp='0.282'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.282'>
+<phase_done name='rangeCheckElimination' stamp='0.282'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.282'>
+<phase_done name='optimize_null_checks' stamp='0.282'/>
+</phase>
+<phase_done name='buildIR' stamp='0.282'/>
+</phase>
+<phase name='emit_lir' stamp='0.282'>
+<phase name='lirGeneration' stamp='0.282'>
+<phase_done name='lirGeneration' stamp='0.282'/>
+</phase>
+<phase name='linearScan' stamp='0.282'>
+<phase_done name='linearScan' stamp='0.282'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.282'/>
+</phase>
+<phase name='codeemit' stamp='0.282'>
+<phase_done name='codeemit' stamp='0.282'/>
+</phase>
+<phase name='codeinstall' stamp='0.282'>
+<phase_done name='codeinstall' stamp='0.282'/>
+</phase>
+<code_cache total_blobs='861' nmethods='451' adapters='245' free_code_cache='247850112'/>
+<task_done success='1' nmsize='1016' count='280' inlined_bytes='19' stamp='0.282'/>
+</task>
+<task compile_id='459' method='java.lang.invoke.LambdaForm$BasicType basicTypeChar (Ljava/lang/Class;)C' bytes='8' count='258' iicount='258' level='3' stamp='0.284'>
+<phase name='setup' stamp='0.284'>
+<phase_done name='setup' stamp='0.284'/>
+</phase>
+<phase name='buildIR' stamp='0.284'>
+<type id='970' name='char'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1094' holder='1093' name='basicTypeChar' return='970' arguments='984' flags='8' bytes='8' iicount='258'/>
+<parse method='1094'  stamp='0.284'>
+<phase name='parse_hir' stamp='0.284'>
+<bc code='184' bci='1'/>
+<method id='1096' holder='1093' name='basicType' return='1093' arguments='984' flags='8' bytes='19' compile_id='246' compiler='c1' level='3' iicount='2120'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='12'/>
+<klass id='1102' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1103' holder='1102' name='forPrimitiveType' return='1102' arguments='984' flags='9' bytes='49' compile_id='318' compiler='c1' level='3' iicount='848'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<method id='1105' holder='1093' name='basicType' return='1093' arguments='1102' flags='8' bytes='10' iicount='582'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='182' bci='1'/>
+<method id='1107' holder='1102' name='basicTypeChar' return='970' flags='1' bytes='5' compile_id='291' compiler='c1' level='1' iicount='129'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.284'/>
+</parse>
+<bc code='184' bci='6'/>
+<method id='1109' holder='1093' name='basicType' return='1093' arguments='970' flags='8' bytes='172' compile_id='356' compiler='c1' level='3' iicount='693'/>
+<call method='1109' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.284'/>
+</parse>
+<parse_done stamp='0.284'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.284'/>
+</phase>
+<parse_done stamp='0.284'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.284'>
+<phase_done name='optimize_blocks' stamp='0.284'/>
+</phase>
+<phase name='gvn' stamp='0.284'>
+<phase_done name='gvn' stamp='0.284'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.284'>
+<phase_done name='rangeCheckElimination' stamp='0.284'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.284'>
+<phase_done name='optimize_null_checks' stamp='0.284'/>
+</phase>
+<phase_done name='buildIR' stamp='0.284'/>
+</phase>
+<phase name='emit_lir' stamp='0.284'>
+<phase name='lirGeneration' stamp='0.284'>
+<phase_done name='lirGeneration' stamp='0.284'/>
+</phase>
+<phase name='linearScan' stamp='0.284'>
+<phase_done name='linearScan' stamp='0.285'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.285'/>
+</phase>
+<phase name='codeemit' stamp='0.285'>
+<phase_done name='codeemit' stamp='0.285'/>
+</phase>
+<phase name='codeinstall' stamp='0.285'>
+<phase_done name='codeinstall' stamp='0.285'/>
+</phase>
+<code_cache total_blobs='870' nmethods='459' adapters='246' free_code_cache='247834240'/>
+<task_done success='1' nmsize='1016' count='258' inlined_bytes='34' stamp='0.285'/>
+</task>
+<task compile_id='466' method='jdk.internal.org.objectweb.asm.MethodWriter visitMethodInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V' bytes='220' count='256' iicount='256' level='3' stamp='0.285'>
+<phase name='setup' stamp='0.286'>
+<phase_done name='setup' stamp='0.286'/>
+</phase>
+<phase name='buildIR' stamp='0.286'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.MethodWriter' flags='0'/>
+<method id='1094' holder='1093' name='visitMethodInsn' return='977' arguments='975 983 983 983 969' flags='1' bytes='220' iicount='256'/>
+<parse method='1094'  stamp='0.286'>
+<phase name='parse_hir' stamp='0.286'>
+<bc code='182' bci='21'/>
+<klass id='1098' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1097' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1099' holder='1097' name='newMethodItem' return='1098' arguments='983 983 983 969' flags='0' bytes='91' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='62'/>
+<klass id='1102' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1103' holder='1102' name='execute' return='977' arguments='975 975 1097 1098' flags='0' bytes='2252' compile_id='292' compiler='c1' level='3' iicount='2424'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='75'/>
+<klass id='1105' name='jdk.internal.org.objectweb.asm.Type' flags='1'/>
+<method id='1106' holder='1105' name='getArgumentsAndReturnSizes' return='975' arguments='983' flags='9' bytes='151' compile_id='363' compiler='c1' level='3' iicount='347'/>
+<call method='1106' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='166'/>
+<call method='1106' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='190'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1108' holder='1096' name='put12' return='1096' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='1755'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='198'/>
+<method id='1110' holder='1096' name='put11' return='1096' arguments='975 975' flags='0' bytes='52' compile_id='350' compiler='c1' level='3' iicount='868'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='215'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='parse_hir' stamp='0.286'/>
+</phase>
+<parse_done stamp='0.286'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.286'>
+<phase_done name='optimize_blocks' stamp='0.286'/>
+</phase>
+<phase name='gvn' stamp='0.286'>
+<phase_done name='gvn' stamp='0.286'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.286'>
+<phase_done name='rangeCheckElimination' stamp='0.286'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.286'>
+<phase_done name='optimize_null_checks' stamp='0.286'/>
+</phase>
+<phase_done name='buildIR' stamp='0.286'/>
+</phase>
+<phase name='emit_lir' stamp='0.286'>
+<phase name='lirGeneration' stamp='0.286'>
+<phase_done name='lirGeneration' stamp='0.286'/>
+</phase>
+<phase name='linearScan' stamp='0.286'>
+<phase_done name='linearScan' stamp='0.286'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.286'/>
+</phase>
+<phase name='codeemit' stamp='0.286'>
+<phase_done name='codeemit' stamp='0.286'/>
+</phase>
+<phase name='codeinstall' stamp='0.286'>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.286'/>
+</phase>
+<code_cache total_blobs='877' nmethods='466' adapters='246' free_code_cache='247824896'/>
+<task_done success='1' nmsize='1704' count='256' stamp='0.286'/>
+</task>
+<task compile_id='471' method='java.util.concurrent.CopyOnWriteArrayList setArray ([Ljava/lang/Object;)V' bytes='6' count='131' iicount='131' level='1' stamp='0.291'>
+<phase name='setup' stamp='0.291'>
+<phase_done name='setup' stamp='0.291'/>
+</phase>
+<phase name='buildIR' stamp='0.291'>
+<type id='977' name='void'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.util.concurrent.CopyOnWriteArrayList' flags='1'/>
+<method id='1095' holder='1093' name='setArray' return='977' arguments='1094' flags='16' bytes='6' iicount='134'/>
+<parse method='1095'  stamp='0.291'>
+<phase name='parse_hir' stamp='0.291'>
+<phase_done name='parse_hir' stamp='0.291'/>
+</phase>
+<parse_done stamp='0.291'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.291'>
+<phase_done name='optimize_blocks' stamp='0.291'/>
+</phase>
+<phase name='gvn' stamp='0.291'>
+<phase_done name='gvn' stamp='0.291'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.291'>
+<phase_done name='rangeCheckElimination' stamp='0.291'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.291'>
+<phase_done name='optimize_null_checks' stamp='0.291'/>
+</phase>
+<phase_done name='buildIR' stamp='0.291'/>
+</phase>
+<phase name='emit_lir' stamp='0.291'>
+<phase name='lirGeneration' stamp='0.291'>
+<phase_done name='lirGeneration' stamp='0.292'/>
+</phase>
+<phase name='linearScan' stamp='0.292'>
+<phase_done name='linearScan' stamp='0.292'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.292'/>
+</phase>
+<phase name='codeemit' stamp='0.292'>
+<phase_done name='codeemit' stamp='0.292'/>
+</phase>
+<phase name='codeinstall' stamp='0.292'>
+<phase_done name='codeinstall' stamp='0.292'/>
+</phase>
+<code_cache total_blobs='883' nmethods='471' adapters='247' free_code_cache='247815424'/>
+<task_done success='1' nmsize='368' count='183' stamp='0.292'/>
+</task>
+<task compile_id='476' method='java.nio.DirectByteBuffer get ()B' bytes='15' count='334' iicount='334' level='3' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='973' name='byte'/>
+<klass id='1093' name='java.nio.DirectByteBuffer' flags='0'/>
+<method id='1094' holder='1093' name='get' return='973' flags='1' bytes='15' iicount='353'/>
+<parse method='1094'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<bc code='182' bci='5'/>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1098' holder='1064' name='nextGetIndex' return='975' flags='16' bytes='31' iicount='388'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.nio.BufferUnderflowException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.297'/>
+</parse>
+<bc code='183' bci='8'/>
+<type id='976' name='long'/>
+<method id='1102' holder='1093' name='ix' return='976' arguments='975' flags='2' bytes='10' iicount='388'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.297'/>
+</parse>
+<bc code='182' bci='11'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1104' holder='1051' name='getByte' return='973' arguments='976' flags='1' bytes='7' iicount='411'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1104'>
+<bc code='182' bci='3'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1106' holder='1051' name='getByte' return='973' arguments='982 976' flags='257' bytes='0' compile_id='480' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.297'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.297'/>
+</phase>
+<phase_done name='buildIR' stamp='0.297'/>
+</phase>
+<phase name='emit_lir' stamp='0.297'>
+<phase name='lirGeneration' stamp='0.297'>
+<phase_done name='lirGeneration' stamp='0.297'/>
+</phase>
+<phase name='linearScan' stamp='0.297'>
+<phase_done name='linearScan' stamp='0.297'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.297'/>
+</phase>
+<phase name='codeemit' stamp='0.297'>
+<phase_done name='codeemit' stamp='0.297'/>
+</phase>
+<phase name='codeinstall' stamp='0.297'>
+<phase_done name='codeinstall' stamp='0.297'/>
+</phase>
+<code_cache total_blobs='893' nmethods='480' adapters='248' free_code_cache='247804416'/>
+<task_done success='1' nmsize='1128' count='601' inlined_bytes='42' stamp='0.297'/>
+</task>
+<task compile_id='481' method='java.nio.Buffer limit ()I' bytes='5' count='129' iicount='129' level='1' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='limit' return='975' flags='17' bytes='5' iicount='129'/>
+<parse method='1093'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.298'/>
+</phase>
+<phase_done name='buildIR' stamp='0.298'/>
+</phase>
+<phase name='emit_lir' stamp='0.298'>
+<phase name='lirGeneration' stamp='0.298'>
+<phase_done name='lirGeneration' stamp='0.298'/>
+</phase>
+<phase name='linearScan' stamp='0.298'>
+<phase_done name='linearScan' stamp='0.298'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.298'/>
+</phase>
+<phase name='codeemit' stamp='0.298'>
+<phase_done name='codeemit' stamp='0.298'/>
+</phase>
+<phase name='codeinstall' stamp='0.298'>
+<phase_done name='codeinstall' stamp='0.298'/>
+</phase>
+<code_cache total_blobs='894' nmethods='481' adapters='248' free_code_cache='247803648'/>
+<task_done success='1' nmsize='272' count='147' stamp='0.298'/>
+</task>
+<task compile_id='486' method='java.nio.ByteBuffer position (I)Ljava/nio/ByteBuffer;' bytes='8' count='269' iicount='269' level='3' stamp='0.300'>
+<phase name='setup' stamp='0.300'>
+<phase_done name='setup' stamp='0.300'/>
+</phase>
+<phase name='buildIR' stamp='0.300'>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='position' return='1093' arguments='975' flags='1' bytes='8' iicount='271'/>
+<parse method='1094'  stamp='0.300'>
+<phase name='parse_hir' stamp='0.300'>
+<bc code='183' bci='2'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='322'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.300'/>
+</phase>
+<parse_done stamp='0.300'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.300'>
+<phase_done name='optimize_blocks' stamp='0.300'/>
+</phase>
+<phase name='gvn' stamp='0.300'>
+<phase_done name='gvn' stamp='0.300'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.300'>
+<phase_done name='rangeCheckElimination' stamp='0.300'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.300'>
+<phase_done name='optimize_null_checks' stamp='0.300'/>
+</phase>
+<phase_done name='buildIR' stamp='0.300'/>
+</phase>
+<phase name='emit_lir' stamp='0.300'>
+<phase name='lirGeneration' stamp='0.300'>
+<phase_done name='lirGeneration' stamp='0.300'/>
+</phase>
+<phase name='linearScan' stamp='0.300'>
+<phase_done name='linearScan' stamp='0.300'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.300'/>
+</phase>
+<phase name='codeemit' stamp='0.300'>
+<phase_done name='codeemit' stamp='0.300'/>
+</phase>
+<phase name='codeinstall' stamp='0.300'>
+<phase_done name='codeinstall' stamp='0.300'/>
+</phase>
+<code_cache total_blobs='901' nmethods='488' adapters='248' free_code_cache='247792000'/>
+<task_done success='1' nmsize='392' count='301' stamp='0.300'/>
+</task>
+<task compile_id='495' method='java.lang.invoke.MemberName getReferenceKind ()B' bytes='12' count='1278' iicount='1278' level='1' stamp='0.302'>
+<phase name='setup' stamp='0.302'>
+<phase_done name='setup' stamp='0.302'/>
+</phase>
+<phase name='buildIR' stamp='0.302'>
+<type id='973' name='byte'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getReferenceKind' return='973' flags='1' bytes='12' compile_id='361' compiler='c1' level='3' iicount='1278'/>
+<parse method='1093'  stamp='0.302'>
+<phase name='parse_hir' stamp='0.302'>
+<phase_done name='parse_hir' stamp='0.302'/>
+</phase>
+<parse_done stamp='0.302'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.302'>
+<phase_done name='optimize_blocks' stamp='0.302'/>
+</phase>
+<phase name='gvn' stamp='0.302'>
+<phase_done name='gvn' stamp='0.303'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.303'>
+<phase_done name='rangeCheckElimination' stamp='0.303'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.303'>
+<phase_done name='optimize_null_checks' stamp='0.303'/>
+</phase>
+<phase_done name='buildIR' stamp='0.303'/>
+</phase>
+<phase name='emit_lir' stamp='0.303'>
+<phase name='lirGeneration' stamp='0.303'>
+<phase_done name='lirGeneration' stamp='0.303'/>
+</phase>
+<phase name='linearScan' stamp='0.303'>
+<phase_done name='linearScan' stamp='0.303'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.303'/>
+</phase>
+<phase name='codeemit' stamp='0.303'>
+<phase_done name='codeemit' stamp='0.303'/>
+</phase>
+<phase name='codeinstall' stamp='0.303'>
+<phase_done name='codeinstall' stamp='0.303'/>
+</phase>
+<code_cache total_blobs='911' nmethods='495' adapters='249' free_code_cache='247785216'/>
+<task_done success='1' nmsize='272' count='1283' stamp='0.303'/>
+</task>
+<task compile_id='499' method='java.util.Objects checkIndex (II)I' bytes='7' count='259' iicount='259' level='3' stamp='0.316'>
+<phase name='setup' stamp='0.316'>
+<phase_done name='setup' stamp='0.316'/>
+</phase>
+<phase name='buildIR' stamp='0.316'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Objects' flags='17'/>
+<method id='1094' holder='1093' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' iicount='259'/>
+<parse method='1094'  stamp='0.316'>
+<phase name='parse_hir' stamp='0.316'>
+<bc code='184' bci='3'/>
+<klass id='1097' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1096' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1098' holder='1096' name='checkIndex' return='975' arguments='975 975 1097' flags='9' bytes='18' iicount='259'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='12'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1100' holder='1096' name='outOfBoundsCheckIndex' return='993' arguments='1097 975 975' flags='10' bytes='25' iicount='1'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='184' bci='10'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1103' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='65'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='17'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1105' name='[Ljava.lang.Integer;' flags='1041'/>
+<method id='1106' holder='1096' name='outOfBounds' return='993' arguments='1097 983 1105' flags='138' bytes='49' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.316'/>
+</parse>
+<parse_done stamp='0.316'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.316'/>
+</phase>
+<parse_done stamp='0.316'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.316'>
+<phase_done name='optimize_blocks' stamp='0.316'/>
+</phase>
+<phase name='gvn' stamp='0.316'>
+<phase_done name='gvn' stamp='0.316'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.316'>
+<phase_done name='rangeCheckElimination' stamp='0.316'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.316'>
+<phase_done name='optimize_null_checks' stamp='0.316'/>
+</phase>
+<phase_done name='buildIR' stamp='0.316'/>
+</phase>
+<phase name='emit_lir' stamp='0.316'>
+<phase name='lirGeneration' stamp='0.316'>
+<phase_done name='lirGeneration' stamp='0.316'/>
+</phase>
+<phase name='linearScan' stamp='0.316'>
+<phase_done name='linearScan' stamp='0.317'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.317'/>
+</phase>
+<phase name='codeemit' stamp='0.317'>
+<phase_done name='codeemit' stamp='0.317'/>
+</phase>
+<phase name='codeinstall' stamp='0.317'>
+<phase_done name='codeinstall' stamp='0.317'/>
+</phase>
+<code_cache total_blobs='920' nmethods='500' adapters='253' free_code_cache='247769984'/>
+<task_done success='1' nmsize='1736' count='301' inlined_bytes='43' stamp='0.317'/>
+</task>
+<task compile_id='505' method='java.util.Arrays fill ([BIIB)V' bytes='28' count='265' backedge_count='3348' iicount='265' level='3' stamp='0.319'>
+<phase name='setup' stamp='0.319'>
+<phase_done name='setup' stamp='0.319'/>
+</phase>
+<phase name='buildIR' stamp='0.319'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<type id='973' name='byte'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1094' holder='1093' name='fill' return='977' arguments='1085 975 975 973' flags='9' bytes='28' iicount='280'/>
+<parse method='1094'  stamp='0.319'>
+<phase name='parse_hir' stamp='0.319'>
+<bc code='184' bci='4'/>
+<method id='1096' holder='1093' name='rangeCheck' return='977' arguments='975 975 975' flags='8' bytes='74' iicount='460'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.319'/>
+</phase>
+<parse_done stamp='0.319'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.319'>
+<phase_done name='optimize_blocks' stamp='0.319'/>
+</phase>
+<phase name='gvn' stamp='0.319'>
+<phase_done name='gvn' stamp='0.319'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.319'>
+<phase_done name='rangeCheckElimination' stamp='0.319'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.319'>
+<phase_done name='optimize_null_checks' stamp='0.319'/>
+</phase>
+<phase_done name='buildIR' stamp='0.319'/>
+</phase>
+<phase name='emit_lir' stamp='0.319'>
+<phase name='lirGeneration' stamp='0.319'>
+<phase_done name='lirGeneration' stamp='0.319'/>
+</phase>
+<phase name='linearScan' stamp='0.319'>
+<phase_done name='linearScan' stamp='0.319'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.319'/>
+</phase>
+<phase name='codeemit' stamp='0.319'>
+<phase_done name='codeemit' stamp='0.319'/>
+</phase>
+<phase name='codeinstall' stamp='0.319'>
+<phase_done name='codeinstall' stamp='0.319'/>
+</phase>
+<code_cache total_blobs='925' nmethods='504' adapters='254' free_code_cache='247761024'/>
+<task_done success='1' nmsize='616' count='396' backedge_count='14351' stamp='0.319'/>
+</task>
+<task compile_id='510' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkEntityLimit (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='50' count='295' iicount='296' level='3' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1095' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1096' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1095 975 975' flags='4' bytes='50' iicount='304'/>
+<parse method='1096'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<bc code='182' bci='27'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1103' holder='1093' name='checkLimit' return='977' arguments='1100 1095 975 975' flags='4' bytes='253' iicount='47'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='46'/>
+<method id='1107' holder='1093' name='checkNodeCount' return='977' arguments='1095' flags='4' bytes='22' iicount='45'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1107'>
+<bc code='182' bci='18'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.323'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='933' nmethods='510' adapters='254' free_code_cache='247749760'/>
+<task_done success='1' nmsize='1144' count='492' inlined_bytes='22' stamp='0.323'/>
+</task>
+<task compile_id='516' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='10' count='260' iicount='260' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1096' holder='1093' name='isOverLimit' return='969' arguments='1094 1095' flags='1' bytes='10' iicount='260'/>
+<parse method='1096'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<bc code='182' bci='2'/>
+<type id='975' name='int'/>
+<klass id='1098' name='java.lang.Enum' flags='1025'/>
+<method id='1099' holder='1098' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1101' holder='1093' name='isOverLimit' return='969' arguments='975 1095' flags='1' bytes='111' iicount='265'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='941' nmethods='516' adapters='254' free_code_cache='247741312'/>
+<task_done success='1' nmsize='680' count='299' inlined_bytes='5' stamp='0.324'/>
+</task>
+<task compile_id='520' method='com.sun.org.apache.xerces.internal.util.XMLChar isNameStart (I)Z' bytes='22' count='256' iicount='256' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' iicount='258'/>
+<parse method='1094'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='943' nmethods='518' adapters='254' free_code_cache='247739392'/>
+<task_done success='1' nmsize='496' count='278' stamp='0.324'/>
+</task>
+<task compile_id='522' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='261' iicount='261' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='skipChar' return='969' arguments='975 1094' flags='4' bytes='285' iicount='264'/>
+<parse method='1095'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<bc code='182' bci='21'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='2'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='128'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1100' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='510' compiler='c1' level='3' iicount='866'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='172'/>
+<method id='1102' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='2'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='191'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='278'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.325'/>
+</phase>
+<parse_done stamp='0.325'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.325'>
+<phase_done name='optimize_blocks' stamp='0.325'/>
+</phase>
+<phase name='gvn' stamp='0.325'>
+<phase_done name='gvn' stamp='0.325'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.325'>
+<phase_done name='rangeCheckElimination' stamp='0.325'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.325'>
+<phase_done name='optimize_null_checks' stamp='0.325'/>
+</phase>
+<phase_done name='buildIR' stamp='0.325'/>
+</phase>
+<phase name='emit_lir' stamp='0.325'>
+<phase name='lirGeneration' stamp='0.325'>
+<phase_done name='lirGeneration' stamp='0.325'/>
+</phase>
+<phase name='linearScan' stamp='0.325'>
+<phase_done name='linearScan' stamp='0.325'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.325'/>
+</phase>
+<phase name='codeemit' stamp='0.325'>
+<phase_done name='codeemit' stamp='0.325'/>
+</phase>
+<phase name='codeinstall' stamp='0.325'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.325'/>
+</phase>
+<code_cache total_blobs='947' nmethods='522' adapters='254' free_code_cache='247726080'/>
+<task_done success='1' nmsize='1832' count='264' stamp='0.325'/>
+</task>
+<task compile_id='523' method='java.util.zip.ZStreamRef address ()J' bytes='5' count='128' iicount='128' level='1' stamp='0.325'>
+<phase name='setup' stamp='0.325'>
+<phase_done name='setup' stamp='0.325'/>
+</phase>
+<phase name='buildIR' stamp='0.325'>
+<type id='976' name='long'/>
+<klass id='1093' name='java.util.zip.ZStreamRef' flags='0'/>
+<method id='1094' holder='1093' name='address' return='976' flags='0' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.325'>
+<phase name='parse_hir' stamp='0.325'>
+<phase_done name='parse_hir' stamp='0.325'/>
+</phase>
+<parse_done stamp='0.325'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.325'>
+<phase_done name='optimize_blocks' stamp='0.325'/>
+</phase>
+<phase name='gvn' stamp='0.325'>
+<phase_done name='gvn' stamp='0.325'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.325'>
+<phase_done name='rangeCheckElimination' stamp='0.325'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.325'>
+<phase_done name='optimize_null_checks' stamp='0.325'/>
+</phase>
+<phase_done name='buildIR' stamp='0.325'/>
+</phase>
+<phase name='emit_lir' stamp='0.325'>
+<phase name='lirGeneration' stamp='0.325'>
+<phase_done name='lirGeneration' stamp='0.325'/>
+</phase>
+<phase name='linearScan' stamp='0.325'>
+<phase_done name='linearScan' stamp='0.325'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.325'/>
+</phase>
+<phase name='codeemit' stamp='0.325'>
+<phase_done name='codeemit' stamp='0.325'/>
+</phase>
+<phase name='codeinstall' stamp='0.325'>
+<phase_done name='codeinstall' stamp='0.325'/>
+</phase>
+<code_cache total_blobs='948' nmethods='523' adapters='254' free_code_cache='247725312'/>
+<task_done success='1' nmsize='272' count='131' stamp='0.325'/>
+</task>
+<task compile_id='526' method='java.util.ArrayList get (I)Ljava/lang/Object;' bytes='15' count='256' iicount='256' level='3' stamp='0.327'>
+<phase name='setup' stamp='0.327'>
+<phase_done name='setup' stamp='0.327'/>
+</phase>
+<phase name='buildIR' stamp='0.327'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='975' flags='1' bytes='15' iicount='256'/>
+<parse method='1094'  stamp='0.327'>
+<phase name='parse_hir' stamp='0.327'>
+<bc code='184' bci='5'/>
+<klass id='1096' name='java.util.Objects' flags='17'/>
+<method id='1097' holder='1096' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='473'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1097'>
+<bc code='184' bci='3'/>
+<klass id='1100' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1099' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1101' holder='1099' name='checkIndex' return='975' arguments='975 975 1100' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='474'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='12'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1103' holder='1099' name='outOfBoundsCheckIndex' return='993' arguments='1100 975 975' flags='10' bytes='25' iicount='1'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='184' bci='10'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1106' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='67'/>
+<call method='1106' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='17'/>
+<call method='1106' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1108' name='[Ljava.lang.Integer;' flags='1041'/>
+<method id='1109' holder='1099' name='outOfBounds' return='993' arguments='1100 983 1108' flags='138' bytes='49' iicount='1'/>
+<call method='1109' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.327'/>
+</parse>
+<parse_done stamp='0.327'/>
+</parse>
+<parse_done stamp='0.327'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1111' holder='1093' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='287'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1111'>
+<parse_done stamp='0.327'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.327'/>
+</phase>
+<parse_done stamp='0.327'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.327'>
+<phase_done name='optimize_blocks' stamp='0.327'/>
+</phase>
+<phase name='gvn' stamp='0.327'>
+<phase_done name='gvn' stamp='0.327'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.327'>
+<phase_done name='rangeCheckElimination' stamp='0.327'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.327'>
+<phase_done name='optimize_null_checks' stamp='0.327'/>
+</phase>
+<phase_done name='buildIR' stamp='0.327'/>
+</phase>
+<phase name='emit_lir' stamp='0.327'>
+<phase name='lirGeneration' stamp='0.327'>
+<phase_done name='lirGeneration' stamp='0.327'/>
+</phase>
+<phase name='linearScan' stamp='0.327'>
+<phase_done name='linearScan' stamp='0.327'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.327'/>
+</phase>
+<phase name='codeemit' stamp='0.327'>
+<phase_done name='codeemit' stamp='0.328'/>
+</phase>
+<phase name='codeinstall' stamp='0.328'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.328'/>
+</phase>
+<code_cache total_blobs='957' nmethods='526' adapters='260' free_code_cache='247714944'/>
+<task_done success='1' nmsize='2024' count='289' inlined_bytes='51' stamp='0.328'/>
+</task>
+<task compile_id='529' method='java.lang.StringUTF16 compress ([CII)[B' bytes='20' count='257' iicount='257' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringUTF16' flags='16'/>
+<method id='1094' holder='1093' name='compress' return='1085' arguments='1082 975 975' flags='9' bytes='20' iicount='257'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='184' bci='9'/>
+<method id='1096' holder='1093' name='compress' return='975' arguments='1082 975 1085 975 975' flags='9' bytes='50' compile_id='474' compiler='c1' level='3' iicount='257'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.328'/>
+</phase>
+<parse_done stamp='0.328'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.328'>
+<phase_done name='optimize_blocks' stamp='0.328'/>
+</phase>
+<phase name='gvn' stamp='0.328'>
+<phase_done name='gvn' stamp='0.328'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.328'>
+<phase_done name='rangeCheckElimination' stamp='0.328'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.328'>
+<phase_done name='optimize_null_checks' stamp='0.328'/>
+</phase>
+<phase_done name='buildIR' stamp='0.328'/>
+</phase>
+<phase name='emit_lir' stamp='0.328'>
+<phase name='lirGeneration' stamp='0.328'>
+<phase_done name='lirGeneration' stamp='0.328'/>
+</phase>
+<phase name='linearScan' stamp='0.328'>
+<phase_done name='linearScan' stamp='0.328'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.328'/>
+</phase>
+<phase name='codeemit' stamp='0.328'>
+<phase_done name='codeemit' stamp='0.328'/>
+</phase>
+<phase name='codeinstall' stamp='0.328'>
+<phase_done name='codeinstall' stamp='0.328'/>
+</phase>
+<code_cache total_blobs='962' nmethods='529' adapters='260' free_code_cache='247711744'/>
+<task_done success='1' nmsize='616' count='261' stamp='0.328'/>
+</task>
+<task compile_id='533' method='com.sun.org.apache.xerces.internal.util.SymbolTable hash ([CII)I' bytes='53' count='258' backedge_count='2138' iicount='258' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' iicount='258'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='183' bci='49'/>
+<method id='1096' holder='1093' name='hash0' return='975' arguments='1082 975 975' flags='2' bytes='50' iicount='1'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.328'/>
+</phase>
+<parse_done stamp='0.328'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.328'>
+<phase_done name='optimize_blocks' stamp='0.328'/>
+</phase>
+<phase name='gvn' stamp='0.328'>
+<phase_done name='gvn' stamp='0.328'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.328'>
+<phase_done name='rangeCheckElimination' stamp='0.328'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.328'>
+<phase_done name='optimize_null_checks' stamp='0.328'/>
+</phase>
+<phase_done name='buildIR' stamp='0.328'/>
+</phase>
+<phase name='emit_lir' stamp='0.328'>
+<phase name='lirGeneration' stamp='0.328'>
+<phase_done name='lirGeneration' stamp='0.328'/>
+</phase>
+<phase name='linearScan' stamp='0.328'>
+<phase_done name='linearScan' stamp='0.328'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.328'/>
+</phase>
+<phase name='codeemit' stamp='0.328'>
+<phase_done name='codeemit' stamp='0.329'/>
+</phase>
+<phase name='codeinstall' stamp='0.329'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.329'/>
+</phase>
+<code_cache total_blobs='965' nmethods='532' adapters='260' free_code_cache='247706240'/>
+<task_done success='1' nmsize='712' count='285' backedge_count='2336' stamp='0.329'/>
+</task>
+<task compile_id='536' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='22' count='285' iicount='285' level='3' stamp='0.329'>
+<phase name='setup' stamp='0.329'>
+<phase_done name='setup' stamp='0.329'/>
+</phase>
+<phase name='buildIR' stamp='0.329'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1094' holder='1093' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' iicount='287'/>
+<parse method='1094'  stamp='0.329'>
+<phase name='parse_hir' stamp='0.329'>
+<phase_done name='parse_hir' stamp='0.329'/>
+</phase>
+<parse_done stamp='0.329'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.329'>
+<phase_done name='optimize_blocks' stamp='0.329'/>
+</phase>
+<phase name='gvn' stamp='0.329'>
+<phase_done name='gvn' stamp='0.329'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.329'>
+<phase_done name='rangeCheckElimination' stamp='0.329'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.329'>
+<phase_done name='optimize_null_checks' stamp='0.329'/>
+</phase>
+<phase_done name='buildIR' stamp='0.329'/>
+</phase>
+<phase name='emit_lir' stamp='0.329'>
+<phase name='lirGeneration' stamp='0.329'>
+<phase_done name='lirGeneration' stamp='0.329'/>
+</phase>
+<phase name='linearScan' stamp='0.329'>
+<phase_done name='linearScan' stamp='0.329'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.329'/>
+</phase>
+<phase name='codeemit' stamp='0.329'>
+<phase_done name='codeemit' stamp='0.329'/>
+</phase>
+<phase name='codeinstall' stamp='0.329'>
+<phase_done name='codeinstall' stamp='0.329'/>
+</phase>
+<code_cache total_blobs='966' nmethods='533' adapters='260' free_code_cache='247704832'/>
+<task_done success='1' nmsize='752' count='310' stamp='0.329'/>
+</task>
+<task compile_id='538' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='253' count='314' iicount='314' level='3' stamp='0.329'>
+<phase name='setup' stamp='0.329'>
+<phase_done name='setup' stamp='0.329'/>
+</phase>
+<phase name='buildIR' stamp='0.329'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<klass id='1095' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1096' holder='1093' name='checkLimit' return='977' arguments='1094 1095 975 975' flags='4' bytes='253' iicount='316'/>
+<parse method='1096'  stamp='0.329'>
+<phase name='parse_hir' stamp='0.329'>
+<bc code='182' bci='11'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1100' holder='1098' name='addValue' return='977' arguments='1094 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='388'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='2'/>
+<klass id='1102' name='java.lang.Enum' flags='1025'/>
+<method id='1103' holder='1102' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1105' holder='1098' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' iicount='391'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='23'/>
+<type id='969' name='boolean'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1108' holder='1107' name='isOverLimit' return='969' arguments='1094 1098' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='718'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='2'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1110' holder='1107' name='isOverLimit' return='969' arguments='975 1098' flags='1' bytes='111' compile_id='517' compiler='c1' level='3' iicount='718'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='37'/>
+<method id='1112' holder='1107' name='debugPrint' return='977' arguments='1098' flags='1' bytes='18' iicount='1'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1115' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<method id='1117' holder='1098' name='debugPrint' return='977' arguments='1107' flags='1' bytes='169' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='58'/>
+<method id='1121' holder='1098' name='getValue' return='975' arguments='1094' flags='1' bytes='9' iicount='1'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='182' bci='2'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1123' holder='1098' name='getValue' return='975' arguments='975' flags='1' bytes='24' iicount='1'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='4'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.329'/>
+</parse>
+<parse_done stamp='0.329'/>
+</parse>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='184' bci='61'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1125' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='67'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='28'/>
+<method id='1131' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='262'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1133' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='561'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<method id='1135' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23010'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='72'/>
+<method id='1138' holder='1107' name='getLimit' return='975' arguments='1094' flags='1' bytes='10' iicount='4'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='75'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='28'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='86'/>
+<method id='1140' holder='1107' name='getStateLiteral' return='983' arguments='1094' flags='1' bytes='13' iicount='1'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='9'/>
+<klass id='1142' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$State' flags='16409'/>
+<method id='1144' holder='1142' name='literal' return='983' flags='0' bytes='5' iicount='1'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='111'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='182' bci='2'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='4'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='114'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='28'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='125'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='128'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='28'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='139'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='152'/>
+<method id='1148' holder='1094' name='key' return='983' flags='1' bytes='5' iicount='1'/>
+<call method='1148' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='158'/>
+<klass id='1137' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='974' name='short'/>
+<klass id='1146' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1150' holder='1146' name='reportError' return='983' arguments='983 983 1137 974' flags='1' bytes='14' iicount='1'/>
+<call method='1150' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<parse method='1150'>
+<bc code='182' bci='10'/>
+<klass id='1152' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<method id='1153' holder='1146' name='reportError' return='983' arguments='1152 983 983 1137 974' flags='1' bytes='13' iicount='1'/>
+<call method='1153' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<parse method='1153'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1155' holder='1146' name='reportError' return='983' arguments='1152 983 983 1137 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='173'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='2'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='187'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='6'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='211'/>
+<method id='1159' holder='1098' name='getTotalValue' return='975' arguments='1094' flags='1' bytes='10' iicount='1'/>
+<call method='1159' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='214'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='28'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='227'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='184' bci='230'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='28'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='243'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='182' bci='5'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='248'/>
+<call method='1150' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<parse method='1150'>
+<bc code='182' bci='10'/>
+<call method='1153' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<parse method='1153'>
+<bc code='182' bci='9'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1146'/>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.331'/>
+</phase>
+<parse_done stamp='0.331'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.331'>
+<phase_done name='optimize_blocks' stamp='0.331'/>
+</phase>
+<phase name='gvn' stamp='0.331'>
+<phase_done name='gvn' stamp='0.331'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.331'>
+<phase_done name='rangeCheckElimination' stamp='0.331'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.331'>
+<phase_done name='optimize_null_checks' stamp='0.331'/>
+</phase>
+<phase_done name='buildIR' stamp='0.331'/>
+</phase>
+<phase name='emit_lir' stamp='0.331'>
+<phase name='lirGeneration' stamp='0.331'>
+<phase_done name='lirGeneration' stamp='0.331'/>
+</phase>
+<phase name='linearScan' stamp='0.331'>
+<phase_done name='linearScan' stamp='0.332'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.332'/>
+</phase>
+<phase name='codeemit' stamp='0.332'>
+<phase_done name='codeemit' stamp='0.332'/>
+</phase>
+<phase name='codeinstall' stamp='0.332'>
+<dependency type='leaf_type' ctxk='1146'/>
+<phase_done name='codeinstall' stamp='0.333'/>
+</phase>
+<code_cache total_blobs='976' nmethods='543' adapters='260' free_code_cache='247635456'/>
+<task_done success='1' nmsize='17928' count='728' inlined_bytes='644' stamp='0.333'/>
+</task>
+<task compile_id='544' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;)I' bytes='9' count='611' iicount='611' level='3' stamp='0.333'>
+<phase name='setup' stamp='0.333'>
+<phase_done name='setup' stamp='0.333'/>
+</phase>
+<phase name='buildIR' stamp='0.333'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1095' holder='1093' name='addAttribute' return='975' arguments='1094 983 983' flags='1' bytes='9' iicount='611'/>
+<parse method='1095'  stamp='0.333'>
+<phase name='parse_hir' stamp='0.333'>
+<bc code='182' bci='5'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1099' holder='1093' name='addAttribute' return='975' arguments='1094 983 983 1098' flags='1' bytes='679' iicount='619'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.333'/>
+</phase>
+<parse_done stamp='0.333'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.333'>
+<phase_done name='optimize_blocks' stamp='0.333'/>
+</phase>
+<phase name='gvn' stamp='0.333'>
+<phase_done name='gvn' stamp='0.333'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.333'>
+<phase_done name='rangeCheckElimination' stamp='0.333'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.333'>
+<phase_done name='optimize_null_checks' stamp='0.333'/>
+</phase>
+<phase_done name='buildIR' stamp='0.333'/>
+</phase>
+<phase name='emit_lir' stamp='0.333'>
+<phase name='lirGeneration' stamp='0.333'>
+<phase_done name='lirGeneration' stamp='0.333'/>
+</phase>
+<phase name='linearScan' stamp='0.333'>
+<phase_done name='linearScan' stamp='0.333'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.333'/>
+</phase>
+<phase name='codeemit' stamp='0.333'>
+<phase_done name='codeemit' stamp='0.333'/>
+</phase>
+<phase name='codeinstall' stamp='0.333'>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<phase_done name='codeinstall' stamp='0.333'/>
+</phase>
+<code_cache total_blobs='977' nmethods='544' adapters='260' free_code_cache='247634304'/>
+<task_done success='1' nmsize='520' count='638' stamp='0.333'/>
+</task>
+<task compile_id='549' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Lcom/sun/org/apache/xerces/internal/xni/QName;)V' bytes='33' count='638' iicount='638' level='3' stamp='0.333'>
+<phase name='setup' stamp='0.333'>
+<phase_done name='setup' stamp='0.333'/>
+</phase>
+<phase name='buildIR' stamp='0.333'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1094' holder='1093' name='setValues' return='977' arguments='1093' flags='1' bytes='33' iicount='638'/>
+<parse method='1094'  stamp='0.333'>
+<phase name='parse_hir' stamp='0.333'>
+<phase_done name='parse_hir' stamp='0.333'/>
+</phase>
+<parse_done stamp='0.333'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.333'>
+<phase_done name='optimize_blocks' stamp='0.333'/>
+</phase>
+<phase name='gvn' stamp='0.333'>
+<phase_done name='gvn' stamp='0.333'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.333'>
+<phase_done name='rangeCheckElimination' stamp='0.333'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.333'>
+<phase_done name='optimize_null_checks' stamp='0.333'/>
+</phase>
+<phase_done name='buildIR' stamp='0.333'/>
+</phase>
+<phase name='emit_lir' stamp='0.333'>
+<phase name='lirGeneration' stamp='0.333'>
+<phase_done name='lirGeneration' stamp='0.333'/>
+</phase>
+<phase name='linearScan' stamp='0.333'>
+<phase_done name='linearScan' stamp='0.333'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.333'/>
+</phase>
+<phase name='codeemit' stamp='0.333'>
+<phase_done name='codeemit' stamp='0.333'/>
+</phase>
+<phase name='codeinstall' stamp='0.333'>
+<phase_done name='codeinstall' stamp='0.333'/>
+</phase>
+<code_cache total_blobs='978' nmethods='545' adapters='260' free_code_cache='247632896'/>
+<task_done success='1' nmsize='784' count='675' stamp='0.333'/>
+</task>
+<task compile_id='550' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl removeAllItems ()V' bytes='8' count='677' iicount='677' level='3' stamp='0.333'>
+<phase name='setup' stamp='0.333'>
+<phase_done name='setup' stamp='0.333'/>
+</phase>
+<phase name='buildIR' stamp='0.333'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl' flags='1'/>
+<method id='1094' holder='1093' name='removeAllItems' return='977' flags='1' bytes='8' iicount='677'/>
+<parse method='1094'  stamp='0.333'>
+<phase name='parse_hir' stamp='0.333'>
+<bc code='182' bci='4'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$AugmentationsItemsContainer' flags='1024'/>
+<method id='1098' holder='1097' name='clear' return='977' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.333'/>
+</phase>
+<parse_done stamp='0.333'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.333'>
+<phase_done name='optimize_blocks' stamp='0.333'/>
+</phase>
+<phase name='gvn' stamp='0.333'>
+<phase_done name='gvn' stamp='0.333'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.333'>
+<phase_done name='rangeCheckElimination' stamp='0.333'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.333'>
+<phase_done name='optimize_null_checks' stamp='0.333'/>
+</phase>
+<phase_done name='buildIR' stamp='0.333'/>
+</phase>
+<phase name='emit_lir' stamp='0.333'>
+<phase name='lirGeneration' stamp='0.333'>
+<phase_done name='lirGeneration' stamp='0.333'/>
+</phase>
+<phase name='linearScan' stamp='0.333'>
+<phase_done name='linearScan' stamp='0.333'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.333'/>
+</phase>
+<phase name='codeemit' stamp='0.333'>
+<phase_done name='codeemit' stamp='0.333'/>
+</phase>
+<phase name='codeinstall' stamp='0.333'>
+<phase_done name='codeinstall' stamp='0.333'/>
+</phase>
+<code_cache total_blobs='979' nmethods='546' adapters='260' free_code_cache='247631744'/>
+<task_done success='1' nmsize='552' count='695' stamp='0.333'/>
+</task>
+<task compile_id='551' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='695' iicount='695' level='3' stamp='0.333'>
+<phase name='setup' stamp='0.333'>
+<phase_done name='setup' stamp='0.333'/>
+</phase>
+<phase name='buildIR' stamp='0.333'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer' flags='0'/>
+<method id='1094' holder='1093' name='clear' return='977' flags='1' bytes='41' iicount='695'/>
+<parse method='1094'  stamp='0.333'>
+<phase name='parse_hir' stamp='0.333'>
+<phase_done name='parse_hir' stamp='0.333'/>
+</phase>
+<parse_done stamp='0.333'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.333'>
+<phase_done name='optimize_blocks' stamp='0.333'/>
+</phase>
+<phase name='gvn' stamp='0.333'>
+<phase_done name='gvn' stamp='0.333'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.333'>
+<phase_done name='rangeCheckElimination' stamp='0.333'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.333'>
+<phase_done name='optimize_null_checks' stamp='0.333'/>
+</phase>
+<phase_done name='buildIR' stamp='0.333'/>
+</phase>
+<phase name='emit_lir' stamp='0.333'>
+<phase name='lirGeneration' stamp='0.333'>
+<phase_done name='lirGeneration' stamp='0.333'/>
+</phase>
+<phase name='linearScan' stamp='0.333'>
+<phase_done name='linearScan' stamp='0.333'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.333'/>
+</phase>
+<phase name='codeemit' stamp='0.333'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='983' nmethods='548' adapters='260' free_code_cache='247613056'/>
+<task_done success='1' nmsize='1360' count='706' stamp='0.334'/>
+</task>
+<task compile_id='553' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl setSpecified (IZ)V' bytes='11' count='707' iicount='707' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='setSpecified' return='977' arguments='975 969' flags='1' bytes='11' iicount='715'/>
+<parse method='1094'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='986' nmethods='551' adapters='260' free_code_cache='247621248'/>
+<task_done success='1' nmsize='400' count='745' stamp='0.334'/>
+</task>
+<task compile_id='546' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='396' iicount='396' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='next' return='975' flags='1' bytes='10' iicount='396'/>
+<parse method='1094'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$Driver' flags='1548'/>
+<method id='1098' holder='1096' name='next' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='988' nmethods='553' adapters='260' free_code_cache='247619072'/>
+<task_done success='1' nmsize='552' count='402' stamp='0.334'/>
+</task>
+<task compile_id='558' method='java.lang.Character digit (II)I' bytes='10' count='498' iicount='498' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='975' name='int'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' iicount='498'/>
+<parse method='1093'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<bc code='184' bci='1'/>
+<klass id='1095' name='java.lang.CharacterData' flags='1024'/>
+<method id='1096' holder='1095' name='of' return='1095' arguments='975' flags='24' bytes='120' compile_id='124' compiler='c1' level='3' iicount='1476'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='6'/>
+<method id='1098' holder='1095' name='digit' return='975' arguments='975 975' flags='1024' bytes='0' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='990' nmethods='555' adapters='260' free_code_cache='247616384'/>
+<task_done success='1' nmsize='568' count='498' stamp='0.334'/>
+</task>
+<task compile_id='547' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='422' iicount='422' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.335'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver' flags='4'/>
+<method id='1094' holder='1093' name='next' return='975' flags='1' bytes='2277' iicount='422'/>
+<parse method='1094'  stamp='0.335'>
+<phase name='parse_hir' stamp='0.335'>
+<bc code='182' bci='19'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1099' holder='1097' name='peekChar' return='975' flags='1' bytes='63' compile_id='515' compiler='c1' level='3' iicount='2270'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='37'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1102' holder='1097' name='scanChar' return='975' arguments='1101' flags='4' bytes='236' compile_id='524' compiler='c1' level='3' iicount='1988'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='47'/>
+<type id='977' name='void'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1104' holder='1096' name='setScannerState' return='977' arguments='975' flags='20' bytes='6' compile_id='511' compiler='c1' level='1' iicount='157'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='69'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='79'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='91'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='183' bci='107'/>
+<method id='1108' holder='1093' name='startOfMarkup' return='977' flags='2' bytes='280' iicount='6'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1363'/>
+<klass id='1110' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1111' holder='1110' name='clear' return='977' flags='1' bytes='11' iicount='185'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='1377'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1114' holder='1098' name='scanPI' return='977' arguments='1110' flags='4' bytes='39' iicount='1'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1114'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1386'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='2172'/>
+<type id='969' name='boolean'/>
+<method id='1116' holder='1093' name='scanRootElementHook' return='969' flags='4' bytes='2' iicount='1'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='2194'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='1342'/>
+<method id='1117' holder='1096' name='scanComment' return='977' flags='4' bytes='31' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='4'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='12'/>
+<method id='1119' holder='1098' name='scanComment' return='977' arguments='1110' flags='4' bytes='109' iicount='1'/>
+<call method='1119' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1119'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='1351'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.335'/>
+</parse>
+<bc code='182' bci='1651'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1674'/>
+<method id='1121' holder='1097' name='skipChar' return='969' arguments='975 1101' flags='4' bytes='285' compile_id='522' compiler='c1' level='3' iicount='1537'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1692'/>
+<method id='1123' holder='1098' name='scanCharReferenceValue' return='975' arguments='1110 1110' flags='4' bytes='763' iicount='1'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1123'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1725'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1741'/>
+<method id='1125' holder='1096' name='scanEntityReference' return='977' arguments='1110' flags='4' bytes='377' iicount='2'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1125'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1772'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1839'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='184' bci='1863'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1128' holder='1096' name='access$200' return='983' arguments='1096' flags='4104' bytes='5' iicount='1'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1866'/>
+<klass id='1127' name='com.sun.xml.internal.stream.XMLEntityStorage' flags='1'/>
+<method id='1130' holder='1127' name='isDeclaredEntity' return='969' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1130' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1127'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1127'/>
+<parse method='1130'>
+<bc code='185' bci='5'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1132' name='java.util.Map' flags='1537'/>
+<method id='1133' holder='1132' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1133' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1884'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1465'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1488'/>
+<method id='1135' holder='1096' name='scanCDATASection' return='969' arguments='1110 969' flags='4' bytes='126' iicount='1'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1135'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1498'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1548'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.336'/>
+</parse>
+<bc code='182' bci='1907'/>
+<method id='1138' holder='1097' name='skipString' return='969' arguments='983' flags='4' bytes='122' iicount='14'/>
+<call method='1138' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1937'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1940'/>
+<method id='1140' holder='1098' name='isValidNameChar' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<call method='1140' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1140'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='1'/>
+<klass id='1142' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1143' holder='1142' name='isName' return='969' arguments='975' flags='9' bytes='23' iicount='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='1953'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='1965'/>
+<method id='1148' holder='1110' name='append' return='977' arguments='983' flags='1' bytes='103' iicount='1'/>
+<call method='1148' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='1989'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1992'/>
+<method id='1150' holder='1098' name='isValidNCName' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<call method='1150' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1150'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1150'>
+<bc code='184' bci='1'/>
+<method id='1152' holder='1142' name='isNCName' return='969' arguments='975' flags='9' bytes='24' iicount='1'/>
+<call method='1152' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='2013'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='2017'/>
+<type id='970' name='char'/>
+<method id='1154' holder='1110' name='append' return='977' arguments='970' flags='1' bytes='87' iicount='34'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='2034'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='2037'/>
+<call method='1140' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1140'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='2058'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='2062'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='2105'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1156' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1157' holder='1156' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='535' compiler='c1' level='3' iicount='1376'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1156'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1156'/>
+<bc code='182' bci='2116'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='2131'/>
+<method id='1159' holder='1096' name='scanPIData' return='977' arguments='983 1110' flags='4' bytes='22' iicount='1'/>
+<call method='1159' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1159'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='183' bci='3'/>
+<method id='1161' holder='1098' name='scanPIData' return='977' arguments='983 1110' flags='4' bytes='186' iicount='1'/>
+<call method='1161' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='2142'/>
+<method id='1163' holder='1096' name='scanXMLDeclOrTextDecl' return='977' arguments='969' flags='4' bytes='183' iicount='1'/>
+<call method='1163' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1163'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2165'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='590'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='618'/>
+<klass id='1113' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1167' holder='1097' name='scanContent' return='975' arguments='1113' flags='4' bytes='690' iicount='211'/>
+<call method='1167' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='632'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='650'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='683'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='696'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='184' bci='699'/>
+<method id='1170' holder='1142' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='2958'/>
+<call method='1170' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1170'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='732'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='744'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='184' bci='769'/>
+<method id='1172' holder='1096' name='access$100' return='977' arguments='1096' flags='4104' bytes='5' iicount='15'/>
+<call method='1172' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1172'>
+<bc code='183' bci='1'/>
+<method id='1174' holder='1096' name='bufferContent' return='977' flags='2' bytes='25' iicount='15'/>
+<call method='1174' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1174'>
+<bc code='182' bci='8'/>
+<method id='1176' holder='1110' name='append' return='977' arguments='1113' flags='1' bytes='17' iicount='88'/>
+<call method='1176' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1176'>
+<bc code='182' bci='13'/>
+<method id='1178' holder='1110' name='append' return='977' arguments='1082 975 975' flags='1' bytes='110' iicount='88'/>
+<call method='1178' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='184' bci='789'/>
+<call method='1172' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1172'>
+<bc code='183' bci='1'/>
+<call method='1174' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1174'>
+<bc code='182' bci='8'/>
+<call method='1176' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1176'>
+<bc code='182' bci='13'/>
+<call method='1178' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='182' bci='816'/>
+<klass id='1180' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<method id='1181' holder='1180' name='isIgnorableWhiteSpace' return='969' arguments='1113' unloaded='1'/>
+<call method='1181' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='831'/>
+<call method='1172' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1172'>
+<bc code='183' bci='1'/>
+<call method='1174' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1174'>
+<bc code='182' bci='8'/>
+<call method='1176' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1176'>
+<bc code='182' bci='13'/>
+<call method='1178' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse_done stamp='0.338'/>
+</parse>
+<parse_done stamp='0.338'/>
+</parse>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='848'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='869'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='906'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='910'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='931'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='946'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='959'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='974'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<bc code='182' bci='990'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1003'/>
+<klass id='1183' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1184' holder='1098' name='reportFatalError' return='977' arguments='983 1183' flags='4' bytes='18' iicount='1'/>
+<call method='1184' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1184'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1184'>
+<bc code='182' bci='13'/>
+<klass id='1188' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1186' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1189' holder='1186' name='reportError' return='983' arguments='1188 983 983 1183 974' flags='1' bytes='13' iicount='1'/>
+<call method='1189' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<parse method='1189'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1191' holder='1186' name='reportError' return='983' arguments='1188 983 983 1183 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1191' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<parse_done stamp='0.338'/>
+</parse>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1030'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1040'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1062'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1072'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1088'/>
+<method id='1193' holder='1098' name='isInvalidLiteral' return='969' arguments='975' flags='4' bytes='5' iicount='13'/>
+<call method='1193' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1193'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1193'>
+<bc code='184' bci='1'/>
+<method id='1195' holder='1142' name='isInvalid' return='969' arguments='975' flags='9' bytes='13' iicount='13'/>
+<call method='1195' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1195'>
+<bc code='184' bci='1'/>
+<method id='1197' holder='1142' name='isValid' return='969' arguments='975' flags='9' bytes='34' iicount='13'/>
+<call method='1197' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.338'/>
+</parse>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='184' bci='1095'/>
+<method id='1199' holder='1142' name='isHighSurrogate' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1199' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1199'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1112'/>
+<method id='1201' holder='1098' name='scanSurrogates' return='969' arguments='1110' flags='4' bytes='108' iicount='1'/>
+<call method='1201' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1201'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1122'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='184' bci='1143'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1204' holder='1076' name='toString' return='983' arguments='975 975' flags='9' bytes='128' iicount='1'/>
+<call method='1204' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1147'/>
+<call method='1184' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1184'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1184'>
+<bc code='182' bci='13'/>
+<call method='1189' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<parse method='1189'>
+<bc code='182' bci='9'/>
+<call method='1191' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<parse_done stamp='0.338'/>
+</parse>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1158'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='1176'/>
+<method id='1206' holder='1096' name='scanContent' return='975' arguments='1110' flags='4' bytes='171' iicount='13'/>
+<call method='1206' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1206'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1196'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1247'/>
+<call method='1181' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='427'/>
+<method id='1208' holder='1096' name='scanStartElement' return='969' flags='4' bytes='446' iicount='213'/>
+<call method='1208' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='449'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='461'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1282'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='1296'/>
+<method id='1209' holder='1093' name='elementDepthIsZeroHook' return='969' flags='4' bytes='2' iicount='1'/>
+<call method='1209' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='1312'/>
+<method id='1210' holder='1096' name='scanEndElement' return='975' flags='4' bytes='170' iicount='10'/>
+<call method='1210' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1210'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1319'/>
+<call method='1209' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='1333'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='2206'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1111'>
+<parse_done stamp='0.338'/>
+</parse>
+<bc code='182' bci='2221'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1123'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2244'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.339'/>
+</parse>
+<bc code='186' bci='2260'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1213' holder='1035' name='invokeBasic' return='983' arguments='975' unloaded='1'/>
+<call method='1213' instr='invokedynamic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='2265'/>
+<klass id='1212' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<method id='1215' holder='1212' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1215' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2272'/>
+<klass id='1216' name='java.io.EOFException' flags='1'/>
+<method id='1217' holder='1093' name='endOfFileHook' return='977' arguments='1216' flags='4' bytes='21' iicount='1'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.340'/>
+</phase>
+<phase name='linearScan' stamp='0.340'>
+<phase_done name='linearScan' stamp='0.342'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.342'/>
+</phase>
+<phase name='codeemit' stamp='0.342'>
+<phase_done name='codeemit' stamp='0.344'/>
+</phase>
+<phase name='codeinstall' stamp='0.344'>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<dependency type='leaf_type' ctxk='1127'/>
+<dependency type='leaf_type' ctxk='1156'/>
+<dependency type='leaf_type' ctxk='1186'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1114'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1119'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1125'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1135'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1140'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1159'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1163'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1184'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1193'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1201'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1206'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1210'/>
+<phase_done name='codeinstall' stamp='0.345'/>
+</phase>
+<code_cache total_blobs='1012' nmethods='574' adapters='261' free_code_cache='247491968'/>
+<task_done success='1' nmsize='26152' count='1130' inlined_bytes='666' stamp='0.345'/>
+</task>
+<task compile_id='592' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanContent (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='690' count='402' backedge_count='1651' iicount='402' level='3' stamp='0.345'>
+<phase name='setup' stamp='0.345'>
+<phase_done name='setup' stamp='0.345'/>
+</phase>
+<phase name='buildIR' stamp='0.345'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanContent' return='975' arguments='1094' flags='4' bytes='690' iicount='403'/>
+<parse method='1095'  stamp='0.345'>
+<phase name='parse_hir' stamp='0.345'>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='10'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='49'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='10'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='82'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='223'/>
+<klass id='1105' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1106' holder='1093' name='checkEntityLimit' return='977' arguments='1105 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='242'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='355'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='374'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='493'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='507'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1108' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='583' compiler='c2' level='4' iicount='3471'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1108'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='184' bci='553'/>
+<klass id='1110' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1111' holder='1110' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='509' compiler='c1' level='3' iicount='26550'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='617'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='631'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1108'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.346'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.346'/>
+</phase>
+<parse_done stamp='0.346'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.346'>
+<phase_done name='optimize_blocks' stamp='0.346'/>
+</phase>
+<phase name='gvn' stamp='0.346'>
+<phase_done name='gvn' stamp='0.347'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.347'>
+<phase_done name='rangeCheckElimination' stamp='0.347'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.347'>
+<phase_done name='optimize_null_checks' stamp='0.347'/>
+</phase>
+<phase_done name='buildIR' stamp='0.347'/>
+</phase>
+<phase name='emit_lir' stamp='0.347'>
+<phase name='lirGeneration' stamp='0.347'>
+<phase_done name='lirGeneration' stamp='0.347'/>
+</phase>
+<phase name='linearScan' stamp='0.347'>
+<phase_done name='linearScan' stamp='0.348'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.348'/>
+</phase>
+<phase name='codeemit' stamp='0.348'>
+<phase_done name='codeemit' stamp='0.348'/>
+</phase>
+<phase name='codeinstall' stamp='0.348'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1108'/>
+<phase_done name='codeinstall' stamp='0.348'/>
+</phase>
+<code_cache total_blobs='1035' nmethods='587' adapters='261' free_code_cache='247445120'/>
+<task_done success='1' nmsize='5320' count='457' backedge_count='1761' inlined_bytes='67' stamp='0.348'/>
+</task>
+<task compile_id='600' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack popElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='59' count='424' iicount='424' level='3' stamp='0.348'>
+<phase name='setup' stamp='0.348'>
+<phase_done name='setup' stamp='0.348'/>
+</phase>
+<phase name='buildIR' stamp='0.348'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1095' holder='1093' name='popElement' return='1094' flags='1' bytes='59' iicount='424'/>
+<parse method='1095'  stamp='0.348'>
+<phase name='parse_hir' stamp='0.348'>
+<phase_done name='parse_hir' stamp='0.348'/>
+</phase>
+<parse_done stamp='0.348'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.348'>
+<phase_done name='optimize_blocks' stamp='0.348'/>
+</phase>
+<phase name='gvn' stamp='0.348'>
+<phase_done name='gvn' stamp='0.348'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.348'>
+<phase_done name='rangeCheckElimination' stamp='0.348'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.348'>
+<phase_done name='optimize_null_checks' stamp='0.348'/>
+</phase>
+<phase_done name='buildIR' stamp='0.348'/>
+</phase>
+<phase name='emit_lir' stamp='0.348'>
+<phase name='lirGeneration' stamp='0.348'>
+<phase_done name='lirGeneration' stamp='0.348'/>
+</phase>
+<phase name='linearScan' stamp='0.348'>
+<phase_done name='linearScan' stamp='0.348'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.348'/>
+</phase>
+<phase name='codeemit' stamp='0.348'>
+<phase_done name='codeemit' stamp='0.349'/>
+</phase>
+<phase name='codeinstall' stamp='0.349'>
+<phase_done name='codeinstall' stamp='0.349'/>
+</phase>
+<code_cache total_blobs='1036' nmethods='588' adapters='261' free_code_cache='247443584'/>
+<task_done success='1' nmsize='656' count='432' stamp='0.349'/>
+</task>
+<task compile_id='595' method='com.sun.hotspot.tools.compiler.LogParser startElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V' bytes='3082' count='435' iicount='435' level='3' stamp='0.349'>
+<phase name='setup' stamp='0.349'>
+<phase_done name='setup' stamp='0.349'/>
+</phase>
+<phase name='buildIR' stamp='0.349'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='startElement' return='977' arguments='983 983 983 1094' flags='1' bytes='3082' iicount='436'/>
+<parse method='1095'  stamp='0.349'>
+<phase name='parse_hir' stamp='0.349'>
+<bc code='182' bci='3'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<method id='1102' holder='1093' name='search' return='983' arguments='1094 983' flags='0' bytes='39' iicount='126'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='26'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='29'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1105' holder='1073' name='parseDouble' return='972' arguments='983' flags='9' bytes='5' iicount='126'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<klass id='1107' name='jdk.internal.math.FloatingDecimal' flags='1'/>
+<method id='1108' holder='1107' name='parseDouble' return='972' arguments='983' flags='9' bytes='10' iicount='126'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<klass id='1110' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter' flags='1544'/>
+<method id='1111' holder='1107' name='readJavaFormatString' return='1110' arguments='983' flags='8' bytes='826' iicount='126'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<method id='1113' holder='1110' name='doubleValue' return='972' flags='1025' bytes='0' iicount='1'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.350'/>
+</parse>
+<parse_done stamp='0.350'/>
+</parse>
+<bc code='182' bci='39'/>
+<method id='1116' holder='1093' name='search' return='983' arguments='1094 983 983' flags='0' bytes='19' iicount='1'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<method id='1118' holder='1094' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1118' instr='invokeinterface'/>
+<klass id='1119' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1120' holder='1119' name='getValue' return='983' arguments='983' flags='1' bytes='11' compile_id='566' compiler='c1' level='3' iicount='709'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<klass id='1123' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1124' holder='1123' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1124' instr='invokeinterface'/>
+<klass id='1125' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1126' holder='1125' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='567' compiler='c1' level='3' iicount='719'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.351'/>
+</parse>
+<parse_done stamp='0.351'/>
+</parse>
+<bc code='184' bci='42'/>
+<type id='975' name='int'/>
+<klass id='1129' name='java.lang.Integer' unloaded='1'/>
+<method id='1130' holder='1129' name='parseInt' return='975' arguments='983' unloaded='1'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='52'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='55'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='58'/>
+<klass id='1100' name='com.sun.hotspot.tools.compiler.Phase' unloaded='1'/>
+<method id='1132' holder='1100' name='&lt;init&gt;' return='977' arguments='983 972 975 975' unloaded='1'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='69'/>
+<klass id='1133' name='java.util.Deque' flags='1537'/>
+<method id='1134' holder='1133' name='push' return='977' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='80'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='90'/>
+<method id='1137' holder='1133' name='pop' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1137' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='106'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='182' bci='118'/>
+<method id='1138' holder='1100' name='getId' return='983' unloaded='1'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='123'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='136'/>
+<klass id='1142' name='java.lang.StringBuilder' unloaded='1'/>
+<method id='1143' holder='1142' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='141'/>
+<method id='1145' holder='1142' name='append' return='1142' arguments='983' unloaded='1'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='146'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='149'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='152'/>
+<method id='1146' holder='1142' name='toString' return='983' unloaded='1'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='155'/>
+<klass id='1139' name='java.io.PrintStream' flags='1'/>
+<method id='1147' holder='1139' name='println' return='977' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1147' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<parse method='1147'>
+<bc code='182' bci='6'/>
+<method id='1149' holder='1139' name='print' return='977' arguments='983' flags='1' bytes='9' iicount='1'/>
+<call method='1149' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<parse method='1149'>
+<bc code='184' bci='2'/>
+<method id='1151' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='10'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='182' bci='10'/>
+<method id='1154' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1154' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1155' holder='983' name='toString' return='983' flags='1' bytes='2' iicount='43'/>
+<parse method='1155'>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1157' holder='1139' name='write' return='977' arguments='983' flags='2' bytes='83' iicount='1'/>
+<call method='1157' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1159' holder='1139' name='newLine' return='977' flags='2' bytes='73' iicount='1'/>
+<call method='1159' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='161'/>
+<method id='1162' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1164' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='182' bci='171'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='174'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='182' bci='177'/>
+<method id='1166' holder='1100' name='setEnd' return='977' arguments='972' unloaded='1'/>
+<call method='1166' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='189'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='192'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='195'/>
+<method id='1167' holder='1100' name='setEndNodes' return='977' arguments='975' unloaded='1'/>
+<call method='1167' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='207'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='210'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='213'/>
+<method id='1168' holder='1100' name='setEndLiveNodes' return='977' arguments='975' unloaded='1'/>
+<call method='1168' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='220'/>
+<klass id='1170' name='java.util.ArrayList' flags='1'/>
+<klass id='1169' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1171' holder='1169' name='getPhases' return='1170' flags='1' bytes='5' iicount='1'/>
+<call method='1171' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1171'>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='182' bci='225'/>
+<method id='1173' holder='1170' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='698'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<parse method='1173'>
+<bc code='183' bci='20'/>
+<klass id='1176' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1177' holder='1170' name='add' return='977' arguments='982 1176 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='698'/>
+<call method='1177' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1177'>
+<bc code='183' bci='7'/>
+<method id='1181' holder='1170' name='grow' return='1176' flags='2' bytes='11' iicount='122'/>
+<call method='1181' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<bc code='183' bci='7'/>
+<method id='1183' holder='1170' name='grow' return='1176' arguments='975' flags='2' bytes='18' iicount='122'/>
+<call method='1183' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='7'/>
+<method id='1185' holder='1170' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' iicount='122'/>
+<call method='1185' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1187' name='java.util.Arrays' flags='1'/>
+<method id='1188' holder='1187' name='copyOf' return='1176' arguments='1176 975' flags='9' bytes='10' iicount='384'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1191' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1191' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1193' holder='1187' name='copyOf' return='1176' arguments='1176 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='1115'/>
+<call method='1193' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='235'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='244'/>
+<method id='1197' holder='1093' name='makeId' return='983' arguments='1094' flags='1' bytes='53' iicount='239'/>
+<call method='1197' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='261'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='264'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='267'/>
+<method id='1201' holder='1169' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='44' iicount='1'/>
+<call method='1201' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='282'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='285'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='288'/>
+<method id='1203' holder='1169' name='setStart' return='977' arguments='972' flags='1' bytes='6' iicount='1'/>
+<call method='1203' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1203'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='302'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='305'/>
+<method id='1206' holder='1169' name='setICount' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1206' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1206'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='319'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='182' bci='322'/>
+<method id='1209' holder='1169' name='setBCount' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1209' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1209'>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='182' bci='336'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='184' bci='339'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='342'/>
+<method id='1212' holder='1169' name='setBCI' return='977' arguments='975' flags='1' bytes='6' iicount='1'/>
+<call method='1212' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1212'>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='185' bci='349'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='182' bci='371'/>
+<method id='1216' holder='1169' name='setCompiler' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1216' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1216'>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='185' bci='381'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='182' bci='386'/>
+<klass id='1223' name='[Ljava.lang.String;' flags='1041'/>
+<klass id='1222' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1218' name='java.util.regex.Pattern' flags='17'/>
+<method id='1224' holder='1218' name='split' return='1223' arguments='1222' flags='1' bytes='7' iicount='1'/>
+<call method='1224' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1224'>
+<bc code='182' bci='3'/>
+<method id='1226' holder='1218' name='split' return='1223' arguments='1222 975' flags='1' bytes='290' iicount='1'/>
+<call method='1226' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='183' bci='395'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='402'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='407'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='414'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='417'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='426'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='182' bci='446'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='457'/>
+<method id='1232' holder='1169' name='setOsr' return='977' arguments='969' flags='1' bytes='6' iicount='1'/>
+<call method='1232' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1232'>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='182' bci='467'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='481'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='486'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='491'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='494'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='497'/>
+<method id='1236' holder='1169' name='setSpecial' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1236' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1236'>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='183' bci='511'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='518'/>
+<method id='1238' holder='1169' name='getId' return='975' flags='1' bytes='5' iicount='1'/>
+<call method='1238' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1238'>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='182' bci='521'/>
+<method id='1240' holder='1142' name='append' return='1142' arguments='975' unloaded='1'/>
+<call method='1240' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='526'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='531'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='536'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='539'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='542'/>
+<call method='1236' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1236'>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='183' bci='549'/>
+<klass id='1243' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1244' holder='1243' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='2'/>
+<call method='1244' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1244'>
+<bc code='183' bci='1'/>
+<method id='1246' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='25196'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.364'/>
+</parse>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='182' bci='560'/>
+<method id='1248' holder='1243' name='setHolder' return='977' arguments='983' flags='1' bytes='6' iicount='2'/>
+<call method='1248' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1248'>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='182' bci='569'/>
+<method id='1250' holder='1243' name='setName' return='977' arguments='983' flags='1' bytes='6' iicount='2'/>
+<call method='1250' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1250'>
+<parse_done stamp='0.365'/>
+</parse>
+<bc code='182' bci='578'/>
+<method id='1252' holder='1243' name='setSignature' return='977' arguments='983' flags='1' bytes='13' iicount='2'/>
+<call method='1252' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1252'>
+<bc code='182' bci='6'/>
+<type id='970' name='char'/>
+<method id='1254' holder='983' name='replace' return='983' arguments='970 970' flags='1' bytes='42' compile_id='327' compiler='c1' level='3' iicount='904'/>
+<call method='1254' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.365'/>
+</parse>
+<bc code='182' bci='585'/>
+<method id='1256' holder='1243' name='setFlags' return='977' arguments='983' flags='1' bytes='6' iicount='2'/>
+<call method='1256' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1256'>
+<parse_done stamp='0.365'/>
+</parse>
+<bc code='182' bci='597'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.366'/>
+</parse>
+<parse_done stamp='0.366'/>
+</parse>
+<bc code='182' bci='600'/>
+<method id='1260' holder='1243' name='setBytes' return='977' arguments='983' flags='1' bytes='6' iicount='5'/>
+<call method='1260' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1260'>
+<parse_done stamp='0.366'/>
+</parse>
+<bc code='182' bci='609'/>
+<method id='1262' holder='1169' name='setMethod' return='977' arguments='1243' flags='1' bytes='13' iicount='4'/>
+<call method='1262' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1262'>
+<bc code='182' bci='1'/>
+<method id='1264' holder='1169' name='getMethod' return='1243' flags='1' bytes='5' iicount='4'/>
+<call method='1264' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1264'>
+<parse_done stamp='0.366'/>
+</parse>
+<parse_done stamp='0.366'/>
+</parse>
+<bc code='182' bci='620'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<parse method='1173'>
+<bc code='183' bci='20'/>
+<call method='1177' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1177'>
+<bc code='183' bci='7'/>
+<call method='1181' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<bc code='183' bci='7'/>
+<call method='1183' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='7'/>
+<call method='1185' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<bc code='182' bci='3'/>
+<call method='1191' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1193' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.367'/>
+</parse>
+<parse_done stamp='0.367'/>
+</parse>
+<parse_done stamp='0.367'/>
+</parse>
+<parse_done stamp='0.367'/>
+</parse>
+<parse_done stamp='0.367'/>
+</parse>
+<bc code='182' bci='634'/>
+<klass id='1266' name='java.util.HashMap' flags='1'/>
+<method id='1267' holder='1266' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='3489'/>
+<call method='1267' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1266' x='1267'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1267'>
+<bc code='184' bci='2'/>
+<method id='1270' holder='1266' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='8622'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<method id='1273' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.367'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1276' holder='1266' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='4297'/>
+<call method='1276' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.367'/>
+</parse>
+<bc code='182' bci='643'/>
+<klass id='1281' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1282' holder='1169' name='getCall' return='1281' flags='1' bytes='5' iicount='2'/>
+<call method='1282' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1282'>
+<parse_done stamp='0.367'/>
+</parse>
+<bc code='182' bci='655'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='667'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='675'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='678'/>
+<method id='1286' holder='1093' name='type' return='977' arguments='983 983' flags='0' bytes='33' iicount='9'/>
+<call method='1286' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1286'>
+<bc code='182' bci='28'/>
+<call method='1267' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1266' x='1267'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1267'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.368'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1276' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.368'/>
+</parse>
+<parse_done stamp='0.368'/>
+</parse>
+<bc code='182' bci='687'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='699'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='702'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='714'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='717'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='729'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='741'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='749'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='752'/>
+<call method='1286' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1286'>
+<bc code='182' bci='28'/>
+<call method='1267' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1266' x='1267'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1267'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.369'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1276' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.369'/>
+</parse>
+<parse_done stamp='0.369'/>
+</parse>
+<bc code='182' bci='761'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='772'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='781'/>
+<call method='1244' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1244'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.369'/>
+</parse>
+<parse_done stamp='0.369'/>
+</parse>
+<bc code='182' bci='794'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='797'/>
+<method id='1293' holder='1093' name='type' return='983' arguments='983' flags='0' bytes='31' iicount='22'/>
+<call method='1293' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1293'>
+<bc code='182' bci='5'/>
+<method id='1295' holder='1266' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='3456'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1295'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.370'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1279' name='java.util.HashMap$Node' flags='8'/>
+<method id='1298' holder='1266' name='getNode' return='1279' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='4452'/>
+<call method='1298' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.370'/>
+</parse>
+<parse_done stamp='0.370'/>
+</parse>
+<bc code='182' bci='800'/>
+<call method='1248' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1248'>
+<parse_done stamp='0.370'/>
+</parse>
+<bc code='182' bci='810'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='813'/>
+<call method='1250' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1250'>
+<parse_done stamp='0.370'/>
+</parse>
+<bc code='182' bci='824'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='827'/>
+<call method='1293' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1293'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1295'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1298' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.371'/>
+</parse>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='182' bci='830'/>
+<method id='1302' holder='1243' name='setReturnType' return='977' arguments='983' flags='1' bytes='6' iicount='15'/>
+<call method='1302' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1302'>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='185' bci='837'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='183' bci='855'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='860'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='868'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='182' bci='873'/>
+<method id='1306' holder='1093' name='sigtype' return='983' arguments='983' flags='0' bytes='75' iicount='27'/>
+<call method='1306' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='876'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='879'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='882'/>
+<call method='1252' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1252'>
+<bc code='182' bci='6'/>
+<call method='1254' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='182' bci='893'/>
+<call method='1224' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1224'>
+<bc code='182' bci='3'/>
+<call method='1226' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.371'/>
+</parse>
+<bc code='183' bci='904'/>
+<method id='1309' holder='1142' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1309' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='928'/>
+<call method='1306' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='931'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='945'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='956'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.373'/>
+</parse>
+<bc code='182' bci='961'/>
+<call method='1306' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='964'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='972'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='975'/>
+<call method='1252' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1252'>
+<bc code='182' bci='6'/>
+<call method='1254' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.373'/>
+</parse>
+<bc code='182' bci='985'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.373'/>
+</parse>
+<parse_done stamp='0.373'/>
+</parse>
+<bc code='182' bci='990'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1003'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1006'/>
+<call method='1260' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1260'>
+<parse_done stamp='0.373'/>
+</parse>
+<bc code='182' bci='1016'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1019'/>
+<method id='1313' holder='1243' name='setIICount' return='977' arguments='983' flags='1' bytes='6' iicount='21'/>
+<call method='1313' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1313'>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='182' bci='1029'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1032'/>
+<call method='1256' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<parse method='1256'>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='182' bci='1043'/>
+<call method='1267' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1266' x='1267'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1267'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1276' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='182' bci='1053'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1077'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1080'/>
+<method id='1317' holder='1093' name='method' return='1243' arguments='983' flags='0' bytes='23' iicount='33'/>
+<call method='1317' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1317'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<bc code='183' bci='18'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.374'/>
+</parse>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='185' bci='1096'/>
+<method id='1319' holder='1133' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1110'/>
+<method id='1320' holder='1281' name='getMethod' return='1243' flags='1' bytes='5' iicount='11'/>
+<call method='1320' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1320'>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='182' bci='1124'/>
+<method id='1322' holder='1281' name='getBci' return='975' flags='1' bytes='5' iicount='1'/>
+<call method='1322' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1322'>
+<parse_done stamp='0.374'/>
+</parse>
+<bc code='183' bci='1137'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1142'/>
+<method id='1324' holder='1142' name='append' return='1142' arguments='982' unloaded='1'/>
+<call method='1324' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1147'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1154'/>
+<call method='1240' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1157'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1160'/>
+<call method='1147' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<parse method='1147'>
+<bc code='182' bci='6'/>
+<call method='1149' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<parse method='1149'>
+<bc code='184' bci='2'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='182' bci='10'/>
+<call method='1154' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<parse_done stamp='0.375'/>
+</parse>
+<parse_done stamp='0.375'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1157' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.375'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1159' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.375'/>
+</parse>
+<bc code='183' bci='1170'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1177'/>
+<call method='1320' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1320'>
+<parse_done stamp='0.376'/>
+</parse>
+<bc code='182' bci='1180'/>
+<call method='1324' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1185'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1192'/>
+<call method='1322' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1322'>
+<parse_done stamp='0.376'/>
+</parse>
+<bc code='182' bci='1195'/>
+<call method='1240' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1198'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1201'/>
+<call method='1147' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<parse method='1147'>
+<bc code='182' bci='6'/>
+<call method='1149' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<parse method='1149'>
+<bc code='184' bci='2'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='182' bci='10'/>
+<call method='1154' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<parse_done stamp='0.376'/>
+</parse>
+<parse_done stamp='0.376'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1157' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.376'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1159' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.377'/>
+</parse>
+<bc code='183' bci='1207'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.377'/>
+</parse>
+<bc code='182' bci='1216'/>
+<method id='1327' holder='1281' name='setMethod' return='977' arguments='1243' flags='1' bytes='6' iicount='1'/>
+<call method='1327' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1327'>
+<parse_done stamp='0.377'/>
+</parse>
+<bc code='183' bci='1233'/>
+<method id='1329' holder='1281' name='&lt;init&gt;' return='977' arguments='975 1243' flags='0' bytes='15' iicount='36'/>
+<call method='1329' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1329'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.377'/>
+</parse>
+<parse_done stamp='0.377'/>
+</parse>
+<bc code='182' bci='1250'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='1253'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1256'/>
+<method id='1331' holder='1281' name='setCount' return='977' arguments='975' flags='1' bytes='6' iicount='36'/>
+<call method='1331' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1331'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='185' bci='1263'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='1282'/>
+<call method='1293' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1293'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1295'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1298' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='1285'/>
+<method id='1334' holder='1281' name='setReceiver' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1334' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1334'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='1297'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='1300'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1303'/>
+<method id='1337' holder='1281' name='setReceiver_count' return='977' arguments='975' flags='1' bytes='6' iicount='1'/>
+<call method='1337' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1337'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='1313'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='184' bci='1316'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='1332'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='1352'/>
+<method id='1340' holder='1133' name='peek' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='1357'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='1364'/>
+<method id='1341' holder='1281' name='add' return='977' arguments='1281' flags='0' bytes='30' iicount='44'/>
+<call method='1341' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1341'>
+<bc code='182' bci='1'/>
+<klass id='1343' name='java.util.List' flags='1537'/>
+<method id='1344' holder='1281' name='getCalls' return='1343' flags='1' bytes='5' iicount='118'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='183' bci='12'/>
+<method id='1346' holder='1170' name='&lt;init&gt;' return='977' flags='1' bytes='12' iicount='190'/>
+<call method='1346' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1346'>
+<bc code='183' bci='1'/>
+<klass id='1175' name='java.util.AbstractList' flags='1025'/>
+<method id='1348' holder='1175' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='400'/>
+<call method='1348' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1348'>
+<bc code='183' bci='1'/>
+<klass id='1350' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1351' holder='1350' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='1738'/>
+<call method='1351' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1351'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.383'/>
+</parse>
+<parse_done stamp='0.383'/>
+</parse>
+<parse_done stamp='0.383'/>
+</parse>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='19'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='185' bci='23'/>
+<method id='1355' holder='1343' name='add' return='969' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1355' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='1384'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='1394'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='185' bci='1440'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='1445'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='1475'/>
+<method id='1357' holder='1281' name='setIntrinsicName' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1357' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1281' x='1357'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1357'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='1484'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1499'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='1502'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1505'/>
+<method id='1361' holder='1169' name='setAttempts' return='977' arguments='975' flags='1' bytes='6' iicount='1'/>
+<call method='1361' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1361'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='1514'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='1531'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='1536'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='1543'/>
+<call method='1341' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1341'>
+<bc code='182' bci='1'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.384'/>
+</parse>
+<bc code='183' bci='12'/>
+<call method='1346' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1346'>
+<bc code='183' bci='1'/>
+<call method='1348' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1348'>
+<bc code='183' bci='1'/>
+<call method='1351' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1351'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.384'/>
+</parse>
+<parse_done stamp='0.384'/>
+</parse>
+<parse_done stamp='0.384'/>
+</parse>
+<parse_done stamp='0.384'/>
+</parse>
+<bc code='182' bci='19'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.384'/>
+</parse>
+<bc code='185' bci='23'/>
+<call method='1355' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.385'/>
+</parse>
+<bc code='185' bci='1562'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='1578'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1583'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1591'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1594'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1597'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1600'/>
+<method id='1366' holder='1281' name='setReason' return='977' arguments='983' flags='1' bytes='6' iicount='63'/>
+<call method='1366' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1366'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='185' bci='1615'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='1620'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='1623'/>
+<method id='1368' holder='1281' name='last' return='1281' flags='0' bytes='24' iicount='25'/>
+<call method='1368' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1368'>
+<bc code='182' bci='1'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='185' bci='8'/>
+<method id='1370' holder='1343' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1370' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='15'/>
+<method id='1371' holder='1343' name='get' return='982' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1371' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='20'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='183' bci='1630'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1635'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1643'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1646'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1649'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1652'/>
+<call method='1366' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1366'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='182' bci='1661'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1677'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='183' bci='1688'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1693'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1701'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1704'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1707'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1710'/>
+<call method='1366' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1366'>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='182' bci='1719'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1731'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1743'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1758'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='1761'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='182' bci='1764'/>
+<method id='1377' holder='1169' name='setEnd' return='977' arguments='972' flags='1' bytes='6' iicount='13'/>
+<call method='1377' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1377'>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='182' bci='1772'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='1775'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1789'/>
+<method id='1380' holder='1169' name='setFailureReason' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1380' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1380'>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='182' bci='1803'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1812'/>
+<call method='1197' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1823'/>
+<klass id='1278' name='java.util.LinkedHashMap' flags='1'/>
+<method id='1383' holder='1278' name='get' return='982' arguments='982' flags='1' bytes='33' iicount='45'/>
+<call method='1383' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1278' x='1383'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1383'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1298' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='25'/>
+<method id='1385' holder='1278' name='afterNodeAccess' return='977' arguments='1279' flags='0' bytes='116' iicount='1'/>
+<call method='1385' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1278' x='1385'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='192' bci='1826'/>
+<klass id='1387' name='com.sun.hotspot.tools.compiler.NMethod' flags='1'/>
+<dependency type='leaf_type' ctxk='1387'/>
+<bc code='183' bci='1839'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='182' bci='1851'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='1854'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='185' bci='1863'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='183' bci='1878'/>
+<klass id='1389' name='com.sun.hotspot.tools.compiler.MakeNotEntrantEvent' flags='0'/>
+<method id='1391' holder='1389' name='&lt;init&gt;' return='977' arguments='972 983 969 1387' flags='0' bytes='19' iicount='8'/>
+<call method='1391' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1391'>
+<bc code='183' bci='3'/>
+<klass id='1393' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1394' holder='1393' name='&lt;init&gt;' return='977' arguments='972 983' flags='0' bytes='20' iicount='406'/>
+<call method='1394' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1394'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='182' bci='1889'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<parse method='1173'>
+<bc code='183' bci='20'/>
+<call method='1177' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1177'>
+<bc code='183' bci='7'/>
+<call method='1181' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<bc code='183' bci='7'/>
+<call method='1183' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='7'/>
+<call method='1185' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<bc code='182' bci='3'/>
+<call method='1191' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1193' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='182' bci='1899'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='1909'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='182' bci='1924'/>
+<call method='1197' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='1939'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='1942'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='185' bci='1951'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='185' bci='1960'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='182' bci='1972'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='184' bci='1975'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='1978'/>
+<klass id='1397' name='com.sun.hotspot.tools.compiler.UncommonTrapEvent' unloaded='1'/>
+<method id='1399' holder='1397' name='&lt;init&gt;' return='977' arguments='972 983 983 983 975' unloaded='1'/>
+<call method='1399' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1992'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<parse method='1173'>
+<bc code='183' bci='20'/>
+<call method='1177' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1177'>
+<bc code='183' bci='7'/>
+<call method='1181' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<bc code='183' bci='7'/>
+<call method='1183' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='7'/>
+<call method='1185' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<bc code='182' bci='3'/>
+<call method='1191' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1193' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='185' bci='2003'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<bc code='182' bci='2021'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='2024'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2032'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='2040'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='2051'/>
+<klass id='1400' name='com.sun.hotspot.tools.compiler.UncommonTrap' unloaded='1'/>
+<method id='1401' holder='1400' name='&lt;init&gt;' return='977' arguments='975 983 983 983' unloaded='1'/>
+<call method='1401' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='2060'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2081'/>
+<method id='1402' holder='1281' name='add' return='977' arguments='1400' flags='0' bytes='30' iicount='1'/>
+<call method='1402' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1402'>
+<bc code='183' bci='12'/>
+<call method='1346' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1346'>
+<bc code='183' bci='1'/>
+<call method='1348' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1348'>
+<bc code='183' bci='1'/>
+<call method='1351' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1351'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<bc code='185' bci='23'/>
+<call method='1355' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.390'/>
+</parse>
+<bc code='183' bci='2090'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.390'/>
+</parse>
+<bc code='185' bci='2100'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='2105'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='2110'/>
+<call method='1402' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1402'>
+<bc code='183' bci='12'/>
+<call method='1346' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1346'>
+<bc code='183' bci='1'/>
+<call method='1348' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1348'>
+<bc code='183' bci='1'/>
+<call method='1351' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1351'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<bc code='185' bci='23'/>
+<call method='1355' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.390'/>
+</parse>
+<bc code='182' bci='2120'/>
+<klass id='989' name='java.lang.Throwable' flags='1'/>
+<method id='1405' holder='989' name='printStackTrace' return='977' flags='1' bytes='8' iicount='1'/>
+<call method='1405' instr='invokevirtual'/>
+<klass id='990' name='java.lang.Error' flags='1'/>
+<dependency type='unique_concrete_method' ctxk='990' x='1405'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1405'>
+<bc code='182' bci='4'/>
+<method id='1408' holder='989' name='printStackTrace' return='977' arguments='1139' flags='1' bytes='13' iicount='1'/>
+<call method='1408' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='989' x='1408'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1408'>
+<bc code='183' bci='6'/>
+<klass id='1410' name='java.lang.Throwable$WrappedPrintStream' unloaded='1'/>
+<method id='1411' holder='1410' name='&lt;init&gt;' return='977' arguments='1139' unloaded='1'/>
+<call method='1411' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='9'/>
+<klass id='1412' name='java.lang.Throwable$PrintStreamOrWriter' unloaded='1'/>
+<method id='1413' holder='989' name='printStackTrace' return='977' arguments='1412' flags='2' bytes='177' iicount='1'/>
+<call method='1413' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.390'/>
+</parse>
+<parse_done stamp='0.390'/>
+</parse>
+<bc code='182' bci='2129'/>
+<method id='1416' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' compile_id='502' compiler='c1' level='3' iicount='3013'/>
+<call method='1416' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1416'>
+<bc code='182' bci='3'/>
+<method id='1418' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' compile_id='501' compiler='c1' level='3' iicount='5156'/>
+<call method='1418' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.391'/>
+</parse>
+<bc code='185' bci='2139'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.391'/>
+</parse>
+<bc code='182' bci='2154'/>
+<call method='1197' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='185' bci='2163'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.391'/>
+</parse>
+<bc code='185' bci='2174'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.392'/>
+</parse>
+<bc code='182' bci='2193'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='2196'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.392'/>
+</parse>
+<parse_done stamp='0.392'/>
+</parse>
+<bc code='183' bci='2205'/>
+<klass id='1422' name='com.sun.hotspot.tools.compiler.LogParser$LockElimination' unloaded='1'/>
+<method id='1423' holder='1422' name='&lt;init&gt;' return='977' arguments='1093 983 972 983 983 983' unloaded='1'/>
+<call method='1423' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2219'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<parse method='1173'>
+<bc code='183' bci='20'/>
+<call method='1177' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1177'>
+<bc code='183' bci='7'/>
+<call method='1181' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<bc code='183' bci='7'/>
+<call method='1183' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='7'/>
+<call method='1185' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<bc code='182' bci='3'/>
+<call method='1191' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1193' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.392'/>
+</parse>
+<parse_done stamp='0.392'/>
+</parse>
+<parse_done stamp='0.392'/>
+</parse>
+<parse_done stamp='0.392'/>
+</parse>
+<parse_done stamp='0.392'/>
+</parse>
+<bc code='182' bci='2229'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2243'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='2246'/>
+<type id='976' name='long'/>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<method id='1426' holder='1077' name='parseLong' return='976' arguments='983' flags='9' bytes='7' iicount='1'/>
+<call method='1426' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1426'>
+<bc code='184' bci='3'/>
+<method id='1428' holder='1077' name='parseLong' return='976' arguments='983 975' flags='9' bytes='267' compile_id='606' compiler='c1' level='3' iicount='460'/>
+<call method='1428' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.393'/>
+</parse>
+<bc code='183' bci='2261'/>
+<klass id='1135' name='java.util.ArrayDeque' flags='1'/>
+<method id='1430' holder='1135' name='&lt;init&gt;' return='977' flags='1' bytes='14' iicount='6'/>
+<call method='1430' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1430'>
+<bc code='183' bci='1'/>
+<call method='1351' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1351'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.393'/>
+</parse>
+<parse_done stamp='0.393'/>
+</parse>
+<parse_done stamp='0.393'/>
+</parse>
+<bc code='182' bci='2273'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='2276'/>
+<call method='1317' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1317'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<bc code='183' bci='18'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.394'/>
+</parse>
+<parse_done stamp='0.394'/>
+</parse>
+<bc code='183' bci='2291'/>
+<call method='1329' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1329'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.394'/>
+</parse>
+<parse_done stamp='0.394'/>
+</parse>
+<bc code='182' bci='2303'/>
+<method id='1432' holder='1281' name='setInlineId' return='977' arguments='976' flags='1' bytes='6' iicount='1'/>
+<call method='1432' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1432'>
+<parse_done stamp='0.394'/>
+</parse>
+<bc code='185' bci='2314'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2325'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='2345'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.394'/>
+</parse>
+<bc code='182' bci='2350'/>
+<call method='1224' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1224'>
+<bc code='182' bci='3'/>
+<call method='1226' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.394'/>
+</parse>
+<bc code='183' bci='2363'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2374'/>
+<call method='1254' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2377'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2382'/>
+<method id='1435' holder='1142' name='append' return='1142' arguments='970' unloaded='1'/>
+<call method='1435' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2389'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2396'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2399'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='2406'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='184' bci='2411'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2414'/>
+<method id='1436' holder='1397' name='addMethodAndBCI' return='977' arguments='983 975' unloaded='1'/>
+<call method='1436' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='2436'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='182' bci='2441'/>
+<call method='1317' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1317'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<bc code='183' bci='18'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='185' bci='2448'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='184' bci='2453'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2456'/>
+<method id='1437' holder='1422' name='addJVMS' return='977' arguments='1243 975' unloaded='1'/>
+<call method='1437' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2475'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='2478'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2490'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='2493'/>
+<call method='1317' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1317'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<bc code='183' bci='18'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='183' bci='2509'/>
+<call method='1329' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1329'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.395'/>
+</parse>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='185' bci='2523'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2534'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2550'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='182' bci='2558'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='2561'/>
+<call method='1426' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1426'>
+<bc code='184' bci='3'/>
+<call method='1428' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='182' bci='2572'/>
+<call method='1432' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1432'>
+<parse_done stamp='0.395'/>
+</parse>
+<bc code='182' bci='2582'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2591'/>
+<call method='1197' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='2605'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='2608'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='185' bci='2619'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='182' bci='2624'/>
+<method id='1440' holder='1093' name='parseLong' return='976' arguments='983' flags='0' bytes='179' iicount='460'/>
+<call method='1440' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='185' bci='2633'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='182' bci='2638'/>
+<call method='1440' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='2641'/>
+<method id='1443' holder='1387' name='&lt;init&gt;' return='977' arguments='972 983 976 976' flags='0' bytes='19' iicount='230'/>
+<call method='1443' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1443'>
+<bc code='183' bci='3'/>
+<call method='1394' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1394'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='182' bci='2654'/>
+<call method='1267' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1278' x='1267'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1267'>
+<bc code='184' bci='2'/>
+<call method='1270' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1270'>
+<bc code='182' bci='9'/>
+<call method='1273' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1276' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='182' bci='2664'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<parse method='1173'>
+<bc code='183' bci='20'/>
+<call method='1177' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1177'>
+<bc code='183' bci='7'/>
+<call method='1181' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<bc code='183' bci='7'/>
+<call method='1183' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='7'/>
+<call method='1185' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<bc code='182' bci='3'/>
+<call method='1191' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1193' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='182' bci='2675'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='2692'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2716'/>
+<method id='1446' holder='1169' name='reset' return='977' flags='0' bytes='35' iicount='1'/>
+<call method='1446' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1446'>
+<bc code='183' bci='5'/>
+<method id='1448' holder='1281' name='&lt;init&gt;' return='977' flags='0' bytes='5' iicount='46'/>
+<call method='1448' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1448'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.396'/>
+</parse>
+<parse_done stamp='0.396'/>
+</parse>
+<bc code='183' bci='16'/>
+<call method='1448' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1448'>
+<bc code='183' bci='1'/>
+<call method='1246' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1246'>
+<parse_done stamp='0.397'/>
+</parse>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='183' bci='28'/>
+<method id='1450' holder='1170' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='61' iicount='57'/>
+<call method='1450' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='182' bci='2724'/>
+<call method='1282' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1282'>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='183' bci='2740'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='182' bci='2749'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='2752'/>
+<call method='1317' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1317'>
+<bc code='182' bci='5'/>
+<call method='1295' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<bc code='183' bci='18'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.397'/>
+</parse>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='185' bci='2768'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2780'/>
+<call method='1320' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1320'>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='183' bci='2793'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2799'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2806'/>
+<call method='1320' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1320'>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='182' bci='2809'/>
+<call method='1324' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2815'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2820'/>
+<call method='1324' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2825'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2828'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='2831'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='183' bci='3'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='185' bci='2838'/>
+<call method='1319' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2859'/>
+<call method='1262' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1262'>
+<bc code='182' bci='1'/>
+<call method='1264' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<parse method='1264'>
+<parse_done stamp='0.397'/>
+</parse>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='185' bci='2870'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2882'/>
+<call method='1320' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1320'>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='185' bci='2898'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='2910'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='2915'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='2918'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='185' bci='2921'/>
+<call method='1370' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='2936'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='2941'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='2944'/>
+<method id='1454' holder='1281' name='lastButOne' return='1281' flags='0' bytes='24' iicount='1'/>
+<call method='1454' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1454'>
+<bc code='182' bci='1'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.397'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='185' bci='8'/>
+<call method='1370' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='15'/>
+<call method='1371' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='20'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='182' bci='2947'/>
+<call method='1320' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1320'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='185' bci='2961'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='2966'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='2969'/>
+<call method='1454' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1454'>
+<bc code='182' bci='1'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1344' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1344'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='185' bci='8'/>
+<call method='1370' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='15'/>
+<call method='1371' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='20'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='185' bci='2972'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2986'/>
+<call method='1327' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1327'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='185' bci='2997'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='3009'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='3019'/>
+<call method='1340' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='3024'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<bc code='182' bci='3038'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.398'/>
+</parse>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='184' bci='3041'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='3044'/>
+<method id='1457' holder='1281' name='setEndNodes' return='977' arguments='975' flags='0' bytes='6' iicount='72'/>
+<call method='1457' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1457'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='182' bci='3056'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1116'>
+<bc code='185' bci='2'/>
+<call method='1118' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='185' bci='5'/>
+<call method='1124' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.398'/>
+</parse>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='184' bci='3059'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='3062'/>
+<method id='1459' holder='1281' name='setEndLiveNodes' return='977' arguments='975' flags='0' bytes='6' iicount='72'/>
+<call method='1459' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1459'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='182' bci='3072'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='3075'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.398'/>
+</parse>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='182' bci='3078'/>
+<method id='1461' holder='1281' name='setTimeStamp' return='977' arguments='972' flags='0' bytes='6' iicount='72'/>
+<call method='1461' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<parse method='1461'>
+<parse_done stamp='0.398'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.399'/>
+</phase>
+<parse_done stamp='0.399'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.399'>
+<phase_done name='optimize_blocks' stamp='0.399'/>
+</phase>
+<phase name='gvn' stamp='0.399'>
+<phase_done name='gvn' stamp='0.400'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.400'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.402'/>
+</phase>
+<phase name='emit_lir' stamp='0.402'>
+<phase name='lirGeneration' stamp='0.402'>
+<phase_done name='lirGeneration' stamp='0.407'/>
+</phase>
+<phase name='linearScan' stamp='0.407'>
+<phase_done name='linearScan' stamp='0.423'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.423'/>
+</phase>
+<phase name='codeemit' stamp='0.423'>
+<phase_done name='codeemit' stamp='0.429'/>
+</phase>
+<phase name='codeinstall' stamp='0.429'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1139'/>
+<dependency type='leaf_type' ctxk='1169'/>
+<dependency type='leaf_type' ctxk='1170'/>
+<dependency type='leaf_type' ctxk='1243'/>
+<dependency type='leaf_type' ctxk='1281'/>
+<dependency type='leaf_type' ctxk='1387'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1120'/>
+<dependency type='unique_concrete_method' ctxk='1123' x='1126'/>
+<dependency type='unique_concrete_method' ctxk='1266' x='1267'/>
+<dependency type='unique_concrete_method' ctxk='1281' x='1357'/>
+<dependency type='unique_concrete_method' ctxk='1278' x='1383'/>
+<dependency type='unique_concrete_method' ctxk='1278' x='1385'/>
+<dependency type='unique_concrete_method' ctxk='990' x='1405'/>
+<dependency type='unique_concrete_method' ctxk='989' x='1408'/>
+<phase_done name='codeinstall' stamp='0.430'/>
+</phase>
+<code_cache total_blobs='1210' nmethods='705' adapters='262' free_code_cache='246800640'/>
+<task_done success='1' nmsize='102792' count='3975' backedge_count='238' inlined_bytes='3212' stamp='0.430'/>
+</task>
+<task compile_id='718' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append ([CII)V' bytes='110' count='424' iicount='424' level='3' stamp='0.432'>
+<phase name='setup' stamp='0.432'>
+<phase_done name='setup' stamp='0.432'/>
+</phase>
+<phase name='buildIR' stamp='0.432'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1094' holder='1093' name='append' return='977' arguments='1082 975 975' flags='1' bytes='110' iicount='424'/>
+<parse method='1094'  stamp='0.432'>
+<phase name='parse_hir' stamp='0.432'>
+<bc code='184' bci='68'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1097' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='96'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.432'/>
+</phase>
+<parse_done stamp='0.432'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.432'>
+<phase_done name='optimize_blocks' stamp='0.432'/>
+</phase>
+<phase name='gvn' stamp='0.432'>
+<phase_done name='gvn' stamp='0.432'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.432'>
+<phase_done name='rangeCheckElimination' stamp='0.432'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.432'>
+<phase_done name='optimize_null_checks' stamp='0.432'/>
+</phase>
+<phase_done name='buildIR' stamp='0.432'/>
+</phase>
+<phase name='emit_lir' stamp='0.432'>
+<phase name='lirGeneration' stamp='0.432'>
+<phase_done name='lirGeneration' stamp='0.432'/>
+</phase>
+<phase name='linearScan' stamp='0.432'>
+<phase_done name='linearScan' stamp='0.432'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.432'/>
+</phase>
+<phase name='codeemit' stamp='0.432'>
+<phase_done name='codeemit' stamp='0.432'/>
+</phase>
+<phase name='codeinstall' stamp='0.432'>
+<phase_done name='codeinstall' stamp='0.432'/>
+</phase>
+<code_cache total_blobs='1221' nmethods='710' adapters='262' free_code_cache='246765184'/>
+<task_done success='1' nmsize='1304' count='427' stamp='0.432'/>
+</task>
+<task compile_id='730' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append (C)V' bytes='87' count='263' iicount='263' level='3' stamp='0.445'>
+<phase name='setup' stamp='0.445'>
+<phase_done name='setup' stamp='0.445'/>
+</phase>
+<phase name='buildIR' stamp='0.445'>
+<type id='977' name='void'/>
+<type id='970' name='char'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1094' holder='1093' name='append' return='977' arguments='970' flags='1' bytes='87' iicount='263'/>
+<parse method='1094'  stamp='0.445'>
+<phase name='parse_hir' stamp='0.445'>
+<bc code='184' bci='58'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1097' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.445'/>
+</phase>
+<parse_done stamp='0.445'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.445'>
+<phase_done name='optimize_blocks' stamp='0.445'/>
+</phase>
+<phase name='gvn' stamp='0.445'>
+<phase_done name='gvn' stamp='0.445'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.445'>
+<phase_done name='rangeCheckElimination' stamp='0.445'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.445'>
+<phase_done name='optimize_null_checks' stamp='0.445'/>
+</phase>
+<phase_done name='buildIR' stamp='0.445'/>
+</phase>
+<phase name='emit_lir' stamp='0.445'>
+<phase name='lirGeneration' stamp='0.445'>
+<phase_done name='lirGeneration' stamp='0.445'/>
+</phase>
+<phase name='linearScan' stamp='0.445'>
+<phase_done name='linearScan' stamp='0.445'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.445'/>
+</phase>
+<phase name='codeemit' stamp='0.445'>
+<phase_done name='codeemit' stamp='0.445'/>
+</phase>
+<phase name='codeinstall' stamp='0.445'>
+<phase_done name='codeinstall' stamp='0.445'/>
+</phase>
+<code_cache total_blobs='1248' nmethods='723' adapters='262' free_code_cache='246749056'/>
+<task_done success='1' nmsize='968' count='263' stamp='0.445'/>
+</task>
+<task compile_id='736' method='java.util.regex.Matcher &lt;init&gt; (Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V' bytes='95' count='256' iicount='256' level='3' stamp='0.459'>
+<phase name='setup' stamp='0.459'>
+<phase_done name='setup' stamp='0.459'/>
+</phase>
+<phase name='buildIR' stamp='0.459'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.regex.Pattern' flags='17'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 1095' flags='0' bytes='95' iicount='256'/>
+<parse method='1096'  stamp='0.459'>
+<phase name='parse_hir' stamp='0.459'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='39037'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='184' bci='55'/>
+<type id='975' name='int'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='max' return='975' arguments='975 975' flags='9' bytes='11' compile_id='472' compiler='c1' level='3' iicount='866'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='90'/>
+<method id='1105' holder='1093' name='reset' return='1093' flags='1' bytes='128' compile_id='686' compiler='c1' level='3' iicount='257'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.460'/>
+</phase>
+<parse_done stamp='0.460'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.460'>
+<phase_done name='optimize_blocks' stamp='0.460'/>
+</phase>
+<phase name='gvn' stamp='0.460'>
+<phase_done name='gvn' stamp='0.460'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.460'>
+<phase_done name='rangeCheckElimination' stamp='0.460'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.460'>
+<phase_done name='optimize_null_checks' stamp='0.460'/>
+</phase>
+<phase_done name='buildIR' stamp='0.460'/>
+</phase>
+<phase name='emit_lir' stamp='0.460'>
+<phase name='lirGeneration' stamp='0.460'>
+<phase_done name='lirGeneration' stamp='0.460'/>
+</phase>
+<phase name='linearScan' stamp='0.460'>
+<phase_done name='linearScan' stamp='0.460'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.460'/>
+</phase>
+<phase name='codeemit' stamp='0.460'>
+<phase_done name='codeemit' stamp='0.460'/>
+</phase>
+<phase name='codeinstall' stamp='0.460'>
+<phase_done name='codeinstall' stamp='0.460'/>
+</phase>
+<code_cache total_blobs='1272' nmethods='733' adapters='262' free_code_cache='246681600'/>
+<task_done success='1' nmsize='1800' count='258' inlined_bytes='12' stamp='0.460'/>
+</task>
+<task compile_id='740' method='java.lang.StringBuilder &lt;init&gt; (Ljava/lang/String;)V' bytes='18' count='256' iicount='256' level='3' stamp='0.462'>
+<phase name='setup' stamp='0.462'>
+<phase_done name='setup' stamp='0.462'/>
+</phase>
+<phase name='buildIR' stamp='0.462'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1093' holder='1050' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='18' iicount='256'/>
+<parse method='1093'  stamp='0.462'>
+<phase name='parse_hir' stamp='0.462'>
+<bc code='182' bci='2'/>
+<type id='975' name='int'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='35714'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1097' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='59733'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.462'/>
+</parse>
+<parse_done stamp='0.462'/>
+</parse>
+<bc code='183' bci='8'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1100' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='2552'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='13'/>
+<method id='1102' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='5056'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<method id='1104' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='5058'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.462'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.462'/>
+</phase>
+<parse_done stamp='0.462'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.462'>
+<phase_done name='optimize_blocks' stamp='0.462'/>
+</phase>
+<phase name='gvn' stamp='0.462'>
+<phase_done name='gvn' stamp='0.462'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.462'>
+<phase_done name='rangeCheckElimination' stamp='0.462'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.462'>
+<phase_done name='optimize_null_checks' stamp='0.462'/>
+</phase>
+<phase_done name='buildIR' stamp='0.462'/>
+</phase>
+<phase name='emit_lir' stamp='0.462'>
+<phase name='lirGeneration' stamp='0.462'>
+<phase_done name='lirGeneration' stamp='0.462'/>
+</phase>
+<phase name='linearScan' stamp='0.462'>
+<phase_done name='linearScan' stamp='0.462'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.462'/>
+</phase>
+<phase name='codeemit' stamp='0.462'>
+<phase_done name='codeemit' stamp='0.462'/>
+</phase>
+<phase name='codeinstall' stamp='0.462'>
+<phase_done name='codeinstall' stamp='0.462'/>
+</phase>
+<code_cache total_blobs='1277' nmethods='736' adapters='262' free_code_cache='246672128'/>
+<task_done success='1' nmsize='1208' count='257' inlined_bytes='34' stamp='0.462'/>
+</task>
+<task compile_id='755' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='18098' iicount='18098' decompiles='1' level='3' stamp='0.492'>
+<phase name='setup' stamp='0.492'>
+<phase_done name='setup' stamp='0.492'/>
+</phase>
+<phase name='buildIR' stamp='0.492'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver' flags='4'/>
+<method id='1094' holder='1093' name='next' return='975' flags='1' bytes='2277' iicount='18103'/>
+<parse method='1094'  stamp='0.492'>
+<phase name='parse_hir' stamp='0.492'>
+<bc code='182' bci='19'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1101' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='656' compiler='c2' level='4' iicount='20109'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='37'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1104' holder='1096' name='scanChar' return='975' arguments='1103' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='47'/>
+<type id='977' name='void'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1106' holder='1099' name='setScannerState' return='977' arguments='975' flags='20' bytes='6' compile_id='511' compiler='c1' level='1' iicount='157'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='69'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='79'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='91'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='183' bci='107'/>
+<method id='1110' holder='1093' name='startOfMarkup' return='977' flags='2' bytes='280' iicount='6'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1363'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1112' holder='1098' name='clear' return='977' flags='1' bytes='11' compile_id='564' compiler='c1' level='3' iicount='7226'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1377'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1115' holder='1100' name='scanPI' return='977' arguments='1098' flags='4' bytes='39' iicount='1'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1115'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1386'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='2172'/>
+<type id='969' name='boolean'/>
+<method id='1117' holder='1093' name='scanRootElementHook' return='969' flags='4' bytes='2' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='2194'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1342'/>
+<method id='1118' holder='1099' name='scanComment' return='977' flags='4' bytes='31' iicount='1'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1118'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='182' bci='4'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='12'/>
+<method id='1120' holder='1100' name='scanComment' return='977' arguments='1098' flags='4' bytes='109' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1120'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1351'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1651'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1674'/>
+<method id='1122' holder='1096' name='skipChar' return='969' arguments='975 1103' flags='4' bytes='285' compile_id='738' compiler='c2' level='4' iicount='11786'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1692'/>
+<method id='1124' holder='1100' name='scanCharReferenceValue' return='975' arguments='1098 1098' flags='4' bytes='763' iicount='1'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1124'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1725'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1741'/>
+<method id='1126' holder='1099' name='scanEntityReference' return='977' arguments='1098' flags='4' bytes='377' iicount='2'/>
+<call method='1126' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1772'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='182' bci='1839'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.493'/>
+</parse>
+<bc code='184' bci='1863'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1129' holder='1099' name='access$200' return='983' arguments='1099' flags='4104' bytes='5' iicount='1'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1866'/>
+<klass id='1128' name='com.sun.xml.internal.stream.XMLEntityStorage' flags='1'/>
+<method id='1131' holder='1128' name='isDeclaredEntity' return='969' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1128'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1128'/>
+<parse method='1131'>
+<bc code='185' bci='5'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1133' name='java.util.Map' flags='1537'/>
+<method id='1134' holder='1133' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1134' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1884'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1465'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1488'/>
+<method id='1136' holder='1099' name='scanCDATASection' return='969' arguments='1098 969' flags='4' bytes='126' iicount='1'/>
+<call method='1136' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1136'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1498'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1548'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1907'/>
+<method id='1139' holder='1096' name='skipString' return='969' arguments='983' flags='4' bytes='122' compile_id='676' compiler='c1' level='3' iicount='1943'/>
+<call method='1139' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1937'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1940'/>
+<method id='1141' holder='1100' name='isValidNameChar' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<call method='1141' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1141'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='184' bci='1'/>
+<klass id='1143' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1144' holder='1143' name='isName' return='969' arguments='975' flags='9' bytes='23' iicount='1'/>
+<call method='1144' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<parse_done stamp='0.494'/>
+</parse>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1953'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='1965'/>
+<method id='1149' holder='1098' name='append' return='977' arguments='983' flags='1' bytes='103' iicount='1'/>
+<call method='1149' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='1989'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1992'/>
+<method id='1151' holder='1100' name='isValidNCName' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<call method='1151' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1151'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='184' bci='1'/>
+<method id='1153' holder='1143' name='isNCName' return='969' arguments='975' flags='9' bytes='24' iicount='1'/>
+<call method='1153' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<parse_done stamp='0.494'/>
+</parse>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='2013'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='2017'/>
+<type id='970' name='char'/>
+<method id='1155' holder='1098' name='append' return='977' arguments='970' flags='1' bytes='87' compile_id='730' compiler='c1' level='3' iicount='330'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='2034'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='2037'/>
+<call method='1141' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1141'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='184' bci='1'/>
+<call method='1144' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<parse_done stamp='0.494'/>
+</parse>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='2058'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='2062'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='2105'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1157' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1158' holder='1157' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='4925'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1157'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1157'/>
+<bc code='182' bci='2116'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='2131'/>
+<method id='1160' holder='1099' name='scanPIData' return='977' arguments='983 1098' flags='4' bytes='22' iicount='1'/>
+<call method='1160' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1160'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1160'>
+<bc code='183' bci='3'/>
+<method id='1162' holder='1100' name='scanPIData' return='977' arguments='983 1098' flags='4' bytes='186' iicount='1'/>
+<call method='1162' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='2142'/>
+<method id='1164' holder='1099' name='scanXMLDeclOrTextDecl' return='977' arguments='969' flags='4' bytes='183' iicount='1'/>
+<call method='1164' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1164'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2165'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.494'/>
+</parse>
+<bc code='182' bci='590'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='618'/>
+<klass id='1114' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1168' holder='1096' name='scanContent' return='975' arguments='1114' flags='4' bytes='690' compile_id='724' compiler='c2' level='4' iicount='6079'/>
+<call method='1168' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='632'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='650'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='683'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='696'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='184' bci='699'/>
+<method id='1171' holder='1143' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='34637'/>
+<call method='1171' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1171'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='732'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='744'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='184' bci='769'/>
+<method id='1173' holder='1099' name='access$100' return='977' arguments='1099' flags='4104' bytes='5' iicount='19'/>
+<call method='1173' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<bc code='183' bci='1'/>
+<method id='1175' holder='1099' name='bufferContent' return='977' flags='2' bytes='25' iicount='25'/>
+<call method='1175' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1175'>
+<bc code='182' bci='8'/>
+<method id='1177' holder='1098' name='append' return='977' arguments='1114' flags='1' bytes='17' compile_id='717' compiler='c1' level='3' iicount='581'/>
+<call method='1177' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1177'>
+<bc code='182' bci='13'/>
+<method id='1179' holder='1098' name='append' return='977' arguments='1082 975 975' flags='1' bytes='110' compile_id='718' compiler='c1' level='3' iicount='581'/>
+<call method='1179' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='184' bci='789'/>
+<call method='1173' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<bc code='183' bci='1'/>
+<call method='1175' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1175'>
+<bc code='182' bci='8'/>
+<call method='1177' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1177'>
+<bc code='182' bci='13'/>
+<call method='1179' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='816'/>
+<klass id='1181' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<method id='1182' holder='1181' name='isIgnorableWhiteSpace' return='969' arguments='1114' unloaded='1'/>
+<call method='1182' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='831'/>
+<call method='1173' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<bc code='183' bci='1'/>
+<call method='1175' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1175'>
+<bc code='182' bci='8'/>
+<call method='1177' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1177'>
+<bc code='182' bci='13'/>
+<call method='1179' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='848'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='869'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='906'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='910'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='931'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='946'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='959'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='974'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='990'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1003'/>
+<klass id='1184' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1185' holder='1100' name='reportFatalError' return='977' arguments='983 1184' flags='4' bytes='18' iicount='1'/>
+<call method='1185' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1185'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1185'>
+<bc code='182' bci='13'/>
+<klass id='1189' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1187' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1190' holder='1187' name='reportError' return='983' arguments='1189 983 983 1184 974' flags='1' bytes='13' iicount='1'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<parse method='1190'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1192' holder='1187' name='reportError' return='983' arguments='1189 983 983 1184 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1192' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<parse_done stamp='0.495'/>
+</parse>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='1030'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1040'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='1062'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1072'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.495'/>
+</parse>
+<bc code='182' bci='1088'/>
+<method id='1194' holder='1100' name='isInvalidLiteral' return='969' arguments='975' flags='4' bytes='5' iicount='13'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1194'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1194'>
+<bc code='184' bci='1'/>
+<method id='1196' holder='1143' name='isInvalid' return='969' arguments='975' flags='9' bytes='13' iicount='13'/>
+<call method='1196' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1196'>
+<bc code='184' bci='1'/>
+<method id='1198' holder='1143' name='isValid' return='969' arguments='975' flags='9' bytes='34' iicount='13'/>
+<call method='1198' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='184' bci='1095'/>
+<method id='1200' holder='1143' name='isHighSurrogate' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1200' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1200'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='1112'/>
+<method id='1202' holder='1100' name='scanSurrogates' return='969' arguments='1098' flags='4' bytes='108' iicount='1'/>
+<call method='1202' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1202'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1122'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='184' bci='1143'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1205' holder='1076' name='toString' return='983' arguments='975 975' flags='9' bytes='128' iicount='1'/>
+<call method='1205' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1147'/>
+<call method='1185' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1185'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1185'>
+<bc code='182' bci='13'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<parse method='1190'>
+<bc code='182' bci='9'/>
+<call method='1192' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<parse_done stamp='0.496'/>
+</parse>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='1158'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='1176'/>
+<method id='1207' holder='1099' name='scanContent' return='975' arguments='1098' flags='4' bytes='171' iicount='13'/>
+<call method='1207' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1207'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1196'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='1247'/>
+<call method='1182' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='427'/>
+<method id='1209' holder='1099' name='scanStartElement' return='969' flags='4' bytes='446' compile_id='573' compiler='c1' level='3' iicount='6839'/>
+<call method='1209' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='449'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='461'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='1282'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='1296'/>
+<method id='1210' holder='1093' name='elementDepthIsZeroHook' return='969' flags='4' bytes='2' iicount='1'/>
+<call method='1210' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='1312'/>
+<method id='1211' holder='1099' name='scanEndElement' return='975' flags='4' bytes='170' compile_id='675' compiler='c1' level='3' iicount='1602'/>
+<call method='1211' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1211'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1319'/>
+<call method='1210' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='1333'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='2206'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1112'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='2221'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1124'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2244'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='186' bci='2260'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1216' holder='1035' name='invokeBasic' return='983' arguments='975' unloaded='1'/>
+<call method='1216' instr='invokedynamic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='2265'/>
+<klass id='1215' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<method id='1218' holder='1215' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1218' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='2272'/>
+<klass id='1219' name='java.io.EOFException' flags='1'/>
+<method id='1220' holder='1093' name='endOfFileHook' return='977' arguments='1219' flags='4' bytes='21' iicount='1'/>
+<call method='1220' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.496'/>
+</phase>
+<parse_done stamp='0.496'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.496'>
+<phase_done name='optimize_blocks' stamp='0.496'/>
+</phase>
+<phase name='gvn' stamp='0.497'>
+<phase_done name='gvn' stamp='0.497'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.497'>
+<phase_done name='rangeCheckElimination' stamp='0.497'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.497'>
+<phase_done name='optimize_null_checks' stamp='0.497'/>
+</phase>
+<phase_done name='buildIR' stamp='0.497'/>
+</phase>
+<phase name='emit_lir' stamp='0.497'>
+<phase name='lirGeneration' stamp='0.497'>
+<phase_done name='lirGeneration' stamp='0.498'/>
+</phase>
+<phase name='linearScan' stamp='0.498'>
+<phase_done name='linearScan' stamp='0.500'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.500'/>
+</phase>
+<phase name='codeemit' stamp='0.500'>
+<phase_done name='codeemit' stamp='0.501'/>
+</phase>
+<phase name='codeinstall' stamp='0.501'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='leaf_type' ctxk='1128'/>
+<dependency type='leaf_type' ctxk='1157'/>
+<dependency type='leaf_type' ctxk='1187'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1115'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1118'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1120'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1124'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1126'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1136'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1141'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1151'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1160'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1164'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1185'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1194'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1202'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1207'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1211'/>
+<phase_done name='codeinstall' stamp='0.501'/>
+</phase>
+<code_cache total_blobs='1333' nmethods='764' adapters='262' free_code_cache='246518528'/>
+<task_done success='1' nmsize='26024' count='19570' inlined_bytes='666' stamp='0.501'/>
+</task>
+<task compile_id='775' method='java.util.AbstractCollection toArray ([Ljava/lang/Object;)[Ljava/lang/Object;' bytes='144' count='382' backedge_count='2001' iicount='382' level='3' stamp='0.516'>
+<phase name='setup' stamp='0.516'>
+<phase_done name='setup' stamp='0.516'/>
+</phase>
+<phase name='buildIR' stamp='0.516'>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1095' holder='1093' name='toArray' return='1094' arguments='1094' flags='1' bytes='144' iicount='382'/>
+<parse method='1095'  stamp='0.516'>
+<phase name='parse_hir' stamp='0.516'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1093' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='19'/>
+<method id='1102' holder='984' name='getComponentType' return='984' flags='1' bytes='14' compile_id='266' compiler='c1' level='3' iicount='919'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1104' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='184' bci='23'/>
+<klass id='1105' name='java.lang.reflect.Array' flags='17'/>
+<method id='1106' holder='1105' name='newInstance' return='982' arguments='984 975' flags='9' bytes='6' compile_id='275' compiler='c1' level='3' iicount='889'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='2'/>
+<method id='1108' holder='1105' name='newArray' return='982' arguments='984 975' flags='266' bytes='0' compile_id='276' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='182' bci='31'/>
+<klass id='1109' name='java.util.Iterator' flags='1537'/>
+<method id='1110' holder='1093' name='iterator' return='1109' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='48'/>
+<method id='1111' holder='1109' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='79'/>
+<klass id='1112' name='java.util.Arrays' flags='1'/>
+<method id='1113' holder='1112' name='copyOf' return='1094' arguments='1094 975' flags='9' bytes='10' iicount='1367'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='3'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1116' holder='1112' name='copyOf' return='1094' arguments='1094 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='2098'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='184' bci='89'/>
+<type id='977' name='void'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1120' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1120' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='185' bci='111'/>
+<method id='1122' holder='1109' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1122' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='125'/>
+<call method='1111' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='136'/>
+<method id='1123' holder='1093' name='finishToArray' return='1094' arguments='1094 1109' flags='10' bytes='83' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.517'/>
+</phase>
+<parse_done stamp='0.517'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.517'>
+<phase_done name='optimize_blocks' stamp='0.517'/>
+</phase>
+<phase name='gvn' stamp='0.517'>
+<phase_done name='gvn' stamp='0.517'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.517'>
+<phase_done name='rangeCheckElimination' stamp='0.517'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.517'>
+<phase_done name='optimize_null_checks' stamp='0.517'/>
+</phase>
+<phase_done name='buildIR' stamp='0.517'/>
+</phase>
+<phase name='emit_lir' stamp='0.517'>
+<phase name='lirGeneration' stamp='0.517'>
+<phase_done name='lirGeneration' stamp='0.517'/>
+</phase>
+<phase name='linearScan' stamp='0.517'>
+<phase_done name='linearScan' stamp='0.517'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.517'/>
+</phase>
+<phase name='codeemit' stamp='0.517'>
+<phase_done name='codeemit' stamp='0.517'/>
+</phase>
+<phase name='codeinstall' stamp='0.517'>
+<phase_done name='codeinstall' stamp='0.518'/>
+</phase>
+<code_cache total_blobs='1346' nmethods='773' adapters='262' free_code_cache='246501376'/>
+<task_done success='1' nmsize='4952' count='387' backedge_count='2015' inlined_bytes='30' stamp='0.518'/>
+</task>
+<task compile_id='782' method='com.sun.org.apache.xerces.internal.impl.XMLScanner getStringBuffer ()Lcom/sun/org/apache/xerces/internal/util/XMLStringBuffer;' bytes='76' count='260' iicount='260' level='3' stamp='0.542'>
+<phase name='setup' stamp='0.542'>
+<phase_done name='setup' stamp='0.542'/>
+</phase>
+<phase name='buildIR' stamp='0.542'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1095' holder='1093' name='getStringBuffer' return='1094' flags='0' bytes='76' iicount='260'/>
+<parse method='1095'  stamp='0.542'>
+<phase name='parse_hir' stamp='0.542'>
+<bc code='182' bci='19'/>
+<type id='975' name='int'/>
+<klass id='1097' name='java.util.ArrayList' flags='1'/>
+<method id='1098' holder='1097' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1098'>
+<parse_done stamp='0.542'/>
+</parse>
+<bc code='183' bci='51'/>
+<type id='977' name='void'/>
+<method id='1100' holder='1094' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='35'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='3'/>
+<method id='1102' holder='1094' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='12' iicount='36'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<klass id='1104' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='83'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1107' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='45698'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<bc code='182' bci='70'/>
+<type id='969' name='boolean'/>
+<method id='1109' holder='1097' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='4680'/>
+<call method='1109' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1109'>
+<bc code='183' bci='20'/>
+<klass id='1112' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1113' holder='1097' name='add' return='977' arguments='982 1112 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='4682'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='7'/>
+<method id='1117' holder='1097' name='grow' return='1112' flags='2' bytes='11' iicount='1313'/>
+<call method='1117' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='7'/>
+<method id='1119' holder='1097' name='grow' return='1112' arguments='975' flags='2' bytes='18' iicount='1315'/>
+<call method='1119' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='7'/>
+<method id='1121' holder='1097' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' compile_id='668' compiler='c1' level='3' iicount='1315'/>
+<call method='1121' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1123' name='java.util.Arrays' flags='1'/>
+<method id='1124' holder='1123' name='copyOf' return='1112' arguments='1112 975' flags='9' bytes='10' iicount='1577'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1127' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1129' holder='1123' name='copyOf' return='1112' arguments='1112 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='2308'/>
+<call method='1129' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<parse_done stamp='0.542'/>
+</parse>
+<bc code='182' bci='40'/>
+<method id='1132' holder='1097' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='756' compiler='c2' level='4' iicount='7546'/>
+<call method='1132' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1132'>
+<bc code='184' bci='5'/>
+<klass id='1134' name='java.util.Objects' flags='17'/>
+<method id='1135' holder='1134' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='7761'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1135'>
+<bc code='184' bci='3'/>
+<klass id='1138' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1137' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1139' holder='1137' name='checkIndex' return='975' arguments='975 975 1138' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='7761'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='184' bci='12'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1141' holder='1137' name='outOfBoundsCheckIndex' return='993' arguments='1138 975 975' flags='10' bytes='25' iicount='1'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.543'/>
+</parse>
+<parse_done stamp='0.543'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1143' holder='1097' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='7564'/>
+<call method='1143' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1143'>
+<parse_done stamp='0.543'/>
+</parse>
+<parse_done stamp='0.543'/>
+</parse>
+<bc code='192' bci='43'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='parse_hir' stamp='0.543'/>
+</phase>
+<parse_done stamp='0.543'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.543'>
+<phase_done name='optimize_blocks' stamp='0.543'/>
+</phase>
+<phase name='gvn' stamp='0.543'>
+<phase_done name='gvn' stamp='0.543'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.543'>
+<phase_done name='rangeCheckElimination' stamp='0.543'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.543'>
+<phase_done name='optimize_null_checks' stamp='0.543'/>
+</phase>
+<phase_done name='buildIR' stamp='0.543'/>
+</phase>
+<phase name='emit_lir' stamp='0.543'>
+<phase name='lirGeneration' stamp='0.543'>
+<phase_done name='lirGeneration' stamp='0.543'/>
+</phase>
+<phase name='linearScan' stamp='0.543'>
+<phase_done name='linearScan' stamp='0.543'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.543'/>
+</phase>
+<phase name='codeemit' stamp='0.543'>
+<phase_done name='codeemit' stamp='0.543'/>
+</phase>
+<phase name='codeinstall' stamp='0.543'>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.543'/>
+</phase>
+<code_cache total_blobs='1357' nmethods='780' adapters='262' free_code_cache='246466560'/>
+<task_done success='1' nmsize='3592' count='261' inlined_bytes='158' stamp='0.543'/>
+</task>
+<task compile_id='786' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='6436' iicount='6437' decompiles='1' unstable_if_traps='1' level='3' stamp='0.546'>
+<phase name='setup' stamp='0.546'>
+<phase_done name='setup' stamp='0.546'/>
+</phase>
+<phase name='buildIR' stamp='0.546'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='endElement' return='977' arguments='983 983 983' flags='1' bytes='718' iicount='6438'/>
+<parse method='1094'  stamp='0.546'>
+<phase name='parse_hir' stamp='0.546'>
+<bc code='182' bci='4'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='14'/>
+<klass id='1101' name='java.util.Deque' flags='1537'/>
+<method id='1102' holder='1101' name='pop' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='24'/>
+<type id='975' name='int'/>
+<method id='1103' holder='1101' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='43'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='60'/>
+<method id='1107' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' compile_id='502' compiler='c1' level='3' iicount='8530'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='3'/>
+<method id='1109' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' compile_id='713' compiler='c2' level='4' iicount='7630'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.546'/>
+</parse>
+<bc code='182' bci='77'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='87'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='99'/>
+<method id='1114' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1116' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1116' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.546'/>
+</parse>
+<bc code='185' bci='106'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='111'/>
+<klass id='1118' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='182' bci='120'/>
+<klass id='1120' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<klass id='1119' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1121' holder='1119' name='getMethod' return='1120' flags='1' bytes='5' compile_id='715' compiler='c1' level='1' iicount='129'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1121'>
+<parse_done stamp='0.546'/>
+</parse>
+<bc code='182' bci='129'/>
+<method id='1123' holder='1118' name='getMethod' return='1120' flags='1' bytes='5' iicount='98'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.546'/>
+</parse>
+<bc code='182' bci='132'/>
+<method id='1125' holder='1120' name='equals' return='969' arguments='982' flags='1' bytes='62' iicount='1'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<bc code='182' bci='155'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.546'/>
+</parse>
+<bc code='184' bci='165'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1129' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='344'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='28'/>
+<method id='1135' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='414'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1137' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1159'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='1'/>
+<method id='1139' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='45923'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='184' bci='169'/>
+<klass id='1128' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1141' holder='983' name='format' return='983' arguments='983 1128' flags='137' bytes='16' iicount='1'/>
+<call method='1141' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='183' bci='4'/>
+<klass id='1143' name='java.util.Formatter' unloaded='1'/>
+<method id='1144' holder='1143' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1144' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='9'/>
+<method id='1145' holder='1143' name='format' return='1143' arguments='983 1128' unloaded='1'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='12'/>
+<method id='1146' holder='1143' name='toString' return='983' unloaded='1'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='183' bci='172'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<call method='1116' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='179'/>
+<method id='1147' holder='1119' name='getLateInlineCall' return='1118' flags='1' bytes='5' iicount='1'/>
+<call method='1147' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1147'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='183' bci='188'/>
+<klass id='1096' name='java.util.ArrayDeque' flags='1'/>
+<method id='1149' holder='1096' name='&lt;init&gt;' return='977' flags='1' bytes='14' iicount='6'/>
+<call method='1149' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='183' bci='1'/>
+<klass id='1151' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1152' holder='1151' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='2987'/>
+<call method='1152' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<bc code='183' bci='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='196'/>
+<method id='1154' holder='1118' name='getBci' return='975' flags='1' bytes='5' iicount='1'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1154'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1154'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='185' bci='206'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='211'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='182' bci='226'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='183' bci='229'/>
+<method id='1156' holder='1118' name='&lt;init&gt;' return='977' arguments='975 1120' flags='0' bytes='15' iicount='441'/>
+<call method='1156' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<bc code='183' bci='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='238'/>
+<type id='976' name='long'/>
+<method id='1158' holder='1118' name='getInlineId' return='976' flags='1' bytes='5' iicount='1'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1158'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='241'/>
+<method id='1160' holder='1118' name='setInlineId' return='977' arguments='976' flags='1' bytes='6' iicount='1'/>
+<call method='1160' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1160'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='248'/>
+<method id='1162' holder='1096' name='addLast' return='977' arguments='982' flags='1' bytes='51' iicount='47'/>
+<call method='1162' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='255'/>
+<method id='1165' holder='1118' name='add' return='977' arguments='1118' flags='0' bytes='30' iicount='441'/>
+<call method='1165' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1165'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1165'>
+<bc code='182' bci='1'/>
+<klass id='1168' name='java.util.List' flags='1537'/>
+<method id='1169' holder='1118' name='getCalls' return='1168' flags='1' bytes='5' compile_id='647' compiler='c1' level='1' iicount='250'/>
+<call method='1169' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1169'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='183' bci='12'/>
+<klass id='1167' name='java.util.ArrayList' flags='1'/>
+<method id='1171' holder='1167' name='&lt;init&gt;' return='977' flags='1' bytes='12' compile_id='687' compiler='c1' level='3' iicount='913'/>
+<call method='1171' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1171'>
+<bc code='183' bci='1'/>
+<klass id='1173' name='java.util.AbstractList' flags='1025'/>
+<method id='1174' holder='1173' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='1653'/>
+<call method='1174' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1174'>
+<bc code='183' bci='1'/>
+<call method='1152' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<bc code='183' bci='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='19'/>
+<call method='1169' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1169'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1169'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='185' bci='23'/>
+<method id='1178' holder='1168' name='add' return='969' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1178' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='185' bci='266'/>
+<method id='1179' holder='1101' name='isEmpty' return='969' flags='4161' bytes='10' iicount='1'/>
+<call method='1179' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='279'/>
+<method id='1180' holder='1119' name='getCall' return='1118' flags='1' bytes='5' iicount='66'/>
+<call method='1180' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1180'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='284'/>
+<method id='1182' holder='1118' name='findCallSite' return='1118' arguments='1096' flags='1' bytes='105' iicount='1'/>
+<call method='1182' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='182' bci='303'/>
+<klass id='1184' name='java.io.PrintStream' flags='1'/>
+<method id='1188' holder='1184' name='println' return='977' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1188' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1188'>
+<bc code='182' bci='6'/>
+<method id='1190' holder='1184' name='print' return='977' arguments='983' flags='1' bytes='9' iicount='1'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<method id='1192' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='10'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<method id='1194' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1195' holder='983' name='toString' return='983' flags='1' bytes='2' compile_id='777' compiler='c1' level='1' iicount='1070'/>
+<parse method='1195'>
+<parse_done stamp='0.548'/>
+</parse>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1197' holder='1184' name='write' return='977' arguments='983' flags='2' bytes='83' iicount='1'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1199' holder='1184' name='newLine' return='977' flags='2' bytes='73' iicount='1'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='308'/>
+<klass id='1201' name='java.util.Iterator' flags='1537'/>
+<method id='1202' holder='1096' name='iterator' return='1201' flags='1' bytes='9' iicount='1'/>
+<call method='1202' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1202'>
+<bc code='183' bci='5'/>
+<klass id='1204' name='java.util.ArrayDeque$DeqIterator' unloaded='1'/>
+<method id='1205' holder='1204' name='&lt;init&gt;' return='977' arguments='1096' unloaded='1'/>
+<call method='1205' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='185' bci='315'/>
+<method id='1206' holder='1201' name='hasNext' return='969' unloaded='1'/>
+<call method='1206' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='325'/>
+<method id='1207' holder='1201' name='next' return='982' unloaded='1'/>
+<call method='1207' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='330'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='183' bci='342'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1208' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='3065'/>
+<call method='1208' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1208'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1210' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='3511'/>
+<call method='1210' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='347'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='350'/>
+<method id='1212' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1212' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1212'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1217' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6202'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<method id='1219' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='6202'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='355'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='360'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1154'>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='363'/>
+<method id='1222' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='565'/>
+<call method='1222' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1222'>
+<bc code='183' bci='2'/>
+<method id='1224' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='565'/>
+<call method='1224' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='368'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='373'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1158'>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='376'/>
+<method id='1226' holder='1050' name='append' return='1050' arguments='976' flags='1' bytes='8' iicount='1'/>
+<call method='1226' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1226'>
+<bc code='183' bci='2'/>
+<method id='1228' holder='1048' name='append' return='1048' arguments='976' flags='1' bytes='60' iicount='1'/>
+<call method='1228' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='379'/>
+<method id='1230' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='3515'/>
+<call method='1230' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1230'>
+<bc code='182' bci='1'/>
+<method id='1232' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='6954'/>
+<call method='1232' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1232'>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1235' name='java.lang.StringLatin1' flags='16'/>
+<method id='1236' holder='1235' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='6147'/>
+<call method='1236' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1236'>
+<bc code='184' bci='9'/>
+<klass id='1238' name='java.util.Arrays' flags='1'/>
+<method id='1239' holder='1238' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1239' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1241' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='7421'/>
+<call method='1241' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1241'>
+<bc code='183' bci='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.548'/>
+</parse>
+<parse_done stamp='0.548'/>
+</parse>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1243' name='java.lang.StringUTF16' flags='16'/>
+<method id='1244' holder='1243' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1244' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='382'/>
+<call method='1188' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1188'>
+<bc code='182' bci='6'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='390'/>
+<method id='1246' holder='1096' name='getLast' return='982' flags='1' bytes='33' iicount='1'/>
+<call method='1246' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1246'>
+<bc code='184' bci='12'/>
+<method id='1248' holder='1096' name='dec' return='975' arguments='975 975' flags='24' bytes='13' compile_id='661' compiler='c1' level='3' iicount='2807'/>
+<call method='1248' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1248'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='184' bci='15'/>
+<method id='1250' holder='1096' name='elementAt' return='982' arguments='1128 975' flags='24' bytes='4' compile_id='655' compiler='c1' level='3' iicount='3945'/>
+<call method='1250' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1250'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='27'/>
+<klass id='1252' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1253' holder='1252' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1253' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='192' bci='393'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='182' bci='400'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1158'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='414'/>
+<call method='1188' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1188'>
+<bc code='182' bci='6'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1195'>
+<parse_done stamp='0.549'/>
+</parse>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='421'/>
+<call method='1180' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1180'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='426'/>
+<method id='1255' holder='1118' name='findCallSite2' return='1096' arguments='1118' flags='1' bytes='90' iicount='1'/>
+<call method='1255' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='182' bci='433'/>
+<call method='1202' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1202'>
+<bc code='183' bci='5'/>
+<call method='1205' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='185' bci='440'/>
+<call method='1206' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='450'/>
+<call method='1207' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='192' bci='455'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<bc code='183' bci='467'/>
+<call method='1208' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1208'>
+<bc code='183' bci='3'/>
+<call method='1210' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='472'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='475'/>
+<call method='1212' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1212'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='480'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='485'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1154'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='488'/>
+<call method='1222' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1222'>
+<bc code='183' bci='2'/>
+<call method='1224' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='493'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='498'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1158'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='501'/>
+<call method='1226' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1226'>
+<bc code='183' bci='2'/>
+<call method='1228' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='504'/>
+<call method='1230' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1230'>
+<bc code='182' bci='1'/>
+<call method='1232' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1232'>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1236' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1236'>
+<bc code='184' bci='9'/>
+<call method='1239' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1241' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1241'>
+<bc code='183' bci='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.549'/>
+</parse>
+<parse_done stamp='0.549'/>
+</parse>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1244' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='507'/>
+<call method='1188' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1188'>
+<bc code='182' bci='6'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='183' bci='520'/>
+<call method='1208' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1208'>
+<bc code='183' bci='3'/>
+<call method='1210' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.549'/>
+</parse>
+<bc code='182' bci='525'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1123'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='528'/>
+<call method='1212' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1212'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='533'/>
+<call method='1217' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1217'>
+<bc code='183' bci='2'/>
+<call method='1219' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='540'/>
+<call method='1222' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1222'>
+<bc code='183' bci='2'/>
+<call method='1224' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='543'/>
+<call method='1230' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1230'>
+<bc code='182' bci='1'/>
+<call method='1232' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1232'>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1236' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1236'>
+<bc code='184' bci='9'/>
+<call method='1239' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1241' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1241'>
+<bc code='183' bci='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.550'/>
+</parse>
+<parse_done stamp='0.550'/>
+</parse>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1244' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='546'/>
+<call method='1188' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1188'>
+<bc code='182' bci='6'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='553'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<call method='1116' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='563'/>
+<call method='1154' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1154'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1154'>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='577'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1123'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='580'/>
+<method id='1259' holder='1184' name='println' return='977' arguments='982' flags='1' bytes='31' iicount='1'/>
+<call method='1259' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1259'>
+<bc code='184' bci='1'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='587'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<call method='1116' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='594'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='182' bci='599'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1123'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='609'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1158'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='614'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1158'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1158'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='627'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1123'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='630'/>
+<method id='1262' holder='1118' name='setMethod' return='977' arguments='1120' flags='1' bytes='6' iicount='1'/>
+<call method='1262' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1262'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='643'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='646'/>
+<call method='1259' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1259'>
+<bc code='184' bci='1'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='654'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1123'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<parse method='1123'>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='657'/>
+<call method='1259' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1259'>
+<bc code='184' bci='1'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1190' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<parse method='1190'>
+<bc code='184' bci='2'/>
+<call method='1192' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1192'>
+<bc code='182' bci='10'/>
+<call method='1194' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1197' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1199' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='183' bci='664'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<call method='1116' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.551'/>
+</parse>
+<bc code='182' bci='678'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='688'/>
+<klass id='1097' name='java.util.HashMap' flags='1'/>
+<method id='1266' holder='1097' name='clear' return='977' flags='1' bytes='50' compile_id='700' compiler='c1' level='3' iicount='255'/>
+<call method='1266' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='695'/>
+<call method='1266' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='714'/>
+<call method='1116' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.551'/>
+</phase>
+<parse_done stamp='0.551'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.551'>
+<phase_done name='optimize_blocks' stamp='0.551'/>
+</phase>
+<phase name='gvn' stamp='0.552'>
+<phase_done name='gvn' stamp='0.552'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.552'>
+<phase_done name='rangeCheckElimination' stamp='0.552'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.552'>
+<phase_done name='optimize_null_checks' stamp='0.552'/>
+</phase>
+<phase_done name='buildIR' stamp='0.552'/>
+</phase>
+<phase name='emit_lir' stamp='0.552'>
+<phase name='lirGeneration' stamp='0.552'>
+<phase_done name='lirGeneration' stamp='0.553'/>
+</phase>
+<phase name='linearScan' stamp='0.553'>
+<phase_done name='linearScan' stamp='0.555'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.555'/>
+</phase>
+<phase name='codeemit' stamp='0.555'>
+<phase_done name='codeemit' stamp='0.556'/>
+</phase>
+<phase name='codeinstall' stamp='0.556'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1118'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<dependency type='leaf_type' ctxk='1120'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1184'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1154'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1165'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1169'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1118' x='1158'/>
+<phase_done name='codeinstall' stamp='0.556'/>
+</phase>
+<code_cache total_blobs='1388' nmethods='803' adapters='264' free_code_cache='246370816'/>
+<task_done success='1' nmsize='35416' count='6656' inlined_bytes='1318' stamp='0.556'/>
+</task>
+<task compile_id='811' method='jdk.internal.math.FDBigInteger trimLeadingZeros ()V' bytes='57' count='265' iicount='265' level='3' stamp='0.559'>
+<phase name='setup' stamp='0.559'>
+<phase_done name='setup' stamp='0.559'/>
+</phase>
+<phase name='buildIR' stamp='0.559'>
+<type id='977' name='void'/>
+<klass id='1093' name='jdk.internal.math.FDBigInteger' flags='1'/>
+<method id='1094' holder='1093' name='trimLeadingZeros' return='977' flags='2' bytes='57' iicount='269'/>
+<parse method='1094'  stamp='0.559'>
+<phase name='parse_hir' stamp='0.559'>
+<phase_done name='parse_hir' stamp='0.559'/>
+</phase>
+<parse_done stamp='0.559'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.559'>
+<phase_done name='optimize_blocks' stamp='0.559'/>
+</phase>
+<phase name='gvn' stamp='0.559'>
+<phase_done name='gvn' stamp='0.559'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.559'>
+<phase_done name='rangeCheckElimination' stamp='0.559'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.559'>
+<phase_done name='optimize_null_checks' stamp='0.559'/>
+</phase>
+<phase_done name='buildIR' stamp='0.559'/>
+</phase>
+<phase name='emit_lir' stamp='0.559'>
+<phase name='lirGeneration' stamp='0.559'>
+<phase_done name='lirGeneration' stamp='0.559'/>
+</phase>
+<phase name='linearScan' stamp='0.559'>
+<phase_done name='linearScan' stamp='0.559'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.559'/>
+</phase>
+<phase name='codeemit' stamp='0.559'>
+<phase_done name='codeemit' stamp='0.559'/>
+</phase>
+<phase name='codeinstall' stamp='0.559'>
+<phase_done name='codeinstall' stamp='0.559'/>
+</phase>
+<code_cache total_blobs='1399' nmethods='808' adapters='270' free_code_cache='246360320'/>
+<task_done success='1' nmsize='816' count='341' stamp='0.559'/>
+</task>
+<task compile_id='817' method='java.util.Formatter$Flags valueOf ()I' bytes='5' count='132' iicount='132' level='1' stamp='0.560'>
+<phase name='setup' stamp='0.560'>
+<phase_done name='setup' stamp='0.560'/>
+</phase>
+<phase name='buildIR' stamp='0.560'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1094' holder='1093' name='valueOf' return='975' flags='1' bytes='5' iicount='136'/>
+<parse method='1094'  stamp='0.560'>
+<phase name='parse_hir' stamp='0.560'>
+<phase_done name='parse_hir' stamp='0.560'/>
+</phase>
+<parse_done stamp='0.560'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.560'>
+<phase_done name='optimize_blocks' stamp='0.560'/>
+</phase>
+<phase name='gvn' stamp='0.560'>
+<phase_done name='gvn' stamp='0.560'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.560'>
+<phase_done name='rangeCheckElimination' stamp='0.560'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.560'>
+<phase_done name='optimize_null_checks' stamp='0.560'/>
+</phase>
+<phase_done name='buildIR' stamp='0.560'/>
+</phase>
+<phase name='emit_lir' stamp='0.560'>
+<phase name='lirGeneration' stamp='0.560'>
+<phase_done name='lirGeneration' stamp='0.560'/>
+</phase>
+<phase name='linearScan' stamp='0.560'>
+<phase_done name='linearScan' stamp='0.561'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.561'/>
+</phase>
+<phase name='codeemit' stamp='0.561'>
+<phase_done name='codeemit' stamp='0.561'/>
+</phase>
+<phase name='codeinstall' stamp='0.561'>
+<phase_done name='codeinstall' stamp='0.561'/>
+</phase>
+<code_cache total_blobs='1403' nmethods='812' adapters='270' free_code_cache='246355456'/>
+<task_done success='1' nmsize='272' count='162' stamp='0.561'/>
+</task>
+<task compile_id='820' method='java.io.BufferedWriter ensureOpen ()V' bytes='18' count='262' iicount='262' level='3' stamp='0.561'>
+<phase name='setup' stamp='0.561'>
+<phase_done name='setup' stamp='0.561'/>
+</phase>
+<phase name='buildIR' stamp='0.561'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.BufferedWriter' flags='1'/>
+<method id='1094' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' iicount='262'/>
+<parse method='1094'  stamp='0.561'>
+<phase name='parse_hir' stamp='0.561'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1097' name='java.io.IOException' flags='1'/>
+<method id='1099' holder='1097' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.561'/>
+</phase>
+<parse_done stamp='0.561'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.561'>
+<phase_done name='optimize_blocks' stamp='0.561'/>
+</phase>
+<phase name='gvn' stamp='0.561'>
+<phase_done name='gvn' stamp='0.561'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.561'>
+<phase_done name='rangeCheckElimination' stamp='0.561'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.561'>
+<phase_done name='optimize_null_checks' stamp='0.561'/>
+</phase>
+<phase_done name='buildIR' stamp='0.561'/>
+</phase>
+<phase name='emit_lir' stamp='0.561'>
+<phase name='lirGeneration' stamp='0.561'>
+<phase_done name='lirGeneration' stamp='0.561'/>
+</phase>
+<phase name='linearScan' stamp='0.561'>
+<phase_done name='linearScan' stamp='0.561'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.561'/>
+</phase>
+<phase name='codeemit' stamp='0.561'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1410' nmethods='817' adapters='270' free_code_cache='246336128'/>
+<task_done success='1' nmsize='616' count='292' stamp='0.562'/>
+</task>
+<task compile_id='825' method='java.nio.CharBuffer limit (I)Ljava/nio/CharBuffer;' bytes='8' count='265' iicount='265' level='3' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='limit' return='1093' arguments='975' flags='17' bytes='8' iicount='265'/>
+<parse method='1094'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<bc code='183' bci='2'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='limit' return='1064' arguments='975' flags='1' bytes='74' compile_id='485' compiler='c1' level='3' iicount='662'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.562'/>
+</phase>
+<phase name='codeemit' stamp='0.562'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1413' nmethods='820' adapters='270' free_code_cache='246343296'/>
+<task_done success='1' nmsize='392' count='277' stamp='0.562'/>
+</task>
+<task compile_id='826' method='java.io.FileDescriptor access$100 (Ljava/io/FileDescriptor;)Z' bytes='5' count='146' iicount='146' level='1' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.io.FileDescriptor' flags='17'/>
+<method id='1094' holder='1093' name='access$100' return='969' arguments='1093' flags='4104' bytes='5' iicount='146'/>
+<parse method='1094'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.562'/>
+</phase>
+<phase name='codeemit' stamp='0.562'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1417' nmethods='824' adapters='270' free_code_cache='246338944'/>
+<task_done success='1' nmsize='240' count='153' stamp='0.562'/>
+</task>
+<task compile_id='831' method='java.nio.ByteBuffer flip ()Ljava/nio/ByteBuffer;' bytes='7' count='260' iicount='260' level='3' stamp='0.563'>
+<phase name='setup' stamp='0.563'>
+<phase_done name='setup' stamp='0.563'/>
+</phase>
+<phase name='buildIR' stamp='0.563'>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='flip' return='1093' flags='1' bytes='7' iicount='261'/>
+<parse method='1094'  stamp='0.563'>
+<phase name='parse_hir' stamp='0.563'>
+<bc code='183' bci='1'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='flip' return='1064' flags='1' bytes='20' iicount='265'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.563'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.563'/>
+</phase>
+<parse_done stamp='0.563'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.563'>
+<phase_done name='optimize_blocks' stamp='0.563'/>
+</phase>
+<phase name='gvn' stamp='0.563'>
+<phase_done name='gvn' stamp='0.563'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.563'>
+<phase_done name='rangeCheckElimination' stamp='0.563'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.563'>
+<phase_done name='optimize_null_checks' stamp='0.563'/>
+</phase>
+<phase_done name='buildIR' stamp='0.563'/>
+</phase>
+<phase name='emit_lir' stamp='0.563'>
+<phase name='lirGeneration' stamp='0.563'>
+<phase_done name='lirGeneration' stamp='0.563'/>
+</phase>
+<phase name='linearScan' stamp='0.563'>
+<phase_done name='linearScan' stamp='0.563'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.563'/>
+</phase>
+<phase name='codeemit' stamp='0.563'>
+<phase_done name='codeemit' stamp='0.563'/>
+</phase>
+<phase name='codeinstall' stamp='0.563'>
+<phase_done name='codeinstall' stamp='0.563'/>
+</phase>
+<code_cache total_blobs='1424' nmethods='829' adapters='270' free_code_cache='246317952'/>
+<task_done success='1' nmsize='464' count='273' inlined_bytes='20' stamp='0.563'/>
+</task>
+<task compile_id='835' method='sun.nio.cs.UTF_8$Encoder encodeArrayLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='489' count='232' backedge_count='3145' iicount='232' level='3' stamp='0.564'>
+<phase name='setup' stamp='0.564'>
+<phase_done name='setup' stamp='0.564'/>
+</phase>
+<phase name='buildIR' stamp='0.564'>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1095' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Encoder' flags='26'/>
+<method id='1097' holder='1093' name='encodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='489' iicount='232'/>
+<parse method='1097'  stamp='0.564'>
+<phase name='parse_hir' stamp='0.564'>
+<bc code='182' bci='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1099' holder='1094' name='array' return='1082' flags='17' bytes='35' compile_id='818' compiler='c1' level='3' iicount='400'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1103' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1094' name='arrayOffset' return='975' flags='17' bytes='35' compile_id='771' compiler='c1' level='3' iicount='1081'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='10'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1107' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='17'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1109' holder='1064' name='limit' return='975' flags='17' bytes='5' compile_id='481' compiler='c1' level='1' iicount='147'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='28'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1111' holder='1095' name='array' return='1085' flags='17' bytes='35' compile_id='807' compiler='c1' level='3' iicount='718'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='34'/>
+<method id='1113' holder='1095' name='arrayOffset' return='975' flags='17' bytes='35' compile_id='739' compiler='c1' level='3' iicount='1409'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='184' bci='67'/>
+<klass id='1115' name='java.lang.Math' flags='17'/>
+<method id='1116' holder='1115' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='19932'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='184' bci='143'/>
+<method id='1118' holder='1093' name='overflow' return='1096' arguments='1094 975 1095 975' flags='10' bytes='11' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='4'/>
+<klass id='1120' name='sun.nio.cs.UTF_8' flags='0'/>
+<method id='1121' holder='1120' name='access$200' return='977' arguments='1064 975 1064 975' flags='4104' bytes='8' compile_id='819' compiler='c1' level='3' iicount='427'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<method id='1123' holder='1120' name='updatePositions' return='977' arguments='1064 975 1064 975' flags='26' bytes='23' compile_id='822' compiler='c1' level='3' iicount='427'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<method id='1127' holder='1064' name='arrayOffset' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<method id='1128' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='1725'/>
+<call method='1128' instr='invokevirtual'/>
+<method id='1129' holder='1094' name='position' return='1064' arguments='975' flags='4161' bytes='6' compile_id='759' compiler='c1' level='3' iicount='824'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='182' bci='2'/>
+<method id='1131' holder='1094' name='position' return='1094' arguments='975' flags='17' bytes='8' compile_id='760' compiler='c1' level='3' iicount='828'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.565'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='184' bci='184'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='182' bci='2'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='184' bci='229'/>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1137' holder='1070' name='isSurrogate' return='969' arguments='970' flags='9' bytes='18' iicount='105'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='183' bci='247'/>
+<klass id='1139' name='sun.nio.cs.Surrogate$Parser' unloaded='1'/>
+<method id='1140' holder='1139' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1140' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='264'/>
+<method id='1141' holder='1139' name='parse' return='975' arguments='970 1082 975 975' unloaded='1'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='280'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='182' bci='2'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='287'/>
+<method id='1142' holder='1139' name='error' return='1096' unloaded='1'/>
+<call method='1142' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='306'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='182' bci='2'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='184' bci='409'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='182' bci='2'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='184' bci='482'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='182' bci='2'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.567'/>
+</phase>
+<parse_done stamp='0.567'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.567'>
+<phase_done name='optimize_blocks' stamp='0.567'/>
+</phase>
+<phase name='gvn' stamp='0.567'>
+<phase_done name='gvn' stamp='0.567'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.567'>
+<phase_done name='rangeCheckElimination' stamp='0.567'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.567'>
+<phase_done name='optimize_null_checks' stamp='0.567'/>
+</phase>
+<phase_done name='buildIR' stamp='0.567'/>
+</phase>
+<phase name='emit_lir' stamp='0.567'>
+<phase name='lirGeneration' stamp='0.567'>
+<phase_done name='lirGeneration' stamp='0.568'/>
+</phase>
+<phase name='linearScan' stamp='0.568'>
+<phase_done name='linearScan' stamp='0.569'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.569'/>
+</phase>
+<phase name='codeemit' stamp='0.569'>
+<phase_done name='codeemit' stamp='0.570'/>
+</phase>
+<phase name='codeinstall' stamp='0.570'>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1129'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<phase_done name='codeinstall' stamp='0.570'/>
+</phase>
+<code_cache total_blobs='1452' nmethods='857' adapters='270' free_code_cache='246254720'/>
+<task_done success='1' nmsize='15688' count='465' backedge_count='6165' inlined_bytes='573' stamp='0.570'/>
+</task>
+<task compile_id='864' method='sun.nio.cs.StreamEncoder write ([CII)V' bytes='78' count='457' iicount='457' level='3' stamp='0.570'>
+<phase name='setup' stamp='0.570'>
+<phase_done name='setup' stamp='0.570'/>
+</phase>
+<phase name='buildIR' stamp='0.570'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='1082 975 975' flags='1' bytes='78' iicount='458'/>
+<parse method='1094'  stamp='0.570'>
+<phase name='parse_hir' stamp='0.570'>
+<bc code='183' bci='9'/>
+<method id='1097' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' iicount='465'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1099' name='java.io.IOException' flags='1'/>
+<method id='1101' holder='1099' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.570'/>
+</parse>
+<bc code='182' bci='60'/>
+<method id='1103' holder='1093' name='implWrite' return='977' arguments='1082 975 975' flags='0' bytes='15' iicount='477'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1103'>
+<bc code='184' bci='3'/>
+<klass id='1105' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1106' holder='1105' name='wrap' return='1105' arguments='1082 975 975' flags='9' bytes='20' compile_id='829' compiler='c1' level='3' iicount='572'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='7'/>
+<klass id='1108' name='java.nio.HeapCharBuffer' flags='0'/>
+<method id='1109' holder='1108' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='0' bytes='14' compile_id='830' compiler='c1' level='3' iicount='575'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='10'/>
+<method id='1111' holder='1105' name='&lt;init&gt;' return='977' arguments='975 975 975 975 1082 975' flags='0' bytes='22' compile_id='823' compiler='c1' level='3' iicount='618'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='6'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1113' holder='1064' name='&lt;init&gt;' return='977' arguments='975 975 975 975' flags='0' bytes='99' compile_id='731' compiler='c1' level='3' iicount='802'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.570'/>
+</parse>
+<parse_done stamp='0.570'/>
+</parse>
+<bc code='183' bci='16'/>
+<klass id='1115' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1116' holder='1115' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.570'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1117' holder='1093' name='implWrite' return='977' arguments='1105' flags='0' bytes='137' iicount='496'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.571'/>
+</parse>
+<bc code='183' bci='44'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.571'/>
+</phase>
+<parse_done stamp='0.571'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.571'>
+<phase_done name='optimize_blocks' stamp='0.571'/>
+</phase>
+<phase name='gvn' stamp='0.571'>
+<phase_done name='gvn' stamp='0.571'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.571'>
+<phase_done name='rangeCheckElimination' stamp='0.571'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.571'>
+<phase_done name='optimize_null_checks' stamp='0.571'/>
+</phase>
+<phase_done name='buildIR' stamp='0.571'/>
+</phase>
+<phase name='emit_lir' stamp='0.571'>
+<phase name='lirGeneration' stamp='0.571'>
+<phase_done name='lirGeneration' stamp='0.571'/>
+</phase>
+<phase name='linearScan' stamp='0.571'>
+<phase_done name='linearScan' stamp='0.571'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.571'/>
+</phase>
+<phase name='codeemit' stamp='0.571'>
+<phase_done name='codeemit' stamp='0.571'/>
+</phase>
+<phase name='codeinstall' stamp='0.571'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.571'/>
+</phase>
+<code_cache total_blobs='1460' nmethods='865' adapters='270' free_code_cache='246227328'/>
+<task_done success='1' nmsize='2696' count='550' inlined_bytes='89' stamp='0.571'/>
+</task>
+<task compile_id='870' method='java.io.FileOutputStream write ([BII)V' bytes='20' count='553' iicount='553' level='3' stamp='0.571'>
+<phase name='setup' stamp='0.571'>
+<phase_done name='setup' stamp='0.571'/>
+</phase>
+<phase name='buildIR' stamp='0.571'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.io.FileOutputStream' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='1085 975 975' flags='1' bytes='20' iicount='560'/>
+<parse method='1094'  stamp='0.571'>
+<phase name='parse_hir' stamp='0.571'>
+<bc code='185' bci='11'/>
+<type id='969' name='boolean'/>
+<klass id='1100' name='java.io.FileDescriptor' flags='17'/>
+<klass id='1097' name='jdk.internal.misc.JavaIOFileDescriptorAccess' flags='1537'/>
+<method id='1101' holder='1097' name='getAppend' return='969' arguments='1100' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1096' name='java.io.FileDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<method id='1102' holder='1096' name='getAppend' return='969' arguments='1100' flags='1' bytes='5' compile_id='861' compiler='c1' level='3' iicount='566'/>
+<parse method='1102'>
+<bc code='184' bci='1'/>
+<method id='1104' holder='1100' name='access$100' return='969' arguments='1100' flags='4104' bytes='5' compile_id='826' compiler='c1' level='1' iicount='153'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.572'/>
+</parse>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='183' bci='16'/>
+<method id='1106' holder='1093' name='writeBytes' return='977' arguments='1085 975 975 969' flags='258' bytes='0' compile_id='862' compile_kind='c2n' compiler='' level='0' iicount='384'/>
+<call method='1106' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.572'>
+<phase_done name='lirGeneration' stamp='0.572'/>
+</phase>
+<phase name='linearScan' stamp='0.572'>
+<phase_done name='linearScan' stamp='0.572'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.572'/>
+</phase>
+<phase name='codeemit' stamp='0.572'>
+<phase_done name='codeemit' stamp='0.572'/>
+</phase>
+<phase name='codeinstall' stamp='0.572'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.572'/>
+</phase>
+<code_cache total_blobs='1463' nmethods='868' adapters='270' free_code_cache='246222848'/>
+<task_done success='1' nmsize='552' count='590' inlined_bytes='10' stamp='0.572'/>
+</task>
+<task compile_id='875' method='java.lang.StringBuilder length ()I' bytes='5' count='260' iicount='260' level='3' stamp='0.572'>
+<phase name='setup' stamp='0.572'>
+<phase_done name='setup' stamp='0.572'/>
+</phase>
+<phase name='buildIR' stamp='0.572'>
+<type id='975' name='int'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1093' holder='1050' name='length' return='975' flags='4161' bytes='5' iicount='264'/>
+<parse method='1093'  stamp='0.572'>
+<phase name='parse_hir' stamp='0.572'>
+<bc code='183' bci='1'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='length' return='975' flags='1' bytes='5' compile_id='849' compiler='c1' level='1' iicount='140'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.572'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.572'>
+<phase_done name='lirGeneration' stamp='0.572'/>
+</phase>
+<phase name='linearScan' stamp='0.572'>
+<phase_done name='linearScan' stamp='0.572'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.572'/>
+</phase>
+<phase name='codeemit' stamp='0.572'>
+<phase_done name='codeemit' stamp='0.572'/>
+</phase>
+<phase name='codeinstall' stamp='0.572'>
+<phase_done name='codeinstall' stamp='0.572'/>
+</phase>
+<code_cache total_blobs='1466' nmethods='871' adapters='270' free_code_cache='246218752'/>
+<task_done success='1' nmsize='368' count='272' inlined_bytes='5' stamp='0.572'/>
+</task>
+<task compile_id='879' method='java.util.regex.CharPredicates lambda$ASCII_DIGIT$15 (I)Z' bytes='20' count='390' iicount='390' level='3' stamp='0.572'>
+<phase name='setup' stamp='0.572'>
+<phase_done name='setup' stamp='0.572'/>
+</phase>
+<phase name='buildIR' stamp='0.572'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.CharPredicates' flags='0'/>
+<method id='1094' holder='1093' name='lambda$ASCII_DIGIT$15' return='969' arguments='975' flags='4106' bytes='20' iicount='390'/>
+<parse method='1094'  stamp='0.572'>
+<phase name='parse_hir' stamp='0.572'>
+<bc code='184' bci='8'/>
+<klass id='1096' name='java.util.regex.ASCII' flags='16'/>
+<method id='1097' holder='1096' name='isDigit' return='969' arguments='975' flags='8' bytes='18' iicount='396'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.573'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.573'/>
+</phase>
+<parse_done stamp='0.573'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.573'>
+<phase_done name='optimize_blocks' stamp='0.573'/>
+</phase>
+<phase name='gvn' stamp='0.573'>
+<phase_done name='gvn' stamp='0.573'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.573'>
+<phase_done name='rangeCheckElimination' stamp='0.573'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.573'>
+<phase_done name='optimize_null_checks' stamp='0.573'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1470' nmethods='875' adapters='270' free_code_cache='246209536'/>
+<task_done success='1' nmsize='656' count='414' inlined_bytes='18' stamp='0.573'/>
+</task>
+<task compile_id='876' method='com.sun.hotspot.tools.compiler.CallSite getReason ()Ljava/lang/String;' bytes='5' count='138' iicount='138' level='1' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='getReason' return='983' flags='1' bytes='5' iicount='138'/>
+<parse method='1094'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<phase_done name='parse_hir' stamp='0.573'/>
+</phase>
+<parse_done stamp='0.573'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.573'>
+<phase_done name='optimize_blocks' stamp='0.573'/>
+</phase>
+<phase name='gvn' stamp='0.573'>
+<phase_done name='gvn' stamp='0.573'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.573'>
+<phase_done name='rangeCheckElimination' stamp='0.573'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.573'>
+<phase_done name='optimize_null_checks' stamp='0.573'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1472' nmethods='877' adapters='270' free_code_cache='246207616'/>
+<task_done success='1' nmsize='272' count='144' stamp='0.573'/>
+</task>
+<task compile_id='884' method='java.io.PrintStream print (Ljava/lang/String;)V' bytes='9' count='385' iicount='385' level='3' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='print' return='977' arguments='983' flags='1' bytes='9' iicount='389'/>
+<parse method='1094'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<bc code='184' bci='2'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='546'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='10'/>
+<method id='1099' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1100' holder='983' name='toString' return='983' flags='1' bytes='2' compile_id='777' compiler='c1' level='1' iicount='1070'/>
+<parse method='1100'>
+<parse_done stamp='0.573'/>
+</parse>
+<parse_done stamp='0.573'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1102' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='677'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.573'/>
+</phase>
+<parse_done stamp='0.573'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.573'>
+<phase_done name='optimize_blocks' stamp='0.573'/>
+</phase>
+<phase name='gvn' stamp='0.573'>
+<phase_done name='gvn' stamp='0.573'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.573'>
+<phase_done name='rangeCheckElimination' stamp='0.573'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.573'>
+<phase_done name='optimize_null_checks' stamp='0.573'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.574'/>
+</phase>
+<phase name='linearScan' stamp='0.574'>
+<phase_done name='linearScan' stamp='0.574'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.574'/>
+</phase>
+<phase name='codeemit' stamp='0.574'>
+<phase_done name='codeemit' stamp='0.574'/>
+</phase>
+<phase name='codeinstall' stamp='0.574'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.574'/>
+</phase>
+<code_cache total_blobs='1475' nmethods='880' adapters='270' free_code_cache='246203776'/>
+<task_done success='1' nmsize='680' count='406' inlined_bytes='16' stamp='0.574'/>
+</task>
+<task compile_id='887' method='java.lang.ThreadLocal get ()Ljava/lang/Object;' bytes='38' count='257' iicount='257' level='3' stamp='0.574'>
+<phase name='setup' stamp='0.574'>
+<phase_done name='setup' stamp='0.574'/>
+</phase>
+<phase name='buildIR' stamp='0.574'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.ThreadLocal' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' flags='1' bytes='38' iicount='258'/>
+<parse method='1094'  stamp='0.574'>
+<phase name='parse_hir' stamp='0.574'>
+<bc code='184' bci='0'/>
+<klass id='1014' name='java.lang.Thread' flags='1'/>
+<method id='1096' holder='1014' name='currentThread' return='1014' flags='265' bytes='0' iicount='313'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='6'/>
+<klass id='1098' name='java.lang.ThreadLocal$ThreadLocalMap' flags='8'/>
+<method id='1099' holder='1093' name='getMap' return='1098' arguments='1014' flags='0' bytes='5' compile_id='885' compiler='c1' level='3' iicount='270'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.574'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1101' name='java.lang.ThreadLocal$ThreadLocalMap$Entry' flags='8'/>
+<method id='1102' holder='1098' name='access$000' return='1101' arguments='1098 1093' flags='4104' bytes='6' iicount='260'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<method id='1104' holder='1098' name='getEntry' return='1101' arguments='1093' flags='2' bytes='42' iicount='260'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.574'/>
+</parse>
+<bc code='183' bci='34'/>
+<method id='1106' holder='1093' name='setInitialValue' return='982' flags='2' bytes='36' iicount='7'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.575'/>
+</phase>
+<parse_done stamp='0.575'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.575'>
+<phase_done name='optimize_blocks' stamp='0.575'/>
+</phase>
+<phase name='gvn' stamp='0.575'>
+<phase_done name='gvn' stamp='0.575'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.575'>
+<phase_done name='rangeCheckElimination' stamp='0.575'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.575'>
+<phase_done name='optimize_null_checks' stamp='0.575'/>
+</phase>
+<phase_done name='buildIR' stamp='0.575'/>
+</phase>
+<phase name='emit_lir' stamp='0.575'>
+<phase name='lirGeneration' stamp='0.575'>
+<phase_done name='lirGeneration' stamp='0.575'/>
+</phase>
+<phase name='linearScan' stamp='0.575'>
+<phase_done name='linearScan' stamp='0.575'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.575'/>
+</phase>
+<phase name='codeemit' stamp='0.575'>
+<phase_done name='codeemit' stamp='0.575'/>
+</phase>
+<phase name='codeinstall' stamp='0.575'>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<phase_done name='codeinstall' stamp='0.575'/>
+</phase>
+<code_cache total_blobs='1480' nmethods='885' adapters='270' free_code_cache='246193792'/>
+<task_done success='1' nmsize='952' count='265' inlined_bytes='11' stamp='0.575'/>
+</task>
+<task compile_id='892' method='com.sun.hotspot.tools.compiler.Method getHolder ()Ljava/lang/String;' bytes='5' count='129' iicount='129' level='1' stamp='0.576'>
+<phase name='setup' stamp='0.576'>
+<phase_done name='setup' stamp='0.576'/>
+</phase>
+<phase name='buildIR' stamp='0.576'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='getHolder' return='983' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.576'>
+<phase name='parse_hir' stamp='0.576'>
+<phase_done name='parse_hir' stamp='0.576'/>
+</phase>
+<parse_done stamp='0.576'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.576'>
+<phase_done name='optimize_blocks' stamp='0.576'/>
+</phase>
+<phase name='gvn' stamp='0.576'>
+<phase_done name='gvn' stamp='0.576'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.576'>
+<phase_done name='rangeCheckElimination' stamp='0.576'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.576'>
+<phase_done name='optimize_null_checks' stamp='0.576'/>
+</phase>
+<phase_done name='buildIR' stamp='0.576'/>
+</phase>
+<phase name='emit_lir' stamp='0.576'>
+<phase name='lirGeneration' stamp='0.576'>
+<phase_done name='lirGeneration' stamp='0.576'/>
+</phase>
+<phase name='linearScan' stamp='0.576'>
+<phase_done name='linearScan' stamp='0.576'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.577'/>
+</phase>
+<phase name='codeemit' stamp='0.577'>
+<phase_done name='codeemit' stamp='0.577'/>
+</phase>
+<phase name='codeinstall' stamp='0.577'>
+<phase_done name='codeinstall' stamp='0.577'/>
+</phase>
+<code_cache total_blobs='1487' nmethods='889' adapters='270' free_code_cache='246175104'/>
+<task_done success='1' nmsize='272' count='131' stamp='0.577'/>
+</task>
+<task compile_id='897' method='java.io.OutputStream flush ()V' bytes='1' count='1311' iicount='1311' level='1' stamp='0.579'>
+<phase name='setup' stamp='0.579'>
+<phase_done name='setup' stamp='0.579'/>
+</phase>
+<phase name='buildIR' stamp='0.579'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.OutputStream' flags='1025'/>
+<method id='1094' holder='1093' name='flush' return='977' flags='1' bytes='1' compile_id='838' compiler='c1' level='3' iicount='1312'/>
+<parse method='1094'  stamp='0.579'>
+<phase name='parse_hir' stamp='0.579'>
+<phase_done name='parse_hir' stamp='0.579'/>
+</phase>
+<parse_done stamp='0.579'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.579'>
+<phase_done name='optimize_blocks' stamp='0.579'/>
+</phase>
+<phase name='gvn' stamp='0.579'>
+<phase_done name='gvn' stamp='0.579'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.579'>
+<phase_done name='rangeCheckElimination' stamp='0.579'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.579'>
+<phase_done name='optimize_null_checks' stamp='0.579'/>
+</phase>
+<phase_done name='buildIR' stamp='0.579'/>
+</phase>
+<phase name='emit_lir' stamp='0.579'>
+<phase name='lirGeneration' stamp='0.579'>
+<phase_done name='lirGeneration' stamp='0.579'/>
+</phase>
+<phase name='linearScan' stamp='0.579'>
+<phase_done name='linearScan' stamp='0.579'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.579'/>
+</phase>
+<phase name='codeemit' stamp='0.579'>
+<phase_done name='codeemit' stamp='0.579'/>
+</phase>
+<phase name='codeinstall' stamp='0.579'>
+<phase_done name='codeinstall' stamp='0.579'/>
+</phase>
+<code_cache total_blobs='1491' nmethods='894' adapters='270' free_code_cache='246177152'/>
+<task_done success='1' nmsize='272' count='1333' stamp='0.579'/>
+</task>
+<task compile_id='901' method='java.util.regex.Pattern$BmpCharPredicate$$Lambda$15/764577347 is (I)Z' bytes='13' count='258' iicount='258' level='3' stamp='0.580'>
+<phase name='setup' stamp='0.580'>
+<phase_done name='setup' stamp='0.580'/>
+</phase>
+<phase name='buildIR' stamp='0.580'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.regex.Pattern$BmpCharPredicate$$Lambda$15/764577347' flags='4112'/>
+<method id='1095' holder='1094' name='is' return='969' arguments='975' flags='1' bytes='13' iicount='258'/>
+<parse method='1095'  stamp='0.580'>
+<phase name='parse_hir' stamp='0.580'>
+<bc code='183' bci='9'/>
+<klass id='1098' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<klass id='1097' name='java.util.regex.Pattern$BmpCharPredicate' flags='1544'/>
+<method id='1099' holder='1097' name='lambda$union$2' return='969' arguments='1098 975' flags='4098' bytes='26' iicount='258'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='185' bci='2'/>
+<method id='1101' holder='1097' name='is' return='969' arguments='975' flags='4161' bytes='10' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='12'/>
+<method id='1102' holder='1098' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.580'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.580'/>
+</phase>
+<parse_done stamp='0.580'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.580'>
+<phase_done name='optimize_blocks' stamp='0.580'/>
+</phase>
+<phase name='gvn' stamp='0.580'>
+<phase_done name='gvn' stamp='0.580'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.580'>
+<phase_done name='rangeCheckElimination' stamp='0.580'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.580'>
+<phase_done name='optimize_null_checks' stamp='0.580'/>
+</phase>
+<phase_done name='buildIR' stamp='0.580'/>
+</phase>
+<phase name='emit_lir' stamp='0.580'>
+<phase name='lirGeneration' stamp='0.580'>
+<phase_done name='lirGeneration' stamp='0.580'/>
+</phase>
+<phase name='linearScan' stamp='0.580'>
+<phase_done name='linearScan' stamp='0.580'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.580'/>
+</phase>
+<phase name='codeemit' stamp='0.580'>
+<phase_done name='codeemit' stamp='0.580'/>
+</phase>
+<phase name='codeinstall' stamp='0.580'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1498' nmethods='899' adapters='270' free_code_cache='246168320'/>
+<task_done success='1' nmsize='1016' count='262' inlined_bytes='26' stamp='0.581'/>
+</task>
+<task compile_id='906' method='com.sun.hotspot.tools.compiler.CallSite getBci ()I' bytes='5' count='130' iicount='130' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='getBci' return='975' flags='1' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1503' nmethods='904' adapters='270' free_code_cache='246163328'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.581'/>
+</task>
+<task compile_id='910' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer getDecimalExponent ()I' bytes='5' count='132' iicount='132' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer' flags='8'/>
+<method id='1094' holder='1093' name='getDecimalExponent' return='975' flags='1' bytes='5' iicount='133'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1507' nmethods='908' adapters='270' free_code_cache='246160128'/>
+<task_done success='1' nmsize='272' count='135' stamp='0.581'/>
+</task>
+<task compile_id='914' method='com.sun.hotspot.tools.compiler.CallSite getEndNodes ()I' bytes='5' count='136' iicount='136' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='getEndNodes' return='975' flags='1' bytes='5' iicount='136'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.582'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.582'>
+<phase_done name='rangeCheckElimination' stamp='0.582'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.582'>
+<phase_done name='optimize_null_checks' stamp='0.582'/>
+</phase>
+<phase_done name='buildIR' stamp='0.582'/>
+</phase>
+<phase name='emit_lir' stamp='0.582'>
+<phase name='lirGeneration' stamp='0.582'>
+<phase_done name='lirGeneration' stamp='0.582'/>
+</phase>
+<phase name='linearScan' stamp='0.582'>
+<phase_done name='linearScan' stamp='0.582'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.582'/>
+</phase>
+<phase name='codeemit' stamp='0.582'>
+<phase_done name='codeemit' stamp='0.582'/>
+</phase>
+<phase name='codeinstall' stamp='0.582'>
+<phase_done name='codeinstall' stamp='0.582'/>
+</phase>
+<code_cache total_blobs='1510' nmethods='911' adapters='270' free_code_cache='246157696'/>
+<task_done success='1' nmsize='272' count='138' stamp='0.582'/>
+</task>
+<task compile_id='921' method='java.util.Formatter checkText (Ljava/lang/String;II)V' bytes='58' count='171' backedge_count='2064' iicount='171' level='3' stamp='0.584'>
+<phase name='setup' stamp='0.584'>
+<phase_done name='setup' stamp='0.584'/>
+</phase>
+<phase name='buildIR' stamp='0.584'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<method id='1094' holder='1093' name='checkText' return='977' arguments='983 975 975' flags='10' bytes='58' iicount='171'/>
+<parse method='1094'  stamp='0.584'>
+<phase name='parse_hir' stamp='0.584'>
+<bc code='182' bci='9'/>
+<type id='970' name='char'/>
+<method id='1096' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='94178'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='114676'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.584'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1101' name='java.lang.StringLatin1' flags='16'/>
+<method id='1102' holder='1101' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='92840'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='15'/>
+<klass id='1104' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.584'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1106' name='java.lang.StringUTF16' flags='16'/>
+<method id='1107' holder='1106' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<method id='1109' holder='1106' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='2'/>
+<method id='1111' holder='1106' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1113' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' compile_id='833' compiler='c1' level='3' iicount='1625'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1115' holder='1106' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.585'/>
+</parse>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='182' bci='33'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='15'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='2'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.585'/>
+</parse>
+<parse_done stamp='0.585'/>
+</parse>
+<bc code='184' bci='44'/>
+<method id='1117' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' compile_id='846' compiler='c1' level='3' iicount='757'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='47'/>
+<klass id='1116' name='java.util.UnknownFormatConversionException' unloaded='1'/>
+<method id='1119' holder='1116' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.585'/>
+</phase>
+<parse_done stamp='0.585'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.585'>
+<phase_done name='optimize_blocks' stamp='0.585'/>
+</phase>
+<phase name='gvn' stamp='0.585'>
+<phase_done name='gvn' stamp='0.585'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.585'>
+<phase_done name='rangeCheckElimination' stamp='0.585'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.585'>
+<phase_done name='optimize_null_checks' stamp='0.585'/>
+</phase>
+<phase_done name='buildIR' stamp='0.585'/>
+</phase>
+<phase name='emit_lir' stamp='0.585'>
+<phase name='lirGeneration' stamp='0.585'>
+<phase_done name='lirGeneration' stamp='0.585'/>
+</phase>
+<phase name='linearScan' stamp='0.585'>
+<phase_done name='linearScan' stamp='0.585'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.585'/>
+</phase>
+<phase name='codeemit' stamp='0.585'>
+<phase_done name='codeemit' stamp='0.585'/>
+</phase>
+<phase name='codeinstall' stamp='0.585'>
+<phase_done name='codeinstall' stamp='0.585'/>
+</phase>
+<code_cache total_blobs='1519' nmethods='917' adapters='270' free_code_cache='246142208'/>
+<task_done success='1' nmsize='3448' count='187' backedge_count='2256' inlined_bytes='194' stamp='0.585'/>
+</task>
+<task compile_id='923' method='java.io.PrintStream newLine ()V' bytes='73' count='256' iicount='256' level='3' stamp='0.586'>
+<phase name='setup' stamp='0.586'>
+<phase_done name='setup' stamp='0.586'/>
+</phase>
+<phase name='buildIR' stamp='0.586'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='newLine' return='977' flags='2' bytes='73' iicount='256'/>
+<parse method='1094'  stamp='0.586'>
+<phase name='parse_hir' stamp='0.586'>
+<bc code='183' bci='5'/>
+<method id='1099' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='821' compiler='c1' level='3' iicount='3856'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1103' name='java.io.IOException' flags='1'/>
+<method id='1105' holder='1103' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='12'/>
+<klass id='1096' name='java.io.BufferedWriter' flags='1'/>
+<method id='1107' holder='1096' name='newLine' return='977' flags='1' bytes='8' iicount='259'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1107'>
+<bc code='184' bci='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1109' holder='988' name='lineSeparator' return='983' flags='9' bytes='4' compile_id='922' compiler='c1' level='3' iicount='261'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='4'/>
+<klass id='1112' name='java.io.Writer' flags='1025'/>
+<method id='1113' holder='1112' name='write' return='977' arguments='983' flags='1' bytes='11' compile_id='839' compiler='c1' level='3' iicount='1948'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<method id='1115' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='43393'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1117' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='68904'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.586'/>
+</parse>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1120' holder='1112' name='write' return='977' arguments='983 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse_done stamp='0.586'/>
+</parse>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='19'/>
+<method id='1123' holder='1096' name='flushBuffer' return='977' flags='0' bytes='53' compile_id='841' compiler='c1' level='3' iicount='1975'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='26'/>
+<klass id='1097' name='java.io.OutputStreamWriter' flags='1'/>
+<method id='1125' holder='1097' name='flushBuffer' return='977' flags='0' bytes='8' compile_id='842' compiler='c1' level='3' iicount='1981'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1125'>
+<bc code='182' bci='4'/>
+<klass id='1127' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1128' holder='1127' name='flushBuffer' return='977' flags='1' bytes='42' compile_id='843' compiler='c1' level='3' iicount='1981'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1127'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1127'/>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='40'/>
+<klass id='1101' name='java.io.OutputStream' flags='1025'/>
+<method id='1130' holder='1101' name='flush' return='977' flags='1' bytes='1' compile_id='897' compiler='c1' level='1' iicount='1333'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='57'/>
+<klass id='1014' name='java.lang.Thread' flags='1'/>
+<method id='1131' holder='1014' name='currentThread' return='1014' flags='265' bytes='0' iicount='319'/>
+<call method='1131' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='60'/>
+<method id='1133' holder='1014' name='interrupt' return='977' flags='1' bytes='56' iicount='1'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1133'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.586'/>
+</phase>
+<parse_done stamp='0.586'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.586'>
+<phase_done name='optimize_blocks' stamp='0.586'/>
+</phase>
+<phase name='gvn' stamp='0.586'>
+<phase_done name='gvn' stamp='0.587'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.587'>
+<phase_done name='rangeCheckElimination' stamp='0.587'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.587'>
+<phase_done name='optimize_null_checks' stamp='0.587'/>
+</phase>
+<phase_done name='buildIR' stamp='0.587'/>
+</phase>
+<phase name='emit_lir' stamp='0.587'>
+<phase name='lirGeneration' stamp='0.587'>
+<phase_done name='lirGeneration' stamp='0.587'/>
+</phase>
+<phase name='linearScan' stamp='0.587'>
+<phase_done name='linearScan' stamp='0.587'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.587'/>
+</phase>
+<phase name='codeemit' stamp='0.587'>
+<phase_done name='codeemit' stamp='0.587'/>
+</phase>
+<phase name='codeinstall' stamp='0.587'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1127'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1133'/>
+<phase_done name='codeinstall' stamp='0.587'/>
+</phase>
+<code_cache total_blobs='1527' nmethods='924' adapters='270' free_code_cache='246133632'/>
+<task_done success='1' nmsize='3000' count='277' inlined_bytes='75' stamp='0.587'/>
+</task>
+<task compile_id='931' method='java.util.Formatter$Flags &lt;init&gt; (I)V' bytes='10' count='259' iicount='259' level='3' stamp='0.591'>
+<phase name='setup' stamp='0.591'>
+<phase_done name='setup' stamp='0.591'/>
+</phase>
+<phase name='buildIR' stamp='0.591'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975' flags='2' bytes='10' iicount='261'/>
+<parse method='1094'  stamp='0.591'>
+<phase name='parse_hir' stamp='0.591'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='53247'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.591'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.591'/>
+</phase>
+<parse_done stamp='0.591'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.591'>
+<phase_done name='optimize_blocks' stamp='0.591'/>
+</phase>
+<phase name='gvn' stamp='0.591'>
+<phase_done name='gvn' stamp='0.591'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.591'>
+<phase_done name='rangeCheckElimination' stamp='0.591'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.591'>
+<phase_done name='optimize_null_checks' stamp='0.591'/>
+</phase>
+<phase_done name='buildIR' stamp='0.591'/>
+</phase>
+<phase name='emit_lir' stamp='0.591'>
+<phase name='lirGeneration' stamp='0.591'>
+<phase_done name='lirGeneration' stamp='0.591'/>
+</phase>
+<phase name='linearScan' stamp='0.591'>
+<phase_done name='linearScan' stamp='0.591'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.592'/>
+</phase>
+<code_cache total_blobs='1537' nmethods='930' adapters='270' free_code_cache='246080512'/>
+<task_done success='1' nmsize='432' count='264' inlined_bytes='1' stamp='0.592'/>
+</task>
+<task compile_id='936' method='java.util.regex.Matcher find (I)Z' bytes='35' count='256' iicount='256' level='3' stamp='0.592'>
+<phase name='setup' stamp='0.592'>
+<phase_done name='setup' stamp='0.592'/>
+</phase>
+<phase name='buildIR' stamp='0.592'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='find' return='969' arguments='975' flags='1' bytes='35' iicount='257'/>
+<parse method='1094'  stamp='0.592'>
+<phase name='parse_hir' stamp='0.592'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='1093' name='getTextLength' return='975' flags='0' bytes='10' compile_id='855' compiler='c1' level='3' iicount='1177'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='185' bci='4'/>
+<klass id='1098' name='java.lang.CharSequence' flags='1537'/>
+<method id='1099' holder='1098' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.592'/>
+</parse>
+<bc code='182' bci='25'/>
+<method id='1100' holder='1093' name='reset' return='1093' flags='1' bytes='128' compile_id='917' compiler='c2' level='4' iicount='919'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='31'/>
+<method id='1102' holder='1093' name='search' return='969' arguments='975' flags='0' bytes='154' compile_id='847' compiler='c2' level='4' iicount='1199'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='20'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1105' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1107' holder='1105' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.592'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<phase_done name='codeinstall' stamp='0.592'/>
+</phase>
+<code_cache total_blobs='1544' nmethods='935' adapters='270' free_code_cache='246084608'/>
+<task_done success='1' nmsize='1368' count='258' inlined_bytes='10' stamp='0.592'/>
+</task>
+<task compile_id='939' method='java.util.regex.Pattern inRange (III)Z' bytes='16' count='256' iicount='256' level='3' stamp='0.592'>
+<phase name='setup' stamp='0.592'>
+<phase_done name='setup' stamp='0.592'/>
+</phase>
+<phase name='buildIR' stamp='0.592'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Pattern' flags='17'/>
+<method id='1094' holder='1093' name='inRange' return='969' arguments='975 975 975' flags='10' bytes='16' iicount='256'/>
+<parse method='1094'  stamp='0.592'>
+<phase name='parse_hir' stamp='0.592'>
+<phase_done name='parse_hir' stamp='0.592'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<phase_done name='codeinstall' stamp='0.593'/>
+</phase>
+<code_cache total_blobs='1547' nmethods='938' adapters='270' free_code_cache='246081024'/>
+<task_done success='1' nmsize='464' count='258' stamp='0.593'/>
+</task>
+<task compile_id='943' method='java.util.Formatter$FormatSpecifier flags (Ljava/lang/String;II)Ljava/util/Formatter$Flags;' bytes='33' count='259' iicount='259' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<klass id='1094' name='java.util.Formatter$Flags' flags='10'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1095' holder='1093' name='flags' return='1094' arguments='983 975 975' flags='2' bytes='33' iicount='259'/>
+<parse method='1095'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='184' bci='4'/>
+<method id='1097' holder='1094' name='parse' return='1094' arguments='983 975 975' flags='9' bytes='70' iicount='260'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='17'/>
+<type id='969' name='boolean'/>
+<method id='1101' holder='1094' name='contains' return='969' arguments='1094' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='2340'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1101'>
+<bc code='182' bci='5'/>
+<method id='1103' holder='1094' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1103'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1103'>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.593'/>
+</phase>
+<parse_done stamp='0.593'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.593'>
+<phase_done name='optimize_blocks' stamp='0.593'/>
+</phase>
+<phase name='gvn' stamp='0.593'>
+<phase_done name='gvn' stamp='0.593'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.593'>
+<phase_done name='rangeCheckElimination' stamp='0.593'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.593'>
+<phase_done name='optimize_null_checks' stamp='0.593'/>
+</phase>
+<phase_done name='buildIR' stamp='0.593'/>
+</phase>
+<phase name='emit_lir' stamp='0.593'>
+<phase name='lirGeneration' stamp='0.593'>
+<phase_done name='lirGeneration' stamp='0.593'/>
+</phase>
+<phase name='linearScan' stamp='0.593'>
+<phase_done name='linearScan' stamp='0.593'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.593'/>
+</phase>
+<phase name='codeemit' stamp='0.593'>
+<phase_done name='codeemit' stamp='0.593'/>
+</phase>
+<phase name='codeinstall' stamp='0.593'>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.593'/>
+</phase>
+<code_cache total_blobs='1550' nmethods='941' adapters='270' free_code_cache='246076800'/>
+<task_done success='1' nmsize='872' count='266' inlined_bytes='32' stamp='0.593'/>
+</task>
+<task compile_id='949' method='com.sun.hotspot.tools.compiler.CallSite print (Ljava/io/PrintStream;IZZ)V' bytes='428' count='259' backedge_count='101' iicount='259' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.io.PrintStream' flags='1'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1095' holder='1093' name='print' return='977' arguments='1094 975 969 969' flags='1' bytes='428' iicount='260'/>
+<parse method='1095'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='182' bci='3'/>
+<method id='1097' holder='1093' name='emit' return='977' arguments='1094 975' flags='0' bytes='20' compile_id='950' compiler='c1' level='3' iicount='261'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1097'>
+<bc code='182' bci='10'/>
+<type id='970' name='char'/>
+<method id='1099' holder='1094' name='print' return='977' arguments='970' flags='1' bytes='9' compile_id='886' compiler='c1' level='3' iicount='836'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1099'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1101' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' compile_id='846' compiler='c1' level='3' iicount='1033'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='5'/>
+<method id='1103' holder='1094' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='2375'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.594'/>
+</parse>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='183' bci='10'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1108' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='4385'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1110' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='4834'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='14'/>
+<klass id='1112' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1113' holder='1093' name='getMethod' return='1112' flags='1' bytes='5' compile_id='828' compiler='c1' level='1' iicount='132'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1113'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='17'/>
+<method id='1115' holder='1112' name='getHolder' return='983' flags='1' bytes='5' compile_id='892' compiler='c1' level='1' iicount='131'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<parse method='1115'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1117' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6227'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<method id='1119' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='29'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1113'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='32'/>
+<method id='1122' holder='1112' name='getName' return='983' flags='1' bytes='5' compile_id='893' compiler='c1' level='1' iicount='131'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<parse method='1122'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='35'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='182' bci='38'/>
+<method id='1124' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='4594'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='1'/>
+<method id='1126' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='13271'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1129' name='java.lang.StringLatin1' flags='16'/>
+<method id='1130' holder='1129' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='7529'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='184' bci='9'/>
+<klass id='1132' name='java.util.Arrays' flags='1'/>
+<method id='1133' holder='1132' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1135' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='9798'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1137' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='54099'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.595'/>
+</parse>
+<parse_done stamp='0.595'/>
+</parse>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1139' name='java.lang.StringUTF16' flags='16'/>
+<method id='1140' holder='1139' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='44'/>
+<method id='1142' holder='1093' name='getReason' return='983' flags='1' bytes='5' compile_id='876' compiler='c1' level='1' iicount='144'/>
+<call method='1142' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1142'>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='183' bci='55'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='3'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='60'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='64'/>
+<method id='1145' holder='1093' name='getBci' return='975' flags='1' bytes='5' compile_id='906' compiler='c1' level='1' iicount='132'/>
+<call method='1145' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1145'>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='67'/>
+<method id='1147' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='856'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='2'/>
+<method id='1149' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='856'/>
+<call method='1149' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='72'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='77'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='82'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='86'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1113'>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='89'/>
+<method id='1153' holder='1112' name='getBytes' return='983' flags='1' bytes='5' iicount='122'/>
+<call method='1153' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<parse method='1153'>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='92'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='97'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='182' bci='100'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='1'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='184' bci='9'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.595'/>
+</parse>
+<parse_done stamp='0.595'/>
+</parse>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='103'/>
+<method id='1156' holder='1094' name='print' return='977' arguments='983' flags='1' bytes='9' compile_id='884' compiler='c1' level='3' iicount='1543'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1156'>
+<bc code='184' bci='2'/>
+<method id='1158' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='2136'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<method id='1161' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='183' bci='114'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='3'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='119'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='123'/>
+<call method='1145' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1145'>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='126'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='2'/>
+<call method='1149' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='131'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='136'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='141'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='145'/>
+<call method='1142' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1142'>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='148'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='151'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='1'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='184' bci='9'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.596'/>
+</parse>
+<parse_done stamp='0.596'/>
+</parse>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='154'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1156'>
+<bc code='184' bci='2'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='159'/>
+<method id='1162' holder='1093' name='getIntrinsicOrEmptyString' return='983' flags='1' bytes='38' iicount='288'/>
+<call method='1162' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='162'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1156'>
+<bc code='184' bci='2'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1164' holder='983' name='toString' return='983' flags='1' bytes='2' compile_id='777' compiler='c1' level='1' iicount='2056'/>
+<parse method='1164'>
+<parse_done stamp='0.596'/>
+</parse>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.596'/>
+</parse>
+<bc code='182' bci='175'/>
+<type id='972' name='double'/>
+<method id='1167' holder='1093' name='getTimeStamp' return='972' flags='1' bytes='5' compile_id='907' compiler='c1' level='1' iicount='134'/>
+<call method='1167' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1167'>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='184' bci='178'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1169' holder='1073' name='valueOf' return='1073' arguments='972' flags='9' bytes='9' compile_id='947' compiler='c1' level='3' iicount='292'/>
+<call method='1169' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1169'>
+<bc code='183' bci='5'/>
+<method id='1171' holder='1073' name='&lt;init&gt;' return='977' arguments='972' flags='1' bytes='10' compile_id='948' compiler='c1' level='3' iicount='292'/>
+<call method='1171' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1171'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1173' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1461'/>
+<call method='1173' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='182'/>
+<klass id='1175' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1176' holder='1094' name='printf' return='1094' arguments='983 1175' flags='129' bytes='7' iicount='301'/>
+<call method='1176' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1176'>
+<bc code='182' bci='3'/>
+<method id='1178' holder='1094' name='format' return='1094' arguments='983 1175' flags='129' bytes='92' iicount='301'/>
+<call method='1178' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='187'/>
+<method id='1180' holder='1093' name='getEndNodes' return='975' flags='1' bytes='5' compile_id='914' compiler='c1' level='1' iicount='138'/>
+<call method='1180' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1180'>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='203'/>
+<call method='1180' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1180'>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='184' bci='206'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1183' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='348'/>
+<call method='1183' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='28'/>
+<method id='1189' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='416'/>
+<call method='1189' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1189'>
+<bc code='183' bci='1'/>
+<call method='1173' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='213'/>
+<method id='1191' holder='1093' name='getEndLiveNodes' return='975' flags='1' bytes='5' iicount='2'/>
+<call method='1191' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1191'>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='184' bci='216'/>
+<call method='1183' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1183'>
+<bc code='183' bci='28'/>
+<call method='1189' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1189'>
+<bc code='183' bci='1'/>
+<call method='1173' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1173'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='220'/>
+<call method='1176' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1176'>
+<bc code='182' bci='3'/>
+<call method='1178' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='227'/>
+<method id='1194' holder='1094' name='println' return='977' arguments='983' flags='1' bytes='24' iicount='301'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1194'>
+<bc code='182' bci='6'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1156'>
+<bc code='184' bci='2'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1164'>
+<parse_done stamp='0.598'/>
+</parse>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1196' holder='1094' name='newLine' return='977' flags='2' bytes='73' compile_id='923' compiler='c1' level='3' iicount='446'/>
+<call method='1196' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='231'/>
+<method id='1198' holder='1093' name='getReceiver' return='983' flags='1' bytes='5' compile_id='915' compiler='c1' level='1' iicount='139'/>
+<call method='1198' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1198'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='242'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1097'>
+<bc code='182' bci='10'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1099'>
+<bc code='184' bci='2'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='183' bci='250'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='3'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='255'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='259'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1113'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='262'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<parse method='1115'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='265'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='270'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='274'/>
+<call method='1198' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1198'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='277'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='282'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='286'/>
+<method id='1202' holder='1093' name='getReceiverCount' return='975' flags='1' bytes='5' iicount='1'/>
+<call method='1202' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1202'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='293'/>
+<method id='1204' holder='1093' name='getCount' return='975' flags='1' bytes='5' iicount='1'/>
+<call method='1204' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1204'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='297'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='2'/>
+<call method='1149' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='302'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='182' bci='305'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='1'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<parse_done stamp='0.598'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='184' bci='9'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.599'/>
+</parse>
+<parse_done stamp='0.599'/>
+</parse>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='182' bci='308'/>
+<call method='1194' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1194'>
+<bc code='182' bci='6'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1156'>
+<bc code='184' bci='2'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1196' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='182' bci='316'/>
+<klass id='1207' name='java.util.List' flags='1537'/>
+<method id='1208' holder='1093' name='getCalls' return='1207' flags='1' bytes='5' compile_id='647' compiler='c1' level='1' iicount='250'/>
+<call method='1208' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1208'>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='182' bci='323'/>
+<call method='1208' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1208'>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='185' bci='326'/>
+<klass id='1210' name='java.util.Iterator' flags='1537'/>
+<method id='1211' holder='1207' name='iterator' return='1210' flags='1025' bytes='0' iicount='1'/>
+<call method='1211' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='335'/>
+<method id='1212' holder='1210' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1212' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='345'/>
+<method id='1213' holder='1210' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1213' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='350'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='364'/>
+<call method='1095' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='376'/>
+<method id='1214' holder='1093' name='getTraps' return='1207' flags='1' bytes='5' iicount='1'/>
+<call method='1214' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1214'>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='182' bci='383'/>
+<call method='1214' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1214'>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='185' bci='386'/>
+<call method='1211' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='395'/>
+<call method='1212' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='405'/>
+<call method='1213' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='410'/>
+<klass id='1216' name='com.sun.hotspot.tools.compiler.UncommonTrap' flags='0'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<bc code='182' bci='421'/>
+<method id='1217' holder='1216' name='print' return='977' arguments='1094 975' flags='1' bytes='12' iicount='1'/>
+<call method='1217' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<parse method='1217'>
+<bc code='182' bci='3'/>
+<method id='1219' holder='1216' name='emit' return='977' arguments='1094 975' flags='0' bytes='20' iicount='1'/>
+<call method='1219' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<parse method='1219'>
+<bc code='182' bci='10'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1099'>
+<bc code='184' bci='2'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.599'/>
+</parse>
+<parse_done stamp='0.599'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1221' holder='1094' name='println' return='977' arguments='982' flags='1' bytes='31' iicount='1'/>
+<call method='1221' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1221'>
+<bc code='184' bci='1'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<parse_done stamp='0.600'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1156'>
+<bc code='184' bci='2'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.600'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.600'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1196' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.600'/>
+</parse>
+<parse_done stamp='0.600'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.600'/>
+</phase>
+<parse_done stamp='0.600'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.600'>
+<phase_done name='optimize_blocks' stamp='0.600'/>
+</phase>
+<phase name='gvn' stamp='0.600'>
+<phase_done name='gvn' stamp='0.600'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.600'>
+<phase_done name='rangeCheckElimination' stamp='0.600'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.600'>
+<phase_done name='optimize_null_checks' stamp='0.601'/>
+</phase>
+<phase_done name='buildIR' stamp='0.601'/>
+</phase>
+<phase name='emit_lir' stamp='0.601'>
+<phase name='lirGeneration' stamp='0.601'>
+<phase_done name='lirGeneration' stamp='0.602'/>
+</phase>
+<phase name='linearScan' stamp='0.602'>
+<phase_done name='linearScan' stamp='0.604'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.604'/>
+</phase>
+<phase name='codeemit' stamp='0.604'>
+<phase_done name='codeemit' stamp='0.605'/>
+</phase>
+<phase name='codeinstall' stamp='0.605'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<dependency type='leaf_type' ctxk='1112'/>
+<dependency type='leaf_type' ctxk='1216'/>
+<phase_done name='codeinstall' stamp='0.605'/>
+</phase>
+<code_cache total_blobs='1585' nmethods='966' adapters='270' free_code_cache='245986048'/>
+<task_done success='1' nmsize='27144' count='389' backedge_count='145' inlined_bytes='1149' stamp='0.605'/>
+</task>
+<task compile_id='973' method='java.io.PrintStream append (Ljava/lang/CharSequence;)Ljava/lang/Appendable;' bytes='6' count='400' iicount='400' level='3' stamp='0.605'>
+<phase name='setup' stamp='0.605'>
+<phase_done name='setup' stamp='0.605'/>
+</phase>
+<phase name='buildIR' stamp='0.605'>
+<klass id='1095' name='java.lang.Appendable' flags='1537'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1096' holder='1093' name='append' return='1095' arguments='1094' flags='4161' bytes='6' iicount='400'/>
+<parse method='1096'  stamp='0.605'>
+<phase name='parse_hir' stamp='0.605'>
+<bc code='182' bci='2'/>
+<method id='1098' holder='1093' name='append' return='1093' arguments='1094' flags='1' bytes='10' compile_id='925' compiler='c1' level='3' iicount='800'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1098'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='2963'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='10'/>
+<method id='1103' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='182' bci='5'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='print' return='977' arguments='983' flags='1' bytes='9' compile_id='884' compiler='c1' level='3' iicount='2156'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1104'>
+<bc code='184' bci='2'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='10'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1106' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='3556'/>
+<call method='1106' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.606'/>
+</phase>
+<parse_done stamp='0.606'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.606'>
+<phase_done name='optimize_blocks' stamp='0.606'/>
+</phase>
+<phase name='gvn' stamp='0.606'>
+<phase_done name='gvn' stamp='0.606'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.606'>
+<phase_done name='rangeCheckElimination' stamp='0.606'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.606'>
+<phase_done name='optimize_null_checks' stamp='0.606'/>
+</phase>
+<phase_done name='buildIR' stamp='0.606'/>
+</phase>
+<phase name='emit_lir' stamp='0.606'>
+<phase name='lirGeneration' stamp='0.606'>
+<phase_done name='lirGeneration' stamp='0.606'/>
+</phase>
+<phase name='linearScan' stamp='0.606'>
+<phase_done name='linearScan' stamp='0.606'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.606'/>
+</phase>
+<phase name='codeemit' stamp='0.606'>
+<phase_done name='codeemit' stamp='0.606'/>
+</phase>
+<phase name='codeinstall' stamp='0.606'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.606'/>
+</phase>
+<code_cache total_blobs='1589' nmethods='970' adapters='270' free_code_cache='245968768'/>
+<task_done success='1' nmsize='1384' count='407' inlined_bytes='47' stamp='0.606'/>
+</task>
+<task compile_id='979' method='java.util.Formatter$FormatSpecifier trailingSign (Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;' bytes='26' count='401' iicount='401' level='3' stamp='0.606'>
+<phase name='setup' stamp='0.606'>
+<phase_done name='setup' stamp='0.606'/>
+</phase>
+<phase name='buildIR' stamp='0.606'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='trailingSign' return='1050' arguments='1050 969' flags='2' bytes='26' iicount='401'/>
+<parse method='1094'  stamp='0.606'>
+<phase name='parse_hir' stamp='0.606'>
+<bc code='182' bci='11'/>
+<klass id='1096' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1099' holder='1096' name='contains' return='969' arguments='1096' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='3686'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1099'>
+<bc code='182' bci='5'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='20'/>
+<type id='970' name='char'/>
+<method id='1103' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='5831'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1105' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='5831'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.606'/>
+</phase>
+<parse_done stamp='0.606'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.606'>
+<phase_done name='optimize_blocks' stamp='0.606'/>
+</phase>
+<phase name='gvn' stamp='0.606'>
+<phase_done name='gvn' stamp='0.606'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.606'>
+<phase_done name='rangeCheckElimination' stamp='0.606'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.606'>
+<phase_done name='optimize_null_checks' stamp='0.606'/>
+</phase>
+<phase_done name='buildIR' stamp='0.606'/>
+</phase>
+<phase name='emit_lir' stamp='0.606'>
+<phase name='lirGeneration' stamp='0.606'>
+<phase_done name='lirGeneration' stamp='0.606'/>
+</phase>
+<phase name='linearScan' stamp='0.606'>
+<phase_done name='linearScan' stamp='0.607'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.607'/>
+</phase>
+<phase name='codeemit' stamp='0.607'>
+<phase_done name='codeemit' stamp='0.607'/>
+</phase>
+<phase name='codeinstall' stamp='0.607'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.607'/>
+</phase>
+<code_cache total_blobs='1595' nmethods='974' adapters='270' free_code_cache='245959040'/>
+<task_done success='1' nmsize='1032' count='413' inlined_bytes='40' stamp='0.607'/>
+</task>
+<task compile_id='976' method='java.util.Formatter$FormatSpecifier checkNumeric ()V' bytes='168' count='414' iicount='414' level='3' stamp='0.607'>
+<phase name='setup' stamp='0.607'>
+<phase_done name='setup' stamp='0.607'/>
+</phase>
+<phase name='buildIR' stamp='0.607'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='checkNumeric' return='977' flags='2' bytes='168' iicount='414'/>
+<parse method='1094'  stamp='0.607'>
+<phase name='parse_hir' stamp='0.607'>
+<bc code='183' bci='23'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.util.IllegalFormatWidthException' unloaded='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='50'/>
+<klass id='1098' name='java.util.IllegalFormatPrecisionException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='69'/>
+<type id='969' name='boolean'/>
+<klass id='1100' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1103' holder='1100' name='contains' return='969' arguments='1100' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='3816'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1103'>
+<bc code='182' bci='5'/>
+<method id='1105' holder='1100' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.607'/>
+</parse>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='182' bci='82'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1103'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.607'/>
+</parse>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='182' bci='93'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1109' holder='1093' name='toString' return='983' flags='1' bytes='162' iicount='1'/>
+<call method='1109' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='96'/>
+<klass id='1108' name='java.util.MissingFormatWidthException' unloaded='1'/>
+<method id='1111' holder='1108' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='107'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1103'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.607'/>
+</parse>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='182' bci='120'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1103'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='133'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1103'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='146'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1103'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='160'/>
+<method id='1115' holder='1100' name='toString' return='983' flags='1' bytes='166' iicount='1'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<bc code='183' bci='163'/>
+<klass id='1114' name='java.util.IllegalFormatFlagsException' unloaded='1'/>
+<method id='1117' holder='1114' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1117' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.608'/>
+</phase>
+<parse_done stamp='0.608'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.608'>
+<phase_done name='optimize_blocks' stamp='0.608'/>
+</phase>
+<phase name='gvn' stamp='0.608'>
+<phase_done name='gvn' stamp='0.608'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.608'>
+<phase_done name='rangeCheckElimination' stamp='0.608'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.608'>
+<phase_done name='optimize_null_checks' stamp='0.608'/>
+</phase>
+<phase_done name='buildIR' stamp='0.608'/>
+</phase>
+<phase name='emit_lir' stamp='0.608'>
+<phase name='lirGeneration' stamp='0.608'>
+<phase_done name='lirGeneration' stamp='0.608'/>
+</phase>
+<phase name='linearScan' stamp='0.608'>
+<phase_done name='linearScan' stamp='0.609'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.609'/>
+</phase>
+<phase name='codeemit' stamp='0.609'>
+<phase_done name='codeemit' stamp='0.609'/>
+</phase>
+<phase name='codeinstall' stamp='0.609'>
+<dependency type='leaf_type' ctxk='1100'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.609'/>
+</phase>
+<code_cache total_blobs='1602' nmethods='980' adapters='270' free_code_cache='245924224'/>
+<task_done success='1' nmsize='3224' count='442' inlined_bytes='192' stamp='0.609'/>
+</task>
+<task compile_id='981' method='java.util.Formatter$FormatSpecifier printFloat (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='86' count='434' iicount='434' level='3' stamp='0.609'>
+<phase name='setup' stamp='0.609'>
+<phase_done name='setup' stamp='0.609'/>
+</phase>
+<phase name='buildIR' stamp='0.609'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1095' holder='1093' name='printFloat' return='977' arguments='982 1094' flags='2' bytes='86' iicount='435'/>
+<parse method='1095'  stamp='0.609'>
+<phase name='parse_hir' stamp='0.609'>
+<bc code='183' bci='7'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1098' holder='1093' name='print' return='977' arguments='983' flags='2' bytes='67' iicount='8'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='25'/>
+<type id='971' name='float'/>
+<klass id='1072' name='java.lang.Float' flags='17'/>
+<method id='1100' holder='1072' name='floatValue' return='971' flags='1' bytes='5' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='183' bci='29'/>
+<method id='1102' holder='1093' name='print' return='977' arguments='971 1094' flags='2' bytes='8' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='4'/>
+<type id='972' name='double'/>
+<method id='1104' holder='1093' name='print' return='977' arguments='972 1094' flags='2' bytes='160' iicount='439'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='182' bci='47'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1106' holder='1073' name='doubleValue' return='972' flags='1' bytes='5' compile_id='908' compiler='c1' level='1' iicount='133'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='183' bci='51'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='70'/>
+<klass id='1108' name='java.math.BigDecimal' unloaded='1'/>
+<method id='1109' holder='1093' name='print' return='977' arguments='1108 1094' flags='2' bytes='99' iicount='1'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='82'/>
+<type id='970' name='char'/>
+<method id='1111' holder='1093' name='failConversion' return='977' arguments='970 982' flags='2' bytes='13' iicount='1'/>
+<call method='1111' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='182' bci='6'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1114' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='9'/>
+<klass id='1113' name='java.util.IllegalFormatConversionException' unloaded='1'/>
+<method id='1116' holder='1113' name='&lt;init&gt;' return='977' arguments='970 984' unloaded='1'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.610'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.610'/>
+</phase>
+<parse_done stamp='0.610'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.610'>
+<phase_done name='optimize_blocks' stamp='0.610'/>
+</phase>
+<phase name='gvn' stamp='0.610'>
+<phase_done name='gvn' stamp='0.610'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.610'>
+<phase_done name='rangeCheckElimination' stamp='0.610'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.610'>
+<phase_done name='optimize_null_checks' stamp='0.610'/>
+</phase>
+<phase_done name='buildIR' stamp='0.610'/>
+</phase>
+<phase name='emit_lir' stamp='0.610'>
+<phase name='lirGeneration' stamp='0.610'>
+<phase_done name='lirGeneration' stamp='0.610'/>
+</phase>
+<phase name='linearScan' stamp='0.610'>
+<phase_done name='linearScan' stamp='0.610'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.610'/>
+</phase>
+<phase name='codeemit' stamp='0.610'>
+<phase_done name='codeemit' stamp='0.610'/>
+</phase>
+<phase name='codeinstall' stamp='0.610'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.610'/>
+</phase>
+<code_cache total_blobs='1608' nmethods='985' adapters='270' free_code_cache='245912064'/>
+<task_done success='1' nmsize='3240' count='444' inlined_bytes='31' stamp='0.610'/>
+</task>
+<fragment>
+<![CDATA[
+<task compile_id='988' method='jdk.internal.math.FormattedFloatingDecimal &lt;init&gt; (ILjdk/internal/math/FormattedFloatingDecimal$Form;Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;)V' bytes='289' count='444' iicount='444' level='3' stamp='0.610'>
+<phase name='setup' stamp='0.610'>
+<phase_done name='setup' stamp='0.610'/>
+</phase>
+<phase name='buildIR' stamp='0.610'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1094' name='jdk.internal.math.FormattedFloatingDecimal$Form' flags='16409'/>
+<klass id='1095' name='jdk.internal.math.FloatingDecimal$BinaryToASCIIConverter' flags='1545'/>
+<klass id='1093' name='jdk.internal.math.FormattedFloatingDecimal' flags='1'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1094 1095' flags='2' bytes='289' iicount='444'/>
+<parse method='1096'  stamp='0.610'>
+<phase name='parse_hir' stamp='0.610'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='58874'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='185' bci='5'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1095' name='isExceptional' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='15'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1101' holder='1095' name='toJavaFormatString' return='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='20'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1102' holder='983' name='toCharArray' return='1082' flags='1' bytes='25' iicount='208'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<method id='1104' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='123521'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1107' name='java.lang.StringLatin1' flags='16'/>
+<method id='1108' holder='1107' name='toChars' return='1082' arguments='1085' flags='9' bytes='16' iicount='207'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='11'/>
+<method id='1110' holder='1107' name='inflate' return='977' arguments='1085 975 1082 975 975' flags='9' bytes='34' compile_id='895' compiler='c2' level='4' iicount='1449'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1112' name='java.lang.StringUTF16' flags='16'/>
+<method id='1113' holder='1112' name='toChars' return='1082' arguments='1085' flags='9' bytes='18' iicount='1'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='184' bci='13'/>
+<method id='1115' holder='1112' name='getChars' return='977' arguments='1085 975 975 1082 975' flags='9' bytes='42' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.610'/>
+</parse>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='184' bci='32'/>
+<method id='1117' holder='1093' name='getBuffer' return='1082' flags='10' bytes='10' compile_id='989' compiler='c1' level='3' iicount='444'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='3'/>
+<klass id='1119' name='java.lang.ThreadLocal' flags='1'/>
+<method id='1123' holder='1119' name='get' return='982' flags='1' bytes='38' compile_id='887' compiler='c1' level='3' iicount='801'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='185' bci='40'/>
+<method id='1126' holder='1095' name='getDigits' return='975' arguments='1082' flags='1025' bytes='0' iicount='1'/>
+<call method='1126' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='48'/>
+<method id='1127' holder='1095' name='getDecimalExponent' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1127' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='56'/>
+<method id='1128' holder='1095' name='isNegative' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1128' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='67'/>
+<klass id='1132' name='java.lang.Enum' flags='1025'/>
+<method id='1133' holder='1132' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='25168'>
+<start_compile_thread name='C1 CompilerThread10' thread='25168' process='25109' stamp='0.108'/>
+<task compile_id='3' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='111' backedge_count='2106' iicount='111' level='3' stamp='0.109'>
+<phase name='setup' stamp='0.110'>
+<phase_done name='setup' stamp='0.110'/>
+</phase>
+<phase name='buildIR' stamp='0.110'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' iicount='114'/>
+<parse method='1094'  stamp='0.110'>
+<phase name='parse_hir' stamp='0.110'>
+<phase_done name='parse_hir' stamp='0.110'/>
+</phase>
+<parse_done stamp='0.110'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.110'>
+<phase_done name='optimize_blocks' stamp='0.110'/>
+</phase>
+<phase name='gvn' stamp='0.110'>
+<phase_done name='gvn' stamp='0.110'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.110'>
+<phase_done name='rangeCheckElimination' stamp='0.110'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.110'>
+<phase_done name='optimize_null_checks' stamp='0.110'/>
+</phase>
+<phase_done name='buildIR' stamp='0.110'/>
+</phase>
+<phase name='emit_lir' stamp='0.110'>
+<phase name='lirGeneration' stamp='0.110'>
+<phase_done name='lirGeneration' stamp='0.110'/>
+</phase>
+<phase name='linearScan' stamp='0.110'>
+<phase_done name='linearScan' stamp='0.110'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.110'/>
+</phase>
+<phase name='codeemit' stamp='0.110'>
+<phase_done name='codeemit' stamp='0.110'/>
+</phase>
+<phase name='codeinstall' stamp='0.110'>
+<phase_done name='codeinstall' stamp='0.110'/>
+</phase>
+<code_cache total_blobs='244' nmethods='3' adapters='131' free_code_cache='248788608'/>
+<task_done success='1' nmsize='528' count='114' backedge_count='2242' stamp='0.110'/>
+</task>
+<task compile_id='7' method='java.lang.StringLatin1 equals ([B[B)Z' bytes='36' count='256' backedge_count='400' iicount='256' level='3' stamp='0.119'>
+<phase name='setup' stamp='0.119'>
+<phase_done name='setup' stamp='0.119'/>
+</phase>
+<phase name='buildIR' stamp='0.119'>
+<type id='969' name='boolean'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' iicount='256'/>
+<parse method='1094'  stamp='0.119'>
+<phase name='parse_hir' stamp='0.119'>
+<phase_done name='parse_hir' stamp='0.119'/>
+</phase>
+<parse_done stamp='0.119'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.119'>
+<phase_done name='optimize_blocks' stamp='0.119'/>
+</phase>
+<phase name='gvn' stamp='0.119'>
+<phase_done name='gvn' stamp='0.119'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.119'>
+<phase_done name='rangeCheckElimination' stamp='0.119'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.119'>
+<phase_done name='optimize_null_checks' stamp='0.119'/>
+</phase>
+<phase_done name='buildIR' stamp='0.119'/>
+</phase>
+<phase name='emit_lir' stamp='0.119'>
+<phase name='lirGeneration' stamp='0.119'>
+<phase_done name='lirGeneration' stamp='0.119'/>
+</phase>
+<phase name='linearScan' stamp='0.119'>
+<phase_done name='linearScan' stamp='0.119'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.119'/>
+</phase>
+<phase name='codeemit' stamp='0.119'>
+<phase_done name='codeemit' stamp='0.119'/>
+</phase>
+<phase name='codeinstall' stamp='0.119'>
+<phase_done name='codeinstall' stamp='0.119'/>
+</phase>
+<code_cache total_blobs='300' nmethods='7' adapters='153' free_code_cache='248766592'/>
+<task_done success='1' nmsize='688' count='256' backedge_count='400' stamp='0.119'/>
+</task>
+<task compile_id='11' method='java.lang.Math floorMod (II)I' bytes='10' count='283' iicount='283' level='3' stamp='0.128'>
+<phase name='setup' stamp='0.128'>
+<phase_done name='setup' stamp='0.128'/>
+</phase>
+<phase name='buildIR' stamp='0.128'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='floorMod' return='975' arguments='975 975' flags='9' bytes='10' iicount='283'/>
+<parse method='1094'  stamp='0.128'>
+<phase name='parse_hir' stamp='0.128'>
+<bc code='184' bci='3'/>
+<method id='1096' holder='1093' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' iicount='301'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.128'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.128'/>
+</phase>
+<parse_done stamp='0.128'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.128'>
+<phase_done name='optimize_blocks' stamp='0.128'/>
+</phase>
+<phase name='gvn' stamp='0.128'>
+<phase_done name='gvn' stamp='0.128'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.128'>
+<phase_done name='rangeCheckElimination' stamp='0.128'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.128'>
+<phase_done name='optimize_null_checks' stamp='0.128'/>
+</phase>
+<phase_done name='buildIR' stamp='0.128'/>
+</phase>
+<phase name='emit_lir' stamp='0.128'>
+<phase name='lirGeneration' stamp='0.128'>
+<phase_done name='lirGeneration' stamp='0.128'/>
+</phase>
+<phase name='linearScan' stamp='0.128'>
+<phase_done name='linearScan' stamp='0.128'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.128'/>
+</phase>
+<phase name='codeemit' stamp='0.128'>
+<phase_done name='codeemit' stamp='0.128'/>
+</phase>
+<phase name='codeinstall' stamp='0.128'>
+<phase_done name='codeinstall' stamp='0.128'/>
+</phase>
+<code_cache total_blobs='310' nmethods='12' adapters='158' free_code_cache='248755712'/>
+<task_done success='1' nmsize='560' count='317' inlined_bytes='22' stamp='0.128'/>
+</task>
+<task compile_id='14' method='java.util.ImmutableCollections$Set0 hashCode ()I' bytes='2' count='177' iicount='177' level='1' stamp='0.130'>
+<phase name='setup' stamp='0.130'>
+<phase_done name='setup' stamp='0.130'/>
+</phase>
+<phase name='buildIR' stamp='0.130'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='2' iicount='177'/>
+<parse method='1094'  stamp='0.130'>
+<phase name='parse_hir' stamp='0.130'>
+<phase_done name='parse_hir' stamp='0.130'/>
+</phase>
+<parse_done stamp='0.130'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.130'>
+<phase_done name='optimize_blocks' stamp='0.130'/>
+</phase>
+<phase name='gvn' stamp='0.130'>
+<phase_done name='gvn' stamp='0.130'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.130'>
+<phase_done name='rangeCheckElimination' stamp='0.130'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.130'>
+<phase_done name='optimize_null_checks' stamp='0.130'/>
+</phase>
+<phase_done name='buildIR' stamp='0.130'/>
+</phase>
+<phase name='emit_lir' stamp='0.130'>
+<phase name='lirGeneration' stamp='0.130'>
+<phase_done name='lirGeneration' stamp='0.130'/>
+</phase>
+<phase name='linearScan' stamp='0.130'>
+<phase_done name='linearScan' stamp='0.130'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.130'/>
+</phase>
+<phase name='codeemit' stamp='0.130'>
+<phase_done name='codeemit' stamp='0.131'/>
+</phase>
+<phase name='codeinstall' stamp='0.131'>
+<phase_done name='codeinstall' stamp='0.131'/>
+</phase>
+<code_cache total_blobs='313' nmethods='14' adapters='158' free_code_cache='248750336'/>
+<task_done success='1' nmsize='272' count='181' stamp='0.131'/>
+</task>
+<task compile_id='15' method='java.util.Collections emptySet ()Ljava/util/Set;' bytes='4' count='266' iicount='266' level='3' stamp='0.131'>
+<phase name='setup' stamp='0.131'>
+<phase_done name='setup' stamp='0.131'/>
+</phase>
+<phase name='buildIR' stamp='0.131'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.util.Collections' flags='1'/>
+<method id='1095' holder='1093' name='emptySet' return='1094' flags='25' bytes='4' iicount='268'/>
+<parse method='1095'  stamp='0.131'>
+<phase name='parse_hir' stamp='0.131'>
+<phase_done name='parse_hir' stamp='0.131'/>
+</phase>
+<parse_done stamp='0.131'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.131'>
+<phase_done name='optimize_blocks' stamp='0.131'/>
+</phase>
+<phase name='gvn' stamp='0.131'>
+<phase_done name='gvn' stamp='0.131'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.131'>
+<phase_done name='rangeCheckElimination' stamp='0.131'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.131'>
+<phase_done name='optimize_null_checks' stamp='0.131'/>
+</phase>
+<phase_done name='buildIR' stamp='0.131'/>
+</phase>
+<phase name='emit_lir' stamp='0.131'>
+<phase name='lirGeneration' stamp='0.131'>
+<phase_done name='lirGeneration' stamp='0.131'/>
+</phase>
+<phase name='linearScan' stamp='0.131'>
+<phase_done name='linearScan' stamp='0.131'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.131'/>
+</phase>
+<phase name='codeemit' stamp='0.131'>
+<phase_done name='codeemit' stamp='0.131'/>
+</phase>
+<phase name='codeinstall' stamp='0.131'>
+<phase_done name='codeinstall' stamp='0.131'/>
+</phase>
+<code_cache total_blobs='314' nmethods='15' adapters='158' free_code_cache='248749440'/>
+<task_done success='1' nmsize='304' count='268' stamp='0.131'/>
+</task>
+<task compile_id='21' method='java.lang.module.ModuleDescriptor$Exports hashCode ()I' bytes='38' count='285' iicount='285' level='3' stamp='0.132'>
+<phase name='setup' stamp='0.132'>
+<phase_done name='setup' stamp='0.132'/>
+</phase>
+<phase name='buildIR' stamp='0.132'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='38' iicount='285'/>
+<parse method='1094'  stamp='0.132'>
+<phase name='parse_hir' stamp='0.132'>
+<bc code='185' bci='4'/>
+<klass id='1099' name='java.util.Set' flags='1537'/>
+<method id='1100' holder='1099' name='hashCode' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1101' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='1750'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='31'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.132'/>
+</phase>
+<parse_done stamp='0.132'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.132'>
+<phase_done name='optimize_blocks' stamp='0.132'/>
+</phase>
+<phase name='gvn' stamp='0.132'>
+<phase_done name='gvn' stamp='0.132'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.132'>
+<phase_done name='rangeCheckElimination' stamp='0.132'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.132'>
+<phase_done name='optimize_null_checks' stamp='0.132'/>
+</phase>
+<phase_done name='buildIR' stamp='0.132'/>
+</phase>
+<phase name='emit_lir' stamp='0.132'>
+<phase name='lirGeneration' stamp='0.132'>
+<phase_done name='lirGeneration' stamp='0.132'/>
+</phase>
+<phase name='linearScan' stamp='0.132'>
+<phase_done name='linearScan' stamp='0.132'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.132'/>
+</phase>
+<phase name='codeemit' stamp='0.132'>
+<phase_done name='codeemit' stamp='0.132'/>
+</phase>
+<phase name='codeinstall' stamp='0.132'>
+<phase_done name='codeinstall' stamp='0.132'/>
+</phase>
+<code_cache total_blobs='319' nmethods='20' adapters='158' free_code_cache='248742784'/>
+<task_done success='1' nmsize='1000' count='316' stamp='0.132'/>
+</task>
+<task compile_id='25' method='java.util.ImmutableCollections$AbstractImmutableSet &lt;init&gt; ()V' bytes='5' count='262' iicount='262' level='3' stamp='0.133'>
+<phase name='setup' stamp='0.133'>
+<phase_done name='setup' stamp='0.133'/>
+</phase>
+<phase name='buildIR' stamp='0.133'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.ImmutableCollections$AbstractImmutableSet' flags='1032'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='0' bytes='5' iicount='265'/>
+<parse method='1094'  stamp='0.133'>
+<phase name='parse_hir' stamp='0.133'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractSet' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='280'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='1099' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='334'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1813'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.133'/>
+</parse>
+<parse_done stamp='0.133'/>
+</parse>
+<parse_done stamp='0.133'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.133'/>
+</phase>
+<parse_done stamp='0.133'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.133'>
+<phase_done name='optimize_blocks' stamp='0.133'/>
+</phase>
+<phase name='gvn' stamp='0.133'>
+<phase_done name='gvn' stamp='0.133'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.133'>
+<phase_done name='rangeCheckElimination' stamp='0.133'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.133'>
+<phase_done name='optimize_null_checks' stamp='0.133'/>
+</phase>
+<phase_done name='buildIR' stamp='0.133'/>
+</phase>
+<phase name='emit_lir' stamp='0.133'>
+<phase name='lirGeneration' stamp='0.133'>
+<phase_done name='lirGeneration' stamp='0.133'/>
+</phase>
+<phase name='linearScan' stamp='0.133'>
+<phase_done name='linearScan' stamp='0.133'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.133'/>
+</phase>
+<phase name='codeemit' stamp='0.133'>
+<phase_done name='codeemit' stamp='0.133'/>
+</phase>
+<phase name='codeinstall' stamp='0.133'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.133'/>
+</phase>
+<code_cache total_blobs='323' nmethods='24' adapters='158' free_code_cache='248737920'/>
+<task_done success='1' nmsize='624' count='314' inlined_bytes='11' stamp='0.133'/>
+</task>
+<task compile_id='28' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='13' count='268' iicount='268' level='3' stamp='0.133'>
+<phase name='setup' stamp='0.133'>
+<phase_done name='setup' stamp='0.133'/>
+</phase>
+<phase name='buildIR' stamp='0.133'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983 1094' flags='1' bytes='13' iicount='268'/>
+<parse method='1096'  stamp='0.133'>
+<phase name='parse_hir' stamp='0.133'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1093' flags='4096' bytes='10' compile_id='17' compiler='c1' level='3' iicount='519'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<method id='1100' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='18' compiler='c1' level='3' iicount='519'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2114'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.134'/>
+</phase>
+<parse_done stamp='0.134'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.134'>
+<phase_done name='optimize_blocks' stamp='0.134'/>
+</phase>
+<phase name='gvn' stamp='0.134'>
+<phase_done name='gvn' stamp='0.134'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.134'>
+<phase_done name='rangeCheckElimination' stamp='0.134'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.134'>
+<phase_done name='optimize_null_checks' stamp='0.134'/>
+</phase>
+<phase_done name='buildIR' stamp='0.134'/>
+</phase>
+<phase name='emit_lir' stamp='0.134'>
+<phase name='lirGeneration' stamp='0.134'>
+<phase_done name='lirGeneration' stamp='0.134'/>
+</phase>
+<phase name='linearScan' stamp='0.134'>
+<phase_done name='linearScan' stamp='0.134'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.134'/>
+</phase>
+<phase name='codeemit' stamp='0.134'>
+<phase_done name='codeemit' stamp='0.134'/>
+</phase>
+<phase name='codeinstall' stamp='0.134'>
+<phase_done name='codeinstall' stamp='0.134'/>
+</phase>
+<code_cache total_blobs='328' nmethods='27' adapters='158' free_code_cache='248721664'/>
+<task_done success='1' nmsize='1040' count='305' inlined_bytes='31' stamp='0.134'/>
+</task>
+<task compile_id='32' method='java.lang.module.ModuleDescriptor$1 newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='15' count='261' iicount='261' level='3' stamp='0.134'>
+<phase name='setup' stamp='0.134'>
+<phase_done name='setup' stamp='0.134'/>
+</phase>
+<phase name='buildIR' stamp='0.134'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983' flags='1' bytes='15' iicount='272'/>
+<parse method='1096'  stamp='0.134'>
+<phase name='parse_hir' stamp='0.134'>
+<bc code='184' bci='6'/>
+<klass id='1098' name='java.util.Collections' flags='1'/>
+<method id='1099' holder='1098' name='emptySet' return='1094' flags='25' bytes='4' compile_id='15' compiler='c1' level='3' iicount='693'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1104' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1093' flags='4096' bytes='10' compile_id='17' compiler='c1' level='3' iicount='601'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='6'/>
+<method id='1106' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='18' compiler='c1' level='3' iicount='601'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1108' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2263'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.134'/>
+</phase>
+<parse_done stamp='0.134'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.134'>
+<phase_done name='optimize_blocks' stamp='0.134'/>
+</phase>
+<phase name='gvn' stamp='0.134'>
+<phase_done name='gvn' stamp='0.134'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.134'>
+<phase_done name='rangeCheckElimination' stamp='0.134'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.134'>
+<phase_done name='optimize_null_checks' stamp='0.134'/>
+</phase>
+<phase_done name='buildIR' stamp='0.134'/>
+</phase>
+<phase name='emit_lir' stamp='0.134'>
+<phase name='lirGeneration' stamp='0.134'>
+<phase_done name='lirGeneration' stamp='0.134'/>
+</phase>
+<phase name='linearScan' stamp='0.134'>
+<phase_done name='linearScan' stamp='0.135'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.135'/>
+</phase>
+<phase name='codeemit' stamp='0.135'>
+<phase_done name='codeemit' stamp='0.135'/>
+</phase>
+<phase name='codeinstall' stamp='0.135'>
+<phase_done name='codeinstall' stamp='0.135'/>
+</phase>
+<code_cache total_blobs='331' nmethods='30' adapters='158' free_code_cache='248727168'/>
+<task_done success='1' nmsize='1136' count='303' inlined_bytes='35' stamp='0.135'/>
+</task>
+<task compile_id='35' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='7' count='262' iicount='262' level='3' stamp='0.135'>
+<phase name='setup' stamp='0.135'>
+<phase_done name='setup' stamp='0.135'/>
+</phase>
+<phase name='buildIR' stamp='0.135'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newRequires' return='1095' arguments='1094 983' flags='9' bytes='7' iicount='262'/>
+<parse method='1096'  stamp='0.135'>
+<phase name='parse_hir' stamp='0.135'>
+<bc code='184' bci='3'/>
+<method id='1098' holder='1093' name='newRequires' return='1095' arguments='1094 983 983' flags='9' bytes='51' iicount='271'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.135'/>
+</phase>
+<parse_done stamp='0.135'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.135'>
+<phase_done name='optimize_blocks' stamp='0.135'/>
+</phase>
+<phase name='gvn' stamp='0.135'>
+<phase_done name='gvn' stamp='0.135'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.135'>
+<phase_done name='rangeCheckElimination' stamp='0.135'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.135'>
+<phase_done name='optimize_null_checks' stamp='0.135'/>
+</phase>
+<phase_done name='buildIR' stamp='0.135'/>
+</phase>
+<phase name='emit_lir' stamp='0.135'>
+<phase name='lirGeneration' stamp='0.135'>
+<phase_done name='lirGeneration' stamp='0.135'/>
+</phase>
+<phase name='linearScan' stamp='0.135'>
+<phase_done name='linearScan' stamp='0.135'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.135'/>
+</phase>
+<phase name='codeemit' stamp='0.135'>
+<phase_done name='codeemit' stamp='0.135'/>
+</phase>
+<phase name='codeinstall' stamp='0.135'>
+<phase_done name='codeinstall' stamp='0.135'/>
+</phase>
+<code_cache total_blobs='334' nmethods='33' adapters='158' free_code_cache='248722816'/>
+<task_done success='1' nmsize='360' count='322' stamp='0.135'/>
+</task>
+<task compile_id='37' method='java.lang.module.ModuleDescriptor$1 newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='13' count='322' iicount='322' level='3' stamp='0.135'>
+<phase name='setup' stamp='0.135'>
+<phase_done name='setup' stamp='0.135'/>
+</phase>
+<phase name='buildIR' stamp='0.135'>
+<klass id='1096' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<method id='1097' holder='1093' name='newRequires' return='1096' arguments='1094 983 1095' flags='1' bytes='13' iicount='330'/>
+<parse method='1097'  stamp='0.136'>
+<phase name='parse_hir' stamp='0.136'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='1096' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969 1093' flags='4096' bytes='10' iicount='349'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='6'/>
+<method id='1101' holder='1096' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969' flags='2' bytes='25' iicount='349'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2678'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.136'/>
+</parse>
+<parse_done stamp='0.136'/>
+</parse>
+<parse_done stamp='0.136'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.136'/>
+</phase>
+<parse_done stamp='0.136'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.136'>
+<phase_done name='optimize_blocks' stamp='0.136'/>
+</phase>
+<phase name='gvn' stamp='0.136'>
+<phase_done name='gvn' stamp='0.136'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.136'>
+<phase_done name='rangeCheckElimination' stamp='0.136'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.136'>
+<phase_done name='optimize_null_checks' stamp='0.136'/>
+</phase>
+<phase_done name='buildIR' stamp='0.136'/>
+</phase>
+<phase name='emit_lir' stamp='0.136'>
+<phase name='lirGeneration' stamp='0.136'>
+<phase_done name='lirGeneration' stamp='0.136'/>
+</phase>
+<phase name='linearScan' stamp='0.136'>
+<phase_done name='linearScan' stamp='0.136'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.136'/>
+</phase>
+<phase name='codeemit' stamp='0.136'>
+<phase_done name='codeemit' stamp='0.136'/>
+</phase>
+<phase name='codeinstall' stamp='0.136'>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='337' nmethods='36' adapters='158' free_code_cache='248710528'/>
+<task_done success='1' nmsize='1040' count='349' inlined_bytes='36' stamp='0.136'/>
+</task>
+<task compile_id='40' method='java.lang.module.ModuleDescriptor$Requires hashCode ()I' bytes='63' count='283' iicount='283' level='3' stamp='0.136'>
+<phase name='setup' stamp='0.136'>
+<phase_done name='setup' stamp='0.136'/>
+</phase>
+<phase name='buildIR' stamp='0.136'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='63' iicount='283'/>
+<parse method='1094'  stamp='0.136'>
+<phase name='parse_hir' stamp='0.136'>
+<bc code='182' bci='4'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1096' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='4168'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='14'/>
+<klass id='1098' name='java.util.Set' flags='1537'/>
+<method id='1099' holder='1098' name='hashCode' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='36'/>
+<klass id='1100' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<method id='1101' holder='1100' name='hashCode' return='975' flags='1' bytes='8' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='4'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.136'/>
+</parse>
+<bc code='182' bci='56'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.136'/>
+</phase>
+<parse_done stamp='0.136'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.136'>
+<phase_done name='optimize_blocks' stamp='0.136'/>
+</phase>
+<phase name='gvn' stamp='0.136'>
+<phase_done name='gvn' stamp='0.136'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.136'>
+<phase_done name='rangeCheckElimination' stamp='0.136'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.136'>
+<phase_done name='optimize_null_checks' stamp='0.136'/>
+</phase>
+<phase_done name='buildIR' stamp='0.136'/>
+</phase>
+<phase name='emit_lir' stamp='0.136'>
+<phase name='lirGeneration' stamp='0.136'>
+<phase_done name='lirGeneration' stamp='0.136'/>
+</phase>
+<phase name='linearScan' stamp='0.136'>
+<phase_done name='linearScan' stamp='0.136'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.136'/>
+</phase>
+<phase name='codeemit' stamp='0.136'>
+<phase_done name='codeemit' stamp='0.136'/>
+</phase>
+<phase name='codeinstall' stamp='0.136'>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='341' nmethods='40' adapters='158' free_code_cache='248701696'/>
+<task_done success='1' nmsize='1528' count='283' inlined_bytes='8' stamp='0.136'/>
+</task>
+<task compile_id='45' method='java.lang.String length ()I' bytes='11' count='269' iicount='270' level='3' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.138'/>
+</phase>
+<phase name='buildIR' stamp='0.138'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='length' return='975' flags='1' bytes='11' iicount='273'/>
+<parse method='1093'  stamp='0.138'>
+<phase name='parse_hir' stamp='0.138'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='3845'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.138'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.138'/>
+</phase>
+<parse_done stamp='0.138'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.138'>
+<phase_done name='optimize_blocks' stamp='0.138'/>
+</phase>
+<phase name='gvn' stamp='0.138'>
+<phase_done name='gvn' stamp='0.138'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.138'>
+<phase_done name='rangeCheckElimination' stamp='0.138'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.138'>
+<phase_done name='optimize_null_checks' stamp='0.138'/>
+</phase>
+<phase_done name='buildIR' stamp='0.138'/>
+</phase>
+<phase name='emit_lir' stamp='0.138'>
+<phase name='lirGeneration' stamp='0.138'>
+<phase_done name='lirGeneration' stamp='0.138'/>
+</phase>
+<phase name='linearScan' stamp='0.138'>
+<phase_done name='linearScan' stamp='0.138'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.138'/>
+</phase>
+<phase name='codeemit' stamp='0.138'>
+<phase_done name='codeemit' stamp='0.138'/>
+</phase>
+<phase name='codeinstall' stamp='0.138'>
+<phase_done name='codeinstall' stamp='0.138'/>
+</phase>
+<code_cache total_blobs='346' nmethods='45' adapters='158' free_code_cache='248696448'/>
+<task_done success='1' nmsize='624' count='322' inlined_bytes='15' stamp='0.138'/>
+</task>
+<task compile_id='51' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='3654' iicount='3655' level='1' stamp='0.142'>
+<phase name='setup' stamp='0.142'>
+<phase_done name='setup' stamp='0.142'/>
+</phase>
+<phase name='buildIR' stamp='0.142'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1093' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='3665'/>
+<parse method='1093'  stamp='0.142'>
+<phase name='parse_hir' stamp='0.142'>
+<phase_done name='parse_hir' stamp='0.142'/>
+</phase>
+<parse_done stamp='0.142'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.142'>
+<phase_done name='optimize_blocks' stamp='0.142'/>
+</phase>
+<phase name='gvn' stamp='0.142'>
+<phase_done name='gvn' stamp='0.142'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.142'>
+<phase_done name='rangeCheckElimination' stamp='0.142'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.142'>
+<phase_done name='optimize_null_checks' stamp='0.142'/>
+</phase>
+<phase_done name='buildIR' stamp='0.142'/>
+</phase>
+<phase name='emit_lir' stamp='0.142'>
+<phase name='lirGeneration' stamp='0.142'>
+<phase_done name='lirGeneration' stamp='0.142'/>
+</phase>
+<phase name='linearScan' stamp='0.142'>
+<phase_done name='linearScan' stamp='0.142'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.142'/>
+</phase>
+<phase name='codeemit' stamp='0.142'>
+<phase_done name='codeemit' stamp='0.142'/>
+</phase>
+<phase name='codeinstall' stamp='0.142'>
+<phase_done name='codeinstall' stamp='0.142'/>
+</phase>
+<code_cache total_blobs='356' nmethods='51' adapters='160' free_code_cache='248688256'/>
+<task_done success='1' nmsize='272' count='3692' stamp='0.142'/>
+</task>
+<task compile_id='55' method='java.util.concurrent.ConcurrentHashMap spread (I)I' bytes='10' count='325' iicount='326' level='3' stamp='0.144'>
+<phase name='setup' stamp='0.144'>
+<phase_done name='setup' stamp='0.144'/>
+</phase>
+<phase name='buildIR' stamp='0.145'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='spread' return='975' arguments='975' flags='24' bytes='10' iicount='327'/>
+<parse method='1094'  stamp='0.145'>
+<phase name='parse_hir' stamp='0.145'>
+<phase_done name='parse_hir' stamp='0.145'/>
+</phase>
+<parse_done stamp='0.145'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.145'>
+<phase_done name='optimize_blocks' stamp='0.145'/>
+</phase>
+<phase name='gvn' stamp='0.145'>
+<phase_done name='gvn' stamp='0.145'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.145'>
+<phase_done name='rangeCheckElimination' stamp='0.145'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.145'>
+<phase_done name='optimize_null_checks' stamp='0.145'/>
+</phase>
+<phase_done name='buildIR' stamp='0.145'/>
+</phase>
+<phase name='emit_lir' stamp='0.145'>
+<phase name='lirGeneration' stamp='0.145'>
+<phase_done name='lirGeneration' stamp='0.145'/>
+</phase>
+<phase name='linearScan' stamp='0.145'>
+<phase_done name='linearScan' stamp='0.145'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.145'/>
+</phase>
+<phase name='codeemit' stamp='0.145'>
+<phase_done name='codeemit' stamp='0.145'/>
+</phase>
+<phase name='codeinstall' stamp='0.145'>
+<phase_done name='codeinstall' stamp='0.145'/>
+</phase>
+<code_cache total_blobs='364' nmethods='57' adapters='162' free_code_cache='248680320'/>
+<task_done success='1' nmsize='336' count='348' stamp='0.145'/>
+</task>
+<task compile_id='60' method='java.util.concurrent.ConcurrentHashMap putVal (Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;' bytes='432' count='259' backedge_count='23' iicount='259' level='3' stamp='0.145'>
+<phase name='setup' stamp='0.145'>
+<phase_done name='setup' stamp='0.145'/>
+</phase>
+<phase name='buildIR' stamp='0.145'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='putVal' return='982' arguments='982 982 969' flags='16' bytes='432' iicount='259'/>
+<parse method='1094'  stamp='0.145'>
+<phase name='parse_hir' stamp='0.145'>
+<bc code='182' bci='17'/>
+<type id='975' name='int'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='20'/>
+<method id='1097' holder='1093' name='spread' return='975' arguments='975' flags='24' bytes='10' compile_id='55' compiler='c1' level='3' iicount='348'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.145'/>
+</parse>
+<bc code='184' bci='69'/>
+<klass id='1099' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1100' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<method id='1101' holder='1093' name='tabAt' return='1099' arguments='1100 975' flags='24' bytes='22' compile_id='52' compiler='c1' level='3' iicount='803'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='15'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1105' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' compile_id='53' compiler='c1' level='3' iicount='804'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='182' bci='3'/>
+<method id='1107' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='54' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.145'/>
+</parse>
+<parse_done stamp='0.145'/>
+</parse>
+<bc code='183' bci='91'/>
+<type id='977' name='void'/>
+<method id='1108' holder='1099' name='&lt;init&gt;' return='977' arguments='975 982 982' flags='0' bytes='20' compile_id='58' compiler='c1' level='3' iicount='277'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='1'/>
+<method id='1110' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3700'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.145'/>
+</parse>
+<parse_done stamp='0.145'/>
+</parse>
+<bc code='184' bci='94'/>
+<method id='1112' holder='1093' name='casTabAt' return='969' arguments='1100 975 1099 1099' flags='24' bytes='21' compile_id='59' compiler='c1' level='3' iicount='274'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='17'/>
+<method id='1114' holder='1051' name='compareAndSetObject' return='969' arguments='982 976 982 982' flags='273' bytes='0' compile_id='57' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.145'/>
+</parse>
+<bc code='182' bci='120'/>
+<method id='1115' holder='1093' name='helpTransfer' return='1100' arguments='1100 1099' flags='16' bytes='130' iicount='1'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='159'/>
+<method id='1117' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='192'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='15'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='182' bci='3'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.145'/>
+</parse>
+<parse_done stamp='0.146'/>
+</parse>
+<bc code='182' bci='242'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='293'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='1'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.146'/>
+</parse>
+<parse_done stamp='0.146'/>
+</parse>
+<bc code='182' bci='331'/>
+<klass id='1119' name='java.util.concurrent.ConcurrentHashMap$TreeNode' unloaded='1'/>
+<klass id='1118' name='java.util.concurrent.ConcurrentHashMap$TreeBin' unloaded='1'/>
+<method id='1120' holder='1118' name='putTreeVal' return='1119' arguments='975 982 982' unloaded='1'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='374'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1122' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1124' holder='1122' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1124' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='409'/>
+<method id='1125' holder='1093' name='treeifyBin' return='977' arguments='1100 975' flags='18' bytes='164' iicount='1'/>
+<call method='1125' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='427'/>
+<method id='1127' holder='1093' name='addCount' return='977' arguments='976 975' flags='18' bytes='289' iicount='259'/>
+<call method='1127' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='49'/>
+<method id='1129' holder='1093' name='initTable' return='1100' flags='18' bytes='112' iicount='5'/>
+<call method='1129' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1131' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.146'/>
+</phase>
+<parse_done stamp='0.146'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.146'>
+<phase_done name='optimize_blocks' stamp='0.146'/>
+</phase>
+<phase name='gvn' stamp='0.146'>
+<phase_done name='gvn' stamp='0.146'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.146'>
+<phase_done name='rangeCheckElimination' stamp='0.146'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.146'>
+<phase_done name='optimize_null_checks' stamp='0.146'/>
+</phase>
+<phase_done name='buildIR' stamp='0.146'/>
+</phase>
+<phase name='emit_lir' stamp='0.146'>
+<phase name='lirGeneration' stamp='0.146'>
+<phase_done name='lirGeneration' stamp='0.146'/>
+</phase>
+<phase name='linearScan' stamp='0.146'>
+<phase_done name='linearScan' stamp='0.147'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.147'/>
+</phase>
+<phase name='codeemit' stamp='0.147'>
+<phase_done name='codeemit' stamp='0.147'/>
+</phase>
+<phase name='codeinstall' stamp='0.147'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.147'/>
+</phase>
+<code_cache total_blobs='372' nmethods='65' adapters='162' free_code_cache='248656896'/>
+<task_done success='1' nmsize='8984' count='259' backedge_count='23' inlined_bytes='131' stamp='0.147'/>
+</task>
+<task compile_id='68' method='java.lang.module.ModuleDescriptor$Requires modifiers ()Ljava/util/Set;' bytes='5' count='147' iicount='147' level='1' stamp='0.148'>
+<phase name='setup' stamp='0.148'>
+<phase_done name='setup' stamp='0.148'/>
+</phase>
+<phase name='buildIR' stamp='0.148'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1095' holder='1093' name='modifiers' return='1094' flags='1' bytes='5' iicount='153'/>
+<parse method='1095'  stamp='0.148'>
+<phase name='parse_hir' stamp='0.148'>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='374' nmethods='67' adapters='162' free_code_cache='248654848'/>
+<task_done success='1' nmsize='272' count='182' stamp='0.149'/>
+</task>
+<task compile_id='71' method='java.util.HashMap containsKey (Ljava/lang/Object;)Z' bytes='18' count='281' iicount='281' level='3' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='containsKey' return='969' arguments='982' flags='1' bytes='18' iicount='281'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='557'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.149'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1100' name='java.util.HashMap$Node' flags='8'/>
+<method id='1101' holder='1093' name='getNode' return='1100' arguments='975 982' flags='16' bytes='148' iicount='306'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='377' nmethods='70' adapters='162' free_code_cache='248649728'/>
+<task_done success='1' nmsize='1016' count='281' inlined_bytes='20' stamp='0.149'/>
+</task>
+<task compile_id='75' method='java.util.HashMap$Node &lt;init&gt; (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V' bytes='26' count='349' iicount='350' level='3' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap$Node' flags='8'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975 982 982 1093' flags='0' bytes='26' iicount='357'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3761'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.149'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='380' nmethods='73' adapters='162' free_code_cache='248642944'/>
+<task_done success='1' nmsize='752' count='381' inlined_bytes='1' stamp='0.149'/>
+</task>
+<task compile_id='72' method='java.util.ImmutableCollections$Set1 size ()I' bytes='2' count='159' iicount='159' level='1' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='2' iicount='159'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='382' nmethods='75' adapters='162' free_code_cache='248641280'/>
+<task_done success='1' nmsize='272' count='159' stamp='0.150'/>
+</task>
+<task compile_id='79' method='java.util.Collections$1 hasNext ()Z' bytes='5' count='128' iicount='128' level='1' stamp='0.150'>
+<phase name='setup' stamp='0.150'>
+<phase_done name='setup' stamp='0.150'/>
+</phase>
+<phase name='buildIR' stamp='0.150'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.150'>
+<phase name='parse_hir' stamp='0.150'>
+<phase_done name='parse_hir' stamp='0.150'/>
+</phase>
+<parse_done stamp='0.150'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.150'>
+<phase_done name='optimize_blocks' stamp='0.150'/>
+</phase>
+<phase name='gvn' stamp='0.150'>
+<phase_done name='gvn' stamp='0.150'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.150'>
+<phase_done name='rangeCheckElimination' stamp='0.150'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.150'>
+<phase_done name='optimize_null_checks' stamp='0.150'/>
+</phase>
+<phase_done name='buildIR' stamp='0.150'/>
+</phase>
+<phase name='emit_lir' stamp='0.150'>
+<phase name='lirGeneration' stamp='0.150'>
+<phase_done name='lirGeneration' stamp='0.150'/>
+</phase>
+<phase name='linearScan' stamp='0.150'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='385' nmethods='78' adapters='162' free_code_cache='248638080'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.150'/>
+</task>
+<task compile_id='83' method='java.util.HashMap$HashIterator hasNext ()Z' bytes='13' count='265' iicount='265' level='3' stamp='0.150'>
+<phase name='setup' stamp='0.150'>
+<phase_done name='setup' stamp='0.150'/>
+</phase>
+<phase name='buildIR' stamp='0.150'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='17' bytes='13' iicount='265'/>
+<parse method='1094'  stamp='0.150'>
+<phase name='parse_hir' stamp='0.150'>
+<phase_done name='parse_hir' stamp='0.150'/>
+</phase>
+<parse_done stamp='0.150'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.150'>
+<phase_done name='optimize_blocks' stamp='0.150'/>
+</phase>
+<phase name='gvn' stamp='0.150'>
+<phase_done name='gvn' stamp='0.150'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.150'>
+<phase_done name='rangeCheckElimination' stamp='0.150'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.150'>
+<phase_done name='optimize_null_checks' stamp='0.150'/>
+</phase>
+<phase_done name='buildIR' stamp='0.150'/>
+</phase>
+<phase name='emit_lir' stamp='0.150'>
+<phase name='lirGeneration' stamp='0.150'>
+<phase_done name='lirGeneration' stamp='0.150'/>
+</phase>
+<phase name='linearScan' stamp='0.150'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='389' nmethods='82' adapters='162' free_code_cache='248627840'/>
+<task_done success='1' nmsize='432' count='265' stamp='0.151'/>
+</task>
+<task compile_id='86' method='java.util.Optional &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='259' iicount='259' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' iicount='259'/>
+<parse method='1094'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3896'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1098' name='java.util.Objects' flags='17'/>
+<method id='1099' holder='1098' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='1898'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1101' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.151'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.151'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.151'/>
+</phase>
+<phase name='codeemit' stamp='0.151'>
+<phase_done name='codeemit' stamp='0.151'/>
+</phase>
+<phase name='codeinstall' stamp='0.151'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='393' nmethods='86' adapters='162' free_code_cache='248620928'/>
+<task_done success='1' nmsize='872' count='277' inlined_bytes='15' stamp='0.151'/>
+</task>
+<task compile_id='92' method='java.util.HashSet add (Ljava/lang/Object;)Z' bytes='20' count='256' iicount='256' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1094' holder='1093' name='add' return='969' arguments='982' flags='1' bytes='20' iicount='256'/>
+<parse method='1094'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='182' bci='8'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1099' holder='1096' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='551'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='1187'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='9'/>
+<method id='1104' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='207'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1105' holder='1096' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='572'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.151'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='397' nmethods='90' adapters='162' free_code_cache='248614784'/>
+<task_done success='1' nmsize='1304' count='393' inlined_bytes='33' stamp='0.152'/>
+</task>
+<task compile_id='96' method='java.util.HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node;' bytes='100' count='267' backedge_count='528' iicount='267' level='3' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<klass id='1093' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1095' holder='1093' name='nextNode' return='1094' flags='16' bytes='100' iicount='269'/>
+<parse method='1095'  stamp='0.152'>
+<phase name='parse_hir' stamp='0.152'>
+<bc code='183' bci='23'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='35'/>
+<klass id='1100' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.152'/>
+</phase>
+<parse_done stamp='0.152'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.152'>
+<phase_done name='optimize_blocks' stamp='0.152'/>
+</phase>
+<phase name='gvn' stamp='0.152'>
+<phase_done name='gvn' stamp='0.152'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.152'>
+<phase_done name='rangeCheckElimination' stamp='0.152'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.152'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='401' nmethods='94' adapters='162' free_code_cache='248606336'/>
+<task_done success='1' nmsize='1432' count='298' backedge_count='566' stamp='0.152'/>
+</task>
+<task compile_id='99' method='java.lang.module.ModuleDescriptor isAutomatic ()Z' bytes='5' count='139' iicount='139' level='1' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='isAutomatic' return='969' flags='1' bytes='5' iicount='139'/>
+<parse method='1094'  stamp='0.152'>
+<phase name='parse_hir' stamp='0.152'>
+<phase_done name='parse_hir' stamp='0.152'/>
+</phase>
+<parse_done stamp='0.152'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.152'>
+<phase_done name='optimize_blocks' stamp='0.152'/>
+</phase>
+<phase name='gvn' stamp='0.152'>
+<phase_done name='gvn' stamp='0.152'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.152'>
+<phase_done name='rangeCheckElimination' stamp='0.152'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.152'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='404' nmethods='97' adapters='162' free_code_cache='248601728'/>
+<task_done success='1' nmsize='272' count='139' stamp='0.152'/>
+</task>
+<task compile_id='100' method='java.lang.module.Resolver computeIfAbsent (Ljava/util/Map;Ljava/lang/String;Ljava/lang/module/Configuration;Ljava/lang/module/ModuleReference;)Ljava/lang/module/ResolvedModule;' bytes='42' count='299' iicount='299' level='3' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<klass id='1097' name='java.lang.module.ResolvedModule' flags='17'/>
+<klass id='1094' name='java.util.Map' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.Configuration' flags='17'/>
+<klass id='1096' name='java.lang.module.ModuleReference' flags='1025'/>
+<klass id='1093' name='java.lang.module.Resolver' flags='16'/>
+<method id='1098' holder='1093' name='computeIfAbsent' return='1097' arguments='1094 983 1095 1096' flags='2' bytes='42' iicount='308'/>
+<parse method='1098'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='185' bci='2'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='1094' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='24'/>
+<type id='977' name='void'/>
+<method id='1102' holder='1097' name='&lt;init&gt;' return='977' arguments='1095 1096' flags='0' bytes='27' iicount='77'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<method id='1104' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='4593'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.153'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1106' name='java.util.Objects' flags='17'/>
+<method id='1107' holder='1106' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='2198'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1109' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.153'/>
+</parse>
+<bc code='184' bci='17'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='8'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.153'/>
+</parse>
+<parse_done stamp='0.153'/>
+</parse>
+<bc code='185' bci='33'/>
+<method id='1111' holder='1094' name='put' return='982' arguments='982 982' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<phase_done name='codeinstall' stamp='0.153'/>
+</phase>
+<code_cache total_blobs='413' nmethods='103' adapters='162' free_code_cache='248592000'/>
+<task_done success='1' nmsize='2232' count='312' inlined_bytes='56' stamp='0.153'/>
+</task>
+<task compile_id='108' method='java.util.HashMap$KeySet iterator ()Ljava/util/Iterator;' bytes='12' count='361' iicount='361' level='3' stamp='0.153'>
+<phase name='setup' stamp='0.153'>
+<phase_done name='setup' stamp='0.153'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.HashMap$KeySet' flags='16'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='17' bytes='12' iicount='375'/>
+<parse method='1095'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.HashMap' flags='1'/>
+<klass id='1097' name='java.util.HashMap$KeyIterator' flags='16'/>
+<method id='1099' holder='1097' name='&lt;init&gt;' return='977' arguments='1098' flags='0' bytes='11' iicount='425'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='7'/>
+<klass id='1101' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' arguments='1098' flags='0' bytes='79' iicount='459'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.153'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<phase_done name='codeinstall' stamp='0.153'/>
+</phase>
+<code_cache total_blobs='414' nmethods='105' adapters='162' free_code_cache='248590592'/>
+<task_done success='1' nmsize='712' count='595' inlined_bytes='11' stamp='0.153'/>
+</task>
+<task compile_id='109' method='java.util.HashMap$KeyIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='11' count='612' iicount='613' level='3' stamp='0.154'>
+<phase name='setup' stamp='0.154'>
+<phase_done name='setup' stamp='0.154'/>
+</phase>
+<phase name='buildIR' stamp='0.154'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.HashMap' flags='1'/>
+<klass id='1093' name='java.util.HashMap$KeyIterator' flags='16'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='11' iicount='679'/>
+<parse method='1095'  stamp='0.154'>
+<phase name='parse_hir' stamp='0.154'>
+<bc code='183' bci='7'/>
+<klass id='1097' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='79' compile_id='105' compiler='c1' level='3' iicount='695'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.154'/>
+</phase>
+<parse_done stamp='0.154'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.154'>
+<phase_done name='optimize_blocks' stamp='0.154'/>
+</phase>
+<phase name='gvn' stamp='0.154'>
+<phase_done name='gvn' stamp='0.154'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.154'>
+<phase_done name='rangeCheckElimination' stamp='0.154'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.154'>
+<phase_done name='optimize_null_checks' stamp='0.154'/>
+</phase>
+<phase_done name='buildIR' stamp='0.154'/>
+</phase>
+<phase name='emit_lir' stamp='0.154'>
+<phase name='lirGeneration' stamp='0.154'>
+<phase_done name='lirGeneration' stamp='0.154'/>
+</phase>
+<phase name='linearScan' stamp='0.154'>
+<phase_done name='linearScan' stamp='0.154'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.154'/>
+</phase>
+<phase name='codeemit' stamp='0.154'>
+<phase_done name='codeemit' stamp='0.154'/>
+</phase>
+<phase name='codeinstall' stamp='0.154'>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='418' nmethods='109' adapters='162' free_code_cache='248584192'/>
+<task_done success='1' nmsize='488' count='692' stamp='0.154'/>
+</task>
+<task compile_id='114' method='java.util.HashSet contains (Ljava/lang/Object;)Z' bytes='9' count='264' iicount='264' level='3' stamp='0.154'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='982' flags='1' bytes='9' iicount='264'/>
+<parse method='1094'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<bc code='182' bci='5'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1097' holder='1096' name='containsKey' return='969' arguments='982' flags='1' bytes='18' compile_id='71' compiler='c1' level='3' iicount='638'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='3009'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='182' bci='9'/>
+<method id='1102' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.155'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1103' name='java.util.HashMap$Node' flags='8'/>
+<method id='1104' holder='1096' name='getNode' return='1103' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='1865'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.155'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='423' nmethods='114' adapters='162' free_code_cache='248578560'/>
+<task_done success='1' nmsize='1272' count='264' inlined_bytes='38' stamp='0.155'/>
+</task>
+<task compile_id='118' method='java.util.concurrent.ConcurrentHashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='8' count='353' iicount='353' level='3' stamp='0.155'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='putIfAbsent' return='982' arguments='982 982' flags='1' bytes='8' iicount='356'/>
+<parse method='1094'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<bc code='182' bci='4'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='putVal' return='982' arguments='982 982 969' flags='16' bytes='432' compile_id='60' compiler='c1' level='3' iicount='435'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='426' nmethods='117' adapters='162' free_code_cache='248574208'/>
+<task_done success='1' nmsize='520' count='471' stamp='0.155'/>
+</task>
+<task compile_id='119' method='java.lang.module.ModuleDescriptor packages ()Ljava/util/Set;' bytes='5' count='128' iicount='128' level='1' stamp='0.155'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='packages' return='1094' flags='1' bytes='5' iicount='128'/>
+<parse method='1095'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='428' nmethods='119' adapters='162' free_code_cache='248571776'/>
+<task_done success='1' nmsize='272' count='138' stamp='0.155'/>
+</task>
+<task compile_id='124' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='260' iicount='260' level='3' stamp='0.156'>
+<phase name='setup' stamp='0.156'>
+<phase_done name='setup' stamp='0.156'/>
+</phase>
+<phase name='buildIR' stamp='0.156'>
+<klass id='1093' name='java.lang.CharacterData' flags='1024'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='of' return='1093' arguments='975' flags='24' bytes='120' iicount='260'/>
+<parse method='1094'  stamp='0.156'>
+<phase name='parse_hir' stamp='0.156'>
+<phase_done name='parse_hir' stamp='0.156'/>
+</phase>
+<parse_done stamp='0.156'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.156'>
+<phase_done name='optimize_blocks' stamp='0.156'/>
+</phase>
+<phase name='gvn' stamp='0.156'>
+<phase_done name='gvn' stamp='0.156'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.156'>
+<phase_done name='rangeCheckElimination' stamp='0.156'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.156'>
+<phase_done name='optimize_null_checks' stamp='0.156'/>
+</phase>
+<phase_done name='buildIR' stamp='0.156'/>
+</phase>
+<phase name='emit_lir' stamp='0.156'>
+<phase name='lirGeneration' stamp='0.156'>
+<phase_done name='lirGeneration' stamp='0.156'/>
+</phase>
+<phase name='linearScan' stamp='0.156'>
+<phase_done name='linearScan' stamp='0.156'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.156'/>
+</phase>
+<phase name='codeemit' stamp='0.156'>
+<phase_done name='codeemit' stamp='0.156'/>
+</phase>
+<phase name='codeinstall' stamp='0.156'>
+<phase_done name='codeinstall' stamp='0.156'/>
+</phase>
+<code_cache total_blobs='433' nmethods='124' adapters='162' free_code_cache='248564864'/>
+<task_done success='1' nmsize='1488' count='260' stamp='0.156'/>
+</task>
+<task compile_id='130' method='java.util.ImmutableCollections$Set2$1 hasNext ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.158'>
+<phase name='setup' stamp='0.158'>
+<phase_done name='setup' stamp='0.158'/>
+</phase>
+<phase name='buildIR' stamp='0.158'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set2$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='14' iicount='256'/>
+<parse method='1094'  stamp='0.158'>
+<phase name='parse_hir' stamp='0.158'>
+<phase_done name='parse_hir' stamp='0.158'/>
+</phase>
+<parse_done stamp='0.158'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.158'>
+<phase_done name='optimize_blocks' stamp='0.158'/>
+</phase>
+<phase name='gvn' stamp='0.158'>
+<phase_done name='gvn' stamp='0.158'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.158'>
+<phase_done name='rangeCheckElimination' stamp='0.158'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.158'>
+<phase_done name='optimize_null_checks' stamp='0.158'/>
+</phase>
+<phase_done name='buildIR' stamp='0.158'/>
+</phase>
+<phase name='emit_lir' stamp='0.158'>
+<phase name='lirGeneration' stamp='0.158'>
+<phase_done name='lirGeneration' stamp='0.158'/>
+</phase>
+<phase name='linearScan' stamp='0.158'>
+<phase_done name='linearScan' stamp='0.158'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.158'/>
+</phase>
+<phase name='codeemit' stamp='0.158'>
+<phase_done name='codeemit' stamp='0.158'/>
+</phase>
+<phase name='codeinstall' stamp='0.158'>
+<phase_done name='codeinstall' stamp='0.158'/>
+</phase>
+<code_cache total_blobs='440' nmethods='129' adapters='162' free_code_cache='248560000'/>
+<task_done success='1' nmsize='432' count='259' stamp='0.158'/>
+</task>
+<task compile_id='131' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='265' iicount='265' level='3' stamp='0.158'>
+<phase name='setup' stamp='0.158'>
+<phase_done name='setup' stamp='0.158'/>
+</phase>
+<phase name='buildIR' stamp='0.158'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' iicount='268'/>
+<parse method='1093'  stamp='0.158'>
+<phase name='parse_hir' stamp='0.158'>
+<bc code='183' bci='24'/>
+<method id='1095' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' iicount='64'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1097' name='java.util.Arrays' flags='1'/>
+<method id='1098' holder='1097' name='copyOf' return='1085' arguments='1085 975' flags='9' bytes='19' iicount='180'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='11'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='120' compiler='c1' level='3' iicount='396'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.159'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1103' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.159'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.159'/>
+</phase>
+<parse_done stamp='0.159'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.159'>
+<phase_done name='optimize_blocks' stamp='0.159'/>
+</phase>
+<phase name='gvn' stamp='0.159'>
+<phase_done name='gvn' stamp='0.159'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.159'>
+<phase_done name='rangeCheckElimination' stamp='0.159'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.159'>
+<phase_done name='optimize_null_checks' stamp='0.159'/>
+</phase>
+<phase_done name='buildIR' stamp='0.159'/>
+</phase>
+<phase name='emit_lir' stamp='0.159'>
+<phase name='lirGeneration' stamp='0.159'>
+<phase_done name='lirGeneration' stamp='0.159'/>
+</phase>
+<phase name='linearScan' stamp='0.159'>
+<phase_done name='linearScan' stamp='0.159'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.159'/>
+</phase>
+<phase name='codeemit' stamp='0.159'>
+<phase_done name='codeemit' stamp='0.159'/>
+</phase>
+<phase name='codeinstall' stamp='0.159'>
+<phase_done name='codeinstall' stamp='0.159'/>
+</phase>
+<code_cache total_blobs='441' nmethods='130' adapters='162' free_code_cache='248557824'/>
+<task_done success='1' nmsize='1208' count='301' inlined_bytes='30' stamp='0.159'/>
+</task>
+<task compile_id='142' method='java.util.ImmutableCollections$SetN iterator ()Ljava/util/Iterator;' bytes='9' count='260' iicount='260' level='3' stamp='0.161'>
+<phase name='setup' stamp='0.161'>
+<phase_done name='setup' stamp='0.161'/>
+</phase>
+<phase name='buildIR' stamp='0.161'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='9' iicount='261'/>
+<parse method='1095'  stamp='0.161'>
+<phase name='parse_hir' stamp='0.161'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='1093' flags='0' bytes='15' iicount='263'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='7436'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.161'/>
+</parse>
+<parse_done stamp='0.161'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.161'/>
+</phase>
+<parse_done stamp='0.161'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.161'>
+<phase_done name='optimize_blocks' stamp='0.161'/>
+</phase>
+<phase name='gvn' stamp='0.161'>
+<phase_done name='gvn' stamp='0.161'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.161'>
+<phase_done name='rangeCheckElimination' stamp='0.161'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.161'>
+<phase_done name='optimize_null_checks' stamp='0.161'/>
+</phase>
+<phase_done name='buildIR' stamp='0.161'/>
+</phase>
+<phase name='emit_lir' stamp='0.161'>
+<phase name='lirGeneration' stamp='0.161'>
+<phase_done name='lirGeneration' stamp='0.161'/>
+</phase>
+<phase name='linearScan' stamp='0.161'>
+<phase_done name='linearScan' stamp='0.161'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.161'/>
+</phase>
+<phase name='codeemit' stamp='0.161'>
+<phase_done name='codeemit' stamp='0.161'/>
+</phase>
+<phase name='codeinstall' stamp='0.161'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='456' nmethods='143' adapters='162' free_code_cache='248537856'/>
+<task_done success='1' nmsize='720' count='280' inlined_bytes='16' stamp='0.162'/>
+</task>
+<task compile_id='148' method='java.util.HashMap isEmpty ()Z' bytes='13' count='264' iicount='264' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='isEmpty' return='969' flags='1' bytes='13' iicount='266'/>
+<parse method='1094'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='462' nmethods='149' adapters='162' free_code_cache='248528640'/>
+<task_done success='1' nmsize='432' count='315' stamp='0.162'/>
+</task>
+<task compile_id='150' method='java.util.Collections$UnmodifiableCollection$1 hasNext ()Z' bytes='10' count='272' iicount='272' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$UnmodifiableCollection$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='10' iicount='272'/>
+<parse method='1094'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Iterator' flags='1537'/>
+<method id='1097' holder='1096' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='463' nmethods='150' adapters='162' free_code_cache='248527488'/>
+<task_done success='1' nmsize='552' count='282' stamp='0.162'/>
+</task>
+<task compile_id='151' method='java.util.ImmutableCollections$Set1 iterator ()Ljava/util/Iterator;' bytes='8' count='257' iicount='257' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set1' flags='24'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='8' iicount='257'/>
+<parse method='1095'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<bc code='184' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1097' name='java.util.Collections' flags='1'/>
+<method id='1098' holder='1097' name='singletonIterator' return='1094' arguments='982' flags='8' bytes='9' iicount='260'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.util.Collections$1' flags='0'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='15' iicount='264'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='6'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='8223'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.163'/>
+</parse>
+<parse_done stamp='0.163'/>
+</parse>
+<parse_done stamp='0.163'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.163'/>
+</phase>
+<parse_done stamp='0.163'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.163'>
+<phase_done name='optimize_blocks' stamp='0.163'/>
+</phase>
+<phase name='gvn' stamp='0.163'>
+<phase_done name='gvn' stamp='0.163'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.163'>
+<phase_done name='rangeCheckElimination' stamp='0.163'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.163'>
+<phase_done name='optimize_null_checks' stamp='0.163'/>
+</phase>
+<phase_done name='buildIR' stamp='0.163'/>
+</phase>
+<phase name='emit_lir' stamp='0.163'>
+<phase name='lirGeneration' stamp='0.163'>
+<phase_done name='lirGeneration' stamp='0.163'/>
+</phase>
+<phase name='linearScan' stamp='0.163'>
+<phase_done name='linearScan' stamp='0.163'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.163'/>
+</phase>
+<phase name='codeemit' stamp='0.163'>
+<phase_done name='codeemit' stamp='0.163'/>
+</phase>
+<phase name='codeinstall' stamp='0.163'>
+<phase_done name='codeinstall' stamp='0.163'/>
+</phase>
+<code_cache total_blobs='467' nmethods='154' adapters='162' free_code_cache='248522368'/>
+<task_done success='1' nmsize='816' count='284' inlined_bytes='25' stamp='0.163'/>
+</task>
+<task compile_id='159' method='java.lang.reflect.Field getName ()Ljava/lang/String;' bytes='5' count='270' iicount='270' level='1' stamp='0.164'>
+<phase name='setup' stamp='0.164'>
+<phase_done name='setup' stamp='0.164'/>
+</phase>
+<phase name='buildIR' stamp='0.164'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1021' name='java.lang.reflect.Field' flags='17'/>
+<method id='1093' holder='1021' name='getName' return='983' flags='1' bytes='5' iicount='270'/>
+<parse method='1093'  stamp='0.164'>
+<phase name='parse_hir' stamp='0.164'>
+<phase_done name='parse_hir' stamp='0.164'/>
+</phase>
+<parse_done stamp='0.164'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.164'>
+<phase_done name='optimize_blocks' stamp='0.164'/>
+</phase>
+<phase name='gvn' stamp='0.164'>
+<phase_done name='gvn' stamp='0.164'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.164'>
+<phase_done name='rangeCheckElimination' stamp='0.164'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.164'>
+<phase_done name='optimize_null_checks' stamp='0.164'/>
+</phase>
+<phase_done name='buildIR' stamp='0.164'/>
+</phase>
+<phase name='emit_lir' stamp='0.164'>
+<phase name='lirGeneration' stamp='0.164'>
+<phase_done name='lirGeneration' stamp='0.164'/>
+</phase>
+<phase name='linearScan' stamp='0.164'>
+<phase_done name='linearScan' stamp='0.164'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.164'/>
+</phase>
+<phase name='codeemit' stamp='0.164'>
+<phase_done name='codeemit' stamp='0.164'/>
+</phase>
+<phase name='codeinstall' stamp='0.164'>
+<phase_done name='codeinstall' stamp='0.164'/>
+</phase>
+<code_cache total_blobs='472' nmethods='159' adapters='162' free_code_cache='248517504'/>
+<task_done success='1' nmsize='272' count='270' stamp='0.164'/>
+</task>
+<task compile_id='160' method='jdk.internal.module.ModuleReferenceImpl moduleResolution ()Ljdk/internal/module/ModuleResolution;' bytes='5' count='148' iicount='148' level='1' stamp='0.164'>
+<phase name='setup' stamp='0.164'>
+<phase_done name='setup' stamp='0.164'/>
+</phase>
+<phase name='buildIR' stamp='0.164'>
+<klass id='1094' name='jdk.internal.module.ModuleResolution' flags='17'/>
+<klass id='1093' name='jdk.internal.module.ModuleReferenceImpl' flags='1'/>
+<method id='1095' holder='1093' name='moduleResolution' return='1094' flags='1' bytes='5' iicount='148'/>
+<parse method='1095'  stamp='0.164'>
+<phase name='parse_hir' stamp='0.164'>
+<phase_done name='parse_hir' stamp='0.164'/>
+</phase>
+<parse_done stamp='0.164'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.164'>
+<phase_done name='optimize_blocks' stamp='0.164'/>
+</phase>
+<phase name='gvn' stamp='0.164'>
+<phase_done name='gvn' stamp='0.164'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.164'>
+<phase_done name='rangeCheckElimination' stamp='0.164'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.164'>
+<phase_done name='optimize_null_checks' stamp='0.164'/>
+</phase>
+<phase_done name='buildIR' stamp='0.164'/>
+</phase>
+<phase name='emit_lir' stamp='0.164'>
+<phase name='lirGeneration' stamp='0.164'>
+<phase_done name='lirGeneration' stamp='0.164'/>
+</phase>
+<phase name='linearScan' stamp='0.164'>
+<phase_done name='linearScan' stamp='0.164'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.164'/>
+</phase>
+<phase name='codeemit' stamp='0.164'>
+<phase_done name='codeemit' stamp='0.164'/>
+</phase>
+<phase name='codeinstall' stamp='0.164'>
+<phase_done name='codeinstall' stamp='0.164'/>
+</phase>
+<code_cache total_blobs='473' nmethods='160' adapters='162' free_code_cache='248516736'/>
+<task_done success='1' nmsize='272' count='148' stamp='0.164'/>
+</task>
+<task compile_id='164' method='java.util.Collections$EmptyIterator hasNext ()Z' bytes='2' count='131' iicount='131' level='1' stamp='0.166'>
+<phase name='setup' stamp='0.166'>
+<phase_done name='setup' stamp='0.166'/>
+</phase>
+<phase name='buildIR' stamp='0.166'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$EmptyIterator' flags='10'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='2' iicount='131'/>
+<parse method='1094'  stamp='0.166'>
+<phase name='parse_hir' stamp='0.166'>
+<phase_done name='parse_hir' stamp='0.166'/>
+</phase>
+<parse_done stamp='0.166'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.166'>
+<phase_done name='optimize_blocks' stamp='0.166'/>
+</phase>
+<phase name='gvn' stamp='0.166'>
+<phase_done name='gvn' stamp='0.166'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.166'>
+<phase_done name='rangeCheckElimination' stamp='0.166'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.166'>
+<phase_done name='optimize_null_checks' stamp='0.166'/>
+</phase>
+<phase_done name='buildIR' stamp='0.166'/>
+</phase>
+<phase name='emit_lir' stamp='0.166'>
+<phase name='lirGeneration' stamp='0.166'>
+<phase_done name='lirGeneration' stamp='0.166'/>
+</phase>
+<phase name='linearScan' stamp='0.166'>
+<phase_done name='linearScan' stamp='0.166'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.166'/>
+</phase>
+<phase name='codeemit' stamp='0.166'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.166'/>
+</phase>
+<code_cache total_blobs='476' nmethods='163' adapters='162' free_code_cache='248511232'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.166'/>
+</task>
+<task compile_id='168' method='java.util.HashMap putIfAbsent (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='261' iicount='262' level='3' stamp='0.166'>
+<phase name='setup' stamp='0.166'>
+<phase_done name='setup' stamp='0.166'/>
+</phase>
+<phase name='buildIR' stamp='0.166'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='putIfAbsent' return='982' arguments='982 982' flags='1' bytes='13' iicount='288'/>
+<parse method='1094'  stamp='0.166'>
+<phase name='parse_hir' stamp='0.166'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='6642'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.166'/>
+</parse>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='3034'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.166'/>
+</phase>
+<parse_done stamp='0.166'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.166'>
+<phase_done name='optimize_blocks' stamp='0.166'/>
+</phase>
+<phase name='gvn' stamp='0.166'>
+<phase_done name='gvn' stamp='0.166'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.166'>
+<phase_done name='rangeCheckElimination' stamp='0.166'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.166'>
+<phase_done name='optimize_null_checks' stamp='0.166'/>
+</phase>
+<phase_done name='buildIR' stamp='0.166'/>
+</phase>
+<phase name='emit_lir' stamp='0.166'>
+<phase name='lirGeneration' stamp='0.166'>
+<phase_done name='lirGeneration' stamp='0.166'/>
+</phase>
+<phase name='linearScan' stamp='0.166'>
+<phase_done name='linearScan' stamp='0.166'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.166'/>
+</phase>
+<phase name='codeemit' stamp='0.166'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.167'/>
+</phase>
+<code_cache total_blobs='481' nmethods='168' adapters='162' free_code_cache='248503680'/>
+<task_done success='1' nmsize='952' count='399' inlined_bytes='20' stamp='0.167'/>
+</task>
+<task compile_id='173' method='java.util.zip.ZipUtils SH ([BI)I' bytes='21' count='259' iicount='259' level='3' stamp='0.182'>
+<phase name='setup' stamp='0.182'>
+<phase_done name='setup' stamp='0.182'/>
+</phase>
+<phase name='buildIR' stamp='0.182'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.util.zip.ZipUtils' flags='0'/>
+<method id='1094' holder='1093' name='SH' return='975' arguments='1085 975' flags='24' bytes='21' iicount='259'/>
+<parse method='1094'  stamp='0.182'>
+<phase name='parse_hir' stamp='0.182'>
+<phase_done name='parse_hir' stamp='0.182'/>
+</phase>
+<parse_done stamp='0.182'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.182'>
+<phase_done name='optimize_blocks' stamp='0.182'/>
+</phase>
+<phase name='gvn' stamp='0.182'>
+<phase_done name='gvn' stamp='0.182'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.182'>
+<phase_done name='rangeCheckElimination' stamp='0.182'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.182'>
+<phase_done name='optimize_null_checks' stamp='0.182'/>
+</phase>
+<phase_done name='buildIR' stamp='0.182'/>
+</phase>
+<phase name='emit_lir' stamp='0.182'>
+<phase name='lirGeneration' stamp='0.182'>
+<phase_done name='lirGeneration' stamp='0.182'/>
+</phase>
+<phase name='linearScan' stamp='0.182'>
+<phase_done name='linearScan' stamp='0.182'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.182'/>
+</phase>
+<phase name='codeemit' stamp='0.182'>
+<phase_done name='codeemit' stamp='0.182'/>
+</phase>
+<phase name='codeinstall' stamp='0.182'>
+<phase_done name='codeinstall' stamp='0.182'/>
+</phase>
+<code_cache total_blobs='520' nmethods='173' adapters='194' free_code_cache='248480256'/>
+<task_done success='1' nmsize='400' count='259' stamp='0.182'/>
+</task>
+<task compile_id='178' method='sun.nio.fs.UnixPath checkNotNul (Ljava/lang/String;C)V' bytes='16' count='266' iicount='266' level='3' stamp='0.187'>
+<phase name='setup' stamp='0.187'>
+<phase_done name='setup' stamp='0.187'/>
+</phase>
+<phase name='buildIR' stamp='0.187'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<klass id='1093' name='sun.nio.fs.UnixPath' flags='0'/>
+<method id='1094' holder='1093' name='checkNotNul' return='977' arguments='983 970' flags='10' bytes='16' iicount='266'/>
+<parse method='1094'  stamp='0.187'>
+<phase name='parse_hir' stamp='0.187'>
+<bc code='183' bci='11'/>
+<klass id='1096' name='java.nio.file.InvalidPathException' unloaded='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983 983' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.187'/>
+</phase>
+<parse_done stamp='0.187'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.187'>
+<phase_done name='optimize_blocks' stamp='0.187'/>
+</phase>
+<phase name='gvn' stamp='0.187'>
+<phase_done name='gvn' stamp='0.187'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.187'>
+<phase_done name='rangeCheckElimination' stamp='0.187'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.187'>
+<phase_done name='optimize_null_checks' stamp='0.187'/>
+</phase>
+<phase_done name='buildIR' stamp='0.187'/>
+</phase>
+<phase name='emit_lir' stamp='0.187'>
+<phase name='lirGeneration' stamp='0.187'>
+<phase_done name='lirGeneration' stamp='0.187'/>
+</phase>
+<phase name='linearScan' stamp='0.187'>
+<phase_done name='linearScan' stamp='0.187'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.187'/>
+</phase>
+<phase name='codeemit' stamp='0.187'>
+<phase_done name='codeemit' stamp='0.187'/>
+</phase>
+<phase name='codeinstall' stamp='0.187'>
+<phase_done name='codeinstall' stamp='0.187'/>
+</phase>
+<code_cache total_blobs='528' nmethods='178' adapters='197' free_code_cache='248472192'/>
+<task_done success='1' nmsize='520' count='266' stamp='0.187'/>
+</task>
+<task compile_id='182' method='java.lang.String getBytes ([BIB)V' bytes='44' count='259' iicount='259' level='3' stamp='0.197'>
+<phase name='setup' stamp='0.197'>
+<phase_done name='setup' stamp='0.197'/>
+</phase>
+<phase name='buildIR' stamp='0.197'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' iicount='259'/>
+<parse method='1093'  stamp='0.197'>
+<phase name='parse_hir' stamp='0.197'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='8096'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.197'/>
+</parse>
+<bc code='184' bci='22'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1098' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='40'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='10' iicount='1'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='6'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='42' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.197'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.197'/>
+</phase>
+<parse_done stamp='0.197'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.197'>
+<phase_done name='optimize_blocks' stamp='0.197'/>
+</phase>
+<phase name='gvn' stamp='0.197'>
+<phase_done name='gvn' stamp='0.197'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.197'>
+<phase_done name='rangeCheckElimination' stamp='0.197'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.197'>
+<phase_done name='optimize_null_checks' stamp='0.197'/>
+</phase>
+<phase_done name='buildIR' stamp='0.197'/>
+</phase>
+<phase name='emit_lir' stamp='0.197'>
+<phase name='lirGeneration' stamp='0.197'>
+<phase_done name='lirGeneration' stamp='0.197'/>
+</phase>
+<phase name='linearScan' stamp='0.197'>
+<phase_done name='linearScan' stamp='0.197'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.197'/>
+</phase>
+<phase name='codeemit' stamp='0.197'>
+<phase_done name='codeemit' stamp='0.197'/>
+</phase>
+<phase name='codeinstall' stamp='0.197'>
+<phase_done name='codeinstall' stamp='0.197'/>
+</phase>
+<code_cache total_blobs='532' nmethods='181' adapters='198' free_code_cache='248467840'/>
+<task_done success='1' nmsize='1016' count='259' inlined_bytes='25' stamp='0.197'/>
+</task>
+<task compile_id='185' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='281' iicount='281' level='3' stamp='0.200'>
+<phase name='setup' stamp='0.200'>
+<phase_done name='setup' stamp='0.200'/>
+</phase>
+<phase name='buildIR' stamp='0.200'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' iicount='281'/>
+<parse method='1093'  stamp='0.200'>
+<phase name='parse_hir' stamp='0.200'>
+<bc code='183' bci='5'/>
+<method id='1095' holder='1048' name='appendNull' return='1048' flags='2' bytes='83' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1097' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='1689'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1099' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='8426'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.200'/>
+</parse>
+<parse_done stamp='0.200'/>
+</parse>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<method id='1102' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='131' compiler='c1' level='3' iicount='413'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<method id='1104' holder='1048' name='putStringAt' return='977' arguments='975 983' flags='18' bytes='29' compile_id='180' compiler='c1' level='3' iicount='281'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='1'/>
+<method id='1106' holder='1048' name='getCoder' return='973' flags='16' bytes='15' compile_id='181' compiler='c1' level='3' iicount='281'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.201'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.201'/>
+</parse>
+<bc code='183' bci='12'/>
+<method id='1108' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='25'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1110' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' compile_id='182' compiler='c1' level='3' iicount='281'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.201'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.201'/>
+</phase>
+<parse_done stamp='0.201'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.201'>
+<phase_done name='optimize_blocks' stamp='0.201'/>
+</phase>
+<phase name='gvn' stamp='0.201'>
+<phase_done name='gvn' stamp='0.201'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.201'>
+<phase_done name='rangeCheckElimination' stamp='0.201'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.201'>
+<phase_done name='optimize_null_checks' stamp='0.201'/>
+</phase>
+<phase_done name='buildIR' stamp='0.201'/>
+</phase>
+<phase name='emit_lir' stamp='0.201'>
+<phase name='lirGeneration' stamp='0.201'>
+<phase_done name='lirGeneration' stamp='0.201'/>
+</phase>
+<phase name='linearScan' stamp='0.201'>
+<phase_done name='linearScan' stamp='0.201'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.201'/>
+</phase>
+<phase name='codeemit' stamp='0.201'>
+<phase_done name='codeemit' stamp='0.201'/>
+</phase>
+<phase name='codeinstall' stamp='0.201'>
+<phase_done name='codeinstall' stamp='0.201'/>
+</phase>
+<code_cache total_blobs='536' nmethods='185' adapters='198' free_code_cache='248459776'/>
+<task_done success='1' nmsize='2008' count='281' inlined_bytes='85' stamp='0.201'/>
+</task>
+<task compile_id='189' method='java.lang.Enum ordinal ()I' bytes='5' count='133' iicount='133' level='1' stamp='0.206'>
+<phase name='setup' stamp='0.206'>
+<phase_done name='setup' stamp='0.206'/>
+</phase>
+<phase name='buildIR' stamp='0.206'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Enum' flags='1025'/>
+<method id='1094' holder='1093' name='ordinal' return='975' flags='17' bytes='5' iicount='133'/>
+<parse method='1094'  stamp='0.206'>
+<phase name='parse_hir' stamp='0.206'>
+<phase_done name='parse_hir' stamp='0.206'/>
+</phase>
+<parse_done stamp='0.206'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.206'>
+<phase_done name='optimize_blocks' stamp='0.206'/>
+</phase>
+<phase name='gvn' stamp='0.206'>
+<phase_done name='gvn' stamp='0.206'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.206'>
+<phase_done name='rangeCheckElimination' stamp='0.206'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.206'>
+<phase_done name='optimize_null_checks' stamp='0.206'/>
+</phase>
+<phase_done name='buildIR' stamp='0.206'/>
+</phase>
+<phase name='emit_lir' stamp='0.206'>
+<phase name='lirGeneration' stamp='0.206'>
+<phase_done name='lirGeneration' stamp='0.206'/>
+</phase>
+<phase name='linearScan' stamp='0.206'>
+<phase_done name='linearScan' stamp='0.206'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.206'/>
+</phase>
+<phase name='codeemit' stamp='0.206'>
+<phase_done name='codeemit' stamp='0.206'/>
+</phase>
+<phase name='codeinstall' stamp='0.206'>
+<phase_done name='codeinstall' stamp='0.206'/>
+</phase>
+<code_cache total_blobs='563' nmethods='190' adapters='220' free_code_cache='248436992'/>
+<task_done success='1' nmsize='272' count='136' stamp='0.206'/>
+</task>
+<task compile_id='194' method='java.lang.Class getClassLoader0 ()Ljava/lang/ClassLoader;' bytes='5' count='128' iicount='128' level='1' stamp='0.207'>
+<phase name='setup' stamp='0.207'>
+<phase_done name='setup' stamp='0.207'/>
+</phase>
+<phase name='buildIR' stamp='0.207'>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' iicount='128'/>
+<parse method='1093'  stamp='0.207'>
+<phase name='parse_hir' stamp='0.207'>
+<phase_done name='parse_hir' stamp='0.207'/>
+</phase>
+<parse_done stamp='0.207'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.207'>
+<phase_done name='optimize_blocks' stamp='0.207'/>
+</phase>
+<phase name='gvn' stamp='0.207'>
+<phase_done name='gvn' stamp='0.207'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.207'>
+<phase_done name='rangeCheckElimination' stamp='0.207'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.207'>
+<phase_done name='optimize_null_checks' stamp='0.207'/>
+</phase>
+<phase_done name='buildIR' stamp='0.207'/>
+</phase>
+<phase name='emit_lir' stamp='0.207'>
+<phase name='lirGeneration' stamp='0.207'>
+<phase_done name='lirGeneration' stamp='0.207'/>
+</phase>
+<phase name='linearScan' stamp='0.207'>
+<phase_done name='linearScan' stamp='0.207'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.207'/>
+</phase>
+<phase name='codeemit' stamp='0.207'>
+<phase_done name='codeemit' stamp='0.207'/>
+</phase>
+<phase name='codeinstall' stamp='0.207'>
+<phase_done name='codeinstall' stamp='0.207'/>
+</phase>
+<code_cache total_blobs='566' nmethods='193' adapters='220' free_code_cache='248433792'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.207'/>
+</task>
+<task compile_id='204' method='java.lang.invoke.MethodType returnType ()Ljava/lang/Class;' bytes='5' count='128' iicount='128' level='1' stamp='0.212'>
+<phase name='setup' stamp='0.212'>
+<phase_done name='setup' stamp='0.212'/>
+</phase>
+<phase name='buildIR' stamp='0.212'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='returnType' return='984' flags='1' bytes='5' iicount='128'/>
+<parse method='1093'  stamp='0.212'>
+<phase name='parse_hir' stamp='0.212'>
+<phase_done name='parse_hir' stamp='0.212'/>
+</phase>
+<parse_done stamp='0.212'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.212'>
+<phase_done name='optimize_blocks' stamp='0.212'/>
+</phase>
+<phase name='gvn' stamp='0.212'>
+<phase_done name='gvn' stamp='0.212'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.212'>
+<phase_done name='rangeCheckElimination' stamp='0.212'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.212'>
+<phase_done name='optimize_null_checks' stamp='0.212'/>
+</phase>
+<phase_done name='buildIR' stamp='0.212'/>
+</phase>
+<phase name='emit_lir' stamp='0.212'>
+<phase name='lirGeneration' stamp='0.212'>
+<phase_done name='lirGeneration' stamp='0.212'/>
+</phase>
+<phase name='linearScan' stamp='0.212'>
+<phase_done name='linearScan' stamp='0.212'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.212'/>
+</phase>
+<phase name='codeemit' stamp='0.212'>
+<phase_done name='codeemit' stamp='0.212'/>
+</phase>
+<phase name='codeinstall' stamp='0.212'>
+<phase_done name='codeinstall' stamp='0.212'/>
+</phase>
+<code_cache total_blobs='582' nmethods='204' adapters='225' free_code_cache='248419712'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.212'/>
+</task>
+<task compile_id='211' method='java.lang.ref.ReferenceQueue poll ()Ljava/lang/ref/Reference;' bytes='28' count='256' iicount='256' level='3' stamp='0.217'>
+<phase name='setup' stamp='0.217'>
+<phase_done name='setup' stamp='0.217'/>
+</phase>
+<phase name='buildIR' stamp='0.217'>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<klass id='1093' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1094' holder='1093' name='poll' return='1008' flags='1' bytes='28' iicount='257'/>
+<parse method='1094'  stamp='0.218'>
+<phase name='parse_hir' stamp='0.218'>
+<bc code='183' bci='17'/>
+<method id='1097' holder='1093' name='reallyPoll' return='1008' flags='2' bytes='65' iicount='2'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.218'/>
+</phase>
+<parse_done stamp='0.218'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.218'>
+<phase_done name='optimize_blocks' stamp='0.218'/>
+</phase>
+<phase name='gvn' stamp='0.218'>
+<phase_done name='gvn' stamp='0.218'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.218'>
+<phase_done name='rangeCheckElimination' stamp='0.218'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.218'>
+<phase_done name='optimize_null_checks' stamp='0.218'/>
+</phase>
+<phase_done name='buildIR' stamp='0.218'/>
+</phase>
+<phase name='emit_lir' stamp='0.218'>
+<phase name='lirGeneration' stamp='0.218'>
+<phase_done name='lirGeneration' stamp='0.218'/>
+</phase>
+<phase name='linearScan' stamp='0.218'>
+<phase_done name='linearScan' stamp='0.218'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.218'/>
+</phase>
+<phase name='codeemit' stamp='0.218'>
+<phase_done name='codeemit' stamp='0.218'/>
+</phase>
+<phase name='codeinstall' stamp='0.218'>
+<phase_done name='codeinstall' stamp='0.218'/>
+</phase>
+<code_cache total_blobs='596' nmethods='211' adapters='232' free_code_cache='248405120'/>
+<task_done success='1' nmsize='904' count='263' stamp='0.218'/>
+</task>
+<task compile_id='215' method='java.lang.invoke.MethodType checkPtype (Ljava/lang/Class;)V' bytes='19' count='261' iicount='261' level='3' stamp='0.219'>
+<phase name='setup' stamp='0.219'>
+<phase_done name='setup' stamp='0.219'/>
+</phase>
+<phase name='buildIR' stamp='0.219'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='checkPtype' return='977' arguments='984' flags='10' bytes='19' iicount='262'/>
+<parse method='1093'  stamp='0.219'>
+<phase name='parse_hir' stamp='0.219'>
+<bc code='184' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1095' name='java.util.Objects' flags='17'/>
+<method id='1096' holder='1095' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='3900'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1098' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.219'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1104' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1105' holder='1104' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='5'/>
+<klass id='1107' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.219'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.219'/>
+</phase>
+<parse_done stamp='0.219'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.219'>
+<phase_done name='optimize_blocks' stamp='0.219'/>
+</phase>
+<phase name='gvn' stamp='0.219'>
+<phase_done name='gvn' stamp='0.219'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.219'>
+<phase_done name='rangeCheckElimination' stamp='0.219'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.219'>
+<phase_done name='optimize_null_checks' stamp='0.219'/>
+</phase>
+<phase_done name='buildIR' stamp='0.219'/>
+</phase>
+<phase name='emit_lir' stamp='0.219'>
+<phase name='lirGeneration' stamp='0.219'>
+<phase_done name='lirGeneration' stamp='0.219'/>
+</phase>
+<phase name='linearScan' stamp='0.219'>
+<phase_done name='linearScan' stamp='0.219'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.219'/>
+</phase>
+<phase name='codeemit' stamp='0.219'>
+<phase_done name='codeemit' stamp='0.219'/>
+</phase>
+<phase name='codeinstall' stamp='0.219'>
+<phase_done name='codeinstall' stamp='0.219'/>
+</phase>
+<code_cache total_blobs='600' nmethods='215' adapters='232' free_code_cache='248401152'/>
+<task_done success='1' nmsize='1016' count='265' inlined_bytes='23' stamp='0.219'/>
+</task>
+<task compile_id='218' method='java.lang.invoke.MemberName getDeclaringClass ()Ljava/lang/Class;' bytes='5' count='140' iicount='140' level='1' stamp='0.220'>
+<phase name='setup' stamp='0.220'>
+<phase_done name='setup' stamp='0.220'/>
+</phase>
+<phase name='buildIR' stamp='0.220'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getDeclaringClass' return='984' flags='1' bytes='5' iicount='140'/>
+<parse method='1093'  stamp='0.220'>
+<phase name='parse_hir' stamp='0.220'>
+<phase_done name='parse_hir' stamp='0.220'/>
+</phase>
+<parse_done stamp='0.220'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.220'>
+<phase_done name='optimize_blocks' stamp='0.220'/>
+</phase>
+<phase name='gvn' stamp='0.220'>
+<phase_done name='gvn' stamp='0.220'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.220'>
+<phase_done name='rangeCheckElimination' stamp='0.220'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.220'>
+<phase_done name='optimize_null_checks' stamp='0.220'/>
+</phase>
+<phase_done name='buildIR' stamp='0.220'/>
+</phase>
+<phase name='emit_lir' stamp='0.220'>
+<phase name='lirGeneration' stamp='0.220'>
+<phase_done name='lirGeneration' stamp='0.220'/>
+</phase>
+<phase name='linearScan' stamp='0.220'>
+<phase_done name='linearScan' stamp='0.220'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.220'/>
+</phase>
+<phase name='codeemit' stamp='0.220'>
+<phase_done name='codeemit' stamp='0.220'/>
+</phase>
+<phase name='codeinstall' stamp='0.220'>
+<phase_done name='codeinstall' stamp='0.220'/>
+</phase>
+<code_cache total_blobs='606' nmethods='219' adapters='232' free_code_cache='248396928'/>
+<task_done success='1' nmsize='272' count='141' stamp='0.220'/>
+</task>
+<task compile_id='220' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet expungeStaleElements ()V' bytes='27' count='263' iicount='263' level='3' stamp='0.220'>
+<phase name='setup' stamp='0.220'>
+<phase_done name='setup' stamp='0.220'/>
+</phase>
+<phase name='buildIR' stamp='0.220'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet' flags='10'/>
+<method id='1094' holder='1093' name='expungeStaleElements' return='977' flags='2' bytes='27' iicount='263'/>
+<parse method='1094'  stamp='0.220'>
+<phase name='parse_hir' stamp='0.220'>
+<bc code='182' bci='4'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<klass id='1096' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1097' holder='1096' name='poll' return='1008' flags='1' bytes='28' compile_id='211' compiler='c1' level='3' iicount='321'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='17'/>
+<method id='1100' holder='1096' name='reallyPoll' return='1008' flags='2' bytes='65' iicount='2'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.221'/>
+</parse>
+<bc code='185' bci='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1102' name='java.util.concurrent.ConcurrentMap' flags='1537'/>
+<method id='1103' holder='1102' name='remove' return='982' arguments='982' flags='4161' bytes='10' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.221'/>
+</phase>
+<parse_done stamp='0.221'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.221'>
+<phase_done name='optimize_blocks' stamp='0.221'/>
+</phase>
+<phase name='gvn' stamp='0.221'>
+<phase_done name='gvn' stamp='0.221'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.221'>
+<phase_done name='rangeCheckElimination' stamp='0.221'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.221'>
+<phase_done name='optimize_null_checks' stamp='0.221'/>
+</phase>
+<phase_done name='buildIR' stamp='0.221'/>
+</phase>
+<phase name='emit_lir' stamp='0.221'>
+<phase name='lirGeneration' stamp='0.221'>
+<phase_done name='lirGeneration' stamp='0.221'/>
+</phase>
+<phase name='linearScan' stamp='0.221'>
+<phase_done name='linearScan' stamp='0.221'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.221'/>
+</phase>
+<phase name='codeemit' stamp='0.221'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1097'/>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='610' nmethods='223' adapters='232' free_code_cache='248390400'/>
+<task_done success='1' nmsize='1496' count='275' inlined_bytes='28' stamp='0.221'/>
+</task>
+<task compile_id='228' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='265' iicount='265' level='3' stamp='0.224'>
+<phase name='setup' stamp='0.224'>
+<phase_done name='setup' stamp='0.224'/>
+</phase>
+<phase name='buildIR' stamp='0.224'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='parameterType' return='984' arguments='975' flags='1' bytes='7' iicount='265'/>
+<parse method='1093'  stamp='0.224'>
+<phase name='parse_hir' stamp='0.224'>
+<phase_done name='parse_hir' stamp='0.224'/>
+</phase>
+<parse_done stamp='0.224'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.224'>
+<phase_done name='optimize_blocks' stamp='0.224'/>
+</phase>
+<phase name='gvn' stamp='0.224'>
+<phase_done name='gvn' stamp='0.224'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.224'>
+<phase_done name='rangeCheckElimination' stamp='0.224'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.224'>
+<phase_done name='optimize_null_checks' stamp='0.224'/>
+</phase>
+<phase_done name='buildIR' stamp='0.224'/>
+</phase>
+<phase name='emit_lir' stamp='0.224'>
+<phase name='lirGeneration' stamp='0.224'>
+<phase_done name='lirGeneration' stamp='0.224'/>
+</phase>
+<phase name='linearScan' stamp='0.224'>
+<phase_done name='linearScan' stamp='0.224'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.224'/>
+</phase>
+<phase name='codeemit' stamp='0.224'>
+<phase_done name='codeemit' stamp='0.224'/>
+</phase>
+<phase name='codeinstall' stamp='0.224'>
+<phase_done name='codeinstall' stamp='0.224'/>
+</phase>
+<code_cache total_blobs='619' nmethods='230' adapters='234' free_code_cache='248378496'/>
+<task_done success='1' nmsize='368' count='267' stamp='0.224'/>
+</task>
+<task compile_id='236' method='java.lang.AbstractStringBuilder &lt;init&gt; (I)V' bytes='39' count='267' iicount='267' level='3' stamp='0.228'>
+<phase name='setup' stamp='0.228'>
+<phase_done name='setup' stamp='0.228'/>
+</phase>
+<phase name='buildIR' stamp='0.228'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' iicount='267'/>
+<parse method='1093'  stamp='0.228'>
+<phase name='parse_hir' stamp='0.228'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10978'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1048'/>
+<parse_done stamp='0.228'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.228'/>
+</phase>
+<parse_done stamp='0.228'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.228'>
+<phase_done name='optimize_blocks' stamp='0.228'/>
+</phase>
+<phase name='gvn' stamp='0.228'>
+<phase_done name='gvn' stamp='0.228'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.228'>
+<phase_done name='rangeCheckElimination' stamp='0.228'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.228'>
+<phase_done name='optimize_null_checks' stamp='0.228'/>
+</phase>
+<phase_done name='buildIR' stamp='0.228'/>
+</phase>
+<phase name='emit_lir' stamp='0.228'>
+<phase name='lirGeneration' stamp='0.228'>
+<phase_done name='lirGeneration' stamp='0.228'/>
+</phase>
+<phase name='linearScan' stamp='0.228'>
+<phase_done name='linearScan' stamp='0.228'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.228'/>
+</phase>
+<phase name='codeemit' stamp='0.228'>
+<phase_done name='codeemit' stamp='0.228'/>
+</phase>
+<phase name='codeinstall' stamp='0.228'>
+<dependency type='no_finalizable_subclasses' ctxk='1048'/>
+<phase_done name='codeinstall' stamp='0.228'/>
+</phase>
+<code_cache total_blobs='623' nmethods='234' adapters='234' free_code_cache='248370432'/>
+<task_done success='1' nmsize='720' count='269' inlined_bytes='1' stamp='0.228'/>
+</task>
+<task compile_id='238' method='jdk.internal.org.objectweb.asm.ByteVector putShort (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='52' count='281' iicount='281' level='3' stamp='0.228'>
+<phase name='setup' stamp='0.228'>
+<phase_done name='setup' stamp='0.228'/>
+</phase>
+<phase name='buildIR' stamp='0.228'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='putShort' return='1093' arguments='975' flags='1' bytes='52' iicount='283'/>
+<parse method='1094'  stamp='0.228'>
+<phase name='parse_hir' stamp='0.228'>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='29'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.228'/>
+</phase>
+<parse_done stamp='0.228'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.228'>
+<phase_done name='optimize_blocks' stamp='0.228'/>
+</phase>
+<phase name='gvn' stamp='0.228'>
+<phase_done name='gvn' stamp='0.228'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.228'>
+<phase_done name='rangeCheckElimination' stamp='0.228'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.228'>
+<phase_done name='optimize_null_checks' stamp='0.228'/>
+</phase>
+<phase_done name='buildIR' stamp='0.228'/>
+</phase>
+<phase name='emit_lir' stamp='0.228'>
+<phase name='lirGeneration' stamp='0.228'>
+<phase_done name='lirGeneration' stamp='0.228'/>
+</phase>
+<phase name='linearScan' stamp='0.228'>
+<phase_done name='linearScan' stamp='0.228'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.228'/>
+</phase>
+<phase name='codeemit' stamp='0.228'>
+<phase_done name='codeemit' stamp='0.228'/>
+</phase>
+<phase name='codeinstall' stamp='0.228'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.228'/>
+</phase>
+<code_cache total_blobs='625' nmethods='236' adapters='234' free_code_cache='248366720'/>
+<task_done success='1' nmsize='584' count='306' stamp='0.228'/>
+</task>
+<task compile_id='242' method='java.lang.invoke.MethodType &lt;init&gt; ([Ljava/lang/Class;Ljava/lang/Class;)V' bytes='15' count='262' iicount='262' level='3' stamp='0.229'>
+<phase name='setup' stamp='0.229'>
+<phase_done name='setup' stamp='0.229'/>
+</phase>
+<phase name='buildIR' stamp='0.229'>
+<type id='977' name='void'/>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1094' holder='1041' name='&lt;init&gt;' return='977' arguments='1093 984' flags='2' bytes='15' iicount='262'/>
+<parse method='1094'  stamp='0.229'>
+<phase name='parse_hir' stamp='0.229'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='11018'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.229'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.229'/>
+</phase>
+<parse_done stamp='0.229'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.229'>
+<phase_done name='optimize_blocks' stamp='0.229'/>
+</phase>
+<phase name='gvn' stamp='0.229'>
+<phase_done name='gvn' stamp='0.229'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.229'>
+<phase_done name='rangeCheckElimination' stamp='0.229'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.229'>
+<phase_done name='optimize_null_checks' stamp='0.229'/>
+</phase>
+<phase_done name='buildIR' stamp='0.229'/>
+</phase>
+<phase name='emit_lir' stamp='0.229'>
+<phase name='lirGeneration' stamp='0.229'>
+<phase_done name='lirGeneration' stamp='0.229'/>
+</phase>
+<phase name='linearScan' stamp='0.229'>
+<phase_done name='linearScan' stamp='0.229'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.229'/>
+</phase>
+<phase name='codeemit' stamp='0.229'>
+<phase_done name='codeemit' stamp='0.229'/>
+</phase>
+<phase name='codeinstall' stamp='0.229'>
+<phase_done name='codeinstall' stamp='0.229'/>
+</phase>
+<code_cache total_blobs='630' nmethods='241' adapters='234' free_code_cache='248353920'/>
+<task_done success='1' nmsize='656' count='268' inlined_bytes='1' stamp='0.229'/>
+</task>
+<task compile_id='246' method='java.lang.invoke.LambdaForm$BasicType basicType (Ljava/lang/Class;)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='19' count='271' iicount='271' level='3' stamp='0.229'>
+<phase name='setup' stamp='0.229'>
+<phase_done name='setup' stamp='0.230'/>
+</phase>
+<phase name='buildIR' stamp='0.230'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1094' holder='1093' name='basicType' return='1093' arguments='984' flags='8' bytes='19' iicount='271'/>
+<parse method='1094'  stamp='0.230'>
+<phase name='parse_hir' stamp='0.230'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='12'/>
+<klass id='1100' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1101' holder='1100' name='forPrimitiveType' return='1100' arguments='984' flags='9' bytes='49' iicount='78'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<method id='1103' holder='1093' name='basicType' return='1093' arguments='1100' flags='8' bytes='10' iicount='14'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='1'/>
+<type id='970' name='char'/>
+<method id='1105' holder='1100' name='basicTypeChar' return='970' flags='1' bytes='5' iicount='85'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='184' bci='6'/>
+<method id='1107' holder='1093' name='basicType' return='1093' arguments='970' flags='8' bytes='172' iicount='24'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.230'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<phase_done name='codeinstall' stamp='0.230'/>
+</phase>
+<code_cache total_blobs='634' nmethods='245' adapters='234' free_code_cache='248346752'/>
+<task_done success='1' nmsize='920' count='275' inlined_bytes='15' stamp='0.230'/>
+</task>
+<task compile_id='247' method='java.lang.invoke.MethodType form ()Ljava/lang/invoke/MethodTypeForm;' bytes='5' count='133' iicount='133' level='1' stamp='0.230'>
+<phase name='setup' stamp='0.230'>
+<phase_done name='setup' stamp='0.230'/>
+</phase>
+<phase name='buildIR' stamp='0.230'>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1094' holder='1041' name='form' return='1093' flags='0' bytes='5' iicount='133'/>
+<parse method='1094'  stamp='0.230'>
+<phase name='parse_hir' stamp='0.230'>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<phase_done name='codeinstall' stamp='0.230'/>
+</phase>
+<code_cache total_blobs='638' nmethods='249' adapters='234' free_code_cache='248339712'/>
+<task_done success='1' nmsize='272' count='135' stamp='0.230'/>
+</task>
+<task compile_id='255' method='java.lang.invoke.LambdaForm parameter (I)Ljava/lang/invoke/LambdaForm$Name;' bytes='52' count='258' iicount='258' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<type id='975' name='int'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1094' holder='1040' name='parameter' return='1093' arguments='975' flags='0' bytes='52' iicount='258'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='644' nmethods='255' adapters='234' free_code_cache='248327168'/>
+<task_done success='1' nmsize='400' count='258' stamp='0.231'/>
+</task>
+<task compile_id='256' method='java.util.ArrayList$Itr hasNext ()Z' bytes='20' count='258' iicount='258' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ArrayList$Itr' flags='2'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='20' iicount='258'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='184' bci='8'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.util.ArrayList' flags='1'/>
+<method id='1097' holder='1096' name='access$000' return='975' arguments='1096' flags='4104' bytes='5' compile_id='140' compiler='c1' level='1' iicount='155'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.232'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.232'>
+<phase_done name='lirGeneration' stamp='0.232'/>
+</phase>
+<phase name='linearScan' stamp='0.232'>
+<phase_done name='linearScan' stamp='0.232'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.232'/>
+</phase>
+<phase name='codeemit' stamp='0.232'>
+<phase_done name='codeemit' stamp='0.232'/>
+</phase>
+<phase name='codeinstall' stamp='0.232'>
+<phase_done name='codeinstall' stamp='0.232'/>
+</phase>
+<code_cache total_blobs='646' nmethods='257' adapters='234' free_code_cache='248325504'/>
+<task_done success='1' nmsize='464' count='258' inlined_bytes='5' stamp='0.232'/>
+</task>
+<task compile_id='262' method='jdk.internal.org.objectweb.asm.ByteVector putByte (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='39' count='259' iicount='259' level='3' stamp='0.233'>
+<phase name='setup' stamp='0.233'>
+<phase_done name='setup' stamp='0.233'/>
+</phase>
+<phase name='buildIR' stamp='0.233'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='putByte' return='1093' arguments='975' flags='1' bytes='39' iicount='262'/>
+<parse method='1094'  stamp='0.233'>
+<phase name='parse_hir' stamp='0.233'>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='37'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.233'/>
+</phase>
+<parse_done stamp='0.233'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.233'>
+<phase_done name='optimize_blocks' stamp='0.233'/>
+</phase>
+<phase name='gvn' stamp='0.233'>
+<phase_done name='gvn' stamp='0.233'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.233'>
+<phase_done name='rangeCheckElimination' stamp='0.233'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.233'>
+<phase_done name='optimize_null_checks' stamp='0.233'/>
+</phase>
+<phase_done name='buildIR' stamp='0.233'/>
+</phase>
+<phase name='emit_lir' stamp='0.233'>
+<phase name='lirGeneration' stamp='0.233'>
+<phase_done name='lirGeneration' stamp='0.233'/>
+</phase>
+<phase name='linearScan' stamp='0.233'>
+<phase_done name='linearScan' stamp='0.233'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.233'/>
+</phase>
+<phase name='codeemit' stamp='0.233'>
+<phase_done name='codeemit' stamp='0.233'/>
+</phase>
+<phase name='codeinstall' stamp='0.233'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.233'/>
+</phase>
+<code_cache total_blobs='651' nmethods='262' adapters='234' free_code_cache='248319744'/>
+<task_done success='1' nmsize='552' count='262' stamp='0.233'/>
+</task>
+<task compile_id='270' method='java.lang.invoke.MethodType equals (Ljava/lang/Object;)Z' bytes='29' count='257' iicount='257' level='3' stamp='0.234'>
+<phase name='setup' stamp='0.234'>
+<phase_done name='setup' stamp='0.234'/>
+</phase>
+<phase name='buildIR' stamp='0.234'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='equals' return='969' arguments='982' flags='1' bytes='29' iicount='257'/>
+<parse method='1093'  stamp='0.234'>
+<phase name='parse_hir' stamp='0.234'>
+<bc code='183' bci='17'/>
+<method id='1095' holder='1041' name='equals' return='969' arguments='1041' flags='2' bytes='31' iicount='255'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='184' bci='19'/>
+<klass id='1099' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1098' name='java.util.Arrays' flags='1'/>
+<method id='1100' holder='1098' name='equals' return='969' arguments='1099 1099' flags='9' bytes='57' compile_id='267' compiler='c1' level='3' iicount='264'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.235'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.235'/>
+</phase>
+<parse_done stamp='0.235'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.235'>
+<phase_done name='optimize_blocks' stamp='0.235'/>
+</phase>
+<phase name='gvn' stamp='0.235'>
+<phase_done name='gvn' stamp='0.235'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.235'>
+<phase_done name='rangeCheckElimination' stamp='0.235'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.235'>
+<phase_done name='optimize_null_checks' stamp='0.235'/>
+</phase>
+<phase_done name='buildIR' stamp='0.235'/>
+</phase>
+<phase name='emit_lir' stamp='0.235'>
+<phase name='lirGeneration' stamp='0.235'>
+<phase_done name='lirGeneration' stamp='0.235'/>
+</phase>
+<phase name='linearScan' stamp='0.235'>
+<phase_done name='linearScan' stamp='0.235'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.235'/>
+</phase>
+<phase name='codeemit' stamp='0.235'>
+<phase_done name='codeemit' stamp='0.235'/>
+</phase>
+<phase name='codeinstall' stamp='0.235'>
+<phase_done name='codeinstall' stamp='0.235'/>
+</phase>
+<code_cache total_blobs='662' nmethods='272' adapters='235' free_code_cache='248308992'/>
+<task_done success='1' nmsize='1352' count='260' inlined_bytes='31' stamp='0.235'/>
+</task>
+<task compile_id='279' method='jdk.internal.org.objectweb.asm.ClassWriter newUTF8 (Ljava/lang/String;)I' bytes='70' count='263' iicount='263' level='3' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1094' holder='1093' name='newUTF8' return='975' arguments='983' flags='1' bytes='70' iicount='263'/>
+<parse method='1094'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<bc code='182' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1097' holder='1096' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' compile_id='225' compiler='c1' level='3' iicount='545'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='16'/>
+<method id='1099' holder='1093' name='get' return='1096' arguments='1096' flags='2' bytes='49' compile_id='226' compiler='c1' level='3' iicount='545'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='29'/>
+<klass id='1101' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1102' holder='1101' name='putByte' return='1101' arguments='975' flags='1' bytes='39' compile_id='262' compiler='c1' level='3' iicount='285'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<bc code='182' bci='33'/>
+<method id='1104' holder='1101' name='putUTF8' return='1101' arguments='983' flags='1' bytes='142' compile_id='235' compiler='c1' level='3' iicount='205'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<bc code='183' bci='56'/>
+<method id='1106' holder='1096' name='&lt;init&gt;' return='977' arguments='975 1096' flags='0' bytes='66' compile_id='253' compiler='c1' level='3' iicount='359'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='62'/>
+<method id='1108' holder='1093' name='put' return='977' arguments='1096' flags='2' bytes='152' compile_id='254' compiler='c1' level='3' iicount='359'/>
+<call method='1108' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.237'/>
+</phase>
+<parse_done stamp='0.237'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.237'>
+<phase_done name='optimize_blocks' stamp='0.237'/>
+</phase>
+<phase name='gvn' stamp='0.237'>
+<phase_done name='gvn' stamp='0.237'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.237'>
+<phase_done name='rangeCheckElimination' stamp='0.237'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.237'>
+<phase_done name='optimize_null_checks' stamp='0.237'/>
+</phase>
+<phase_done name='buildIR' stamp='0.237'/>
+</phase>
+<phase name='emit_lir' stamp='0.237'>
+<phase name='lirGeneration' stamp='0.237'>
+<phase_done name='lirGeneration' stamp='0.237'/>
+</phase>
+<phase name='linearScan' stamp='0.237'>
+<phase_done name='linearScan' stamp='0.237'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.237'/>
+</phase>
+<phase name='codeemit' stamp='0.237'>
+<phase_done name='codeemit' stamp='0.237'/>
+</phase>
+<phase name='codeinstall' stamp='0.237'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<phase_done name='codeinstall' stamp='0.237'/>
+</phase>
+<code_cache total_blobs='670' nmethods='279' adapters='236' free_code_cache='248299520'/>
+<task_done success='1' nmsize='1112' count='284' stamp='0.237'/>
+</task>
+<task compile_id='286' method='java.lang.String substring (II)Ljava/lang/String;' bytes='58' count='261' iicount='261' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<method id='1093' holder='983' name='substring' return='983' arguments='975 975' flags='1' bytes='58' iicount='261'/>
+<parse method='1093'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='3071'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1097' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='13111'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.239'/>
+</parse>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='184' bci='8'/>
+<type id='977' name='void'/>
+<method id='1100' holder='983' name='checkBoundsBeginEnd' return='977' arguments='975 975 975' flags='8' bytes='60' iicount='261'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='28'/>
+<type id='969' name='boolean'/>
+<method id='1102' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='17544'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='41'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1104' name='java.lang.StringLatin1' flags='16'/>
+<method id='1105' holder='1104' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='679'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='9'/>
+<klass id='1107' name='java.util.Arrays' flags='1'/>
+<method id='1108' holder='1107' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='697'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1110' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='987'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1112' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='12070'/>
+<call method='1112' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='54'/>
+<klass id='1114' name='java.lang.StringUTF16' flags='16'/>
+<method id='1115' holder='1114' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='680' nmethods='286' adapters='239' free_code_cache='248283136'/>
+<task_done success='1' nmsize='2024' count='265' inlined_bytes='78' stamp='0.240'/>
+</task>
+<task compile_id='292' method='jdk.internal.org.objectweb.asm.Frame execute (IILjdk/internal/org/objectweb/asm/ClassWriter;Ljdk/internal/org/objectweb/asm/Item;)V' bytes='2252' count='267' iicount='267' level='3' stamp='0.240'>
+<phase name='setup' stamp='0.240'>
+<phase_done name='setup' stamp='0.240'/>
+</phase>
+<phase name='buildIR' stamp='0.240'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<klass id='1095' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1096' holder='1093' name='execute' return='977' arguments='975 975 1094 1095' flags='0' bytes='2252' iicount='267'/>
+<parse method='1096'  stamp='0.240'>
+<phase name='parse_hir' stamp='0.240'>
+<bc code='183' bci='822'/>
+<method id='1098' holder='1093' name='push' return='977' arguments='975' flags='2' bytes='110' iicount='225'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='955'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='979'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='964'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='970'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='988'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='994'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1006'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1101' holder='1094' name='addType' return='975' arguments='983' flags='0' bytes='39' iicount='146'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='1010'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1022'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='1026'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1038'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='1042'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1054'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='1058'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='831'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='840'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='846'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='855'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='864'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='870'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1067'/>
+<method id='1106' holder='1093' name='get' return='975' arguments='975' flags='2' bytes='46' iicount='147'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1070'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1112'/>
+<method id='1108' holder='1093' name='pop' return='977' arguments='975' flags='2' bytes='45' iicount='65'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1118'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1146'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1150'/>
+<method id='1110' holder='1093' name='pop' return='975' flags='2' bytes='43' iicount='127'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1161'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1078'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1084'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1246'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1250'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1259'/>
+<method id='1112' holder='1093' name='set' return='977' arguments='975 975' flags='2' bytes='65' iicount='62'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1268'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1279'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1329'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1304'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1168'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1177'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1188'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1238'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1213'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1345'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1337'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1368'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1376'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1382'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1389'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1395'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1403'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1409'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1415'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1422'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1428'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1434'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1442'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1448'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1454'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1460'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1467'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1473'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1481'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1487'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1493'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1499'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1506'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1512'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1518'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1526'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1532'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1538'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1544'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1550'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1557'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1563'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1569'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1575'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1583'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1589'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1595'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1601'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1607'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1613'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1620'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1626'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1634'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1640'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1696'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1702'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1708'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1716'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1722'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1728'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1662'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1668'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1674'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1738'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1766'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1772'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1126'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1132'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1138'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1746'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1752'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1758'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1780'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1786'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1792'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1092'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1098'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1104'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1682'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1688'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1648'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1654'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1814'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1820'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1832'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1115' holder='993' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='183' bci='1361'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1843'/>
+<method id='1117' holder='1093' name='push' return='977' arguments='1094 983' flags='2' bytes='34' iicount='58'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<method id='1119' holder='1093' name='type' return='975' arguments='1094 983' flags='10' bytes='416' iicount='144'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='183' bci='1855'/>
+<method id='1121' holder='1093' name='pop' return='977' arguments='983' flags='2' bytes='53' iicount='28'/>
+<call method='1121' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1863'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1873'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='183' bci='1885'/>
+<call method='1121' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1889'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1902'/>
+<call method='1121' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1913'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='1931'/>
+<type id='970' name='char'/>
+<method id='1123' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='11543'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1125' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='19193'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1128' name='java.lang.StringLatin1' flags='16'/>
+<method id='1129' holder='1128' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='6' compiler='c1' level='3' iicount='11543'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='15'/>
+<klass id='1131' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1132' holder='1131' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1133' name='java.lang.StringUTF16' flags='16'/>
+<method id='1134' holder='1133' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='2'/>
+<method id='1136' holder='1133' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='184' bci='2'/>
+<method id='1138' holder='1133' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1138' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1140' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1142' holder='1133' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.242'/>
+</parse>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='183' bci='1942'/>
+<method id='1143' holder='1093' name='init' return='977' arguments='975' flags='2' bytes='77' iicount='1'/>
+<call method='1143' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1952'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='183' bci='1964'/>
+<call method='1121' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1974'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='182' bci='1990'/>
+<method id='1145' holder='1094' name='addUninitializedType' return='975' arguments='983 975' flags='0' bytes='71' iicount='1'/>
+<call method='1145' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='1994'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2001'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2051'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2060'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2096'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2105'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2069'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2078'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2087'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2114'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2128'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2135'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='15'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='2'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='184' bci='2'/>
+<call method='1138' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.242'/>
+</parse>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='183' bci='2149'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1147' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='398'/>
+<call method='1147' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1149' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='417'/>
+<call method='1149' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='182' bci='2154'/>
+<method id='1151' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='609'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='183' bci='2'/>
+<method id='1153' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='609'/>
+<call method='1153' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.242'/>
+</parse>
+<bc code='182' bci='2159'/>
+<method id='1155' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='619'/>
+<call method='1155' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<bc code='183' bci='2'/>
+<method id='1157' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='619'/>
+<call method='1157' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='2162'/>
+<method id='1159' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='417'/>
+<call method='1159' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='1'/>
+<method id='1161' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1157'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1161'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='16'/>
+<method id='1163' holder='1128' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='769'/>
+<call method='1163' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1163'>
+<bc code='184' bci='9'/>
+<klass id='1165' name='java.util.Arrays' flags='1'/>
+<method id='1166' holder='1165' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='786'/>
+<call method='1166' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1168' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1106'/>
+<call method='1168' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1168'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1170' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='12540'/>
+<call method='1170' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1170'>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='31'/>
+<method id='1172' holder='1133' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1172' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='183' bci='2165'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='2177'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='2181'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2195'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='2202'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='15'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='2'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='184' bci='2'/>
+<call method='1138' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='183' bci='2214'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='2226'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='2230'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1800'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1806'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='1353'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2238'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='2248'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='12'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='30'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.247'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.247'/>
+</phase>
+<phase name='codeemit' stamp='0.247'>
+<phase_done name='codeemit' stamp='0.247'/>
+</phase>
+<phase name='codeinstall' stamp='0.247'>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.248'/>
+</phase>
+<code_cache total_blobs='709' nmethods='313' adapters='239' free_code_cache='248185344'/>
+<task_done success='1' nmsize='23832' count='522' inlined_bytes='639' stamp='0.248'/>
+</task>
+<task compile_id='321' method='java.lang.invoke.LambdaForm$Name lastUseIndex (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='36' count='256' backedge_count='690' iicount='256' level='3' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1094' holder='1093' name='lastUseIndex' return='975' arguments='1093' flags='0' bytes='36' iicount='265'/>
+<parse method='1094'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.249'/>
+</phase>
+<phase name='codeinstall' stamp='0.249'>
+<phase_done name='codeinstall' stamp='0.249'/>
+</phase>
+<code_cache total_blobs='714' nmethods='318' adapters='239' free_code_cache='248176512'/>
+<task_done success='1' nmsize='688' count='276' backedge_count='744' stamp='0.249'/>
+</task>
+<task compile_id='323' method='java.lang.invoke.InvokerBytecodeGenerator emitLoadInsn (Ljava/lang/invoke/LambdaForm$BasicType;I)V' bytes='21' count='263' iicount='263' level='3' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1095' holder='1093' name='emitLoadInsn' return='977' arguments='1094 975' flags='2' bytes='21' iicount='264'/>
+<parse method='1095'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<bc code='183' bci='2'/>
+<method id='1097' holder='1093' name='loadInsnOpcode' return='975' arguments='1094' flags='2' bytes='86' iicount='264'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='17'/>
+<klass id='1099' name='jdk.internal.org.objectweb.asm.MethodVisitor' flags='1025'/>
+<method id='1100' holder='1099' name='visitVarInsn' return='977' arguments='975 975' flags='1' bytes='17' iicount='3'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='717' nmethods='321' adapters='239' free_code_cache='248166016'/>
+<task_done success='1' nmsize='664' count='274' stamp='0.250'/>
+</task>
+<task compile_id='327' method='java.lang.String replace (CC)Ljava/lang/String;' bytes='42' count='257' iicount='257' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<method id='1093' holder='983' name='replace' return='983' arguments='970 970' flags='1' bytes='42' iicount='257'/>
+<parse method='1093'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<bc code='183' bci='6'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='22567'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='18'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='replace' return='983' arguments='1085 970 970' flags='9' bytes='196' compile_id='231' compiler='c1' level='3' iicount='256'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='30'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='replace' return='983' arguments='1085 970 970' flags='9' bytes='168' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='722' nmethods='324' adapters='239' free_code_cache='248162688'/>
+<task_done success='1' nmsize='888' count='267' inlined_bytes='19' stamp='0.250'/>
+</task>
+<task compile_id='331' method='sun.invoke.util.VerifyAccess isTypeVisible (Ljava/lang/Class;Ljava/lang/Class;)Z' bytes='118' count='266' backedge_count='5' iicount='266' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='sun.invoke.util.VerifyAccess' flags='1'/>
+<method id='1094' holder='1093' name='isTypeVisible' return='969' arguments='984 984' flags='9' bytes='118' iicount='266'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='182' bci='8'/>
+<method id='1096' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='15'/>
+<method id='1097' holder='984' name='getComponentType' return='984' flags='1' bytes='14' compile_id='266' compiler='c1' level='3' iicount='428'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='23'/>
+<method id='1099' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='38'/>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<method id='1102' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' compile_id='240' compiler='c1' level='3' iicount='737'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1102'>
+<bc code='182' bci='1'/>
+<method id='1104' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1106' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='458'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1109' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1110' holder='1109' name='getCallerClass' return='984' flags='265' bytes='0' iicount='30'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<type id='977' name='void'/>
+<method id='1111' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='184' bci='0'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1113' holder='986' name='getClassLoader' return='986' arguments='984' flags='8' bytes='11' iicount='4'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='7'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='15'/>
+<method id='1115' holder='986' name='needsClassLoaderPermissionCheck' return='969' arguments='986 986' flags='10' bytes='27' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='182' bci='15'/>
+<method id='1117' holder='986' name='isAncestor' return='969' arguments='986' flags='0' bytes='20' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1117'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='1122' name='java.security.Permission' flags='1025'/>
+<method id='1123' holder='994' name='checkPermission' return='977' arguments='1122' flags='1' bytes='5' iicount='1'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='182' bci='43'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1102'>
+<bc code='182' bci='1'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.251'/>
+</parse>
+<bc code='184' bci='11'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='184' bci='20'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='184' bci='0'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='7'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.252'/>
+</parse>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='184' bci='15'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='182' bci='15'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1117'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.252'/>
+</parse>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.252'/>
+</parse>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='182' bci='69'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1124' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='820'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='183' bci='11'/>
+<method id='1126' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='60'/>
+<call method='1126' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='182' bci='74'/>
+<method id='1128' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' iicount='168'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='182' bci='3'/>
+<type id='975' name='int'/>
+<method id='1130' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' iicount='199'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='182' bci='83'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='183' bci='11'/>
+<call method='1126' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.252'/>
+</parse>
+<bc code='183' bci='95'/>
+<klass id='1132' name='sun.invoke.util.VerifyAccess$1' unloaded='1'/>
+<method id='1133' holder='1132' name='&lt;init&gt;' return='977' arguments='983 986' unloaded='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='98'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1135' name='java.security.PrivilegedAction' flags='1537'/>
+<klass id='1134' name='java.security.AccessController' flags='17'/>
+<method id='1136' holder='1134' name='doPrivileged' return='982' arguments='1135' flags='265' bytes='0' iicount='25'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.252'/>
+</phase>
+<parse_done stamp='0.252'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.252'>
+<phase_done name='optimize_blocks' stamp='0.252'/>
+</phase>
+<phase name='gvn' stamp='0.252'>
+<phase_done name='gvn' stamp='0.253'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.253'>
+<phase_done name='rangeCheckElimination' stamp='0.253'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.253'>
+<phase_done name='optimize_null_checks' stamp='0.253'/>
+</phase>
+<phase_done name='buildIR' stamp='0.253'/>
+</phase>
+<phase name='emit_lir' stamp='0.253'>
+<phase name='lirGeneration' stamp='0.253'>
+<phase_done name='lirGeneration' stamp='0.253'/>
+</phase>
+<phase name='linearScan' stamp='0.253'>
+<phase_done name='linearScan' stamp='0.254'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.254'/>
+</phase>
+<phase name='codeemit' stamp='0.254'>
+<phase_done name='codeemit' stamp='0.254'/>
+</phase>
+<phase name='codeinstall' stamp='0.254'>
+<dependency type='unique_concrete_method' ctxk='986' x='1117'/>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='743' nmethods='343' adapters='239' free_code_cache='248106240'/>
+<task_done success='1' nmsize='8712' count='288' backedge_count='5' inlined_bytes='275' stamp='0.254'/>
+</task>
+<task compile_id='347' method='sun.invoke.util.Wrapper stackSlots ()I' bytes='9' count='271' iicount='271' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<type id='975' name='int'/>
+<klass id='1093' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1094' holder='1093' name='stackSlots' return='975' flags='1' bytes='9' iicount='271'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.254'>
+<phase_done name='lirGeneration' stamp='0.254'/>
+</phase>
+<phase name='linearScan' stamp='0.254'>
+<phase_done name='linearScan' stamp='0.254'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.254'/>
+</phase>
+<phase name='codeemit' stamp='0.254'>
+<phase_done name='codeemit' stamp='0.254'/>
+</phase>
+<phase name='codeinstall' stamp='0.254'>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='746' nmethods='346' adapters='239' free_code_cache='248101376'/>
+<task_done success='1' nmsize='336' count='271' stamp='0.254'/>
+</task>
+<task compile_id='350' method='jdk.internal.org.objectweb.asm.ByteVector put11 (II)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='52' count='279' iicount='279' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.255'>
+<phase_done name='setup' stamp='0.255'/>
+</phase>
+<phase name='buildIR' stamp='0.255'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='put11' return='1093' arguments='975 975' flags='0' bytes='52' iicount='280'/>
+<parse method='1094'  stamp='0.255'>
+<phase name='parse_hir' stamp='0.255'>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='105'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.255'/>
+</phase>
+<parse_done stamp='0.255'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.255'>
+<phase_done name='optimize_blocks' stamp='0.255'/>
+</phase>
+<phase name='gvn' stamp='0.255'>
+<phase_done name='gvn' stamp='0.255'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.255'>
+<phase_done name='rangeCheckElimination' stamp='0.255'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.255'>
+<phase_done name='optimize_null_checks' stamp='0.255'/>
+</phase>
+<phase_done name='buildIR' stamp='0.255'/>
+</phase>
+<phase name='emit_lir' stamp='0.255'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='750' nmethods='349' adapters='240' free_code_cache='248092416'/>
+<task_done success='1' nmsize='616' count='282' stamp='0.255'/>
+</task>
+<task compile_id='356' method='java.lang.invoke.LambdaForm$BasicType basicType (C)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='172' count='287' iicount='287' level='3' stamp='0.256'>
+<phase name='setup' stamp='0.256'>
+<phase_done name='setup' stamp='0.256'/>
+</phase>
+<phase name='buildIR' stamp='0.256'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<type id='970' name='char'/>
+<method id='1094' holder='1093' name='basicType' return='1093' arguments='970' flags='8' bytes='172' iicount='287'/>
+<parse method='1094'  stamp='0.256'>
+<phase name='parse_hir' stamp='0.256'>
+<bc code='183' bci='148'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1103' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='554'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1105' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='571'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.256'/>
+</parse>
+<bc code='182' bci='153'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1108' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='796'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<method id='1110' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='797'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.256'/>
+</parse>
+<bc code='182' bci='157'/>
+<method id='1112' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='850'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<method id='1114' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='850'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='162'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='165'/>
+<method id='1117' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='574'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1119' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1634'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1122' name='java.lang.StringLatin1' flags='16'/>
+<method id='1123' holder='1122' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='1053'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='9'/>
+<klass id='1125' name='java.util.Arrays' flags='1'/>
+<method id='1126' holder='1125' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='1070'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1128' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1522'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1130' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='14299'/>
+<call method='1130' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1132' name='java.lang.StringUTF16' flags='16'/>
+<method id='1133' holder='1132' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='168'/>
+<klass id='1136' name='java.lang.InternalError' flags='1'/>
+<klass id='1135' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1137' holder='1135' name='newInternalError' return='1136' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='5'/>
+<method id='1139' holder='1136' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.257'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.257'/>
+</phase>
+<parse_done stamp='0.257'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.257'>
+<phase_done name='optimize_blocks' stamp='0.257'/>
+</phase>
+<phase name='gvn' stamp='0.257'>
+<phase_done name='gvn' stamp='0.257'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.257'>
+<phase_done name='rangeCheckElimination' stamp='0.257'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.257'>
+<phase_done name='optimize_null_checks' stamp='0.257'/>
+</phase>
+<phase_done name='buildIR' stamp='0.257'/>
+</phase>
+<phase name='emit_lir' stamp='0.257'>
+<phase name='lirGeneration' stamp='0.257'>
+<phase_done name='lirGeneration' stamp='0.257'/>
+</phase>
+<phase name='linearScan' stamp='0.257'>
+<phase_done name='linearScan' stamp='0.257'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.257'/>
+</phase>
+<phase name='codeemit' stamp='0.257'>
+<phase_done name='codeemit' stamp='0.257'/>
+</phase>
+<phase name='codeinstall' stamp='0.257'>
+<phase_done name='codeinstall' stamp='0.257'/>
+</phase>
+<code_cache total_blobs='758' nmethods='357' adapters='240' free_code_cache='248081280'/>
+<task_done success='1' nmsize='3272' count='296' inlined_bytes='127' stamp='0.257'/>
+</task>
+<task compile_id='361' method='java.lang.invoke.MemberName getReferenceKind ()B' bytes='12' count='522' iicount='522' level='3' stamp='0.257'>
+<phase name='setup' stamp='0.257'>
+<phase_done name='setup' stamp='0.257'/>
+</phase>
+<phase name='buildIR' stamp='0.257'>
+<type id='973' name='byte'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getReferenceKind' return='973' flags='1' bytes='12' iicount='522'/>
+<parse method='1093'  stamp='0.257'>
+<phase name='parse_hir' stamp='0.257'>
+<phase_done name='parse_hir' stamp='0.257'/>
+</phase>
+<parse_done stamp='0.257'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.257'>
+<phase_done name='optimize_blocks' stamp='0.257'/>
+</phase>
+<phase name='gvn' stamp='0.257'>
+<phase_done name='gvn' stamp='0.257'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.257'>
+<phase_done name='rangeCheckElimination' stamp='0.257'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.257'>
+<phase_done name='optimize_null_checks' stamp='0.257'/>
+</phase>
+<phase_done name='buildIR' stamp='0.257'/>
+</phase>
+<phase name='emit_lir' stamp='0.257'>
+<phase name='lirGeneration' stamp='0.257'>
+<phase_done name='lirGeneration' stamp='0.257'/>
+</phase>
+<phase name='linearScan' stamp='0.257'>
+<phase_done name='linearScan' stamp='0.258'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.258'/>
+</phase>
+<phase name='codeemit' stamp='0.258'>
+<phase_done name='codeemit' stamp='0.258'/>
+</phase>
+<phase name='codeinstall' stamp='0.258'>
+<phase_done name='codeinstall' stamp='0.258'/>
+</phase>
+<code_cache total_blobs='760' nmethods='359' adapters='240' free_code_cache='248070400'/>
+<task_done success='1' nmsize='368' count='526' stamp='0.258'/>
+</task>
+<task compile_id='363' method='jdk.internal.org.objectweb.asm.Type getArgumentsAndReturnSizes (Ljava/lang/String;)I' bytes='151' count='109' backedge_count='4107' iicount='109' level='3' stamp='0.258'>
+<phase name='setup' stamp='0.258'>
+<phase_done name='setup' stamp='0.258'/>
+</phase>
+<phase name='buildIR' stamp='0.258'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Type' flags='1'/>
+<method id='1094' holder='1093' name='getArgumentsAndReturnSizes' return='975' arguments='983' flags='9' bytes='151' iicount='109'/>
+<parse method='1094'  stamp='0.258'>
+<phase name='parse_hir' stamp='0.258'>
+<bc code='182' bci='9'/>
+<type id='970' name='char'/>
+<method id='1096' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='16730'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='24967'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1101' name='java.lang.StringLatin1' flags='16'/>
+<method id='1102' holder='1101' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='16414'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1104' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1106' name='java.lang.StringUTF16' flags='16'/>
+<method id='1107' holder='1106' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<method id='1109' holder='1106' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='2'/>
+<method id='1111' holder='1106' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1113' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1115' holder='1106' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='21'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='15'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='2'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='68'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='15'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='2'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='93'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='15'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='2'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.258'/>
+</phase>
+<parse_done stamp='0.258'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.258'>
+<phase_done name='optimize_blocks' stamp='0.258'/>
+</phase>
+<phase name='gvn' stamp='0.258'>
+<phase_done name='gvn' stamp='0.259'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.259'>
+<phase_done name='rangeCheckElimination' stamp='0.259'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.259'>
+<phase_done name='optimize_null_checks' stamp='0.259'/>
+</phase>
+<phase_done name='buildIR' stamp='0.259'/>
+</phase>
+<phase name='emit_lir' stamp='0.259'>
+<phase name='lirGeneration' stamp='0.259'>
+<phase_done name='lirGeneration' stamp='0.259'/>
+</phase>
+<phase name='linearScan' stamp='0.259'>
+<phase_done name='linearScan' stamp='0.259'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.259'/>
+</phase>
+<phase name='codeemit' stamp='0.259'>
+<phase_done name='codeemit' stamp='0.260'/>
+</phase>
+<phase name='codeinstall' stamp='0.260'>
+<phase_done name='codeinstall' stamp='0.260'/>
+</phase>
+<code_cache total_blobs='768' nmethods='366' adapters='241' free_code_cache='248036352'/>
+<task_done success='1' nmsize='6744' count='119' backedge_count='4380' inlined_bytes='388' stamp='0.260'/>
+</task>
+<task compile_id='370' method='sun.invoke.util.VerifyType isNullConversion (Ljava/lang/Class;Ljava/lang/Class;Z)Z' bytes='157' count='339' iicount='339' level='3' stamp='0.260'>
+<phase name='setup' stamp='0.260'>
+<phase_done name='setup' stamp='0.260'/>
+</phase>
+<phase name='buildIR' stamp='0.260'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='sun.invoke.util.VerifyType' flags='1'/>
+<method id='1094' holder='1093' name='isNullConversion' return='969' arguments='984 984 969' flags='9' bytes='157' iicount='340'/>
+<parse method='1094'  stamp='0.260'>
+<phase name='parse_hir' stamp='0.260'>
+<bc code='182' bci='12'/>
+<method id='1096' holder='984' name='isInterface' return='969' flags='257' bytes='0' compile_id='309' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='22'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='39'/>
+<method id='1098' holder='1093' name='isNullType' return='969' arguments='984' flags='9' bytes='18' iicount='223'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='46'/>
+<method id='1104' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='59'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='67'/>
+<method id='1106' holder='984' name='isAssignableFrom' return='969' arguments='984' flags='257' bytes='0' compile_id='360' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='72'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='81'/>
+<klass id='1107' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1108' holder='1107' name='forPrimitiveType' return='1107' arguments='984' flags='9' bytes='49' compile_id='318' compiler='c1' level='3' iicount='509'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='93'/>
+<method id='1112' holder='1107' name='isSubwordOrInt' return='969' flags='1' bytes='20' iicount='147'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<method id='1114' holder='1107' name='isIntegral' return='969' flags='1' bytes='23' iicount='147'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='182' bci='1'/>
+<method id='1116' holder='1107' name='isNumeric' return='969' flags='1' bytes='16' iicount='147'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1118' holder='1107' name='isSingleWord' return='969' flags='1' bytes='15' iicount='144'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.261'/>
+</parse>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='184' bci='98'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='104'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='182' bci='1'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.261'/>
+</parse>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='8'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.261'/>
+</parse>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='114'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='182' bci='1'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.261'/>
+</parse>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='8'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.261'/>
+</parse>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='124'/>
+<method id='1120' holder='1107' name='isSigned' return='969' flags='1' bytes='13' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='131'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='141'/>
+<type id='975' name='int'/>
+<method id='1122' holder='1107' name='bitWidth' return='975' flags='1' bytes='11' iicount='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<parse_done stamp='0.261'/>
+</parse>
+<bc code='182' bci='145'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<parse_done stamp='0.261'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.261'/>
+</phase>
+<parse_done stamp='0.261'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.261'>
+<phase_done name='optimize_blocks' stamp='0.261'/>
+</phase>
+<phase name='gvn' stamp='0.261'>
+<phase_done name='gvn' stamp='0.261'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.261'>
+<phase_done name='rangeCheckElimination' stamp='0.261'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.261'>
+<phase_done name='optimize_null_checks' stamp='0.261'/>
+</phase>
+<phase_done name='buildIR' stamp='0.261'/>
+</phase>
+<phase name='emit_lir' stamp='0.261'>
+<phase name='lirGeneration' stamp='0.261'>
+<phase_done name='lirGeneration' stamp='0.261'/>
+</phase>
+<phase name='linearScan' stamp='0.261'>
+<phase_done name='linearScan' stamp='0.262'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.262'/>
+</phase>
+<phase name='codeemit' stamp='0.262'>
+<phase_done name='codeemit' stamp='0.262'/>
+</phase>
+<phase name='codeinstall' stamp='0.262'>
+<phase_done name='codeinstall' stamp='0.262'/>
+</phase>
+<code_cache total_blobs='773' nmethods='371' adapters='241' free_code_cache='248007808'/>
+<task_done success='1' nmsize='8136' count='366' inlined_bytes='288' stamp='0.262'/>
+</task>
+<task compile_id='373' method='java.lang.invoke.LambdaForm$Name &lt;init&gt; (Ljava/lang/invoke/LambdaForm$NamedFunction;[Ljava/lang/Object;)V' bytes='44' count='386' iicount='386' level='3' stamp='0.262'>
+<phase name='setup' stamp='0.262'>
+<phase_done name='setup' stamp='0.262'/>
+</phase>
+<phase name='buildIR' stamp='0.262'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<klass id='1095' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 1095' flags='128' bytes='44' iicount='396'/>
+<parse method='1096'  stamp='0.262'>
+<phase name='parse_hir' stamp='0.262'>
+<bc code='182' bci='3'/>
+<klass id='1098' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1099' holder='1094' name='returnType' return='1098' flags='0' bytes='11' compile_id='345' compiler='c1' level='3' iicount='396'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1099'>
+<bc code='182' bci='1'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1101' holder='1094' name='methodType' return='1041' flags='0' bytes='23' compile_id='307' compiler='c1' level='3' iicount='584'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1101'>
+<bc code='182' bci='11'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1104' holder='1035' name='type' return='1041' flags='1' bytes='5' compile_id='260' compiler='c1' level='1' iicount='129'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1104'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.262'/>
+</parse>
+<bc code='182' bci='19'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1106' holder='1038' name='getInvocationType' return='1041' flags='1' bytes='56' iicount='245'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.262'/>
+</parse>
+<bc code='182' bci='4'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1108' holder='1041' name='returnType' return='984' flags='1' bytes='5' compile_id='204' compiler='c1' level='1' iicount='128'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.262'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1110' holder='1098' name='basicType' return='1098' arguments='984' flags='8' bytes='19' compile_id='246' compiler='c1' level='3' iicount='1301'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1112' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='12'/>
+<klass id='1116' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1117' holder='1116' name='forPrimitiveType' return='1116' arguments='984' flags='9' bytes='49' compile_id='318' compiler='c1' level='3' iicount='542'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<method id='1119' holder='1098' name='basicType' return='1098' arguments='1116' flags='8' bytes='10' iicount='349'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='182' bci='1'/>
+<type id='970' name='char'/>
+<method id='1121' holder='1116' name='basicTypeChar' return='970' flags='1' bytes='5' compile_id='291' compiler='c1' level='1' iicount='129'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<parse_done stamp='0.262'/>
+</parse>
+<bc code='184' bci='6'/>
+<method id='1123' holder='1098' name='basicType' return='1098' arguments='970' flags='8' bytes='172' compile_id='356' compiler='c1' level='3' iicount='406'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.262'/>
+</parse>
+<parse_done stamp='0.262'/>
+</parse>
+<parse_done stamp='0.262'/>
+</parse>
+<bc code='184' bci='12'/>
+<type id='975' name='int'/>
+<klass id='1126' name='java.util.Arrays' flags='1'/>
+<method id='1127' holder='1126' name='copyOf' return='1095' arguments='1095 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='647'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='17'/>
+<method id='1131' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1098 1094 1095' flags='2' bytes='54' compile_id='301' compiler='c1' level='3' iicount='649'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.263'/>
+</phase>
+<parse_done stamp='0.263'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.263'>
+<phase_done name='optimize_blocks' stamp='0.263'/>
+</phase>
+<phase name='gvn' stamp='0.263'>
+<phase_done name='gvn' stamp='0.263'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.263'>
+<phase_done name='rangeCheckElimination' stamp='0.263'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.263'>
+<phase_done name='optimize_null_checks' stamp='0.263'/>
+</phase>
+<phase_done name='buildIR' stamp='0.263'/>
+</phase>
+<phase name='emit_lir' stamp='0.263'>
+<phase name='lirGeneration' stamp='0.263'>
+<phase_done name='lirGeneration' stamp='0.263'/>
+</phase>
+<phase name='linearScan' stamp='0.263'>
+<phase_done name='linearScan' stamp='0.263'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.263'/>
+</phase>
+<phase name='codeemit' stamp='0.263'>
+<phase_done name='codeemit' stamp='0.263'/>
+</phase>
+<phase name='codeinstall' stamp='0.263'>
+<dependency type='leaf_type' ctxk='1094'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1104'/>
+<phase_done name='codeinstall' stamp='0.263'/>
+</phase>
+<code_cache total_blobs='778' nmethods='374' adapters='241' free_code_cache='248003328'/>
+<task_done success='1' nmsize='2024' count='396' inlined_bytes='78' stamp='0.263'/>
+</task>
+<task compile_id='375' method='java.lang.invoke.MethodType parameterType (I)Ljava/lang/Class;' bytes='7' count='1293' iicount='1293' level='1' stamp='0.263'>
+<phase name='setup' stamp='0.263'>
+<phase_done name='setup' stamp='0.263'/>
+</phase>
+<phase name='buildIR' stamp='0.263'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='parameterType' return='984' arguments='975' flags='1' bytes='7' compile_id='228' compiler='c1' level='3' iicount='1293'/>
+<parse method='1093'  stamp='0.263'>
+<phase name='parse_hir' stamp='0.263'>
+<phase_done name='parse_hir' stamp='0.263'/>
+</phase>
+<parse_done stamp='0.263'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.263'>
+<phase_done name='optimize_blocks' stamp='0.263'/>
+</phase>
+<phase name='gvn' stamp='0.263'>
+<phase_done name='gvn' stamp='0.263'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.263'>
+<phase_done name='rangeCheckElimination' stamp='0.263'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.263'>
+<phase_done name='optimize_null_checks' stamp='0.263'/>
+</phase>
+<phase_done name='buildIR' stamp='0.263'/>
+</phase>
+<phase name='emit_lir' stamp='0.263'>
+<phase name='lirGeneration' stamp='0.263'>
+<phase_done name='lirGeneration' stamp='0.263'/>
+</phase>
+<phase name='linearScan' stamp='0.263'>
+<phase_done name='linearScan' stamp='0.263'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.263'/>
+</phase>
+<phase name='codeemit' stamp='0.263'>
+<phase_done name='codeemit' stamp='0.263'/>
+</phase>
+<phase name='codeinstall' stamp='0.263'>
+<phase_done name='codeinstall' stamp='0.263'/>
+</phase>
+<code_cache total_blobs='779' nmethods='375' adapters='241' free_code_cache='248002432'/>
+<task_done success='1' nmsize='304' count='1306' stamp='0.263'/>
+</task>
+<task compile_id='384' method='java.lang.invoke.MemberName isMethod ()Z' bytes='7' count='258' iicount='258' level='3' stamp='0.265'>
+<phase name='setup' stamp='0.265'>
+<phase_done name='setup' stamp='0.265'/>
+</phase>
+<phase name='buildIR' stamp='0.265'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isMethod' return='969' flags='1' bytes='7' iicount='260'/>
+<parse method='1093'  stamp='0.265'>
+<phase name='parse_hir' stamp='0.265'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1038' name='testAllFlags' return='969' arguments='975' flags='2' bytes='7' compile_id='264' compiler='c1' level='3' iicount='1054'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<method id='1097' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='2942'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.265'/>
+</parse>
+<parse_done stamp='0.265'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.266'/>
+</phase>
+<parse_done stamp='0.266'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.266'>
+<phase_done name='optimize_blocks' stamp='0.266'/>
+</phase>
+<phase name='gvn' stamp='0.266'>
+<phase_done name='gvn' stamp='0.266'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.266'>
+<phase_done name='rangeCheckElimination' stamp='0.266'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.266'>
+<phase_done name='optimize_null_checks' stamp='0.266'/>
+</phase>
+<phase_done name='buildIR' stamp='0.266'/>
+</phase>
+<phase name='emit_lir' stamp='0.266'>
+<phase name='lirGeneration' stamp='0.266'>
+<phase_done name='lirGeneration' stamp='0.266'/>
+</phase>
+<phase name='linearScan' stamp='0.266'>
+<phase_done name='linearScan' stamp='0.266'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.266'/>
+</phase>
+<phase name='codeemit' stamp='0.266'>
+<phase_done name='codeemit' stamp='0.266'/>
+</phase>
+<phase name='codeinstall' stamp='0.266'>
+<phase_done name='codeinstall' stamp='0.266'/>
+</phase>
+<code_cache total_blobs='788' nmethods='384' adapters='241' free_code_cache='247985536'/>
+<task_done success='1' nmsize='624' count='267' inlined_bytes='23' stamp='0.266'/>
+</task>
+<task compile_id='389' method='sun.invoke.util.Wrapper forBasicType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='16' count='266' iicount='266' level='3' stamp='0.267'>
+<phase name='setup' stamp='0.267'>
+<phase_done name='setup' stamp='0.267'/>
+</phase>
+<phase name='buildIR' stamp='0.267'>
+<klass id='1093' name='sun.invoke.util.Wrapper' flags='16401'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1094' holder='1093' name='forBasicType' return='1093' arguments='984' flags='9' bytes='16' iicount='266'/>
+<parse method='1094'  stamp='0.267'>
+<phase name='parse_hir' stamp='0.267'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='8'/>
+<method id='1098' holder='1093' name='forPrimitiveType' return='1093' arguments='984' flags='9' bytes='49' compile_id='318' compiler='c1' level='3' iicount='631'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.267'/>
+</phase>
+<parse_done stamp='0.267'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.267'>
+<phase_done name='optimize_blocks' stamp='0.267'/>
+</phase>
+<phase name='gvn' stamp='0.267'>
+<phase_done name='gvn' stamp='0.267'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.267'>
+<phase_done name='rangeCheckElimination' stamp='0.267'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.267'>
+<phase_done name='optimize_null_checks' stamp='0.267'/>
+</phase>
+<phase_done name='buildIR' stamp='0.267'/>
+</phase>
+<phase name='emit_lir' stamp='0.267'>
+<phase name='lirGeneration' stamp='0.267'>
+<phase_done name='lirGeneration' stamp='0.267'/>
+</phase>
+<phase name='linearScan' stamp='0.267'>
+<phase_done name='linearScan' stamp='0.267'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.267'/>
+</phase>
+<phase name='codeemit' stamp='0.267'>
+<phase_done name='codeemit' stamp='0.267'/>
+</phase>
+<phase name='codeinstall' stamp='0.267'>
+<phase_done name='codeinstall' stamp='0.267'/>
+</phase>
+<code_cache total_blobs='794' nmethods='389' adapters='242' free_code_cache='247974912'/>
+<task_done success='1' nmsize='616' count='282' stamp='0.267'/>
+</task>
+<task compile_id='393' method='java.lang.invoke.MemberName isResolved ()Z' bytes='13' count='354' iicount='354' level='3' stamp='0.268'>
+<phase name='setup' stamp='0.268'>
+<phase_done name='setup' stamp='0.268'/>
+</phase>
+<phase name='buildIR' stamp='0.268'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isResolved' return='969' flags='1' bytes='13' iicount='354'/>
+<parse method='1093'  stamp='0.268'>
+<phase name='parse_hir' stamp='0.268'>
+<phase_done name='parse_hir' stamp='0.268'/>
+</phase>
+<parse_done stamp='0.268'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.268'>
+<phase_done name='optimize_blocks' stamp='0.268'/>
+</phase>
+<phase name='gvn' stamp='0.268'>
+<phase_done name='gvn' stamp='0.268'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.268'>
+<phase_done name='rangeCheckElimination' stamp='0.268'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.268'>
+<phase_done name='optimize_null_checks' stamp='0.268'/>
+</phase>
+<phase_done name='buildIR' stamp='0.268'/>
+</phase>
+<phase name='emit_lir' stamp='0.268'>
+<phase name='lirGeneration' stamp='0.268'>
+<phase_done name='lirGeneration' stamp='0.268'/>
+</phase>
+<phase name='linearScan' stamp='0.268'>
+<phase_done name='linearScan' stamp='0.268'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.268'/>
+</phase>
+<phase name='codeemit' stamp='0.268'>
+<phase_done name='codeemit' stamp='0.268'/>
+</phase>
+<phase name='codeinstall' stamp='0.268'>
+<phase_done name='codeinstall' stamp='0.268'/>
+</phase>
+<code_cache total_blobs='796' nmethods='391' adapters='242' free_code_cache='247970048'/>
+<task_done success='1' nmsize='432' count='354' stamp='0.268'/>
+</task>
+<task compile_id='396' method='java.lang.invoke.LambdaForm$NamedFunction intrinsicName ()Ljava/lang/invoke/MethodHandleImpl$Intrinsic;' bytes='21' count='258' iicount='258' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<klass id='1094' name='java.lang.invoke.MethodHandleImpl$Intrinsic' flags='16408'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<method id='1095' holder='1093' name='intrinsicName' return='1094' flags='1' bytes='21' iicount='258'/>
+<parse method='1095'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='182' bci='17'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1099' holder='1035' name='intrinsicName' return='1094' flags='0' bytes='4' iicount='255'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.269'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.269'/>
+</phase>
+<phase name='codeemit' stamp='0.269'>
+<phase_done name='codeemit' stamp='0.269'/>
+</phase>
+<phase name='codeinstall' stamp='0.269'>
+<phase_done name='codeinstall' stamp='0.269'/>
+</phase>
+<code_cache total_blobs='800' nmethods='395' adapters='242' free_code_cache='247958528'/>
+<task_done success='1' nmsize='648' count='261' stamp='0.269'/>
+</task>
+<task compile_id='404' method='java.lang.invoke.InvokerBytecodeGenerator emitPushArguments (Ljava/lang/invoke/LambdaForm$Name;I)V' bytes='45' count='259' backedge_count='667' iicount='259' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1095' holder='1093' name='emitPushArguments' return='977' arguments='1094 975' flags='2' bytes='45' iicount='260'/>
+<parse method='1095'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='182' bci='4'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1097' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<method id='1098' holder='1097' name='methodType' return='1041' flags='0' bytes='23' compile_id='307' compiler='c1' level='3' iicount='781'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1098'>
+<bc code='182' bci='11'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1101' holder='1035' name='type' return='1041' flags='1' bytes='5' compile_id='260' compiler='c1' level='1' iicount='129'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1101'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='19'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1103' holder='1038' name='getInvocationType' return='1041' flags='1' bytes='56' compile_id='385' compiler='c1' level='3' iicount='302'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1106' holder='1041' name='parameterType' return='984' arguments='975' flags='1' bytes='7' compile_id='375' compiler='c1' level='1' iicount='1306'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='183' bci='35'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1109' holder='1093' name='emitPushArgument' return='977' arguments='984 982' flags='2' bytes='120' compile_id='322' compiler='c1' level='3' iicount='685'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.269'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.269'/>
+</phase>
+<phase name='codeemit' stamp='0.269'>
+<phase_done name='codeemit' stamp='0.269'/>
+</phase>
+<phase name='codeinstall' stamp='0.269'>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1101'/>
+<phase_done name='codeinstall' stamp='0.270'/>
+</phase>
+<code_cache total_blobs='804' nmethods='399' adapters='242' free_code_cache='247951488'/>
+<task_done success='1' nmsize='1496' count='274' backedge_count='707' inlined_bytes='35' stamp='0.270'/>
+</task>
+<task compile_id='402' method='java.lang.invoke.MemberName isPrivate ()Z' bytes='8' count='274' iicount='274' level='3' stamp='0.270'>
+<phase name='setup' stamp='0.270'>
+<phase_done name='setup' stamp='0.270'/>
+</phase>
+<phase name='buildIR' stamp='0.270'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isPrivate' return='969' flags='1' bytes='8' iicount='274'/>
+<parse method='1093'  stamp='0.270'>
+<phase name='parse_hir' stamp='0.270'>
+<bc code='184' bci='4'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1096' holder='1095' name='isPrivate' return='969' arguments='975' flags='9' bytes='12' compile_id='387' compiler='c1' level='3' iicount='285'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.270'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.270'/>
+</phase>
+<parse_done stamp='0.270'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.270'>
+<phase_done name='optimize_blocks' stamp='0.270'/>
+</phase>
+<phase name='gvn' stamp='0.270'>
+<phase_done name='gvn' stamp='0.270'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.270'>
+<phase_done name='rangeCheckElimination' stamp='0.270'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.270'>
+<phase_done name='optimize_null_checks' stamp='0.270'/>
+</phase>
+<phase_done name='buildIR' stamp='0.270'/>
+</phase>
+<phase name='emit_lir' stamp='0.270'>
+<phase name='lirGeneration' stamp='0.270'>
+<phase_done name='lirGeneration' stamp='0.270'/>
+</phase>
+<phase name='linearScan' stamp='0.270'>
+<phase_done name='linearScan' stamp='0.270'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.270'/>
+</phase>
+<phase name='codeemit' stamp='0.270'>
+<phase_done name='codeemit' stamp='0.270'/>
+</phase>
+<phase name='codeinstall' stamp='0.270'>
+<phase_done name='codeinstall' stamp='0.270'/>
+</phase>
+<code_cache total_blobs='807' nmethods='402' adapters='242' free_code_cache='247946496'/>
+<task_done success='1' nmsize='528' count='274' inlined_bytes='12' stamp='0.270'/>
+</task>
+<task compile_id='406' method='java.util.ArrayList add (Ljava/lang/Object;[Ljava/lang/Object;I)V' bytes='23' count='261' iicount='261' level='3' stamp='0.270'>
+<phase name='setup' stamp='0.270'>
+<phase_done name='setup' stamp='0.270'/>
+</phase>
+<phase name='buildIR' stamp='0.270'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1095' holder='1093' name='add' return='977' arguments='982 1094 975' flags='2' bytes='23' iicount='261'/>
+<parse method='1095'  stamp='0.270'>
+<phase name='parse_hir' stamp='0.270'>
+<bc code='183' bci='7'/>
+<method id='1097' holder='1093' name='grow' return='1094' flags='2' bytes='11' iicount='73'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='7'/>
+<method id='1099' holder='1093' name='grow' return='1094' arguments='975' flags='2' bytes='18' iicount='73'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='7'/>
+<method id='1101' holder='1093' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' iicount='73'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1103' name='java.util.Arrays' flags='1'/>
+<method id='1104' holder='1103' name='copyOf' return='1094' arguments='1094 975' flags='9' bytes='10' iicount='241'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1106' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1108' holder='1103' name='copyOf' return='1094' arguments='1094 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='799'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.270'/>
+</phase>
+<parse_done stamp='0.270'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.270'>
+<phase_done name='optimize_blocks' stamp='0.270'/>
+</phase>
+<phase name='gvn' stamp='0.270'>
+<phase_done name='gvn' stamp='0.270'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.270'>
+<phase_done name='rangeCheckElimination' stamp='0.270'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.270'>
+<phase_done name='optimize_null_checks' stamp='0.270'/>
+</phase>
+<phase_done name='buildIR' stamp='0.270'/>
+</phase>
+<phase name='emit_lir' stamp='0.270'>
+<phase name='lirGeneration' stamp='0.270'>
+<phase_done name='lirGeneration' stamp='0.270'/>
+</phase>
+<phase name='linearScan' stamp='0.270'>
+<phase_done name='linearScan' stamp='0.270'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.270'/>
+</phase>
+<phase name='codeemit' stamp='0.270'>
+<phase_done name='codeemit' stamp='0.271'/>
+</phase>
+<phase name='codeinstall' stamp='0.271'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.271'/>
+</phase>
+<code_cache total_blobs='809' nmethods='404' adapters='242' free_code_cache='247943296'/>
+<task_done success='1' nmsize='1560' count='262' inlined_bytes='39' stamp='0.271'/>
+</task>
+<task compile_id='411' method='java.lang.invoke.LambdaForm forceInterpretation ()Z' bytes='14' count='256' iicount='256' level='3' stamp='0.272'>
+<phase name='setup' stamp='0.272'>
+<phase_done name='setup' stamp='0.272'/>
+</phase>
+<phase name='buildIR' stamp='0.272'>
+<type id='969' name='boolean'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1093' holder='1040' name='forceInterpretation' return='969' flags='2' bytes='14' iicount='256'/>
+<parse method='1093'  stamp='0.272'>
+<phase name='parse_hir' stamp='0.272'>
+<phase_done name='parse_hir' stamp='0.272'/>
+</phase>
+<parse_done stamp='0.272'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.272'>
+<phase_done name='optimize_blocks' stamp='0.272'/>
+</phase>
+<phase name='gvn' stamp='0.272'>
+<phase_done name='gvn' stamp='0.272'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.272'>
+<phase_done name='rangeCheckElimination' stamp='0.272'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.272'>
+<phase_done name='optimize_null_checks' stamp='0.272'/>
+</phase>
+<phase_done name='buildIR' stamp='0.272'/>
+</phase>
+<phase name='emit_lir' stamp='0.272'>
+<phase name='lirGeneration' stamp='0.272'>
+<phase_done name='lirGeneration' stamp='0.272'/>
+</phase>
+<phase name='linearScan' stamp='0.272'>
+<phase_done name='linearScan' stamp='0.272'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.272'/>
+</phase>
+<phase name='codeemit' stamp='0.272'>
+<phase_done name='codeemit' stamp='0.272'/>
+</phase>
+<phase name='codeinstall' stamp='0.272'>
+<phase_done name='codeinstall' stamp='0.272'/>
+</phase>
+<code_cache total_blobs='815' nmethods='410' adapters='242' free_code_cache='247928576'/>
+<task_done success='1' nmsize='432' count='256' stamp='0.272'/>
+</task>
+<task compile_id='416' method='java.lang.Number &lt;init&gt; ()V' bytes='5' count='455' iicount='455' level='3' stamp='0.273'>
+<phase name='setup' stamp='0.273'>
+<phase_done name='setup' stamp='0.273'/>
+</phase>
+<phase name='buildIR' stamp='0.273'>
+<type id='977' name='void'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1093' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='471'/>
+<parse method='1093'  stamp='0.273'>
+<phase name='parse_hir' stamp='0.273'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='17479'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1071'/>
+<parse_done stamp='0.273'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.273'/>
+</phase>
+<parse_done stamp='0.273'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.273'>
+<phase_done name='optimize_blocks' stamp='0.273'/>
+</phase>
+<phase name='gvn' stamp='0.273'>
+<phase_done name='gvn' stamp='0.273'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.273'>
+<phase_done name='rangeCheckElimination' stamp='0.273'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.273'>
+<phase_done name='optimize_null_checks' stamp='0.273'/>
+</phase>
+<phase_done name='buildIR' stamp='0.273'/>
+</phase>
+<phase name='emit_lir' stamp='0.273'>
+<phase name='lirGeneration' stamp='0.273'>
+<phase_done name='lirGeneration' stamp='0.273'/>
+</phase>
+<phase name='linearScan' stamp='0.273'>
+<phase_done name='linearScan' stamp='0.273'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.273'/>
+</phase>
+<phase name='codeemit' stamp='0.273'>
+<phase_done name='codeemit' stamp='0.273'/>
+</phase>
+<phase name='codeinstall' stamp='0.273'>
+<dependency type='no_finalizable_subclasses' ctxk='1071'/>
+<phase_done name='codeinstall' stamp='0.273'/>
+</phase>
+<code_cache total_blobs='821' nmethods='416' adapters='242' free_code_cache='247905152'/>
+<task_done success='1' nmsize='432' count='532' inlined_bytes='1' stamp='0.273'/>
+</task>
+<task compile_id='420' method='java.lang.invoke.MethodTypeForm canonicalizeAll ([Ljava/lang/Class;I)[Ljava/lang/Class;' bytes='66' count='214' backedge_count='1025' iicount='214' level='3' stamp='0.273'>
+<phase name='setup' stamp='0.273'>
+<phase_done name='setup' stamp='0.273'/>
+</phase>
+<phase name='buildIR' stamp='0.273'>
+<klass id='1094' name='[Ljava.lang.Class;' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1095' holder='1093' name='canonicalizeAll' return='1094' arguments='1094 975' flags='8' bytes='66' iicount='214'/>
+<parse method='1095'  stamp='0.273'>
+<phase name='parse_hir' stamp='0.273'>
+<bc code='184' bci='19'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1097' holder='1093' name='canonicalize' return='984' arguments='984 975' flags='8' bytes='233' compile_id='207' compiler='c1' level='3' iicount='1239'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='45'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='clone' return='982' flags='260' bytes='0' compile_id='248' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.273'/>
+</phase>
+<parse_done stamp='0.273'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.273'>
+<phase_done name='optimize_blocks' stamp='0.273'/>
+</phase>
+<phase name='gvn' stamp='0.273'>
+<phase_done name='gvn' stamp='0.273'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.273'>
+<phase_done name='rangeCheckElimination' stamp='0.273'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.273'>
+<phase_done name='optimize_null_checks' stamp='0.273'/>
+</phase>
+<phase_done name='buildIR' stamp='0.273'/>
+</phase>
+<phase name='emit_lir' stamp='0.273'>
+<phase name='lirGeneration' stamp='0.273'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='826' nmethods='421' adapters='242' free_code_cache='247898752'/>
+<task_done success='1' nmsize='1688' count='215' backedge_count='1032' stamp='0.274'/>
+</task>
+<task compile_id='425' method='java.lang.invoke.MemberName clone ()Ljava/lang/invoke/MemberName;' bytes='14' count='256' iicount='256' level='3' stamp='0.274'>
+<phase name='setup' stamp='0.274'>
+<phase_done name='setup' stamp='0.274'/>
+</phase>
+<phase name='buildIR' stamp='0.274'>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='clone' return='1038' flags='4' bytes='14' iicount='256'/>
+<parse method='1093'  stamp='0.274'>
+<phase name='parse_hir' stamp='0.274'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='clone' return='982' flags='260' bytes='0' compile_id='248' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<klass id='1097' name='java.lang.InternalError' flags='1'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<klass id='1096' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1098' holder='1096' name='newInternalError' return='1097' arguments='992' flags='8' bytes='9' iicount='1'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='989' name='java.lang.Throwable' flags='1'/>
+<method id='1100' holder='1097' name='&lt;init&gt;' return='977' arguments='989' flags='1' bytes='6' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.274'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.274'/>
+</phase>
+<parse_done stamp='0.274'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.274'>
+<phase_done name='optimize_blocks' stamp='0.274'/>
+</phase>
+<phase name='gvn' stamp='0.274'>
+<phase_done name='gvn' stamp='0.274'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.274'>
+<phase_done name='rangeCheckElimination' stamp='0.274'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.274'>
+<phase_done name='optimize_null_checks' stamp='0.274'/>
+</phase>
+<phase_done name='buildIR' stamp='0.274'/>
+</phase>
+<phase name='emit_lir' stamp='0.274'>
+<phase name='lirGeneration' stamp='0.274'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='828' nmethods='423' adapters='242' free_code_cache='247895680'/>
+<task_done success='1' nmsize='952' count='258' inlined_bytes='9' stamp='0.274'/>
+</task>
+<task compile_id='429' method='java.lang.invoke.DirectMethodHandle internalMemberName ()Ljava/lang/invoke/MemberName;' bytes='5' count='129' iicount='129' level='1' stamp='0.275'>
+<phase name='setup' stamp='0.275'>
+<phase_done name='setup' stamp='0.275'/>
+</phase>
+<phase name='buildIR' stamp='0.275'>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<klass id='1036' name='java.lang.invoke.DirectMethodHandle' flags='0'/>
+<method id='1093' holder='1036' name='internalMemberName' return='1038' flags='0' bytes='5' iicount='129'/>
+<parse method='1093'  stamp='0.275'>
+<phase name='parse_hir' stamp='0.275'>
+<phase_done name='parse_hir' stamp='0.275'/>
+</phase>
+<parse_done stamp='0.275'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.275'>
+<phase_done name='optimize_blocks' stamp='0.275'/>
+</phase>
+<phase name='gvn' stamp='0.275'>
+<phase_done name='gvn' stamp='0.275'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.275'>
+<phase_done name='rangeCheckElimination' stamp='0.275'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.275'>
+<phase_done name='optimize_null_checks' stamp='0.275'/>
+</phase>
+<phase_done name='buildIR' stamp='0.275'/>
+</phase>
+<phase name='emit_lir' stamp='0.275'>
+<phase name='lirGeneration' stamp='0.275'>
+<phase_done name='lirGeneration' stamp='0.275'/>
+</phase>
+<phase name='linearScan' stamp='0.275'>
+<phase_done name='linearScan' stamp='0.275'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.275'/>
+</phase>
+<phase name='codeemit' stamp='0.275'>
+<phase_done name='codeemit' stamp='0.275'/>
+</phase>
+<phase name='codeinstall' stamp='0.275'>
+<phase_done name='codeinstall' stamp='0.275'/>
+</phase>
+<code_cache total_blobs='834' nmethods='429' adapters='242' free_code_cache='247885952'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.275'/>
+</task>
+<task compile_id='436' method='jdk.internal.org.objectweb.asm.Type getDescriptor ()Ljava/lang/String;' bytes='18' count='258' iicount='258' level='3' stamp='0.277'>
+<phase name='setup' stamp='0.277'>
+<phase_done name='setup' stamp='0.277'/>
+</phase>
+<phase name='buildIR' stamp='0.277'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Type' flags='1'/>
+<method id='1094' holder='1093' name='getDescriptor' return='983' flags='1' bytes='18' iicount='258'/>
+<parse method='1094'  stamp='0.277'>
+<phase name='parse_hir' stamp='0.277'>
+<bc code='183' bci='4'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1096' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='924'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1098' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='959'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1100' holder='1093' name='getDescriptor' return='977' arguments='1050' flags='2' bytes='87' iicount='262'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<method id='1102' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='967'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1104' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='2960'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1107' name='java.lang.StringLatin1' flags='16'/>
+<method id='1108' holder='1107' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='1785'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='9'/>
+<klass id='1110' name='java.util.Arrays' flags='1'/>
+<method id='1111' holder='1110' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='1809'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1113' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='2654'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='18359'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.277'/>
+</parse>
+<parse_done stamp='0.277'/>
+</parse>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1117' name='java.lang.StringUTF16' flags='16'/>
+<method id='1118' holder='1117' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.277'/>
+</phase>
+<parse_done stamp='0.277'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.277'>
+<phase_done name='optimize_blocks' stamp='0.277'/>
+</phase>
+<phase name='gvn' stamp='0.277'>
+<phase_done name='gvn' stamp='0.277'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.277'>
+<phase_done name='rangeCheckElimination' stamp='0.277'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.277'>
+<phase_done name='optimize_null_checks' stamp='0.277'/>
+</phase>
+<phase_done name='buildIR' stamp='0.277'/>
+</phase>
+<phase name='emit_lir' stamp='0.277'>
+<phase name='lirGeneration' stamp='0.277'>
+<phase_done name='lirGeneration' stamp='0.277'/>
+</phase>
+<phase name='linearScan' stamp='0.277'>
+<phase_done name='linearScan' stamp='0.277'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.277'/>
+</phase>
+<phase name='codeemit' stamp='0.277'>
+<phase_done name='codeemit' stamp='0.277'/>
+</phase>
+<phase name='codeinstall' stamp='0.277'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.277'/>
+</phase>
+<code_cache total_blobs='841' nmethods='435' adapters='243' free_code_cache='247874432'/>
+<task_done success='1' nmsize='1944' count='273' inlined_bytes='94' stamp='0.277'/>
+</task>
+<task compile_id='441' method='java.lang.Class getModule ()Ljava/lang/Module;' bytes='5' count='129' iicount='129' level='1' stamp='0.278'>
+<phase name='setup' stamp='0.278'>
+<phase_done name='setup' stamp='0.278'/>
+</phase>
+<phase name='buildIR' stamp='0.278'>
+<klass id='1019' name='java.lang.Module' flags='17'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getModule' return='1019' flags='1' bytes='5' iicount='129'/>
+<parse method='1093'  stamp='0.278'>
+<phase name='parse_hir' stamp='0.278'>
+<phase_done name='parse_hir' stamp='0.278'/>
+</phase>
+<parse_done stamp='0.278'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.278'>
+<phase_done name='optimize_blocks' stamp='0.278'/>
+</phase>
+<phase name='gvn' stamp='0.278'>
+<phase_done name='gvn' stamp='0.278'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.278'>
+<phase_done name='rangeCheckElimination' stamp='0.278'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.278'>
+<phase_done name='optimize_null_checks' stamp='0.278'/>
+</phase>
+<phase_done name='buildIR' stamp='0.278'/>
+</phase>
+<phase name='emit_lir' stamp='0.278'>
+<phase name='lirGeneration' stamp='0.278'>
+<phase_done name='lirGeneration' stamp='0.278'/>
+</phase>
+<phase name='linearScan' stamp='0.278'>
+<phase_done name='linearScan' stamp='0.278'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.278'/>
+</phase>
+<phase name='codeemit' stamp='0.278'>
+<phase_done name='codeemit' stamp='0.279'/>
+</phase>
+<phase name='codeinstall' stamp='0.279'>
+<phase_done name='codeinstall' stamp='0.279'/>
+</phase>
+<code_cache total_blobs='850' nmethods='442' adapters='243' free_code_cache='247865984'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.279'/>
+</task>
+<task compile_id='448' method='java.lang.Integer getChars (II[B)I' bytes='131' count='271' iicount='271' level='3' stamp='0.281'>
+<phase name='setup' stamp='0.281'>
+<phase_done name='setup' stamp='0.281'/>
+</phase>
+<phase name='buildIR' stamp='0.281'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1093' holder='1076' name='getChars' return='975' arguments='975 975 1085' flags='8' bytes='131' iicount='271'/>
+<parse method='1093'  stamp='0.281'>
+<phase name='parse_hir' stamp='0.281'>
+<phase_done name='parse_hir' stamp='0.281'/>
+</phase>
+<parse_done stamp='0.281'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.281'>
+<phase_done name='optimize_blocks' stamp='0.281'/>
+</phase>
+<phase name='gvn' stamp='0.281'>
+<phase_done name='gvn' stamp='0.281'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.281'>
+<phase_done name='rangeCheckElimination' stamp='0.281'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.281'>
+<phase_done name='optimize_null_checks' stamp='0.281'/>
+</phase>
+<phase_done name='buildIR' stamp='0.281'/>
+</phase>
+<phase name='emit_lir' stamp='0.281'>
+<phase name='lirGeneration' stamp='0.281'>
+<phase_done name='lirGeneration' stamp='0.282'/>
+</phase>
+<phase name='linearScan' stamp='0.282'>
+<phase_done name='linearScan' stamp='0.282'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.282'/>
+</phase>
+<phase name='codeemit' stamp='0.282'>
+<phase_done name='codeemit' stamp='0.282'/>
+</phase>
+<phase name='codeinstall' stamp='0.282'>
+<phase_done name='codeinstall' stamp='0.282'/>
+</phase>
+<code_cache total_blobs='858' nmethods='449' adapters='244' free_code_cache='247853056'/>
+<task_done success='1' nmsize='1136' count='281' stamp='0.282'/>
+</task>
+<task compile_id='454' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='15' count='257' iicount='257' level='3' stamp='0.282'>
+<phase name='setup' stamp='0.283'>
+<phase_done name='setup' stamp='0.283'/>
+</phase>
+<phase name='buildIR' stamp='0.283'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1094' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry' flags='10'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='982 1094' flags='1' bytes='15' iicount='257'/>
+<parse method='1095'  stamp='0.283'>
+<phase name='parse_hir' stamp='0.283'>
+<bc code='183' bci='3'/>
+<klass id='1010' name='java.lang.ref.WeakReference' flags='1'/>
+<method id='1097' holder='1010' name='&lt;init&gt;' return='977' arguments='982 1094' flags='1' bytes='7' compile_id='439' compiler='c1' level='3' iicount='274'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1099' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1094' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='1981'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<method id='1101' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='20014'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.283'/>
+</parse>
+<parse_done stamp='0.283'/>
+</parse>
+<parse_done stamp='0.283'/>
+</parse>
+<bc code='182' bci='8'/>
+<type id='975' name='int'/>
+<method id='1104' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.283'/>
+</phase>
+<parse_done stamp='0.283'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.283'>
+<phase_done name='optimize_blocks' stamp='0.283'/>
+</phase>
+<phase name='gvn' stamp='0.283'>
+<phase_done name='gvn' stamp='0.283'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.283'>
+<phase_done name='rangeCheckElimination' stamp='0.283'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.283'>
+<phase_done name='optimize_null_checks' stamp='0.283'/>
+</phase>
+<phase_done name='buildIR' stamp='0.283'/>
+</phase>
+<phase name='emit_lir' stamp='0.283'>
+<phase name='lirGeneration' stamp='0.283'>
+<phase_done name='lirGeneration' stamp='0.283'/>
+</phase>
+<phase name='linearScan' stamp='0.283'>
+<phase_done name='linearScan' stamp='0.283'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.283'/>
+</phase>
+<phase name='codeemit' stamp='0.283'>
+<phase_done name='codeemit' stamp='0.283'/>
+</phase>
+<phase name='codeinstall' stamp='0.283'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.283'/>
+</phase>
+<code_cache total_blobs='865' nmethods='455' adapters='245' free_code_cache='247840128'/>
+<task_done success='1' nmsize='1160' count='258' inlined_bytes='33' stamp='0.283'/>
+</task>
+<task compile_id='462' method='java.lang.invoke.LambdaForm useCount (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='90' count='339' backedge_count='2476' iicount='339' level='3' stamp='0.285'>
+<phase name='setup' stamp='0.285'>
+<phase_done name='setup' stamp='0.285'/>
+</phase>
+<phase name='buildIR' stamp='0.285'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1094' holder='1040' name='useCount' return='975' arguments='1093' flags='0' bytes='90' iicount='339'/>
+<parse method='1094'  stamp='0.285'>
+<phase name='parse_hir' stamp='0.285'>
+<bc code='182' bci='8'/>
+<method id='1097' holder='1040' name='lastUseIndex' return='975' arguments='1093' flags='0' bytes='76' compile_id='413' compiler='c1' level='3' iicount='339'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='182' bci='33'/>
+<method id='1099' holder='1093' name='index' return='975' flags='0' bytes='5' compile_id='261' compiler='c1' level='1' iicount='138'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.285'/>
+</parse>
+<bc code='182' bci='75'/>
+<method id='1101' holder='1093' name='useCount' return='975' arguments='1093' flags='0' bytes='42' compile_id='313' compiler='c1' level='3' iicount='2476'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.285'/>
+</phase>
+<parse_done stamp='0.285'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.285'>
+<phase_done name='optimize_blocks' stamp='0.285'/>
+</phase>
+<phase name='gvn' stamp='0.285'>
+<phase_done name='gvn' stamp='0.285'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.285'>
+<phase_done name='rangeCheckElimination' stamp='0.285'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.285'>
+<phase_done name='optimize_null_checks' stamp='0.285'/>
+</phase>
+<phase_done name='buildIR' stamp='0.285'/>
+</phase>
+<phase name='emit_lir' stamp='0.285'>
+<phase name='lirGeneration' stamp='0.285'>
+<phase_done name='lirGeneration' stamp='0.285'/>
+</phase>
+<phase name='linearScan' stamp='0.285'>
+<phase_done name='linearScan' stamp='0.285'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.285'/>
+</phase>
+<phase name='codeemit' stamp='0.285'>
+<phase_done name='codeemit' stamp='0.285'/>
+</phase>
+<phase name='codeinstall' stamp='0.286'>
+<dependency type='leaf_type' ctxk='1040'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1097'/>
+<phase_done name='codeinstall' stamp='0.286'/>
+</phase>
+<code_cache total_blobs='875' nmethods='464' adapters='246' free_code_cache='247829376'/>
+<task_done success='1' nmsize='1272' count='340' backedge_count='2477' inlined_bytes='5' stamp='0.286'/>
+</task>
+<task compile_id='468' method='java.lang.invoke.MemberName$Factory resolveOrFail (BLjava/lang/invoke/MemberName;Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/MemberName;' bytes='52' count='256' iicount='256' level='3' stamp='0.286'>
+<phase name='setup' stamp='0.286'>
+<phase_done name='setup' stamp='0.286'/>
+</phase>
+<phase name='buildIR' stamp='0.286'>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<type id='973' name='byte'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.MemberName$Factory' flags='8'/>
+<method id='1094' holder='1093' name='resolveOrFail' return='1038' arguments='973 1038 984 984' flags='1' bytes='52' iicount='256'/>
+<parse method='1094'  stamp='0.286'>
+<phase name='parse_hir' stamp='0.286'>
+<bc code='183' bci='4'/>
+<method id='1096' holder='1093' name='resolve' return='1038' arguments='973 1038 984' flags='2' bytes='143' compile_id='424' compiler='c1' level='3' iicount='317'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='11'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1038' name='isResolved' return='969' flags='1' bytes='13' compile_id='393' compiler='c1' level='3' iicount='481'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.286'/>
+</parse>
+<bc code='182' bci='22'/>
+<klass id='998' name='java.lang.ReflectiveOperationException' flags='1'/>
+<method id='1100' holder='1038' name='makeAccessException' return='998' flags='1' bytes='140' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='45'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='984' name='cast' return='982' arguments='982' flags='1' bytes='27' iicount='16'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1103'>
+<bc code='182' bci='6'/>
+<method id='1105' holder='984' name='isInstance' return='969' arguments='982' flags='257' bytes='0' iicount='19'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1107' holder='984' name='cannotCastMsg' return='983' arguments='982' flags='2' bytes='40' iicount='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<klass id='1002' name='java.lang.ClassCastException' flags='1'/>
+<method id='1109' holder='1002' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.286'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.286'/>
+</phase>
+<parse_done stamp='0.286'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.286'>
+<phase_done name='optimize_blocks' stamp='0.286'/>
+</phase>
+<phase name='gvn' stamp='0.286'>
+<phase_done name='gvn' stamp='0.286'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.286'>
+<phase_done name='rangeCheckElimination' stamp='0.286'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.286'>
+<phase_done name='optimize_null_checks' stamp='0.286'/>
+</phase>
+<phase_done name='buildIR' stamp='0.286'/>
+</phase>
+<phase name='emit_lir' stamp='0.286'>
+<phase name='lirGeneration' stamp='0.286'>
+<phase_done name='lirGeneration' stamp='0.286'/>
+</phase>
+<phase name='linearScan' stamp='0.286'>
+<phase_done name='linearScan' stamp='0.286'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.286'/>
+</phase>
+<phase name='codeemit' stamp='0.286'>
+<phase_done name='codeemit' stamp='0.286'/>
+</phase>
+<phase name='codeinstall' stamp='0.286'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.286'/>
+</phase>
+<code_cache total_blobs='878' nmethods='467' adapters='246' free_code_cache='247821312'/>
+<task_done success='1' nmsize='2424' count='256' inlined_bytes='14' stamp='0.286'/>
+</task>
+<task compile_id='472' method='java.lang.Math max (II)I' bytes='11' count='273' iicount='273' level='3' stamp='0.293'>
+<phase name='setup' stamp='0.293'>
+<phase_done name='setup' stamp='0.293'/>
+</phase>
+<phase name='buildIR' stamp='0.293'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='max' return='975' arguments='975 975' flags='9' bytes='11' iicount='273'/>
+<parse method='1094'  stamp='0.293'>
+<phase name='parse_hir' stamp='0.293'>
+<phase_done name='parse_hir' stamp='0.293'/>
+</phase>
+<parse_done stamp='0.293'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.293'>
+<phase_done name='optimize_blocks' stamp='0.293'/>
+</phase>
+<phase name='gvn' stamp='0.293'>
+<phase_done name='gvn' stamp='0.293'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.293'>
+<phase_done name='rangeCheckElimination' stamp='0.293'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.293'>
+<phase_done name='optimize_null_checks' stamp='0.293'/>
+</phase>
+<phase_done name='buildIR' stamp='0.293'/>
+</phase>
+<phase name='emit_lir' stamp='0.293'>
+<phase name='lirGeneration' stamp='0.293'>
+<phase_done name='lirGeneration' stamp='0.293'/>
+</phase>
+<phase name='linearScan' stamp='0.293'>
+<phase_done name='linearScan' stamp='0.293'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.293'/>
+</phase>
+<phase name='codeemit' stamp='0.293'>
+<phase_done name='codeemit' stamp='0.293'/>
+</phase>
+<phase name='codeinstall' stamp='0.293'>
+<phase_done name='codeinstall' stamp='0.293'/>
+</phase>
+<code_cache total_blobs='884' nmethods='472' adapters='247' free_code_cache='247814400'/>
+<task_done success='1' nmsize='400' count='275' stamp='0.293'/>
+</task>
+<task compile_id='477' method='java.nio.Buffer nextGetIndex ()I' bytes='31' count='340' iicount='340' level='3' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='nextGetIndex' return='975' flags='16' bytes='31' iicount='356'/>
+<parse method='1093'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1095' name='java.nio.BufferUnderflowException' unloaded='1'/>
+<method id='1096' holder='1095' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.297'/>
+</phase>
+<phase_done name='buildIR' stamp='0.297'/>
+</phase>
+<phase name='emit_lir' stamp='0.297'>
+<phase name='lirGeneration' stamp='0.297'>
+<phase_done name='lirGeneration' stamp='0.297'/>
+</phase>
+<phase name='linearScan' stamp='0.297'>
+<phase_done name='linearScan' stamp='0.297'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.297'/>
+</phase>
+<phase name='codeemit' stamp='0.297'>
+<phase_done name='codeemit' stamp='0.297'/>
+</phase>
+<phase name='codeinstall' stamp='0.297'>
+<phase_done name='codeinstall' stamp='0.297'/>
+</phase>
+<code_cache total_blobs='890' nmethods='477' adapters='248' free_code_cache='247808128'/>
+<task_done success='1' nmsize='520' count='494' stamp='0.297'/>
+</task>
+<task compile_id='482' method='jdk.internal.jimage.ImageStringsReader unmaskedHashCode (Ljava/lang/String;I)I' bytes='173' count='132' backedge_count='2193' iicount='132' level='3' stamp='0.298'>
+<phase name='setup' stamp='0.298'>
+<phase_done name='setup' stamp='0.298'/>
+</phase>
+<phase name='buildIR' stamp='0.298'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.jimage.ImageStringsReader' flags='1'/>
+<method id='1094' holder='1093' name='unmaskedHashCode' return='975' arguments='983 975' flags='9' bytes='173' iicount='132'/>
+<parse method='1094'  stamp='0.298'>
+<phase name='parse_hir' stamp='0.298'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='7959'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1098' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='21157'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.298'/>
+</parse>
+<parse_done stamp='0.298'/>
+</parse>
+<bc code='182' bci='19'/>
+<type id='970' name='char'/>
+<method id='1101' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='42344'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1103' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='52375'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.298'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1105' name='java.lang.StringLatin1' flags='16'/>
+<method id='1106' holder='1105' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='41216'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1108' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1109' holder='1108' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.298'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1110' name='java.lang.StringUTF16' flags='16'/>
+<method id='1111' holder='1110' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='184' bci='2'/>
+<method id='1113' holder='1110' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='184' bci='2'/>
+<method id='1115' holder='1110' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.298'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1117' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.298'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1119' holder='1110' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.298'/>
+</parse>
+<parse_done stamp='0.298'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.298'/>
+</phase>
+<parse_done stamp='0.298'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.298'>
+<phase_done name='optimize_blocks' stamp='0.298'/>
+</phase>
+<phase name='gvn' stamp='0.298'>
+<phase_done name='gvn' stamp='0.298'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.298'>
+<phase_done name='rangeCheckElimination' stamp='0.298'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.298'>
+<phase_done name='optimize_null_checks' stamp='0.298'/>
+</phase>
+<phase_done name='buildIR' stamp='0.298'/>
+</phase>
+<phase name='emit_lir' stamp='0.298'>
+<phase name='lirGeneration' stamp='0.298'>
+<phase_done name='lirGeneration' stamp='0.298'/>
+</phase>
+<phase name='linearScan' stamp='0.298'>
+<phase_done name='linearScan' stamp='0.299'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.299'/>
+</phase>
+<phase name='codeemit' stamp='0.299'>
+<phase_done name='codeemit' stamp='0.299'/>
+</phase>
+<phase name='codeinstall' stamp='0.299'>
+<phase_done name='codeinstall' stamp='0.299'/>
+</phase>
+<code_cache total_blobs='895' nmethods='482' adapters='248' free_code_cache='247798400'/>
+<task_done success='1' nmsize='3352' count='280' backedge_count='4694' inlined_bytes='123' stamp='0.299'/>
+</task>
+<task compile_id='487' method='java.nio.DirectByteBuffer address ()J' bytes='5' count='135' iicount='135' level='1' stamp='0.300'>
+<phase name='setup' stamp='0.300'>
+<phase_done name='setup' stamp='0.300'/>
+</phase>
+<phase name='buildIR' stamp='0.300'>
+<type id='976' name='long'/>
+<klass id='1093' name='java.nio.DirectByteBuffer' flags='0'/>
+<method id='1094' holder='1093' name='address' return='976' flags='1' bytes='5' iicount='135'/>
+<parse method='1094'  stamp='0.300'>
+<phase name='parse_hir' stamp='0.300'>
+<phase_done name='parse_hir' stamp='0.300'/>
+</phase>
+<parse_done stamp='0.300'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.300'>
+<phase_done name='optimize_blocks' stamp='0.300'/>
+</phase>
+<phase name='gvn' stamp='0.300'>
+<phase_done name='gvn' stamp='0.300'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.300'>
+<phase_done name='rangeCheckElimination' stamp='0.300'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.300'>
+<phase_done name='optimize_null_checks' stamp='0.300'/>
+</phase>
+<phase_done name='buildIR' stamp='0.300'/>
+</phase>
+<phase name='emit_lir' stamp='0.300'>
+<phase name='lirGeneration' stamp='0.300'>
+<phase_done name='lirGeneration' stamp='0.300'/>
+</phase>
+<phase name='linearScan' stamp='0.300'>
+<phase_done name='linearScan' stamp='0.300'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.300'/>
+</phase>
+<phase name='codeemit' stamp='0.300'>
+<phase_done name='codeemit' stamp='0.300'/>
+</phase>
+<phase name='codeinstall' stamp='0.300'>
+<phase_done name='codeinstall' stamp='0.300'/>
+</phase>
+<code_cache total_blobs='899' nmethods='486' adapters='248' free_code_cache='247794048'/>
+<task_done success='1' nmsize='272' count='142' stamp='0.300'/>
+</task>
+<task compile_id='493' method='java.lang.invoke.LambdaForm returnType ()Ljava/lang/invoke/LambdaForm$BasicType;' bytes='26' count='256' iicount='256' level='3' stamp='0.301'>
+<phase name='setup' stamp='0.301'>
+<phase_done name='setup' stamp='0.301'/>
+</phase>
+<phase name='buildIR' stamp='0.301'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1094' holder='1040' name='returnType' return='1093' flags='0' bytes='26' iicount='256'/>
+<parse method='1094'  stamp='0.301'>
+<phase name='parse_hir' stamp='0.301'>
+<phase_done name='parse_hir' stamp='0.301'/>
+</phase>
+<parse_done stamp='0.301'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.301'>
+<phase_done name='optimize_blocks' stamp='0.301'/>
+</phase>
+<phase name='gvn' stamp='0.301'>
+<phase_done name='gvn' stamp='0.301'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.301'>
+<phase_done name='rangeCheckElimination' stamp='0.301'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.301'>
+<phase_done name='optimize_null_checks' stamp='0.301'/>
+</phase>
+<phase_done name='buildIR' stamp='0.301'/>
+</phase>
+<phase name='emit_lir' stamp='0.301'>
+<phase name='lirGeneration' stamp='0.301'>
+<phase_done name='lirGeneration' stamp='0.301'/>
+</phase>
+<phase name='linearScan' stamp='0.301'>
+<phase_done name='linearScan' stamp='0.301'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.301'/>
+</phase>
+<phase name='codeemit' stamp='0.301'>
+<phase_done name='codeemit' stamp='0.301'/>
+</phase>
+<phase name='codeinstall' stamp='0.301'>
+<phase_done name='codeinstall' stamp='0.301'/>
+</phase>
+<code_cache total_blobs='908' nmethods='493' adapters='248' free_code_cache='247787392'/>
+<task_done success='1' nmsize='464' count='256' stamp='0.301'/>
+</task>
+<task compile_id='497' method='java.lang.invoke.LambdaForm prepare ()V' bytes='112' count='261' iicount='262' level='3' stamp='0.303'>
+<phase name='setup' stamp='0.303'>
+<phase_done name='setup' stamp='0.303'/>
+</phase>
+<phase name='buildIR' stamp='0.303'>
+<type id='977' name='void'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1093' holder='1040' name='prepare' return='977' flags='1' bytes='112' iicount='262'/>
+<parse method='1093'  stamp='0.303'>
+<phase name='parse_hir' stamp='0.303'>
+<bc code='183' bci='7'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1040' name='forceInterpretation' return='969' flags='2' bytes='14' compile_id='411' compiler='c1' level='3' iicount='369'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.303'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1098' holder='1040' name='compileToBytecode' return='977' flags='0' bytes='162' iicount='103'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='182' bci='33'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1100' holder='1040' name='methodType' return='1041' flags='0' bytes='47' iicount='206'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1100'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='182' bci='38'/>
+<klass id='1102' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1103' holder='1041' name='form' return='1102' flags='0' bytes='5' compile_id='247' compiler='c1' level='1' iicount='135'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.303'/>
+</parse>
+<bc code='182' bci='43'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1102' name='cachedLambdaForm' return='1040' arguments='975' flags='1' bytes='44' iicount='96'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='80'/>
+<method id='1107' holder='1040' name='&lt;init&gt;' return='977' arguments='1041' flags='2' bytes='218' iicount='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='86'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<klass id='1109' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1110' holder='1109' name='generateLambdaFormInterpreterEntryPoint' return='1038' arguments='1041' flags='8' bytes='83' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='93'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.303'/>
+</parse>
+<bc code='182' bci='99'/>
+<method id='1112' holder='1102' name='setCachedLambdaForm' return='1040' arguments='975 1040' flags='33' bytes='44' iicount='65'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.303'/>
+</phase>
+<parse_done stamp='0.303'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.303'>
+<phase_done name='optimize_blocks' stamp='0.303'/>
+</phase>
+<phase name='gvn' stamp='0.303'>
+<phase_done name='gvn' stamp='0.304'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.304'>
+<phase_done name='rangeCheckElimination' stamp='0.304'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.304'>
+<phase_done name='optimize_null_checks' stamp='0.304'/>
+</phase>
+<phase_done name='buildIR' stamp='0.304'/>
+</phase>
+<phase name='emit_lir' stamp='0.304'>
+<phase name='lirGeneration' stamp='0.304'>
+<phase_done name='lirGeneration' stamp='0.304'/>
+</phase>
+<phase name='linearScan' stamp='0.304'>
+<phase_done name='linearScan' stamp='0.304'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.304'/>
+</phase>
+<phase name='codeemit' stamp='0.304'>
+<phase_done name='codeemit' stamp='0.304'/>
+</phase>
+<phase name='codeinstall' stamp='0.304'>
+<dependency type='leaf_type' ctxk='1040'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1098'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1100'/>
+<phase_done name='codeinstall' stamp='0.304'/>
+</phase>
+<code_cache total_blobs='914' nmethods='498' adapters='249' free_code_cache='247778304'/>
+<task_done success='1' nmsize='2072' count='274' inlined_bytes='24' stamp='0.304'/>
+</task>
+<task compile_id='502' method='java.lang.String startsWith (Ljava/lang/String;)Z' bytes='7' count='297' iicount='297' level='3' stamp='0.317'>
+<phase name='setup' stamp='0.317'>
+<phase_done name='setup' stamp='0.317'/>
+</phase>
+<phase name='buildIR' stamp='0.317'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' iicount='297'/>
+<parse method='1093'  stamp='0.317'>
+<phase name='parse_hir' stamp='0.317'>
+<bc code='182' bci='3'/>
+<type id='975' name='int'/>
+<method id='1095' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' iicount='335'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.317'/>
+</phase>
+<parse_done stamp='0.317'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.317'>
+<phase_done name='optimize_blocks' stamp='0.317'/>
+</phase>
+<phase name='gvn' stamp='0.317'>
+<phase_done name='gvn' stamp='0.317'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.317'>
+<phase_done name='rangeCheckElimination' stamp='0.317'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.317'>
+<phase_done name='optimize_null_checks' stamp='0.317'/>
+</phase>
+<phase_done name='buildIR' stamp='0.317'/>
+</phase>
+<phase name='emit_lir' stamp='0.317'>
+<phase name='lirGeneration' stamp='0.317'>
+<phase_done name='lirGeneration' stamp='0.317'/>
+</phase>
+<phase name='linearScan' stamp='0.317'>
+<phase_done name='linearScan' stamp='0.317'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.317'/>
+</phase>
+<phase name='codeemit' stamp='0.317'>
+<phase_done name='codeemit' stamp='0.317'/>
+</phase>
+<phase name='codeinstall' stamp='0.317'>
+<phase_done name='codeinstall' stamp='0.317'/>
+</phase>
+<code_cache total_blobs='921' nmethods='501' adapters='253' free_code_cache='247768832'/>
+<task_done success='1' nmsize='520' count='297' stamp='0.317'/>
+</task>
+<task compile_id='504' method='java.util.Arrays rangeCheck (III)V' bytes='74' count='413' iicount='413' level='3' stamp='0.319'>
+<phase name='setup' stamp='0.319'>
+<phase_done name='setup' stamp='0.319'/>
+</phase>
+<phase name='buildIR' stamp='0.319'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1094' holder='1093' name='rangeCheck' return='977' arguments='975 975 975' flags='8' bytes='74' iicount='426'/>
+<parse method='1094'  stamp='0.319'>
+<phase name='parse_hir' stamp='0.319'>
+<bc code='183' bci='13'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1097' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1442'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1099' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1538'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='182' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1102' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='2064'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<method id='1104' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='2064'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='182' bci='22'/>
+<method id='1106' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='367'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<method id='1108' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='367'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='182' bci='27'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='182' bci='31'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='182' bci='36'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='182' bci='39'/>
+<method id='1112' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1539'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1114' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='4779'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1117' name='java.lang.StringLatin1' flags='16'/>
+<method id='1118' holder='1117' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='2746'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='9'/>
+<method id='1120' holder='1093' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='2763'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1122' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='3973'/>
+<call method='1122' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1124' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='22854'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.319'/>
+</parse>
+<parse_done stamp='0.319'/>
+</parse>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1126' name='java.lang.StringUTF16' flags='16'/>
+<method id='1127' holder='1126' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.319'/>
+</parse>
+<bc code='183' bci='42'/>
+<klass id='1096' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1129' holder='1096' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1129' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='183' bci='55'/>
+<klass id='1131' name='java.lang.ArrayIndexOutOfBoundsException' unloaded='1'/>
+<method id='1132' holder='1131' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='69'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.319'/>
+</phase>
+<parse_done stamp='0.319'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.319'>
+<phase_done name='optimize_blocks' stamp='0.319'/>
+</phase>
+<phase name='gvn' stamp='0.319'>
+<phase_done name='gvn' stamp='0.319'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.319'>
+<phase_done name='rangeCheckElimination' stamp='0.319'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.319'>
+<phase_done name='optimize_null_checks' stamp='0.319'/>
+</phase>
+<phase_done name='buildIR' stamp='0.319'/>
+</phase>
+<phase name='emit_lir' stamp='0.319'>
+<phase name='lirGeneration' stamp='0.319'>
+<phase_done name='lirGeneration' stamp='0.320'/>
+</phase>
+<phase name='linearScan' stamp='0.320'>
+<phase_done name='linearScan' stamp='0.320'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.320'/>
+</phase>
+<phase name='codeemit' stamp='0.320'>
+<phase_done name='codeemit' stamp='0.320'/>
+</phase>
+<phase name='codeinstall' stamp='0.320'>
+<phase_done name='codeinstall' stamp='0.320'/>
+</phase>
+<code_cache total_blobs='926' nmethods='505' adapters='254' free_code_cache='247755136'/>
+<task_done success='1' nmsize='3944' count='541' inlined_bytes='134' stamp='0.320'/>
+</task>
+<task compile_id='511' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl setScannerState (I)V' bytes='6' count='141' iicount='141' level='1' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='setScannerState' return='977' arguments='975' flags='20' bytes='6' iicount='141'/>
+<parse method='1094'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='932' nmethods='509' adapters='254' free_code_cache='247751680'/>
+<task_done success='1' nmsize='272' count='157' stamp='0.323'/>
+</task>
+<task compile_id='515' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='268' iicount='268' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='peekChar' return='975' flags='1' bytes='63' iicount='272'/>
+<parse method='1094'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='2'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='940' nmethods='515' adapters='254' free_code_cache='247742592'/>
+<task_done success='1' nmsize='840' count='317' stamp='0.324'/>
+</task>
+<task compile_id='519' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='284' backedge_count='1' iicount='284' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipSpaces' return='969' flags='4' bytes='350' iicount='287'/>
+<parse method='1094'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<bc code='182' bci='21'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='2'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='61'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1100' holder='1099' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='514' compiler='c1' level='3' iicount='389'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='130'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='2'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='148'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='261'/>
+<klass id='1106' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1096' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1107' holder='1093' name='checkEntityLimit' return='977' arguments='1106 1096 975 975' flags='4' bytes='50' compile_id='510' compiler='c1' level='3' iicount='824'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='310'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='340'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.324'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.325'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.325'>
+<phase_done name='rangeCheckElimination' stamp='0.325'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.325'>
+<phase_done name='optimize_null_checks' stamp='0.325'/>
+</phase>
+<phase_done name='buildIR' stamp='0.325'/>
+</phase>
+<phase name='emit_lir' stamp='0.325'>
+<phase name='lirGeneration' stamp='0.325'>
+<phase_done name='lirGeneration' stamp='0.325'/>
+</phase>
+<phase name='linearScan' stamp='0.325'>
+<phase_done name='linearScan' stamp='0.325'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.325'/>
+</phase>
+<phase name='codeemit' stamp='0.325'>
+<phase_done name='codeemit' stamp='0.325'/>
+</phase>
+<phase name='codeinstall' stamp='0.325'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.325'/>
+</phase>
+<code_cache total_blobs='946' nmethods='521' adapters='254' free_code_cache='247729152'/>
+<task_done success='1' nmsize='3304' count='342' backedge_count='1' inlined_bytes='44' stamp='0.325'/>
+</task>
+<task compile_id='525' method='java.util.ArrayList elementData (I)Ljava/lang/Object;' bytes='7' count='257' iicount='257' level='3' stamp='0.327'>
+<phase name='setup' stamp='0.327'>
+<phase_done name='setup' stamp='0.327'/>
+</phase>
+<phase name='buildIR' stamp='0.327'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='elementData' return='982' arguments='975' flags='0' bytes='7' iicount='259'/>
+<parse method='1094'  stamp='0.327'>
+<phase name='parse_hir' stamp='0.327'>
+<phase_done name='parse_hir' stamp='0.327'/>
+</phase>
+<parse_done stamp='0.327'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.327'>
+<phase_done name='optimize_blocks' stamp='0.327'/>
+</phase>
+<phase name='gvn' stamp='0.327'>
+<phase_done name='gvn' stamp='0.327'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.327'>
+<phase_done name='rangeCheckElimination' stamp='0.327'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.327'>
+<phase_done name='optimize_null_checks' stamp='0.327'/>
+</phase>
+<phase_done name='buildIR' stamp='0.327'/>
+</phase>
+<phase name='emit_lir' stamp='0.327'>
+<phase name='lirGeneration' stamp='0.327'>
+<phase_done name='lirGeneration' stamp='0.327'/>
+</phase>
+<phase name='linearScan' stamp='0.327'>
+<phase_done name='linearScan' stamp='0.327'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.327'/>
+</phase>
+<phase name='codeemit' stamp='0.327'>
+<phase_done name='codeemit' stamp='0.327'/>
+</phase>
+<phase name='codeinstall' stamp='0.327'>
+<phase_done name='codeinstall' stamp='0.327'/>
+</phase>
+<code_cache total_blobs='955' nmethods='524' adapters='260' free_code_cache='247721216'/>
+<task_done success='1' nmsize='400' count='271' stamp='0.327'/>
+</task>
+<task compile_id='531' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (ILjava/lang/String;I)V' bytes='260' count='270' iicount='270' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1094' holder='1093' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' iicount='273'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='182' bci='4'/>
+<klass id='1099' name='java.lang.Enum' flags='1025'/>
+<method id='1100' holder='1099' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='14'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='34'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='44'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='65'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='75'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='183' bci='111'/>
+<klass id='1110' name='java.util.HashMap' flags='1'/>
+<method id='1111' holder='1110' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='8' iicount='12'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='4'/>
+<type id='971' name='float'/>
+<method id='1113' holder='1110' name='&lt;init&gt;' return='977' arguments='975 971' flags='1' bytes='98' iicount='12'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='185' bci='141'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1108' name='java.util.Map' flags='1537'/>
+<method id='1115' holder='1108' name='containsKey' return='969' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1115' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='154'/>
+<method id='1116' holder='1108' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1116' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='162'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1117' holder='1076' name='intValue' return='975' flags='1' bytes='5' iicount='49'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='184' bci='173'/>
+<method id='1119' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='67'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='28'/>
+<method id='1125' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='262'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1127' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='555'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='1'/>
+<method id='1129' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='22978'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='185' bci='176'/>
+<method id='1131' holder='1108' name='put' return='982' arguments='982 982' flags='1025' bytes='0' iicount='1'/>
+<call method='1131' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='189'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='28'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='1'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='1'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='185' bci='192'/>
+<call method='1131' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='228'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='238'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='251'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.328'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.329'/>
+</phase>
+<parse_done stamp='0.329'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.329'>
+<phase_done name='optimize_blocks' stamp='0.329'/>
+</phase>
+<phase name='gvn' stamp='0.329'>
+<phase_done name='gvn' stamp='0.329'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.329'>
+<phase_done name='rangeCheckElimination' stamp='0.329'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.329'>
+<phase_done name='optimize_null_checks' stamp='0.329'/>
+</phase>
+<phase_done name='buildIR' stamp='0.329'/>
+</phase>
+<phase name='emit_lir' stamp='0.329'>
+<phase name='lirGeneration' stamp='0.329'>
+<phase_done name='lirGeneration' stamp='0.329'/>
+</phase>
+<phase name='linearScan' stamp='0.329'>
+<phase_done name='linearScan' stamp='0.329'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.329'/>
+</phase>
+<phase name='codeemit' stamp='0.329'>
+<phase_done name='codeemit' stamp='0.329'/>
+</phase>
+<phase name='codeinstall' stamp='0.329'>
+<phase_done name='codeinstall' stamp='0.329'/>
+</phase>
+<code_cache total_blobs='968' nmethods='535' adapters='260' free_code_cache='247692672'/>
+<task_done success='1' nmsize='6728' count='421' inlined_bytes='159' stamp='0.329'/>
+</task>
+<task compile_id='540' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='283' backedge_count='1958' iicount='283' level='3' stamp='0.329'>
+<phase name='setup' stamp='0.329'>
+<phase_done name='setup' stamp='0.329'/>
+</phase>
+<phase name='buildIR' stamp='0.329'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanLiteral' return='975' arguments='975 1094 969' flags='4' bytes='755' iicount='285'/>
+<parse method='1095'  stamp='0.329'>
+<phase name='parse_hir' stamp='0.329'>
+<bc code='182' bci='21'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='2'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='49'/>
+<type id='977' name='void'/>
+<method id='1100' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='2'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='82'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='247'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='366'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='444'/>
+<method id='1102' holder='1093' name='storeWhiteSpace' return='977' arguments='975' flags='2' bytes='61' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='496'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1104' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='532' compiler='c1' level='3' iicount='428'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1104'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='184' bci='567'/>
+<klass id='1106' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1107' holder='1106' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='509' compiler='c1' level='3' iicount='3165'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='183' bci='598'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='656'/>
+<klass id='1111' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1112' holder='1093' name='checkEntityLimit' return='977' arguments='1111 1097 975 975' flags='4' bytes='50' compile_id='510' compiler='c1' level='3' iicount='2426'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='675'/>
+<klass id='1114' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1117' holder='1093' name='checkLimit' return='977' arguments='1114 1097 975 975' flags='4' bytes='253' iicount='407'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='690'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1104'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.330'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.330'/>
+</phase>
+<parse_done stamp='0.330'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.330'>
+<phase_done name='optimize_blocks' stamp='0.330'/>
+</phase>
+<phase name='gvn' stamp='0.330'>
+<phase_done name='gvn' stamp='0.330'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.330'>
+<phase_done name='rangeCheckElimination' stamp='0.330'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.330'>
+<phase_done name='optimize_null_checks' stamp='0.330'/>
+</phase>
+<phase_done name='buildIR' stamp='0.330'/>
+</phase>
+<phase name='emit_lir' stamp='0.330'>
+<phase name='lirGeneration' stamp='0.330'>
+<phase_done name='lirGeneration' stamp='0.331'/>
+</phase>
+<phase name='linearScan' stamp='0.331'>
+<phase_done name='linearScan' stamp='0.331'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.331'/>
+</phase>
+<phase name='codeemit' stamp='0.331'>
+<phase_done name='codeemit' stamp='0.331'/>
+</phase>
+<phase name='codeinstall' stamp='0.331'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1104'/>
+<phase_done name='codeinstall' stamp='0.331'/>
+</phase>
+<code_cache total_blobs='972' nmethods='539' adapters='260' free_code_cache='247671808'/>
+<task_done success='1' nmsize='5704' count='449' backedge_count='2982' inlined_bytes='67' stamp='0.331'/>
+</task>
+<task compile_id='545' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndexFast (Ljava/lang/String;)I' bytes='38' count='441' backedge_count='2761' iicount='441' level='3' stamp='0.331'>
+<phase name='setup' stamp='0.331'>
+<phase_done name='setup' stamp='0.331'/>
+</phase>
+<phase name='buildIR' stamp='0.331'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getIndexFast' return='975' arguments='983' flags='1' bytes='38' iicount='441'/>
+<parse method='1094'  stamp='0.331'>
+<phase name='parse_hir' stamp='0.331'>
+<phase_done name='parse_hir' stamp='0.332'/>
+</phase>
+<parse_done stamp='0.332'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.332'>
+<phase_done name='optimize_blocks' stamp='0.332'/>
+</phase>
+<phase name='gvn' stamp='0.332'>
+<phase_done name='gvn' stamp='0.332'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.332'>
+<phase_done name='rangeCheckElimination' stamp='0.332'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.332'>
+<phase_done name='optimize_null_checks' stamp='0.332'/>
+</phase>
+<phase_done name='buildIR' stamp='0.332'/>
+</phase>
+<phase name='emit_lir' stamp='0.332'>
+<phase name='lirGeneration' stamp='0.332'>
+<phase_done name='lirGeneration' stamp='0.332'/>
+</phase>
+<phase name='linearScan' stamp='0.332'>
+<phase_done name='linearScan' stamp='0.332'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.332'/>
+</phase>
+<phase name='codeemit' stamp='0.332'>
+<phase_done name='codeemit' stamp='0.332'/>
+</phase>
+<phase name='codeinstall' stamp='0.332'>
+<phase_done name='codeinstall' stamp='0.332'/>
+</phase>
+<code_cache total_blobs='973' nmethods='540' adapters='260' free_code_cache='247670272'/>
+<task_done success='1' nmsize='656' count='478' backedge_count='2969' stamp='0.332'/>
+</task>
+<task compile_id='548' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='679' count='479' backedge_count='16' iicount='479' level='3' stamp='0.332'>
+<phase name='setup' stamp='0.332'>
+<phase_done name='setup' stamp='0.332'/>
+</phase>
+<phase name='buildIR' stamp='0.332'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1096' holder='1093' name='addAttribute' return='975' arguments='1094 983 983 1095' flags='1' bytes='679' iicount='480'/>
+<parse method='1096'  stamp='0.332'>
+<phase name='parse_hir' stamp='0.332'>
+<bc code='182' bci='20'/>
+<method id='1100' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='10263'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1102' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='24187'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='35'/>
+<method id='1105' holder='1093' name='getIndexFast' return='975' arguments='983 983' flags='1' bytes='52' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='46'/>
+<method id='1107' holder='1093' name='getIndexFast' return='975' arguments='983' flags='1' bytes='38' compile_id='545' compiler='c1' level='3' iicount='511'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='107'/>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1111' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='133'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl$Attribute' flags='8'/>
+<method id='1113' holder='1109' name='&lt;init&gt;' return='977' flags='0' bytes='27' iicount='28'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23069'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='183' bci='9'/>
+<method id='1117' holder='1094' name='&lt;init&gt;' return='977' flags='1' bytes='9' iicount='140'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1119' holder='1094' name='clear' return='977' flags='1' bytes='21' iicount='142'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1119'>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='183' bci='20'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl' flags='1'/>
+<method id='1121' holder='1099' name='&lt;init&gt;' return='977' flags='1' bytes='17' iicount='29'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='183' bci='10'/>
+<klass id='1123' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer' flags='0'/>
+<method id='1124' holder='1123' name='&lt;init&gt;' return='977' arguments='1099' flags='0' bytes='25' iicount='29'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='183' bci='7'/>
+<klass id='1126' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$AugmentationsItemsContainer' flags='1024'/>
+<method id='1127' holder='1126' name='&lt;init&gt;' return='977' arguments='1099' flags='0' bytes='10' iicount='29'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='6'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='163'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='6'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='178'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='225'/>
+<method id='1131' holder='1093' name='prepareAndPopulateTableView' return='977' flags='4' bytes='9' iicount='1'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1131'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='5'/>
+<method id='1133' holder='1093' name='prepareAndPopulateTableView' return='977' arguments='975' flags='2' bytes='95' iicount='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='238'/>
+<method id='1135' holder='1093' name='getTableViewBucket' return='975' arguments='983' flags='4' bytes='14' iicount='1'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='2'/>
+<method id='1137' holder='1093' name='hash' return='975' arguments='983' flags='2' bytes='18' iicount='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='182' bci='8'/>
+<method id='1139' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6267'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='14'/>
+<method id='1141' holder='1093' name='hash0' return='975' arguments='983' flags='2' bytes='48' iicount='1'/>
+<call method='1141' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='184' bci='307'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='333'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='9'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1119'>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='20'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='183' bci='7'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='6'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='184' bci='491'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='517'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='9'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1119'>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='20'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='183' bci='7'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='6'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='551'/>
+<method id='1143' holder='1094' name='setValues' return='977' arguments='1094' flags='1' bytes='33' compile_id='549' compiler='c1' level='3' iicount='693'/>
+<call method='1143' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1143'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='183' bci='559'/>
+<method id='1145' holder='1093' name='rebalanceTableView' return='977' arguments='975' flags='2' bytes='28' iicount='1'/>
+<call method='1145' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='184' bci='19'/>
+<klass id='1087' name='[I' flags='1041'/>
+<klass id='1147' name='com.sun.org.apache.xerces.internal.util.PrimeNumberSequenceGenerator' unloaded='1'/>
+<method id='1148' holder='1147' name='generateSequence' return='977' arguments='1087' unloaded='1'/>
+<call method='1148' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='24'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='604'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='624'/>
+<call method='1143' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1143'>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='185' bci='671'/>
+<klass id='1130' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<method id='1149' holder='1130' name='removeAllItems' return='977' flags='1025' bytes='0' iicount='1'/>
+<call method='1149' instr='invokeinterface'/>
+<method id='1150' holder='1099' name='removeAllItems' return='977' flags='1' bytes='8' compile_id='550' compiler='c1' level='3' iicount='695'/>
+<dependency type='unique_concrete_method' ctxk='1130' x='1150'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1150'>
+<bc code='182' bci='4'/>
+<method id='1152' holder='1126' name='clear' return='977' flags='1025' bytes='0' iicount='1'/>
+<call method='1152' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.334'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.335'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.335'/>
+</phase>
+<phase name='codeemit' stamp='0.335'>
+<phase_done name='codeemit' stamp='0.336'/>
+</phase>
+<phase name='codeinstall' stamp='0.336'>
+<dependency type='leaf_type' ctxk='1094'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1105'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1131'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<dependency type='unique_concrete_method' ctxk='1130' x='1150'/>
+<phase_done name='codeinstall' stamp='0.336'/>
+</phase>
+<code_cache total_blobs='997' nmethods='559' adapters='261' free_code_cache='247587840'/>
+<task_done success='1' nmsize='18152' count='1036' backedge_count='16' inlined_bytes='534' stamp='0.336'/>
+</task>
+<task compile_id='563' method='java.lang.String rangeCheck ([CII)Ljava/lang/Void;' bytes='9' count='258' iicount='258' level='3' stamp='0.337'>
+<phase name='setup' stamp='0.337'>
+<phase_done name='setup' stamp='0.337'/>
+</phase>
+<phase name='buildIR' stamp='0.337'>
+<klass id='1093' name='java.lang.Void' flags='17'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1094' holder='983' name='rangeCheck' return='1093' arguments='1082 975 975' flags='10' bytes='9' iicount='259'/>
+<parse method='1094'  stamp='0.337'>
+<phase name='parse_hir' stamp='0.337'>
+<bc code='184' bci='4'/>
+<type id='977' name='void'/>
+<method id='1096' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' iicount='356'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='999' nmethods='561' adapters='261' free_code_cache='247554048'/>
+<task_done success='1' nmsize='392' count='270' stamp='0.337'/>
+</task>
+<task compile_id='565' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndex (Ljava/lang/String;)I' bytes='51' count='234' backedge_count='2081' iicount='234' level='3' stamp='0.338'>
+<phase name='setup' stamp='0.338'>
+<phase_done name='setup' stamp='0.338'/>
+</phase>
+<phase name='buildIR' stamp='0.338'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getIndex' return='975' arguments='983' flags='1' bytes='51' iicount='234'/>
+<parse method='1094'  stamp='0.338'>
+<phase name='parse_hir' stamp='0.338'>
+<bc code='182' bci='35'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.338'/>
+</phase>
+<parse_done stamp='0.338'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.338'>
+<phase_done name='optimize_blocks' stamp='0.338'/>
+</phase>
+<phase name='gvn' stamp='0.338'>
+<phase_done name='gvn' stamp='0.338'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.338'>
+<phase_done name='rangeCheckElimination' stamp='0.338'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.338'>
+<phase_done name='optimize_null_checks' stamp='0.338'/>
+</phase>
+<phase_done name='buildIR' stamp='0.338'/>
+</phase>
+<phase name='emit_lir' stamp='0.338'>
+<phase name='lirGeneration' stamp='0.338'>
+<phase_done name='lirGeneration' stamp='0.338'/>
+</phase>
+<phase name='linearScan' stamp='0.338'>
+<phase_done name='linearScan' stamp='0.338'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.338'/>
+</phase>
+<phase name='codeemit' stamp='0.338'>
+<phase_done name='codeemit' stamp='0.338'/>
+</phase>
+<phase name='codeinstall' stamp='0.338'>
+<phase_done name='codeinstall' stamp='0.338'/>
+</phase>
+<code_cache total_blobs='1002' nmethods='564' adapters='261' free_code_cache='247549952'/>
+<task_done success='1' nmsize='936' count='254' backedge_count='2259' stamp='0.338'/>
+</task>
+<task compile_id='569' method='org.xml.sax.helpers.DefaultHandler characters ([CII)V' bytes='1' count='259' iicount='259' level='3' stamp='0.339'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='org.xml.sax.helpers.DefaultHandler' flags='1'/>
+<method id='1094' holder='1093' name='characters' return='977' arguments='1082 975 975' flags='1' bytes='1' iicount='259'/>
+<parse method='1094'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.339'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.339'/>
+</phase>
+<phase name='codeemit' stamp='0.339'>
+<phase_done name='codeemit' stamp='0.339'/>
+</phase>
+<phase name='codeinstall' stamp='0.339'>
+<phase_done name='codeinstall' stamp='0.339'/>
+</phase>
+<code_cache total_blobs='1005' nmethods='567' adapters='261' free_code_cache='247544704'/>
+<task_done success='1' nmsize='336' count='261' stamp='0.339'/>
+</task>
+<task compile_id='572' method='java.lang.String substring (I)Ljava/lang/String;' bytes='68' count='257' iicount='257' level='3' stamp='0.340'>
+<phase name='setup' stamp='0.340'>
+<phase_done name='setup' stamp='0.340'/>
+</phase>
+<phase name='buildIR' stamp='0.340'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<method id='1093' holder='983' name='substring' return='983' arguments='975' flags='1' bytes='68' iicount='257'/>
+<parse method='1093'  stamp='0.340'>
+<phase name='parse_hir' stamp='0.340'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<klass id='1095' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1096' holder='1095' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='14'/>
+<method id='1097' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='11685'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1099' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='26447'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.340'/>
+</parse>
+<parse_done stamp='0.340'/>
+</parse>
+<bc code='183' bci='29'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='40'/>
+<type id='969' name='boolean'/>
+<method id='1102' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='56411'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.340'/>
+</parse>
+<bc code='184' bci='52'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1104' name='java.lang.StringLatin1' flags='16'/>
+<method id='1105' holder='1104' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='2876'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='9'/>
+<klass id='1107' name='java.util.Arrays' flags='1'/>
+<method id='1108' holder='1107' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='2893'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1110' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4119'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1112' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23577'/>
+<call method='1112' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.340'/>
+</parse>
+<parse_done stamp='0.340'/>
+</parse>
+<parse_done stamp='0.340'/>
+</parse>
+<bc code='184' bci='64'/>
+<klass id='1114' name='java.lang.StringUTF16' flags='16'/>
+<method id='1115' holder='1114' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.340'/>
+</phase>
+<parse_done stamp='0.340'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.340'>
+<phase_done name='optimize_blocks' stamp='0.340'/>
+</phase>
+<phase name='gvn' stamp='0.340'>
+<phase_done name='gvn' stamp='0.340'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.340'>
+<phase_done name='rangeCheckElimination' stamp='0.340'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.340'>
+<phase_done name='optimize_null_checks' stamp='0.340'/>
+</phase>
+<phase_done name='buildIR' stamp='0.340'/>
+</phase>
+<phase name='emit_lir' stamp='0.340'>
+<phase name='lirGeneration' stamp='0.340'>
+<phase_done name='lirGeneration' stamp='0.340'/>
+</phase>
+<phase name='linearScan' stamp='0.340'>
+<phase_done name='linearScan' stamp='0.340'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.340'/>
+</phase>
+<phase name='codeemit' stamp='0.340'>
+<phase_done name='codeemit' stamp='0.340'/>
+</phase>
+<phase name='codeinstall' stamp='0.340'>
+<phase_done name='codeinstall' stamp='0.342'/>
+</phase>
+<code_cache total_blobs='1011' nmethods='573' adapters='261' free_code_cache='247532928'/>
+<task_done success='1' nmsize='2200' count='283' inlined_bytes='78' stamp='0.342'/>
+</task>
+<task compile_id='588' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='7230' iicount='7230' decompiles='1' unstable_if_traps='1' level='3' stamp='0.342'>
+<phase name='setup' stamp='0.342'>
+<phase_done name='setup' stamp='0.343'/>
+</phase>
+<phase name='buildIR' stamp='0.343'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='checkBeforeLoad' return='975' arguments='1094 975 975' flags='4' bytes='140' iicount='7296'/>
+<parse method='1095'  stamp='0.343'>
+<phase name='parse_hir' stamp='0.343'>
+<bc code='182' bci='61'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1100' holder='1093' name='checkLimit' return='977' arguments='1097 1094 975 975' flags='4' bytes='253' compile_id='538' compiler='c1' level='3' iicount='2833'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='67'/>
+<method id='1104' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='9'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='100'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1108' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='134'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.343'/>
+</phase>
+<parse_done stamp='0.343'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.343'>
+<phase_done name='optimize_blocks' stamp='0.343'/>
+</phase>
+<phase name='gvn' stamp='0.343'>
+<phase_done name='gvn' stamp='0.344'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.344'>
+<phase_done name='rangeCheckElimination' stamp='0.344'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.344'>
+<phase_done name='optimize_null_checks' stamp='0.344'/>
+</phase>
+<phase_done name='buildIR' stamp='0.344'/>
+</phase>
+<phase name='emit_lir' stamp='0.344'>
+<phase name='lirGeneration' stamp='0.344'>
+<phase_done name='lirGeneration' stamp='0.345'/>
+</phase>
+<phase name='linearScan' stamp='0.345'>
+<phase_done name='linearScan' stamp='0.345'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.345'/>
+</phase>
+<phase name='codeemit' stamp='0.345'>
+<phase_done name='codeemit' stamp='0.345'/>
+</phase>
+<phase name='codeinstall' stamp='0.345'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.345'/>
+</phase>
+<code_cache total_blobs='1013' nmethods='575' adapters='261' free_code_cache='247489664'/>
+<task_done success='1' nmsize='1400' count='12806' stamp='0.345'/>
+</task>
+<task compile_id='587' method='java.lang.String checkBoundsOffCount (III)V' bytes='61' count='621' iicount='621' level='3' stamp='0.345'>
+<phase name='setup' stamp='0.345'>
+<phase_done name='setup' stamp='0.345'/>
+</phase>
+<phase name='buildIR' stamp='0.345'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' iicount='621'/>
+<parse method='1093'  stamp='0.345'>
+<phase name='parse_hir' stamp='0.345'>
+<bc code='183' bci='23'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1096' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1454'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1098' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1555'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.345'/>
+</parse>
+<bc code='182' bci='28'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='2108'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='2108'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.345'/>
+</parse>
+<bc code='182' bci='32'/>
+<method id='1105' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='367'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<method id='1107' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='367'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.345'/>
+</parse>
+<bc code='182' bci='37'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='41'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='46'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='50'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='53'/>
+<method id='1111' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1555'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1113' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='4795'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1116' name='java.lang.StringLatin1' flags='16'/>
+<method id='1117' holder='1116' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='2918'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='9'/>
+<klass id='1119' name='java.util.Arrays' flags='1'/>
+<method id='1120' holder='1119' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='2935'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1122' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4161'/>
+<call method='1122' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1124' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23939'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.346'/>
+</parse>
+<parse_done stamp='0.346'/>
+</parse>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1126' name='java.lang.StringUTF16' flags='16'/>
+<method id='1127' holder='1126' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='183' bci='56'/>
+<klass id='1095' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1129' holder='1095' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1129' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.346'/>
+</phase>
+<parse_done stamp='0.346'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.346'>
+<phase_done name='optimize_blocks' stamp='0.346'/>
+</phase>
+<phase name='gvn' stamp='0.346'>
+<phase_done name='gvn' stamp='0.346'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.346'>
+<phase_done name='rangeCheckElimination' stamp='0.346'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.346'>
+<phase_done name='optimize_null_checks' stamp='0.346'/>
+</phase>
+<phase_done name='buildIR' stamp='0.346'/>
+</phase>
+<phase name='emit_lir' stamp='0.346'>
+<phase name='lirGeneration' stamp='0.346'>
+<phase_done name='lirGeneration' stamp='0.347'/>
+</phase>
+<phase name='linearScan' stamp='0.347'>
+<phase_done name='linearScan' stamp='0.347'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.347'/>
+</phase>
+<phase name='codeemit' stamp='0.347'>
+<phase_done name='codeemit' stamp='0.347'/>
+</phase>
+<phase name='codeinstall' stamp='0.347'>
+<phase_done name='codeinstall' stamp='0.347'/>
+</phase>
+<code_cache total_blobs='1031' nmethods='583' adapters='261' free_code_cache='247446528'/>
+<task_done success='1' nmsize='3896' count='672' inlined_bytes='142' stamp='0.347'/>
+</task>
+<task compile_id='596' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='412' iicount='412' level='3' stamp='0.347'>
+<phase name='setup' stamp='0.347'>
+<phase_done name='setup' stamp='0.347'/>
+</phase>
+<phase name='buildIR' stamp='0.347'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='endElement' return='977' arguments='983 983 983' flags='1' bytes='718' iicount='412'/>
+<parse method='1094'  stamp='0.347'>
+<phase name='parse_hir' stamp='0.347'>
+<bc code='182' bci='4'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='14'/>
+<klass id='1099' name='java.util.Deque' flags='1537'/>
+<method id='1100' holder='1099' name='pop' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='24'/>
+<type id='975' name='int'/>
+<method id='1102' holder='1099' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='43'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='60'/>
+<method id='1106' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' compile_id='502' compiler='c1' level='3' iicount='1246'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='3'/>
+<method id='1108' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' compile_id='501' compiler='c1' level='3' iicount='2296'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='77'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='87'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='99'/>
+<method id='1113' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1115' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='185' bci='106'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='120'/>
+<klass id='1119' name='com.sun.hotspot.tools.compiler.Method' unloaded='1'/>
+<klass id='1118' name='com.sun.hotspot.tools.compiler.Compilation' unloaded='1'/>
+<method id='1120' holder='1118' name='getMethod' return='1119' unloaded='1'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='129'/>
+<klass id='1117' name='com.sun.hotspot.tools.compiler.CallSite' unloaded='1'/>
+<method id='1121' holder='1117' name='getMethod' return='1119' unloaded='1'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='132'/>
+<method id='1122' holder='1119' name='equals' return='969' arguments='982' unloaded='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='155'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='165'/>
+<klass id='1125' name='java.lang.Integer' unloaded='1'/>
+<method id='1126' holder='1125' name='valueOf' return='1125' arguments='975' unloaded='1'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='169'/>
+<klass id='1124' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1127' holder='983' name='format' return='983' arguments='983 1124' flags='137' bytes='16' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='4'/>
+<klass id='1129' name='java.util.Formatter' unloaded='1'/>
+<method id='1130' holder='1129' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1130' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='9'/>
+<method id='1131' holder='1129' name='format' return='1129' arguments='983 1124' unloaded='1'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='12'/>
+<method id='1132' holder='1129' name='toString' return='983' unloaded='1'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='183' bci='172'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='182' bci='179'/>
+<method id='1133' holder='1118' name='getLateInlineCall' return='1117' unloaded='1'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='188'/>
+<klass id='1101' name='java.util.ArrayDeque' flags='1'/>
+<method id='1134' holder='1101' name='&lt;init&gt;' return='977' flags='1' bytes='14' iicount='6'/>
+<call method='1134' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='183' bci='1'/>
+<klass id='1136' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1137' holder='1136' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='1631'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='1'/>
+<method id='1139' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='24290'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='182' bci='196'/>
+<method id='1141' holder='1117' name='getBci' return='975' unloaded='1'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='206'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='226'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='229'/>
+<method id='1142' holder='1117' name='&lt;init&gt;' return='977' arguments='975 1119' unloaded='1'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='238'/>
+<type id='976' name='long'/>
+<method id='1143' holder='1117' name='getInlineId' return='976' unloaded='1'/>
+<call method='1143' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='241'/>
+<method id='1144' holder='1117' name='setInlineId' return='977' arguments='976' unloaded='1'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='248'/>
+<method id='1145' holder='1101' name='addLast' return='977' arguments='982' flags='1' bytes='51' iicount='42'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<bc code='182' bci='255'/>
+<method id='1147' holder='1117' name='add' return='977' arguments='1117' unloaded='1'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='266'/>
+<method id='1148' holder='1099' name='isEmpty' return='969' flags='4161' bytes='10' iicount='1'/>
+<call method='1148' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='279'/>
+<method id='1149' holder='1118' name='getCall' return='1117' unloaded='1'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='284'/>
+<method id='1150' holder='1117' name='findCallSite' return='1117' arguments='1101' unloaded='1'/>
+<call method='1150' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='303'/>
+<klass id='1151' name='java.io.PrintStream' flags='1'/>
+<method id='1155' holder='1151' name='println' return='977' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1155'>
+<bc code='182' bci='6'/>
+<method id='1157' holder='1151' name='print' return='977' arguments='983' flags='1' bytes='9' iicount='1'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<method id='1159' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='10'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<method id='1161' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1162' holder='983' name='toString' return='983' flags='1' bytes='2' iicount='43'/>
+<parse method='1162'>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1164' holder='1151' name='write' return='977' arguments='983' flags='2' bytes='83' iicount='1'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1166' holder='1151' name='newLine' return='977' flags='2' bytes='73' iicount='1'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='182' bci='308'/>
+<klass id='1168' name='java.util.Iterator' flags='1537'/>
+<method id='1169' holder='1101' name='iterator' return='1168' flags='1' bytes='9' iicount='1'/>
+<call method='1169' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<parse method='1169'>
+<bc code='183' bci='5'/>
+<klass id='1171' name='java.util.ArrayDeque$DeqIterator' unloaded='1'/>
+<method id='1172' holder='1171' name='&lt;init&gt;' return='977' arguments='1101' unloaded='1'/>
+<call method='1172' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='185' bci='315'/>
+<method id='1173' holder='1168' name='hasNext' return='969' unloaded='1'/>
+<call method='1173' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='325'/>
+<method id='1174' holder='1168' name='next' return='982' unloaded='1'/>
+<call method='1174' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='342'/>
+<klass id='1175' name='java.lang.StringBuilder' unloaded='1'/>
+<method id='1176' holder='1175' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1176' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='347'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='350'/>
+<method id='1177' holder='1175' name='append' return='1175' arguments='982' unloaded='1'/>
+<call method='1177' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='355'/>
+<method id='1179' holder='1175' name='append' return='1175' arguments='983' unloaded='1'/>
+<call method='1179' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='360'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='363'/>
+<method id='1180' holder='1175' name='append' return='1175' arguments='975' unloaded='1'/>
+<call method='1180' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='368'/>
+<call method='1179' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='373'/>
+<call method='1143' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='376'/>
+<method id='1181' holder='1175' name='append' return='1175' arguments='976' unloaded='1'/>
+<call method='1181' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='379'/>
+<method id='1182' holder='1175' name='toString' return='983' unloaded='1'/>
+<call method='1182' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='382'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1155'>
+<bc code='182' bci='6'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='182' bci='390'/>
+<method id='1184' holder='1101' name='getLast' return='982' flags='1' bytes='33' iicount='1'/>
+<call method='1184' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<parse method='1184'>
+<bc code='184' bci='12'/>
+<method id='1186' holder='1101' name='dec' return='975' arguments='975 975' flags='24' bytes='13' iicount='49'/>
+<call method='1186' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1186'>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='15'/>
+<method id='1188' holder='1101' name='elementAt' return='982' arguments='1124 975' flags='24' bytes='4' iicount='95'/>
+<call method='1188' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1188'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='183' bci='27'/>
+<klass id='1190' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1191' holder='1190' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1191' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='400'/>
+<call method='1143' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='414'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1155'>
+<bc code='182' bci='6'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='182' bci='421'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='426'/>
+<method id='1193' holder='1117' name='findCallSite2' return='1101' arguments='1117' unloaded='1'/>
+<call method='1193' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='433'/>
+<call method='1169' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<parse method='1169'>
+<bc code='183' bci='5'/>
+<call method='1172' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='185' bci='440'/>
+<call method='1173' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='450'/>
+<call method='1174' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='467'/>
+<call method='1176' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='472'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='475'/>
+<call method='1177' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='480'/>
+<call method='1179' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='485'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='488'/>
+<call method='1180' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='493'/>
+<call method='1179' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='498'/>
+<call method='1143' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='501'/>
+<call method='1181' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='504'/>
+<call method='1182' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='507'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1155'>
+<bc code='182' bci='6'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='183' bci='520'/>
+<call method='1176' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='525'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='528'/>
+<call method='1177' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='533'/>
+<call method='1179' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='540'/>
+<call method='1180' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='543'/>
+<call method='1182' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='546'/>
+<call method='1155' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1155'>
+<bc code='182' bci='6'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='183' bci='553'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='182' bci='563'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='577'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='580'/>
+<method id='1196' holder='1151' name='println' return='977' arguments='982' flags='1' bytes='31' iicount='1'/>
+<call method='1196' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1196'>
+<bc code='184' bci='1'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='183' bci='587'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='182' bci='594'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='599'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='609'/>
+<call method='1143' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='614'/>
+<call method='1143' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='627'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='630'/>
+<method id='1199' holder='1117' name='setMethod' return='977' arguments='1119' unloaded='1'/>
+<call method='1199' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='643'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='646'/>
+<call method='1196' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1196'>
+<bc code='184' bci='1'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.363'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='182' bci='654'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='657'/>
+<call method='1196' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1196'>
+<bc code='184' bci='1'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='182' bci='11'/>
+<call method='1157' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1157'>
+<bc code='184' bci='2'/>
+<call method='1159' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<bc code='182' bci='10'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1164' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.364'/>
+</parse>
+<bc code='183' bci='15'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.365'/>
+</parse>
+<bc code='183' bci='664'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.365'/>
+</parse>
+<bc code='182' bci='678'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='688'/>
+<klass id='1202' name='java.util.HashMap' flags='1'/>
+<method id='1203' holder='1202' name='clear' return='977' flags='1' bytes='50' iicount='7'/>
+<call method='1203' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='695'/>
+<call method='1203' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='714'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.366'/>
+</phase>
+<parse_done stamp='0.366'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.366'>
+<phase_done name='optimize_blocks' stamp='0.366'/>
+</phase>
+<phase name='gvn' stamp='0.366'>
+<phase_done name='gvn' stamp='0.367'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.367'>
+<phase_done name='rangeCheckElimination' stamp='0.367'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.367'>
+<phase_done name='optimize_null_checks' stamp='0.367'/>
+</phase>
+<phase_done name='buildIR' stamp='0.368'/>
+</phase>
+<phase name='emit_lir' stamp='0.368'>
+<phase name='lirGeneration' stamp='0.368'>
+<phase_done name='lirGeneration' stamp='0.369'/>
+</phase>
+<phase name='linearScan' stamp='0.369'>
+<phase_done name='linearScan' stamp='0.373'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.373'/>
+</phase>
+<phase name='codeemit' stamp='0.373'>
+<phase_done name='codeemit' stamp='0.377'/>
+</phase>
+<phase name='codeinstall' stamp='0.377'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<phase_done name='codeinstall' stamp='0.377'/>
+</phase>
+<code_cache total_blobs='1078' nmethods='605' adapters='262' free_code_cache='247348096'/>
+<task_done success='1' nmsize='25096' count='1192' inlined_bytes='595' stamp='0.377'/>
+</task>
+<task compile_id='626' method='jdk.internal.math.FloatingDecimal readJavaFormatString (Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;' bytes='826' count='427' backedge_count='2135' iicount='427' level='3' stamp='0.377'>
+<phase name='setup' stamp='0.377'>
+<phase_done name='setup' stamp='0.377'/>
+</phase>
+<phase name='buildIR' stamp='0.377'>
+<klass id='1094' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter' flags='1544'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal' flags='1'/>
+<method id='1095' holder='1093' name='readJavaFormatString' return='1094' arguments='983' flags='8' bytes='826' iicount='427'/>
+<parse method='1095'  stamp='0.377'>
+<phase name='parse_hir' stamp='0.377'>
+<bc code='182' bci='5'/>
+<method id='1097' holder='983' name='trim' return='983' flags='1' bytes='35' iicount='441'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='58339'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1102' name='java.lang.StringLatin1' flags='16'/>
+<method id='1103' holder='1102' name='trim' return='983' arguments='1085' flags='9' bytes='76' iicount='441'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='1105' name='java.lang.StringUTF16' flags='16'/>
+<method id='1106' holder='1105' name='trim' return='983' arguments='1085' flags='9' bytes='85' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1108' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='18679'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1110' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='37411'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.378'/>
+</parse>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='183' bci='26'/>
+<type id='977' name='void'/>
+<klass id='1112' name='java.lang.NumberFormatException' flags='1'/>
+<method id='1114' holder='1112' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='36'/>
+<type id='970' name='char'/>
+<method id='1115' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='45482'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='12'/>
+<method id='1117' holder='1102' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='44290'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<klass id='1119' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1120' holder='1119' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='21'/>
+<method id='1121' holder='1105' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<method id='1123' holder='1105' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<method id='1125' holder='1105' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1127' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1129' holder='1105' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.378'/>
+</parse>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='74'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='102'/>
+<method id='1132' holder='983' name='indexOf' return='975' arguments='983 975' flags='1' bytes='18' iicount='4'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='182' bci='5'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='6'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='14'/>
+<method id='1134' holder='983' name='indexOf' return='975' arguments='1085 973 975 983 975' flags='8' bytes='113' iicount='4'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='140'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='182' bci='5'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='6'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='14'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='186'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='206'/>
+<method id='1141' holder='1093' name='parseHexString' return='1094' arguments='983' flags='8' bytes='1412' iicount='1'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='241'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.380'/>
+</parse>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='183' bci='277'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='311'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.380'/>
+</parse>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='183' bci='387'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='473'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='510'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='573'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='715'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='726'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='182' bci='737'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='182' bci='748'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='2'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='183' bci='788'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1146' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer' flags='8'/>
+<method id='1147' holder='1146' name='&lt;init&gt;' return='977' arguments='969 975 1082 975' flags='0' bytes='26' iicount='538'/>
+<call method='1147' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1149' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='27111'/>
+<call method='1149' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='183' bci='802'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1151' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1584'/>
+<call method='1151' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1153' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1718'/>
+<call method='1153' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='807'/>
+<method id='1156' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='2594'/>
+<call method='1156' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<bc code='183' bci='2'/>
+<method id='1158' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='2596'/>
+<call method='1158' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='811'/>
+<call method='1156' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<bc code='183' bci='2'/>
+<call method='1158' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='816'/>
+<call method='1156' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<bc code='183' bci='2'/>
+<call method='1158' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='182' bci='819'/>
+<method id='1161' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1726'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1161'>
+<bc code='182' bci='1'/>
+<method id='1163' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='4977'/>
+<call method='1163' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1163'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='184' bci='16'/>
+<method id='1165' holder='1102' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='3325'/>
+<call method='1165' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1165'>
+<bc code='184' bci='9'/>
+<klass id='1167' name='java.util.Arrays' flags='1'/>
+<method id='1168' holder='1167' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='3345'/>
+<call method='1168' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1170' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4596'/>
+<call method='1170' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1170'>
+<bc code='183' bci='1'/>
+<call method='1149' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<parse_done stamp='0.383'/>
+</parse>
+<parse_done stamp='0.383'/>
+</parse>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='184' bci='31'/>
+<method id='1172' holder='1105' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1172' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='183' bci='822'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.384'/>
+</phase>
+<parse_done stamp='0.384'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.384'>
+<phase_done name='optimize_blocks' stamp='0.384'/>
+</phase>
+<phase name='gvn' stamp='0.385'>
+<phase_done name='gvn' stamp='0.386'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.386'>
+<phase_done name='rangeCheckElimination' stamp='0.387'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.387'>
+<phase_done name='optimize_null_checks' stamp='0.388'/>
+</phase>
+<phase_done name='buildIR' stamp='0.389'/>
+</phase>
+<phase name='emit_lir' stamp='0.389'>
+<phase name='lirGeneration' stamp='0.389'>
+<phase_done name='lirGeneration' stamp='0.394'/>
+</phase>
+<phase name='linearScan' stamp='0.394'>
+<phase_done name='linearScan' stamp='0.399'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.399'/>
+</phase>
+<phase name='codeemit' stamp='0.399'>
+<phase_done name='codeemit' stamp='0.400'/>
+</phase>
+<phase name='codeinstall' stamp='0.400'>
+<phase_done name='codeinstall' stamp='0.401'/>
+</phase>
+<code_cache total_blobs='1100' nmethods='625' adapters='262' free_code_cache='247162240'/>
+<task_done success='1' nmsize='29928' count='991' backedge_count='4955' inlined_bytes='1507' stamp='0.401'/>
+</task>
+<task compile_id='643' method='java.util.ArrayList$SubList access$300 (Ljava/util/ArrayList$SubList;)I' bytes='5' count='338' iicount='338' level='1' stamp='0.401'>
+<phase name='setup' stamp='0.401'>
+<phase_done name='setup' stamp='0.401'/>
+</phase>
+<phase name='buildIR' stamp='0.401'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1094' holder='1093' name='access$300' return='975' arguments='1093' flags='4104' bytes='5' iicount='338'/>
+<parse method='1094'  stamp='0.401'>
+<phase name='parse_hir' stamp='0.401'>
+<phase_done name='parse_hir' stamp='0.401'/>
+</phase>
+<parse_done stamp='0.401'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.401'>
+<phase_done name='optimize_blocks' stamp='0.401'/>
+</phase>
+<phase name='gvn' stamp='0.401'>
+<phase_done name='gvn' stamp='0.401'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.401'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.401'/>
+</phase>
+<phase name='emit_lir' stamp='0.401'>
+<phase name='lirGeneration' stamp='0.401'>
+<phase_done name='lirGeneration' stamp='0.401'/>
+</phase>
+<phase name='linearScan' stamp='0.401'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.401'/>
+</phase>
+<phase name='codeinstall' stamp='0.401'>
+<phase_done name='codeinstall' stamp='0.401'/>
+</phase>
+<code_cache total_blobs='1104' nmethods='629' adapters='262' free_code_cache='247158656'/>
+<task_done success='1' nmsize='240' count='338' stamp='0.401'/>
+</task>
+<task compile_id='649' method='com.sun.hotspot.tools.compiler.BasicLogEvent getId ()Ljava/lang/String;' bytes='5' count='323' iicount='323' level='1' stamp='0.401'>
+<phase name='setup' stamp='0.401'>
+<phase_done name='setup' stamp='0.401'/>
+</phase>
+<phase name='buildIR' stamp='0.401'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1094' holder='1093' name='getId' return='983' flags='17' bytes='5' iicount='323'/>
+<parse method='1094'  stamp='0.401'>
+<phase name='parse_hir' stamp='0.401'>
+<phase_done name='parse_hir' stamp='0.401'/>
+</phase>
+<parse_done stamp='0.401'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.401'>
+<phase_done name='optimize_blocks' stamp='0.401'/>
+</phase>
+<phase name='gvn' stamp='0.401'>
+<phase_done name='gvn' stamp='0.401'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.401'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.401'/>
+</phase>
+<phase name='emit_lir' stamp='0.401'>
+<phase name='lirGeneration' stamp='0.401'>
+<phase_done name='lirGeneration' stamp='0.401'/>
+</phase>
+<phase name='linearScan' stamp='0.401'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1107' nmethods='632' adapters='262' free_code_cache='247155712'/>
+<task_done success='1' nmsize='272' count='323' stamp='0.402'/>
+</task>
+<task compile_id='651' method='com.sun.hotspot.tools.compiler.Phase setEndNodes (I)V' bytes='6' count='323' iicount='323' level='1' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Phase' flags='1'/>
+<method id='1094' holder='1093' name='setEndNodes' return='977' arguments='975' flags='0' bytes='6' iicount='323'/>
+<parse method='1094'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<phase_done name='parse_hir' stamp='0.402'/>
+</phase>
+<parse_done stamp='0.402'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.402'>
+<phase_done name='optimize_blocks' stamp='0.402'/>
+</phase>
+<phase name='gvn' stamp='0.402'>
+<phase_done name='gvn' stamp='0.402'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.402'>
+<phase_done name='rangeCheckElimination' stamp='0.402'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.402'>
+<phase_done name='optimize_null_checks' stamp='0.402'/>
+</phase>
+<phase_done name='buildIR' stamp='0.402'/>
+</phase>
+<phase name='emit_lir' stamp='0.402'>
+<phase name='lirGeneration' stamp='0.402'>
+<phase_done name='lirGeneration' stamp='0.402'/>
+</phase>
+<phase name='linearScan' stamp='0.402'>
+<phase_done name='linearScan' stamp='0.402'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.402'/>
+</phase>
+<phase name='codeemit' stamp='0.402'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1109' nmethods='634' adapters='262' free_code_cache='247153920'/>
+<task_done success='1' nmsize='272' count='324' stamp='0.402'/>
+</task>
+<task compile_id='647' method='com.sun.hotspot.tools.compiler.CallSite getCalls ()Ljava/util/List;' bytes='5' count='250' iicount='250' level='1' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<klass id='1094' name='java.util.List' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1095' holder='1093' name='getCalls' return='1094' flags='1' bytes='5' iicount='250'/>
+<parse method='1095'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<phase_done name='parse_hir' stamp='0.402'/>
+</phase>
+<parse_done stamp='0.402'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.402'>
+<phase_done name='optimize_blocks' stamp='0.402'/>
+</phase>
+<phase name='gvn' stamp='0.402'>
+<phase_done name='gvn' stamp='0.402'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.402'>
+<phase_done name='rangeCheckElimination' stamp='0.402'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.402'>
+<phase_done name='optimize_null_checks' stamp='0.402'/>
+</phase>
+<phase_done name='buildIR' stamp='0.402'/>
+</phase>
+<phase name='emit_lir' stamp='0.402'>
+<phase name='lirGeneration' stamp='0.402'>
+<phase_done name='lirGeneration' stamp='0.402'/>
+</phase>
+<phase name='linearScan' stamp='0.402'>
+<phase_done name='linearScan' stamp='0.402'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.402'/>
+</phase>
+<phase name='codeemit' stamp='0.402'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1112' nmethods='637' adapters='262' free_code_cache='247151232'/>
+<task_done success='1' nmsize='272' count='250' stamp='0.402'/>
+</task>
+<task compile_id='604' method='java.lang.Long decode (Ljava/lang/String;)Ljava/lang/Long;' bytes='244' count='460' iicount='460' level='3' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1077' name='decode' return='1077' arguments='983' flags='9' bytes='244' iicount='460'/>
+<parse method='1093'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<bc code='182' bci='8'/>
+<type id='975' name='int'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='22766'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1097' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='42852'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='183' bci='20'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.lang.NumberFormatException' flags='1'/>
+<method id='1102' holder='1100' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='26'/>
+<type id='970' name='char'/>
+<method id='1103' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='48235'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='61439'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1107' name='java.lang.StringLatin1' flags='16'/>
+<method id='1108' holder='1107' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='47143'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='15'/>
+<klass id='1110' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1111' holder='1110' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1112' name='java.lang.StringUTF16' flags='16'/>
+<method id='1113' holder='1112' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='184' bci='2'/>
+<method id='1115' holder='1112' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='184' bci='2'/>
+<method id='1117' holder='1112' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1119' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1121' holder='1112' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='60'/>
+<method id='1123' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' compile_id='501' compiler='c1' level='3' iicount='5709'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='70'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='89'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='108'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='115'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='134'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='144'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='162'/>
+<method id='1130' holder='983' name='substring' return='983' arguments='975' flags='1' bytes='68' compile_id='572' compiler='c1' level='3' iicount='605'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='166'/>
+<method id='1132' holder='1077' name='valueOf' return='1077' arguments='983 975' flags='9' bytes='9' compile_id='605' compiler='c1' level='3' iicount='460'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='2'/>
+<type id='976' name='long'/>
+<method id='1134' holder='1077' name='parseLong' return='976' arguments='983 975' flags='9' bytes='267' compile_id='606' compiler='c1' level='3' iicount='460'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='5'/>
+<method id='1136' holder='1077' name='valueOf' return='1077' arguments='976' flags='9' bytes='40' iicount='460'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='177'/>
+<method id='1138' holder='1077' name='longValue' return='976' flags='1' bytes='5' compile_id='579' compiler='c1' level='1' iicount='460'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='181'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='204'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1140' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1749'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1142' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1914'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='209'/>
+<method id='1144' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='3155'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='183' bci='2'/>
+<method id='1146' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='3155'/>
+<call method='1146' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='214'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='217'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='183' bci='2'/>
+<call method='1146' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='220'/>
+<method id='1148' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1914'/>
+<call method='1148' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<bc code='182' bci='1'/>
+<method id='1150' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='5183'/>
+<call method='1150' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1150'>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='16'/>
+<method id='1152' holder='1107' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='3616'/>
+<call method='1152' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<bc code='184' bci='9'/>
+<klass id='1154' name='java.util.Arrays' flags='1'/>
+<method id='1155' holder='1154' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='3633'/>
+<call method='1155' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1157' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4888'/>
+<call method='1157' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1157'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1159' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='30082'/>
+<call method='1159' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1159'>
+<parse_done stamp='0.404'/>
+</parse>
+<parse_done stamp='0.404'/>
+</parse>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='31'/>
+<method id='1161' holder='1112' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1161' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='228'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='236'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='2'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='5'/>
+<call method='1136' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='183' bci='156'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.404'/>
+</phase>
+<parse_done stamp='0.404'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.404'>
+<phase_done name='optimize_blocks' stamp='0.404'/>
+</phase>
+<phase name='gvn' stamp='0.404'>
+<phase_done name='gvn' stamp='0.404'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.404'>
+<phase_done name='rangeCheckElimination' stamp='0.404'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.404'>
+<phase_done name='optimize_null_checks' stamp='0.405'/>
+</phase>
+<phase_done name='buildIR' stamp='0.405'/>
+</phase>
+<phase name='emit_lir' stamp='0.405'>
+<phase name='lirGeneration' stamp='0.405'>
+<phase_done name='lirGeneration' stamp='0.405'/>
+</phase>
+<phase name='linearScan' stamp='0.405'>
+<phase_done name='linearScan' stamp='0.406'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.406'/>
+</phase>
+<phase name='codeemit' stamp='0.406'>
+<phase_done name='codeemit' stamp='0.407'/>
+</phase>
+<phase name='codeinstall' stamp='0.407'>
+<phase_done name='codeinstall' stamp='0.407'/>
+</phase>
+<code_cache total_blobs='1121' nmethods='644' adapters='262' free_code_cache='247129216'/>
+<task_done success='1' nmsize='8488' count='460' inlined_bytes='282' stamp='0.407'/>
+</task>
+<task compile_id='668' method='java.util.ArrayList newCapacity (I)I' bytes='65' count='338' iicount='338' level='3' stamp='0.407'>
+<phase name='setup' stamp='0.407'>
+<phase_done name='setup' stamp='0.407'/>
+</phase>
+<phase name='buildIR' stamp='0.407'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' iicount='338'/>
+<parse method='1094'  stamp='0.407'>
+<phase name='parse_hir' stamp='0.407'>
+<bc code='184' bci='31'/>
+<klass id='1099' name='java.lang.Math' flags='17'/>
+<method id='1100' holder='1099' name='max' return='975' arguments='975 975' flags='9' bytes='11' compile_id='472' compiler='c1' level='3' iicount='523'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='183' bci='43'/>
+<type id='977' name='void'/>
+<klass id='1005' name='java.lang.OutOfMemoryError' flags='1'/>
+<method id='1102' holder='1005' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='184' bci='61'/>
+<method id='1104' holder='1093' name='hugeCapacity' return='975' arguments='975' flags='10' bytes='26' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='8'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.407'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.407'/>
+</phase>
+<parse_done stamp='0.407'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.407'>
+<phase_done name='optimize_blocks' stamp='0.407'/>
+</phase>
+<phase name='gvn' stamp='0.407'>
+<phase_done name='gvn' stamp='0.407'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.407'>
+<phase_done name='rangeCheckElimination' stamp='0.407'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.407'>
+<phase_done name='optimize_null_checks' stamp='0.408'/>
+</phase>
+<phase_done name='buildIR' stamp='0.408'/>
+</phase>
+<phase name='emit_lir' stamp='0.408'>
+<phase name='lirGeneration' stamp='0.408'>
+<phase_done name='lirGeneration' stamp='0.408'/>
+</phase>
+<phase name='linearScan' stamp='0.408'>
+<phase_done name='linearScan' stamp='0.408'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.408'/>
+</phase>
+<phase name='codeemit' stamp='0.408'>
+<phase_done name='codeemit' stamp='0.408'/>
+</phase>
+<phase name='codeinstall' stamp='0.408'>
+<phase_done name='codeinstall' stamp='0.408'/>
+</phase>
+<code_cache total_blobs='1124' nmethods='645' adapters='262' free_code_cache='247109376'/>
+<task_done success='1' nmsize='1464' count='346' inlined_bytes='37' stamp='0.408'/>
+</task>
+<task compile_id='676' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipString (Ljava/lang/String;)Z' bytes='122' count='545' backedge_count='2172' iicount='545' level='3' stamp='0.408'>
+<phase name='setup' stamp='0.408'>
+<phase_done name='setup' stamp='0.408'/>
+</phase>
+<phase name='buildIR' stamp='0.408'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipString' return='969' arguments='983' flags='4' bytes='122' iicount='545'/>
+<parse method='1094'  stamp='0.408'>
+<phase name='parse_hir' stamp='0.408'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='24119'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1098' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='44489'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.409'/>
+</parse>
+<parse_done stamp='0.409'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1101' holder='1093' name='arrangeCapacity' return='969' arguments='975 969' flags='1' bytes='227' iicount='549'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='46'/>
+<type id='970' name='char'/>
+<method id='1104' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='50873'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='1'/>
+<method id='1106' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='64314'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.409'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1108' name='java.lang.StringLatin1' flags='16'/>
+<method id='1109' holder='1108' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='49722'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1111' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1112' holder='1111' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.409'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1113' name='java.lang.StringUTF16' flags='16'/>
+<method id='1114' holder='1113' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='184' bci='2'/>
+<method id='1116' holder='1113' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='2'/>
+<method id='1118' holder='1113' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.409'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1120' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.410'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1122' holder='1113' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1122' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.410'/>
+</parse>
+<parse_done stamp='0.410'/>
+</parse>
+<bc code='182' bci='115'/>
+<klass id='1123' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1103' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1124' holder='1093' name='checkEntityLimit' return='977' arguments='1123 1103 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.410'/>
+</phase>
+<parse_done stamp='0.410'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.410'>
+<phase_done name='optimize_blocks' stamp='0.410'/>
+</phase>
+<phase name='gvn' stamp='0.410'>
+<phase_done name='gvn' stamp='0.410'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.410'>
+<phase_done name='rangeCheckElimination' stamp='0.410'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.410'>
+<phase_done name='optimize_null_checks' stamp='0.410'/>
+</phase>
+<phase_done name='buildIR' stamp='0.410'/>
+</phase>
+<phase name='emit_lir' stamp='0.410'>
+<phase name='lirGeneration' stamp='0.410'>
+<phase_done name='lirGeneration' stamp='0.410'/>
+</phase>
+<phase name='linearScan' stamp='0.410'>
+<phase_done name='linearScan' stamp='0.411'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.411'/>
+</phase>
+<phase name='codeemit' stamp='0.411'>
+<phase_done name='codeemit' stamp='0.411'/>
+</phase>
+<phase name='codeinstall' stamp='0.411'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.411'/>
+</phase>
+<code_cache total_blobs='1130' nmethods='649' adapters='262' free_code_cache='247089024'/>
+<task_done success='1' nmsize='2904' count='583' backedge_count='2321' inlined_bytes='123' stamp='0.411'/>
+</task>
+<task compile_id='675' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanEndElement ()I' bytes='170' count='581' iicount='581' level='3' stamp='0.411'>
+<phase name='setup' stamp='0.412'>
+<phase_done name='setup' stamp='0.412'/>
+</phase>
+<phase name='buildIR' stamp='0.412'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='scanEndElement' return='975' flags='4' bytes='170' iicount='582'/>
+<parse method='1094'  stamp='0.412'>
+<phase name='parse_hir' stamp='0.412'>
+<bc code='182' bci='4'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1100' holder='1096' name='popElement' return='1099' flags='1' bytes='59' compile_id='600' compiler='c1' level='3' iicount='2627'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1103' holder='1097' name='skipString' return='969' arguments='983' flags='4' bytes='122' compile_id='676' compiler='c1' level='3' iicount='590'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='39'/>
+<type id='977' name='void'/>
+<klass id='1106' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1107' holder='1102' name='reportFatalError' return='977' arguments='983 1106' flags='4' bytes='18' iicount='1'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='13'/>
+<klass id='1111' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1112' holder='1109' name='reportError' return='983' arguments='1111 983 983 1106 974' flags='1' bytes='13' iicount='1'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<parse method='1112'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1114' holder='1109' name='reportError' return='983' arguments='1111 983 983 1106 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<parse_done stamp='0.412'/>
+</parse>
+<parse_done stamp='0.412'/>
+</parse>
+<bc code='182' bci='46'/>
+<method id='1116' holder='1097' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='648' compiler='c2' level='4' iicount='23867'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='59'/>
+<klass id='1118' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1121' holder='1097' name='skipChar' return='969' arguments='975 1118' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='77'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='13'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<parse method='1112'>
+<bc code='182' bci='9'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<parse_done stamp='0.413'/>
+</parse>
+<parse_done stamp='0.413'/>
+</parse>
+<bc code='182' bci='129'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='13'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<parse method='1112'>
+<bc code='182' bci='9'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<parse_done stamp='0.413'/>
+</parse>
+<parse_done stamp='0.413'/>
+</parse>
+<bc code='185' bci='145'/>
+<klass id='1126' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1125' name='com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler' flags='1537'/>
+<method id='1127' holder='1125' name='endElement' return='977' arguments='1099 1126' flags='1025' bytes='0' iicount='1'/>
+<call method='1127' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='162'/>
+<klass id='1128' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<method id='1129' holder='1128' name='endElement' return='977' arguments='1099' unloaded='1'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.413'/>
+</phase>
+<parse_done stamp='0.413'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.413'>
+<phase_done name='optimize_blocks' stamp='0.413'/>
+</phase>
+<phase name='gvn' stamp='0.413'>
+<phase_done name='gvn' stamp='0.413'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.413'>
+<phase_done name='rangeCheckElimination' stamp='0.413'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.413'>
+<phase_done name='optimize_null_checks' stamp='0.413'/>
+</phase>
+<phase_done name='buildIR' stamp='0.413'/>
+</phase>
+<phase name='emit_lir' stamp='0.413'>
+<phase name='lirGeneration' stamp='0.413'>
+<phase_done name='lirGeneration' stamp='0.414'/>
+</phase>
+<phase name='linearScan' stamp='0.414'>
+<phase_done name='linearScan' stamp='0.414'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.414'/>
+</phase>
+<phase name='codeemit' stamp='0.414'>
+<phase_done name='codeemit' stamp='0.414'/>
+</phase>
+<phase name='codeinstall' stamp='0.414'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<phase_done name='codeinstall' stamp='0.415'/>
+</phase>
+<code_cache total_blobs='1140' nmethods='659' adapters='262' free_code_cache='247041920'/>
+<task_done success='1' nmsize='4360' count='638' inlined_bytes='93' stamp='0.415'/>
+</task>
+<task compile_id='680' method='com.sun.hotspot.tools.compiler.Method setReturnType (Ljava/lang/String;)V' bytes='6' count='148' iicount='148' level='1' stamp='0.415'>
+<phase name='setup' stamp='0.415'>
+<phase_done name='setup' stamp='0.415'/>
+</phase>
+<phase name='buildIR' stamp='0.415'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setReturnType' return='977' arguments='983' flags='1' bytes='6' iicount='148'/>
+<parse method='1094'  stamp='0.415'>
+<phase name='parse_hir' stamp='0.415'>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.415'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.415'>
+<phase_done name='optimize_null_checks' stamp='0.415'/>
+</phase>
+<phase_done name='buildIR' stamp='0.415'/>
+</phase>
+<phase name='emit_lir' stamp='0.415'>
+<phase name='lirGeneration' stamp='0.415'>
+<phase_done name='lirGeneration' stamp='0.415'/>
+</phase>
+<phase name='linearScan' stamp='0.415'>
+<phase_done name='linearScan' stamp='0.415'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.415'/>
+</phase>
+<phase name='codeemit' stamp='0.415'>
+<phase_done name='codeemit' stamp='0.415'/>
+</phase>
+<phase name='codeinstall' stamp='0.415'>
+<phase_done name='codeinstall' stamp='0.415'/>
+</phase>
+<code_cache total_blobs='1142' nmethods='661' adapters='262' free_code_cache='247040128'/>
+<task_done success='1' nmsize='368' count='150' stamp='0.415'/>
+</task>
+<task compile_id='616' method='java.lang.Long &lt;init&gt; (J)V' bytes='10' count='460' iicount='460' level='3' stamp='0.415'>
+<phase name='setup' stamp='0.415'>
+<phase_done name='setup' stamp='0.415'/>
+</phase>
+<phase name='buildIR' stamp='0.415'>
+<type id='977' name='void'/>
+<type id='976' name='long'/>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<method id='1093' holder='1077' name='&lt;init&gt;' return='977' arguments='976' flags='1' bytes='10' iicount='460'/>
+<parse method='1093'  stamp='0.415'>
+<phase name='parse_hir' stamp='0.415'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1095' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1150'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='32262'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.415'/>
+</parse>
+<parse_done stamp='0.415'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.416'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.416'>
+<phase_done name='optimize_null_checks' stamp='0.416'/>
+</phase>
+<phase_done name='buildIR' stamp='0.416'/>
+</phase>
+<phase name='emit_lir' stamp='0.416'>
+<phase name='lirGeneration' stamp='0.416'>
+<phase_done name='lirGeneration' stamp='0.416'/>
+</phase>
+<phase name='linearScan' stamp='0.416'>
+<phase_done name='linearScan' stamp='0.416'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.416'/>
+</phase>
+<phase name='codeemit' stamp='0.416'>
+<phase_done name='codeemit' stamp='0.416'/>
+</phase>
+<phase name='codeinstall' stamp='0.416'>
+<phase_done name='codeinstall' stamp='0.416'/>
+</phase>
+<code_cache total_blobs='1148' nmethods='667' adapters='262' free_code_cache='247034624'/>
+<task_done success='1' nmsize='528' count='460' inlined_bytes='6' stamp='0.416'/>
+</task>
+<task compile_id='688' method='java.util.regex.Pattern$Start match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='90' count='290' backedge_count='3074' iicount='290' level='3' stamp='0.416'>
+<phase name='setup' stamp='0.416'>
+<phase_done name='setup' stamp='0.416'/>
+</phase>
+<phase name='buildIR' stamp='0.416'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$Start' flags='8'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='90' iicount='290'/>
+<parse method='1096'  stamp='0.416'>
+<phase name='parse_hir' stamp='0.416'>
+<bc code='182' bci='44'/>
+<klass id='1098' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1099' holder='1098' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.417'/>
+</phase>
+<parse_done stamp='0.417'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.417'>
+<phase_done name='optimize_blocks' stamp='0.417'/>
+</phase>
+<phase name='gvn' stamp='0.417'>
+<phase_done name='gvn' stamp='0.417'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.417'>
+<phase_done name='rangeCheckElimination' stamp='0.417'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.417'>
+<phase_done name='optimize_null_checks' stamp='0.417'/>
+</phase>
+<phase_done name='buildIR' stamp='0.417'/>
+</phase>
+<phase name='emit_lir' stamp='0.417'>
+<phase name='lirGeneration' stamp='0.417'>
+<phase_done name='lirGeneration' stamp='0.417'/>
+</phase>
+<phase name='linearScan' stamp='0.417'>
+<phase_done name='linearScan' stamp='0.417'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.417'/>
+</phase>
+<phase name='codeemit' stamp='0.417'>
+<phase_done name='codeemit' stamp='0.417'/>
+</phase>
+<phase name='codeinstall' stamp='0.417'>
+<phase_done name='codeinstall' stamp='0.417'/>
+</phase>
+<code_cache total_blobs='1157' nmethods='672' adapters='262' free_code_cache='247019520'/>
+<task_done success='1' nmsize='1032' count='298' backedge_count='3119' stamp='0.417'/>
+</task>
+<task compile_id='691' method='java.util.regex.Matcher start ()I' bytes='22' count='257' iicount='257' level='3' stamp='0.418'>
+<phase name='setup' stamp='0.418'>
+<phase_done name='setup' stamp='0.418'/>
+</phase>
+<phase name='buildIR' stamp='0.418'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='start' return='975' flags='1' bytes='22' iicount='257'/>
+<parse method='1094'  stamp='0.418'>
+<phase name='parse_hir' stamp='0.418'>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.418'/>
+</phase>
+<parse_done stamp='0.418'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.418'>
+<phase_done name='optimize_blocks' stamp='0.418'/>
+</phase>
+<phase name='gvn' stamp='0.418'>
+<phase_done name='gvn' stamp='0.418'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.418'>
+<phase_done name='rangeCheckElimination' stamp='0.418'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.418'>
+<phase_done name='optimize_null_checks' stamp='0.418'/>
+</phase>
+<phase_done name='buildIR' stamp='0.418'/>
+</phase>
+<phase name='emit_lir' stamp='0.418'>
+<phase name='lirGeneration' stamp='0.418'>
+<phase_done name='lirGeneration' stamp='0.418'/>
+</phase>
+<phase name='linearScan' stamp='0.418'>
+<phase_done name='linearScan' stamp='0.418'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.418'/>
+</phase>
+<phase name='codeemit' stamp='0.418'>
+<phase_done name='codeemit' stamp='0.418'/>
+</phase>
+<phase name='codeinstall' stamp='0.418'>
+<phase_done name='codeinstall' stamp='0.418'/>
+</phase>
+<code_cache total_blobs='1163' nmethods='675' adapters='262' free_code_cache='246990848'/>
+<task_done success='1' nmsize='520' count='260' stamp='0.418'/>
+</task>
+<task compile_id='695' method='java.util.ArrayDeque sub (III)I' bytes='14' count='256' iicount='256' level='3' stamp='0.421'>
+<phase name='setup' stamp='0.421'>
+<phase_done name='setup' stamp='0.421'/>
+</phase>
+<phase name='buildIR' stamp='0.421'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='sub' return='975' arguments='975 975 975' flags='24' bytes='14' iicount='256'/>
+<parse method='1094'  stamp='0.421'>
+<phase name='parse_hir' stamp='0.421'>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1176' nmethods='683' adapters='262' free_code_cache='246985728'/>
+<task_done success='1' nmsize='368' count='264' stamp='0.422'/>
+</task>
+<task compile_id='698' method='com.sun.hotspot.tools.compiler.CallSite setTimeStamp (D)V' bytes='6' count='132' iicount='132' level='1' stamp='0.422'>
+<phase name='setup' stamp='0.422'>
+<phase_done name='setup' stamp='0.422'/>
+</phase>
+<phase name='buildIR' stamp='0.422'>
+<type id='977' name='void'/>
+<type id='972' name='double'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='setTimeStamp' return='977' arguments='972' flags='0' bytes='6' iicount='132'/>
+<parse method='1094'  stamp='0.422'>
+<phase name='parse_hir' stamp='0.422'>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1180' nmethods='685' adapters='262' free_code_cache='246971264'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.422'/>
+</task>
+<task compile_id='702' method='com.sun.hotspot.tools.compiler.LogParser method (Ljava/lang/String;)Lcom/sun/hotspot/tools/compiler/Method;' bytes='23' count='290' iicount='290' level='3' stamp='0.422'>
+<phase name='setup' stamp='0.423'>
+<phase_done name='setup' stamp='0.423'/>
+</phase>
+<phase name='buildIR' stamp='0.423'>
+<klass id='1094' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='method' return='1094' arguments='983' flags='0' bytes='23' iicount='291'/>
+<parse method='1095'  stamp='0.423'>
+<phase name='parse_hir' stamp='0.423'>
+<bc code='182' bci='5'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1097' name='java.util.HashMap' flags='1'/>
+<method id='1098' holder='1097' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='5309'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<method id='1099' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1101' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.423'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.423'/>
+</phase>
+<parse_done stamp='0.423'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.423'>
+<phase_done name='optimize_blocks' stamp='0.423'/>
+</phase>
+<phase name='gvn' stamp='0.423'>
+<phase_done name='gvn' stamp='0.423'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.423'>
+<phase_done name='rangeCheckElimination' stamp='0.423'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.423'>
+<phase_done name='optimize_null_checks' stamp='0.423'/>
+</phase>
+<phase_done name='buildIR' stamp='0.423'/>
+</phase>
+<phase name='emit_lir' stamp='0.423'>
+<phase name='lirGeneration' stamp='0.423'>
+<phase_done name='lirGeneration' stamp='0.423'/>
+</phase>
+<phase name='linearScan' stamp='0.423'>
+<phase_done name='linearScan' stamp='0.423'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.423'/>
+</phase>
+<phase name='codeemit' stamp='0.423'>
+<phase_done name='codeemit' stamp='0.423'/>
+</phase>
+<phase name='codeinstall' stamp='0.423'>
+<dependency type='leaf_type' ctxk='1094'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.423'/>
+</phase>
+<code_cache total_blobs='1187' nmethods='690' adapters='262' free_code_cache='246976512'/>
+<task_done success='1' nmsize='1016' count='299' inlined_bytes='7' stamp='0.423'/>
+</task>
+<task compile_id='705' method='java.lang.String toString ()Ljava/lang/String;' bytes='2' count='428' iicount='428' level='3' stamp='0.425'>
+<phase name='setup' stamp='0.425'>
+<phase_done name='setup' stamp='0.425'/>
+</phase>
+<phase name='buildIR' stamp='0.425'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='toString' return='983' flags='1' bytes='2' iicount='428'/>
+<parse method='1093'  stamp='0.425'>
+<phase name='parse_hir' stamp='0.425'>
+<phase_done name='parse_hir' stamp='0.425'/>
+</phase>
+<parse_done stamp='0.425'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.425'>
+<phase_done name='optimize_blocks' stamp='0.425'/>
+</phase>
+<phase name='gvn' stamp='0.425'>
+<phase_done name='gvn' stamp='0.425'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.425'>
+<phase_done name='rangeCheckElimination' stamp='0.425'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.425'>
+<phase_done name='optimize_null_checks' stamp='0.425'/>
+</phase>
+<phase_done name='buildIR' stamp='0.425'/>
+</phase>
+<phase name='emit_lir' stamp='0.425'>
+<phase name='lirGeneration' stamp='0.425'>
+<phase_done name='lirGeneration' stamp='0.425'/>
+</phase>
+<phase name='linearScan' stamp='0.425'>
+<phase_done name='linearScan' stamp='0.425'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.425'/>
+</phase>
+<phase name='codeemit' stamp='0.425'>
+<phase_done name='codeemit' stamp='0.425'/>
+</phase>
+<phase name='codeinstall' stamp='0.425'>
+<phase_done name='codeinstall' stamp='0.425'/>
+</phase>
+<code_cache total_blobs='1188' nmethods='691' adapters='262' free_code_cache='246975616'/>
+<task_done success='1' nmsize='336' count='436' stamp='0.425'/>
+</task>
+<task compile_id='706' method='com.sun.hotspot.tools.compiler.LogParser type (Ljava/lang/String;Ljava/lang/String;)V' bytes='33' count='268' iicount='268' level='3' stamp='0.425'>
+<phase name='setup' stamp='0.425'>
+<phase_done name='setup' stamp='0.425'/>
+</phase>
+<phase name='buildIR' stamp='0.425'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='type' return='977' arguments='983 983' flags='0' bytes='33' iicount='268'/>
+<parse method='1094'  stamp='0.425'>
+<phase name='parse_hir' stamp='0.425'>
+<bc code='182' bci='28'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1098' holder='1096' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='4136'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1098'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='11444'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='9'/>
+<method id='1104' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1107' holder='1096' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='4952'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.425'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.425'/>
+</phase>
+<parse_done stamp='0.425'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.425'>
+<phase_done name='optimize_blocks' stamp='0.425'/>
+</phase>
+<phase name='gvn' stamp='0.425'>
+<phase_done name='gvn' stamp='0.425'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.425'>
+<phase_done name='rangeCheckElimination' stamp='0.425'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.425'>
+<phase_done name='optimize_null_checks' stamp='0.425'/>
+</phase>
+<phase_done name='buildIR' stamp='0.425'/>
+</phase>
+<phase name='emit_lir' stamp='0.425'>
+<phase name='lirGeneration' stamp='0.425'>
+<phase_done name='lirGeneration' stamp='0.426'/>
+</phase>
+<phase name='linearScan' stamp='0.426'>
+<phase_done name='linearScan' stamp='0.426'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.426'/>
+</phase>
+<phase name='codeemit' stamp='0.426'>
+<phase_done name='codeemit' stamp='0.426'/>
+</phase>
+<phase name='codeinstall' stamp='0.426'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1098'/>
+<phase_done name='codeinstall' stamp='0.426'/>
+</phase>
+<code_cache total_blobs='1193' nmethods='694' adapters='262' free_code_cache='246957696'/>
+<task_done success='1' nmsize='1080' count='275' inlined_bytes='33' stamp='0.426'/>
+</task>
+<task compile_id='709' method='com.sun.hotspot.tools.compiler.Method setSignature (Ljava/lang/String;)V' bytes='13' count='263' iicount='263' level='3' stamp='0.426'>
+<phase name='setup' stamp='0.426'>
+<phase_done name='setup' stamp='0.426'/>
+</phase>
+<phase name='buildIR' stamp='0.426'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setSignature' return='977' arguments='983' flags='1' bytes='13' iicount='263'/>
+<parse method='1094'  stamp='0.426'>
+<phase name='parse_hir' stamp='0.426'>
+<bc code='182' bci='6'/>
+<type id='970' name='char'/>
+<method id='1096' holder='983' name='replace' return='983' arguments='970 970' flags='1' bytes='42' compile_id='327' compiler='c1' level='3' iicount='1166'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.426'/>
+</phase>
+<parse_done stamp='0.426'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.426'>
+<phase_done name='optimize_blocks' stamp='0.426'/>
+</phase>
+<phase name='gvn' stamp='0.426'>
+<phase_done name='gvn' stamp='0.426'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.426'>
+<phase_done name='rangeCheckElimination' stamp='0.426'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.426'>
+<phase_done name='optimize_null_checks' stamp='0.426'/>
+</phase>
+<phase_done name='buildIR' stamp='0.426'/>
+</phase>
+<phase name='emit_lir' stamp='0.426'>
+<phase name='lirGeneration' stamp='0.426'>
+<phase_done name='lirGeneration' stamp='0.426'/>
+</phase>
+<phase name='linearScan' stamp='0.426'>
+<phase_done name='linearScan' stamp='0.426'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.426'/>
+</phase>
+<phase name='codeemit' stamp='0.426'>
+<phase_done name='codeemit' stamp='0.426'/>
+</phase>
+<phase name='codeinstall' stamp='0.426'>
+<phase_done name='codeinstall' stamp='0.426'/>
+</phase>
+<code_cache total_blobs='1196' nmethods='697' adapters='262' free_code_cache='246963072'/>
+<task_done success='1' nmsize='648' count='266' stamp='0.426'/>
+</task>
+<task compile_id='712' method='java.util.ArrayDeque peekFirst ()Ljava/lang/Object;' bytes='12' count='384' iicount='384' level='3' stamp='0.426'>
+<phase name='setup' stamp='0.426'>
+<phase_done name='setup' stamp='0.426'/>
+</phase>
+<phase name='buildIR' stamp='0.426'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='peekFirst' return='982' flags='1' bytes='12' iicount='384'/>
+<parse method='1094'  stamp='0.426'>
+<phase name='parse_hir' stamp='0.426'>
+<bc code='184' bci='8'/>
+<klass id='1096' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='elementAt' return='982' arguments='1096 975' flags='24' bytes='4' compile_id='655' compiler='c1' level='3' iicount='1351'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.427'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.427'/>
+</phase>
+<parse_done stamp='0.427'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.427'>
+<phase_done name='optimize_blocks' stamp='0.427'/>
+</phase>
+<phase name='gvn' stamp='0.427'>
+<phase_done name='gvn' stamp='0.427'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.427'>
+<phase_done name='rangeCheckElimination' stamp='0.427'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.427'>
+<phase_done name='optimize_null_checks' stamp='0.427'/>
+</phase>
+<phase_done name='buildIR' stamp='0.427'/>
+</phase>
+<phase name='emit_lir' stamp='0.427'>
+<phase name='lirGeneration' stamp='0.427'>
+<phase_done name='lirGeneration' stamp='0.427'/>
+</phase>
+<phase name='linearScan' stamp='0.427'>
+<phase_done name='linearScan' stamp='0.427'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.427'/>
+</phase>
+<phase name='codeemit' stamp='0.427'>
+<phase_done name='codeemit' stamp='0.427'/>
+</phase>
+<phase name='codeinstall' stamp='0.427'>
+<phase_done name='codeinstall' stamp='0.427'/>
+</phase>
+<code_cache total_blobs='1198' nmethods='699' adapters='262' free_code_cache='246960512'/>
+<task_done success='1' nmsize='464' count='391' inlined_bytes='4' stamp='0.427'/>
+</task>
+<task compile_id='715' method='com.sun.hotspot.tools.compiler.Compilation getMethod ()Lcom/sun/hotspot/tools/compiler/Method;' bytes='5' count='128' iicount='128' level='1' stamp='0.428'>
+<phase name='setup' stamp='0.428'>
+<phase_done name='setup' stamp='0.428'/>
+</phase>
+<phase name='buildIR' stamp='0.428'>
+<klass id='1094' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1095' holder='1093' name='getMethod' return='1094' flags='1' bytes='5' iicount='128'/>
+<parse method='1095'  stamp='0.428'>
+<phase name='parse_hir' stamp='0.428'>
+<phase_done name='parse_hir' stamp='0.428'/>
+</phase>
+<parse_done stamp='0.428'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.428'>
+<phase_done name='optimize_blocks' stamp='0.428'/>
+</phase>
+<phase name='gvn' stamp='0.428'>
+<phase_done name='gvn' stamp='0.428'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.428'>
+<phase_done name='rangeCheckElimination' stamp='0.428'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.428'>
+<phase_done name='optimize_null_checks' stamp='0.428'/>
+</phase>
+<phase_done name='buildIR' stamp='0.428'/>
+</phase>
+<phase name='emit_lir' stamp='0.428'>
+<phase name='lirGeneration' stamp='0.428'>
+<phase_done name='lirGeneration' stamp='0.428'/>
+</phase>
+<phase name='linearScan' stamp='0.428'>
+<phase_done name='linearScan' stamp='0.428'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.428'/>
+</phase>
+<phase name='codeemit' stamp='0.428'>
+<phase_done name='codeemit' stamp='0.428'/>
+</phase>
+<phase name='codeinstall' stamp='0.428'>
+<phase_done name='codeinstall' stamp='0.428'/>
+</phase>
+<code_cache total_blobs='1209' nmethods='703' adapters='262' free_code_cache='246933888'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.428'/>
+</task>
+<task compile_id='717' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer append (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='17' count='424' iicount='424' level='3' stamp='0.432'>
+<phase name='setup' stamp='0.432'>
+<phase_done name='setup' stamp='0.432'/>
+</phase>
+<phase name='buildIR' stamp='0.432'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1095' holder='1093' name='append' return='977' arguments='1094' flags='1' bytes='17' iicount='424'/>
+<parse method='1095'  stamp='0.432'>
+<phase name='parse_hir' stamp='0.432'>
+<bc code='182' bci='13'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='append' return='977' arguments='1082 975 975' flags='1' bytes='110' iicount='424'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.432'/>
+</phase>
+<parse_done stamp='0.432'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.432'>
+<phase_done name='optimize_blocks' stamp='0.432'/>
+</phase>
+<phase name='gvn' stamp='0.432'>
+<phase_done name='gvn' stamp='0.432'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.432'>
+<phase_done name='rangeCheckElimination' stamp='0.432'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.432'>
+<phase_done name='optimize_null_checks' stamp='0.432'/>
+</phase>
+<phase_done name='buildIR' stamp='0.432'/>
+</phase>
+<phase name='emit_lir' stamp='0.432'>
+<phase name='lirGeneration' stamp='0.432'>
+<phase_done name='lirGeneration' stamp='0.432'/>
+</phase>
+<phase name='linearScan' stamp='0.432'>
+<phase_done name='linearScan' stamp='0.432'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.432'/>
+</phase>
+<phase name='codeemit' stamp='0.432'>
+<phase_done name='codeemit' stamp='0.432'/>
+</phase>
+<phase name='codeinstall' stamp='0.432'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.432'/>
+</phase>
+<code_cache total_blobs='1216' nmethods='709' adapters='262' free_code_cache='246793600'/>
+<task_done success='1' nmsize='424' count='427' stamp='0.432'/>
+</task>
+<task compile_id='727' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='23990' backedge_count='6362' iicount='23990' decompiles='2' unstable_if_traps='2' level='3' stamp='0.440'>
+<phase name='setup' stamp='0.440'>
+<phase_done name='setup' stamp='0.440'/>
+</phase>
+<phase name='buildIR' stamp='0.440'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipSpaces' return='969' flags='4' bytes='350' iicount='24047'/>
+<parse method='1094'  stamp='0.440'>
+<phase name='parse_hir' stamp='0.440'>
+<bc code='182' bci='21'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='43'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='61'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1101' holder='1100' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='620' compiler='c2' level='4' iicount='30976'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.441'/>
+</parse>
+<bc code='182' bci='130'/>
+<type id='977' name='void'/>
+<method id='1105' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='43'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='148'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='261'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1096' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1110' holder='1093' name='checkEntityLimit' return='977' arguments='1109 1096 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='310'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='340'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.441'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.441'/>
+</phase>
+<parse_done stamp='0.441'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.441'>
+<phase_done name='optimize_blocks' stamp='0.441'/>
+</phase>
+<phase name='gvn' stamp='0.441'>
+<phase_done name='gvn' stamp='0.441'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.441'>
+<phase_done name='rangeCheckElimination' stamp='0.441'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.441'>
+<phase_done name='optimize_null_checks' stamp='0.441'/>
+</phase>
+<phase_done name='buildIR' stamp='0.441'/>
+</phase>
+<phase name='emit_lir' stamp='0.441'>
+<phase name='lirGeneration' stamp='0.441'>
+<phase_done name='lirGeneration' stamp='0.441'/>
+</phase>
+<phase name='linearScan' stamp='0.441'>
+<phase_done name='linearScan' stamp='0.442'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.442'/>
+</phase>
+<phase name='codeemit' stamp='0.442'>
+<phase_done name='codeemit' stamp='0.442'/>
+</phase>
+<phase name='codeinstall' stamp='0.442'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.442'/>
+</phase>
+<code_cache total_blobs='1247' nmethods='722' adapters='262' free_code_cache='246750848'/>
+<task_done success='1' nmsize='3304' count='24473' backedge_count='6363' inlined_bytes='44' stamp='0.442'/>
+</task>
+<task compile_id='735' method='java.util.regex.Pattern matcher (Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;' bytes='44' count='256' iicount='256' level='3' stamp='0.459'>
+<phase name='setup' stamp='0.459'>
+<phase_done name='setup' stamp='0.459'/>
+</phase>
+<phase name='buildIR' stamp='0.459'>
+<klass id='1095' name='java.util.regex.Matcher' flags='17'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern' flags='17'/>
+<method id='1096' holder='1093' name='matcher' return='1095' arguments='1094' flags='1' bytes='44' iicount='256'/>
+<parse method='1096'  stamp='0.459'>
+<phase name='parse_hir' stamp='0.459'>
+<bc code='183' bci='19'/>
+<type id='977' name='void'/>
+<method id='1098' holder='1093' name='compile' return='977' flags='2' bytes='498' iicount='2'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='38'/>
+<method id='1100' holder='1095' name='&lt;init&gt;' return='977' arguments='1093 1094' flags='0' bytes='95' iicount='257'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.460'/>
+</phase>
+<parse_done stamp='0.460'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.460'>
+<phase_done name='optimize_blocks' stamp='0.460'/>
+</phase>
+<phase name='gvn' stamp='0.460'>
+<phase_done name='gvn' stamp='0.460'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.460'>
+<phase_done name='rangeCheckElimination' stamp='0.460'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.460'>
+<phase_done name='optimize_null_checks' stamp='0.460'/>
+</phase>
+<phase_done name='buildIR' stamp='0.460'/>
+</phase>
+<phase name='emit_lir' stamp='0.460'>
+<phase name='lirGeneration' stamp='0.460'>
+<phase_done name='lirGeneration' stamp='0.460'/>
+</phase>
+<phase name='linearScan' stamp='0.460'>
+<phase_done name='linearScan' stamp='0.460'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.460'/>
+</phase>
+<phase name='codeemit' stamp='0.460'>
+<phase_done name='codeemit' stamp='0.460'/>
+</phase>
+<phase name='codeinstall' stamp='0.460'>
+<phase_done name='codeinstall' stamp='0.460'/>
+</phase>
+<code_cache total_blobs='1271' nmethods='732' adapters='262' free_code_cache='246684288'/>
+<task_done success='1' nmsize='1112' count='258' stamp='0.460'/>
+</task>
+<task compile_id='750' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='15431' iicount='15431' decompiles='1' level='3' stamp='0.472'>
+<phase name='setup' stamp='0.472'>
+<phase_done name='setup' stamp='0.472'/>
+</phase>
+<phase name='buildIR' stamp='0.472'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='scanAttribute' return='977' arguments='1094' flags='4' bytes='248' iicount='15431'/>
+<parse method='1095'  stamp='0.472'>
+<phase name='parse_hir' stamp='0.472'>
+<bc code='182' bci='18'/>
+<type id='969' name='boolean'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1105' holder='1097' name='scanQName' return='969' arguments='1098 1102' flags='4' bytes='502' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='32'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1107' holder='1097' name='scanName' return='983' arguments='1102' flags='4' bytes='305' compile_id='584' compiler='c2' level='4' iicount='15150'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='44'/>
+<method id='1110' holder='1098' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='585' compiler='c2' level='4' iicount='21027'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1110'>
+<parse_done stamp='0.472'/>
+</parse>
+<bc code='182' bci='51'/>
+<method id='1112' holder='1097' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='732' compiler='c2' level='4' iicount='30911'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='64'/>
+<type id='975' name='int'/>
+<method id='1115' holder='1097' name='skipChar' return='969' arguments='975 1102' flags='4' bytes='285' compile_id='738' compiler='c2' level='4' iicount='11786'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='97'/>
+<klass id='1118' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1119' holder='1101' name='reportFatalError' return='977' arguments='983 1118' flags='4' bytes='18' iicount='1'/>
+<call method='1119' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1119'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='182' bci='13'/>
+<klass id='1123' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1121' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1124' holder='1121' name='reportError' return='983' arguments='1123 983 983 1118 974' flags='1' bytes='13' iicount='1'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<parse method='1124'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1126' holder='1121' name='reportError' return='983' arguments='1123 983 983 1118 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1126' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<parse_done stamp='0.472'/>
+</parse>
+<parse_done stamp='0.472'/>
+</parse>
+<bc code='182' bci='104'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='131'/>
+<klass id='1128' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1129' holder='1093' name='getString' return='1128' flags='4' bytes='76' compile_id='617' compiler='c2' level='4' iicount='6656'/>
+<call method='1129' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='161'/>
+<method id='1132' holder='1101' name='scanAttributeValue' return='977' arguments='1128 1128 983 1094 975 969 983 969' flags='4' bytes='991' compile_id='613' compiler='c2' level='4' iicount='10772'/>
+<call method='1132' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='165'/>
+<method id='1135' holder='1094' name='getLength' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1135' instr='invokeinterface'/>
+<klass id='1136' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1137' holder='1136' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1137'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.472'/>
+</parse>
+<bc code='185' bci='181'/>
+<method id='1142' holder='1094' name='addAttribute' return='975' arguments='1098 983 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1142' instr='invokeinterface'/>
+<method id='1143' holder='1136' name='addAttribute' return='975' arguments='1098 983 983' flags='1' bytes='9' compile_id='544' compiler='c1' level='3' iicount='15508'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1143'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='182' bci='5'/>
+<method id='1145' holder='1136' name='addAttribute' return='975' arguments='1098 983 983 1128' flags='1' bytes='679' compile_id='623' compiler='c2' level='4' iicount='16523'/>
+<call method='1145' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1136' x='1145'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.472'/>
+</parse>
+<bc code='185' bci='190'/>
+<call method='1135' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1137'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.472'/>
+</parse>
+<bc code='182' bci='226'/>
+<call method='1119' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1119'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='182' bci='13'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<parse method='1124'>
+<bc code='182' bci='9'/>
+<call method='1126' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<parse_done stamp='0.473'/>
+</parse>
+<parse_done stamp='0.473'/>
+</parse>
+<bc code='185' bci='234'/>
+<method id='1150' holder='1094' name='setValue' return='977' arguments='975 983 1128' flags='1025' bytes='0' iicount='1'/>
+<call method='1150' instr='invokeinterface'/>
+<method id='1151' holder='1136' name='setValue' return='977' arguments='975 983 1128' flags='1' bytes='27' compile_id='552' compiler='c1' level='3' iicount='15544'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1151'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<parse_done stamp='0.473'/>
+</parse>
+<bc code='185' bci='242'/>
+<method id='1154' holder='1094' name='setSpecified' return='977' arguments='975 969' flags='1025' bytes='0' iicount='1'/>
+<call method='1154' instr='invokeinterface'/>
+<method id='1155' holder='1136' name='setSpecified' return='977' arguments='975 969' flags='1' bytes='11' compile_id='553' compiler='c1' level='3' iicount='15553'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1155'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<parse_done stamp='0.473'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.473'/>
+</phase>
+<parse_done stamp='0.473'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.473'>
+<phase_done name='optimize_blocks' stamp='0.473'/>
+</phase>
+<phase name='gvn' stamp='0.473'>
+<phase_done name='gvn' stamp='0.473'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.473'>
+<phase_done name='rangeCheckElimination' stamp='0.473'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.473'>
+<phase_done name='optimize_null_checks' stamp='0.473'/>
+</phase>
+<phase_done name='buildIR' stamp='0.473'/>
+</phase>
+<phase name='emit_lir' stamp='0.473'>
+<phase name='lirGeneration' stamp='0.473'>
+<phase_done name='lirGeneration' stamp='0.473'/>
+</phase>
+<phase name='linearScan' stamp='0.473'>
+<phase_done name='linearScan' stamp='0.473'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.473'/>
+</phase>
+<phase name='codeemit' stamp='0.473'>
+<phase_done name='codeemit' stamp='0.473'/>
+</phase>
+<phase name='codeinstall' stamp='0.473'>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1119'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1137'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1143'/>
+<dependency type='unique_concrete_method' ctxk='1136' x='1145'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1151'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1155'/>
+<phase_done name='codeinstall' stamp='0.474'/>
+</phase>
+<code_cache total_blobs='1304' nmethods='747' adapters='262' free_code_cache='246623872'/>
+<task_done success='1' nmsize='6680' count='15653' inlined_bytes='141' stamp='0.474'/>
+</task>
+<task compile_id='759' method='java.nio.CharBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='229' iicount='229' level='3' stamp='0.496'>
+<phase name='setup' stamp='0.496'>
+<phase_done name='setup' stamp='0.496'/>
+</phase>
+<phase name='buildIR' stamp='0.496'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='position' return='1064' arguments='975' flags='4161' bytes='6' iicount='229'/>
+<parse method='1094'  stamp='0.496'>
+<phase name='parse_hir' stamp='0.496'>
+<bc code='182' bci='2'/>
+<method id='1097' holder='1093' name='position' return='1093' arguments='975' flags='17' bytes='8' iicount='229'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='2'/>
+<method id='1099' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='788'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.496'/>
+</phase>
+<parse_done stamp='0.496'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.496'>
+<phase_done name='optimize_blocks' stamp='0.496'/>
+</phase>
+<phase name='gvn' stamp='0.496'>
+<phase_done name='gvn' stamp='0.496'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.496'>
+<phase_done name='rangeCheckElimination' stamp='0.496'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.496'>
+<phase_done name='optimize_null_checks' stamp='0.496'/>
+</phase>
+<phase_done name='buildIR' stamp='0.496'/>
+</phase>
+<phase name='emit_lir' stamp='0.496'>
+<phase name='lirGeneration' stamp='0.496'>
+<phase_done name='lirGeneration' stamp='0.496'/>
+</phase>
+<phase name='linearScan' stamp='0.496'>
+<phase_done name='linearScan' stamp='0.496'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.496'/>
+</phase>
+<phase name='codeemit' stamp='0.496'>
+<phase_done name='codeemit' stamp='0.496'/>
+</phase>
+<phase name='codeinstall' stamp='0.496'>
+<phase_done name='codeinstall' stamp='0.496'/>
+</phase>
+<code_cache total_blobs='1323' nmethods='756' adapters='262' free_code_cache='246597888'/>
+<task_done success='1' nmsize='616' count='229' inlined_bytes='8' stamp='0.496'/>
+</task>
+<task compile_id='763' method='java.util.ArrayList$SubList iterator ()Ljava/util/Iterator;' bytes='5' count='256' iicount='256' level='3' stamp='0.498'>
+<phase name='setup' stamp='0.498'>
+<phase_done name='setup' stamp='0.498'/>
+</phase>
+<phase name='buildIR' stamp='0.498'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='5' iicount='256'/>
+<parse method='1095'  stamp='0.498'>
+<phase name='parse_hir' stamp='0.498'>
+<bc code='182' bci='1'/>
+<klass id='1098' name='java.util.ListIterator' flags='1537'/>
+<klass id='1097' name='java.util.AbstractList' flags='1025'/>
+<method id='1099' holder='1097' name='listIterator' return='1098' flags='1' bytes='6' iicount='257'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='182' bci='2'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1097' name='listIterator' return='1098' arguments='975' flags='1' bytes='15' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<method id='1102' holder='1093' name='listIterator' return='1098' arguments='975' flags='1' bytes='19' iicount='257'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='checkForComodification' return='977' flags='2' bytes='23' compile_id='716' compiler='c1' level='3' iicount='514'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='18'/>
+<klass id='1107' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='183' bci='6'/>
+<method id='1109' holder='1093' name='rangeCheckForAdd' return='977' arguments='975' flags='2' bytes='26' iicount='257'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1112' holder='1093' name='outOfBoundsMsg' return='983' arguments='975' flags='2' bytes='32' iicount='1'/>
+<call method='1112' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='21'/>
+<klass id='1111' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1114' holder='1111' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='183' bci='15'/>
+<klass id='1115' name='java.util.ArrayList$SubList$1' flags='0'/>
+<method id='1116' holder='1115' name='&lt;init&gt;' return='977' arguments='1093 975' flags='0' bytes='42' iicount='257'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<parse_done stamp='0.499'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.499'/>
+</phase>
+<parse_done stamp='0.499'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.499'>
+<phase_done name='optimize_blocks' stamp='0.499'/>
+</phase>
+<phase name='gvn' stamp='0.499'>
+<phase_done name='gvn' stamp='0.499'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.499'>
+<phase_done name='rangeCheckElimination' stamp='0.499'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.499'>
+<phase_done name='optimize_null_checks' stamp='0.499'/>
+</phase>
+<phase_done name='buildIR' stamp='0.499'/>
+</phase>
+<phase name='emit_lir' stamp='0.499'>
+<phase name='lirGeneration' stamp='0.499'>
+<phase_done name='lirGeneration' stamp='0.499'/>
+</phase>
+<phase name='linearScan' stamp='0.499'>
+<phase_done name='linearScan' stamp='0.499'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.499'/>
+</phase>
+<phase name='codeemit' stamp='0.499'>
+<phase_done name='codeemit' stamp='0.499'/>
+</phase>
+<phase name='codeinstall' stamp='0.499'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.499'/>
+</phase>
+<code_cache total_blobs='1328' nmethods='761' adapters='262' free_code_cache='246585088'/>
+<task_done success='1' nmsize='1496' count='260' inlined_bytes='74' stamp='0.499'/>
+</task>
+<task compile_id='770' method='com.sun.hotspot.tools.compiler.CallSite &lt;init&gt; ()V' bytes='5' count='302' iicount='302' level='3' stamp='0.512'>
+<phase name='setup' stamp='0.512'>
+<phase_done name='setup' stamp='0.512'/>
+</phase>
+<phase name='buildIR' stamp='0.512'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='0' bytes='5' iicount='302'/>
+<parse method='1094'  stamp='0.512'>
+<phase name='parse_hir' stamp='0.512'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='43504'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.512'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.512'/>
+</phase>
+<parse_done stamp='0.512'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.512'>
+<phase_done name='optimize_blocks' stamp='0.512'/>
+</phase>
+<phase name='gvn' stamp='0.512'>
+<phase_done name='gvn' stamp='0.512'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.512'>
+<phase_done name='rangeCheckElimination' stamp='0.512'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.512'>
+<phase_done name='optimize_null_checks' stamp='0.512'/>
+</phase>
+<phase_done name='buildIR' stamp='0.512'/>
+</phase>
+<phase name='emit_lir' stamp='0.512'>
+<phase name='lirGeneration' stamp='0.512'>
+<phase_done name='lirGeneration' stamp='0.512'/>
+</phase>
+<phase name='linearScan' stamp='0.512'>
+<phase_done name='linearScan' stamp='0.512'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.512'/>
+</phase>
+<phase name='codeemit' stamp='0.512'>
+<phase_done name='codeemit' stamp='0.512'/>
+</phase>
+<phase name='codeinstall' stamp='0.512'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.512'/>
+</phase>
+<code_cache total_blobs='1338' nmethods='767' adapters='262' free_code_cache='246516608'/>
+<task_done success='1' nmsize='432' count='302' inlined_bytes='1' stamp='0.512'/>
+</task>
+<task compile_id='773' method='java.util.AbstractList subListRangeCheck (III)V' bytes='110' count='306' iicount='306' level='3' stamp='0.516'>
+<phase name='setup' stamp='0.516'>
+<phase_done name='setup' stamp='0.516'/>
+</phase>
+<phase name='buildIR' stamp='0.516'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.AbstractList' flags='1025'/>
+<method id='1094' holder='1093' name='subListRangeCheck' return='977' arguments='975 975 975' flags='8' bytes='110' iicount='306'/>
+<parse method='1094'  stamp='0.516'>
+<phase name='parse_hir' stamp='0.516'>
+<bc code='183' bci='12'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1097' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='2761'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1099' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='3140'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='182' bci='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1102' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='5882'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<method id='1104' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='5882'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1106' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='523'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<method id='1108' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='523'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='182' bci='24'/>
+<method id='1110' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='3142'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1112' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='6538'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.516'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='5573'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='9'/>
+<klass id='1118' name='java.util.Arrays' flags='1'/>
+<method id='1119' holder='1118' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1121' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='6847'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1123' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='43802'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.516'/>
+</parse>
+<parse_done stamp='0.517'/>
+</parse>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1125' name='java.lang.StringUTF16' flags='16'/>
+<method id='1126' holder='1125' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='183' bci='27'/>
+<klass id='1096' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1128' holder='1096' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='44'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='53'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='56'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='9'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.517'/>
+</parse>
+<parse_done stamp='0.517'/>
+</parse>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='183' bci='59'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='76'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='81'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='85'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='90'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='94'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='99'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='182' bci='102'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='9'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.517'/>
+</parse>
+<parse_done stamp='0.517'/>
+</parse>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.517'/>
+</parse>
+<bc code='183' bci='105'/>
+<klass id='1130' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1134' holder='1130' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1134' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.517'/>
+</phase>
+<parse_done stamp='0.517'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.517'>
+<phase_done name='optimize_blocks' stamp='0.517'/>
+</phase>
+<phase name='gvn' stamp='0.517'>
+<phase_done name='gvn' stamp='0.518'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.518'>
+<phase_done name='rangeCheckElimination' stamp='0.518'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.518'>
+<phase_done name='optimize_null_checks' stamp='0.518'/>
+</phase>
+<phase_done name='buildIR' stamp='0.518'/>
+</phase>
+<phase name='emit_lir' stamp='0.518'>
+<phase name='lirGeneration' stamp='0.518'>
+<phase_done name='lirGeneration' stamp='0.518'/>
+</phase>
+<phase name='linearScan' stamp='0.518'>
+<phase_done name='linearScan' stamp='0.518'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.518'/>
+</phase>
+<phase name='codeemit' stamp='0.518'>
+<phase_done name='codeemit' stamp='0.518'/>
+</phase>
+<phase name='codeinstall' stamp='0.518'>
+<phase_done name='codeinstall' stamp='0.519'/>
+</phase>
+<code_cache total_blobs='1347' nmethods='774' adapters='262' free_code_cache='246489984'/>
+<task_done success='1' nmsize='8168' count='313' inlined_bytes='354' stamp='0.519'/>
+</task>
+<task compile_id='787' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='5029' backedge_count='42770' iicount='5029' decompiles='1' unstable_if_traps='1' level='3' stamp='0.546'>
+<phase name='setup' stamp='0.546'>
+<phase_done name='setup' stamp='0.546'/>
+</phase>
+<phase name='buildIR' stamp='0.546'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1094' holder='1093' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' iicount='5030'/>
+<parse method='1094'  stamp='0.546'>
+<phase name='parse_hir' stamp='0.546'>
+<bc code='182' bci='7'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='582' compiler='c2' level='4' iicount='3668'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='106'/>
+<method id='1100' holder='1093' name='addSymbol0' return='983' arguments='1082 975 975 975 975' flags='2' bytes='103' iicount='116'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.546'/>
+</phase>
+<parse_done stamp='0.546'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.546'>
+<phase_done name='optimize_blocks' stamp='0.546'/>
+</phase>
+<phase name='gvn' stamp='0.546'>
+<phase_done name='gvn' stamp='0.546'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.546'>
+<phase_done name='rangeCheckElimination' stamp='0.546'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.546'>
+<phase_done name='optimize_null_checks' stamp='0.546'/>
+</phase>
+<phase_done name='buildIR' stamp='0.546'/>
+</phase>
+<phase name='emit_lir' stamp='0.546'>
+<phase name='lirGeneration' stamp='0.546'>
+<phase_done name='lirGeneration' stamp='0.546'/>
+</phase>
+<phase name='linearScan' stamp='0.546'>
+<phase_done name='linearScan' stamp='0.546'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.546'/>
+</phase>
+<phase name='codeemit' stamp='0.546'>
+<phase_done name='codeemit' stamp='0.546'/>
+</phase>
+<phase name='codeinstall' stamp='0.546'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.546'/>
+</phase>
+<code_cache total_blobs='1361' nmethods='782' adapters='262' free_code_cache='246462080'/>
+<task_done success='1' nmsize='1208' count='5215' backedge_count='43859' stamp='0.546'/>
+</task>
+<task compile_id='790' method='com.sun.org.apache.xerces.internal.util.XMLChar isValid (I)Z' bytes='34' count='389' iicount='389' level='3' stamp='0.548'>
+<phase name='setup' stamp='0.548'>
+<phase_done name='setup' stamp='0.548'/>
+</phase>
+<phase name='buildIR' stamp='0.548'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isValid' return='969' arguments='975' flags='9' bytes='34' iicount='389'/>
+<parse method='1094'  stamp='0.548'>
+<phase name='parse_hir' stamp='0.548'>
+<phase_done name='parse_hir' stamp='0.548'/>
+</phase>
+<parse_done stamp='0.548'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.548'>
+<phase_done name='optimize_blocks' stamp='0.548'/>
+</phase>
+<phase name='gvn' stamp='0.548'>
+<phase_done name='gvn' stamp='0.548'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.548'>
+<phase_done name='rangeCheckElimination' stamp='0.548'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.548'>
+<phase_done name='optimize_null_checks' stamp='0.548'/>
+</phase>
+<phase_done name='buildIR' stamp='0.548'/>
+</phase>
+<phase name='emit_lir' stamp='0.548'>
+<phase name='lirGeneration' stamp='0.548'>
+<phase_done name='lirGeneration' stamp='0.548'/>
+</phase>
+<phase name='linearScan' stamp='0.548'>
+<phase_done name='linearScan' stamp='0.548'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.548'/>
+</phase>
+<phase name='codeemit' stamp='0.548'>
+<phase_done name='codeemit' stamp='0.548'/>
+</phase>
+<phase name='codeinstall' stamp='0.548'>
+<phase_done name='codeinstall' stamp='0.548'/>
+</phase>
+<code_cache total_blobs='1365' nmethods='784' adapters='262' free_code_cache='246447488'/>
+<task_done success='1' nmsize='624' count='389' stamp='0.548'/>
+</task>
+<task compile_id='793' method='java.util.ArrayList$Itr checkForComodification ()V' bytes='23' count='511' iicount='511' level='3' stamp='0.550'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.ArrayList$Itr' flags='2'/>
+<method id='1094' holder='1093' name='checkForComodification' return='977' flags='16' bytes='23' iicount='538'/>
+<parse method='1094'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<bc code='183' bci='18'/>
+<klass id='1098' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.550'/>
+</phase>
+<phase name='linearScan' stamp='0.550'>
+<phase_done name='linearScan' stamp='0.550'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.550'/>
+</phase>
+<phase name='codeemit' stamp='0.550'>
+<phase_done name='codeemit' stamp='0.550'/>
+</phase>
+<phase name='codeinstall' stamp='0.550'>
+<phase_done name='codeinstall' stamp='0.550'/>
+</phase>
+<code_cache total_blobs='1369' nmethods='788' adapters='262' free_code_cache='246444416'/>
+<task_done success='1' nmsize='552' count='658' stamp='0.550'/>
+</task>
+<task compile_id='796' method='com.sun.hotspot.tools.compiler.BasicLogEvent getStart ()D' bytes='5' count='475' iicount='475' level='1' stamp='0.550'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<type id='972' name='double'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1094' holder='1093' name='getStart' return='972' flags='17' bytes='5' iicount='475'/>
+<parse method='1094'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.550'/>
+</phase>
+<phase name='linearScan' stamp='0.550'>
+<phase_done name='linearScan' stamp='0.550'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.550'/>
+</phase>
+<phase name='codeemit' stamp='0.550'>
+<phase_done name='codeemit' stamp='0.550'/>
+</phase>
+<phase name='codeinstall' stamp='0.550'>
+<phase_done name='codeinstall' stamp='0.550'/>
+</phase>
+<code_cache total_blobs='1374' nmethods='791' adapters='264' free_code_cache='246439296'/>
+<task_done success='1' nmsize='272' count='475' stamp='0.550'/>
+</task>
+<task compile_id='799' method='com.sun.hotspot.tools.compiler.Compilation getStart ()D' bytes='5' count='874' iicount='875' level='1' stamp='0.551'>
+<phase name='setup' stamp='0.551'>
+<phase_done name='setup' stamp='0.551'/>
+</phase>
+<phase name='buildIR' stamp='0.551'>
+<type id='972' name='double'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1094' holder='1093' name='getStart' return='972' flags='1' bytes='5' iicount='953'/>
+<parse method='1094'  stamp='0.551'>
+<phase name='parse_hir' stamp='0.551'>
+<phase_done name='parse_hir' stamp='0.551'/>
+</phase>
+<parse_done stamp='0.551'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.551'>
+<phase_done name='optimize_blocks' stamp='0.551'/>
+</phase>
+<phase name='gvn' stamp='0.551'>
+<phase_done name='gvn' stamp='0.551'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.551'>
+<phase_done name='rangeCheckElimination' stamp='0.551'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.551'>
+<phase_done name='optimize_null_checks' stamp='0.551'/>
+</phase>
+<phase_done name='buildIR' stamp='0.551'/>
+</phase>
+<phase name='emit_lir' stamp='0.551'>
+<phase name='lirGeneration' stamp='0.551'>
+<phase_done name='lirGeneration' stamp='0.551'/>
+</phase>
+<phase name='linearScan' stamp='0.551'>
+<phase_done name='linearScan' stamp='0.551'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.551'/>
+</phase>
+<phase name='codeemit' stamp='0.551'>
+<phase_done name='codeemit' stamp='0.551'/>
+</phase>
+<phase name='codeinstall' stamp='0.551'>
+<phase_done name='codeinstall' stamp='0.551'/>
+</phase>
+<code_cache total_blobs='1377' nmethods='794' adapters='264' free_code_cache='246434048'/>
+<task_done success='1' nmsize='272' count='1508' stamp='0.551'/>
+</task>
+<task compile_id='803' method='jdk.internal.org.objectweb.asm.Item &lt;init&gt; ()V' bytes='5' count='256' iicount='256' level='3' stamp='0.554'>
+<phase name='setup' stamp='0.554'>
+<phase_done name='setup' stamp='0.554'/>
+</phase>
+<phase name='buildIR' stamp='0.554'>
+<type id='977' name='void'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='0' bytes='5' iicount='256'/>
+<parse method='1094'  stamp='0.554'>
+<phase name='parse_hir' stamp='0.554'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='46281'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.554'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.554'/>
+</phase>
+<parse_done stamp='0.554'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.554'>
+<phase_done name='optimize_blocks' stamp='0.554'/>
+</phase>
+<phase name='gvn' stamp='0.554'>
+<phase_done name='gvn' stamp='0.554'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.554'>
+<phase_done name='rangeCheckElimination' stamp='0.554'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.554'>
+<phase_done name='optimize_null_checks' stamp='0.554'/>
+</phase>
+<phase_done name='buildIR' stamp='0.554'/>
+</phase>
+<phase name='emit_lir' stamp='0.554'>
+<phase name='lirGeneration' stamp='0.554'>
+<phase_done name='lirGeneration' stamp='0.554'/>
+</phase>
+<phase name='linearScan' stamp='0.554'>
+<phase_done name='linearScan' stamp='0.554'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.554'/>
+</phase>
+<phase name='codeemit' stamp='0.554'>
+<phase_done name='codeemit' stamp='0.554'/>
+</phase>
+<phase name='codeinstall' stamp='0.554'>
+<phase_done name='codeinstall' stamp='0.554'/>
+</phase>
+<code_cache total_blobs='1384' nmethods='799' adapters='264' free_code_cache='246428160'/>
+<task_done success='1' nmsize='432' count='260' inlined_bytes='1' stamp='0.554'/>
+</task>
+<task compile_id='809' method='jdk.internal.math.FDBigInteger mult ([III[I)V' bytes='64' count='242' backedge_count='2466' iicount='242' level='3' stamp='0.559'>
+<phase name='setup' stamp='0.559'>
+<phase_done name='setup' stamp='0.559'/>
+</phase>
+<phase name='buildIR' stamp='0.559'>
+<type id='977' name='void'/>
+<klass id='1087' name='[I' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.math.FDBigInteger' flags='1'/>
+<method id='1094' holder='1093' name='mult' return='977' arguments='1087 975 975 1087' flags='10' bytes='64' iicount='244'/>
+<parse method='1094'  stamp='0.559'>
+<phase name='parse_hir' stamp='0.559'>
+<phase_done name='parse_hir' stamp='0.559'/>
+</phase>
+<parse_done stamp='0.559'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.559'>
+<phase_done name='optimize_blocks' stamp='0.559'/>
+</phase>
+<phase name='gvn' stamp='0.559'>
+<phase_done name='gvn' stamp='0.559'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.559'>
+<phase_done name='rangeCheckElimination' stamp='0.559'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.559'>
+<phase_done name='optimize_null_checks' stamp='0.559'/>
+</phase>
+<phase_done name='buildIR' stamp='0.559'/>
+</phase>
+<phase name='emit_lir' stamp='0.559'>
+<phase name='lirGeneration' stamp='0.559'>
+<phase_done name='lirGeneration' stamp='0.559'/>
+</phase>
+<phase name='linearScan' stamp='0.559'>
+<phase_done name='linearScan' stamp='0.559'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.559'/>
+</phase>
+<phase name='codeemit' stamp='0.559'>
+<phase_done name='codeemit' stamp='0.559'/>
+</phase>
+<phase name='codeinstall' stamp='0.559'>
+<phase_done name='codeinstall' stamp='0.559'/>
+</phase>
+<code_cache total_blobs='1398' nmethods='807' adapters='270' free_code_cache='246361856'/>
+<task_done success='1' nmsize='656' count='326' backedge_count='4316' stamp='0.559'/>
+</task>
+<task compile_id='816' method='java.nio.ByteBuffer hasArray ()Z' bytes='20' count='259' iicount='259' level='3' stamp='0.560'>
+<phase name='setup' stamp='0.560'>
+<phase_done name='setup' stamp='0.560'/>
+</phase>
+<phase name='buildIR' stamp='0.560'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='hasArray' return='969' flags='17' bytes='20' iicount='260'/>
+<parse method='1094'  stamp='0.560'>
+<phase name='parse_hir' stamp='0.560'>
+<phase_done name='parse_hir' stamp='0.560'/>
+</phase>
+<parse_done stamp='0.560'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.560'>
+<phase_done name='optimize_blocks' stamp='0.560'/>
+</phase>
+<phase name='gvn' stamp='0.560'>
+<phase_done name='gvn' stamp='0.560'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.560'>
+<phase_done name='rangeCheckElimination' stamp='0.560'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.561'>
+<phase_done name='optimize_null_checks' stamp='0.561'/>
+</phase>
+<phase_done name='buildIR' stamp='0.561'/>
+</phase>
+<phase name='emit_lir' stamp='0.561'>
+<phase name='lirGeneration' stamp='0.561'>
+<phase_done name='lirGeneration' stamp='0.561'/>
+</phase>
+<phase name='linearScan' stamp='0.561'>
+<phase_done name='linearScan' stamp='0.561'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.561'/>
+</phase>
+<phase name='codeemit' stamp='0.561'>
+<phase_done name='codeemit' stamp='0.561'/>
+</phase>
+<phase name='codeinstall' stamp='0.561'>
+<phase_done name='codeinstall' stamp='0.561'/>
+</phase>
+<code_cache total_blobs='1404' nmethods='813' adapters='270' free_code_cache='246354432'/>
+<task_done success='1' nmsize='496' count='276' stamp='0.561'/>
+</task>
+<task compile_id='821' method='java.io.PrintStream ensureOpen ()V' bytes='18' count='262' iicount='262' level='3' stamp='0.561'>
+<phase name='setup' stamp='0.561'>
+<phase_done name='setup' stamp='0.561'/>
+</phase>
+<phase name='buildIR' stamp='0.561'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' iicount='262'/>
+<parse method='1094'  stamp='0.561'>
+<phase name='parse_hir' stamp='0.561'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1098' name='java.io.IOException' flags='1'/>
+<method id='1100' holder='1098' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.561'/>
+</phase>
+<parse_done stamp='0.561'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.561'>
+<phase_done name='optimize_blocks' stamp='0.561'/>
+</phase>
+<phase name='gvn' stamp='0.561'>
+<phase_done name='gvn' stamp='0.561'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.561'>
+<phase_done name='rangeCheckElimination' stamp='0.561'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.561'>
+<phase_done name='optimize_null_checks' stamp='0.561'/>
+</phase>
+<phase_done name='buildIR' stamp='0.561'/>
+</phase>
+<phase name='emit_lir' stamp='0.561'>
+<phase name='lirGeneration' stamp='0.561'>
+<phase_done name='lirGeneration' stamp='0.561'/>
+</phase>
+<phase name='linearScan' stamp='0.561'>
+<phase_done name='linearScan' stamp='0.561'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.561'/>
+</phase>
+<phase name='codeemit' stamp='0.561'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1409' nmethods='816' adapters='270' free_code_cache='246337408'/>
+<task_done success='1' nmsize='616' count='289' stamp='0.562'/>
+</task>
+<task compile_id='824' method='java.nio.CharBuffer limit (I)Ljava/nio/Buffer;' bytes='6' count='265' iicount='265' level='3' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='limit' return='1064' arguments='975' flags='4161' bytes='6' iicount='265'/>
+<parse method='1094'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<bc code='182' bci='2'/>
+<method id='1096' holder='1093' name='limit' return='1093' arguments='975' flags='17' bytes='8' iicount='270'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='2'/>
+<method id='1098' holder='1064' name='limit' return='1064' arguments='975' flags='1' bytes='74' compile_id='485' compiler='c1' level='3' iicount='663'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.562'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.562'/>
+</phase>
+<phase name='codeemit' stamp='0.562'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1415' nmethods='822' adapters='270' free_code_cache='246340864'/>
+<task_done success='1' nmsize='616' count='281' inlined_bytes='8' stamp='0.562'/>
+</task>
+<task compile_id='829' method='java.nio.CharBuffer wrap ([CII)Ljava/nio/CharBuffer;' bytes='20' count='262' iicount='262' level='3' stamp='0.563'>
+<phase name='setup' stamp='0.563'>
+<phase_done name='setup' stamp='0.563'/>
+</phase>
+<phase name='buildIR' stamp='0.563'>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='wrap' return='1093' arguments='1082 975 975' flags='9' bytes='20' iicount='262'/>
+<parse method='1094'  stamp='0.563'>
+<phase name='parse_hir' stamp='0.563'>
+<bc code='183' bci='7'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.nio.HeapCharBuffer' flags='0'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='0' bytes='14' iicount='263'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='10'/>
+<method id='1099' holder='1093' name='&lt;init&gt;' return='977' arguments='975 975 975 975 1082 975' flags='0' bytes='22' compile_id='823' compiler='c1' level='3' iicount='304'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='6'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1101' holder='1064' name='&lt;init&gt;' return='977' arguments='975 975 975 975' flags='0' bytes='99' compile_id='731' compiler='c1' level='3' iicount='488'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.563'/>
+</parse>
+<parse_done stamp='0.563'/>
+</parse>
+<bc code='183' bci='16'/>
+<klass id='1103' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.563'/>
+</phase>
+<parse_done stamp='0.563'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.563'>
+<phase_done name='optimize_blocks' stamp='0.563'/>
+</phase>
+<phase name='gvn' stamp='0.563'>
+<phase_done name='gvn' stamp='0.563'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.563'>
+<phase_done name='rangeCheckElimination' stamp='0.563'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.563'>
+<phase_done name='optimize_null_checks' stamp='0.563'/>
+</phase>
+<phase_done name='buildIR' stamp='0.563'/>
+</phase>
+<phase name='emit_lir' stamp='0.563'>
+<phase name='lirGeneration' stamp='0.563'>
+<phase_done name='lirGeneration' stamp='0.563'/>
+</phase>
+<phase name='linearScan' stamp='0.563'>
+<phase_done name='linearScan' stamp='0.563'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.563'/>
+</phase>
+<phase name='codeemit' stamp='0.563'>
+<phase_done name='codeemit' stamp='0.563'/>
+</phase>
+<phase name='codeinstall' stamp='0.563'>
+<phase_done name='codeinstall' stamp='0.563'/>
+</phase>
+<code_cache total_blobs='1421' nmethods='827' adapters='270' free_code_cache='246329216'/>
+<task_done success='1' nmsize='984' count='280' inlined_bytes='36' stamp='0.563'/>
+</task>
+<task compile_id='833' method='java.lang.String checkIndex (II)V' bytes='46' count='257' iicount='257' level='3' stamp='0.563'>
+<phase name='setup' stamp='0.563'>
+<phase_done name='setup' stamp='0.563'/>
+</phase>
+<phase name='buildIR' stamp='0.563'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='257'/>
+<parse method='1093'  stamp='0.563'>
+<phase name='parse_hir' stamp='0.563'>
+<bc code='183' bci='17'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1096' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='3217'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1098' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='3666'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.563'/>
+</parse>
+<bc code='182' bci='22'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6227'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='182' bci='26'/>
+<method id='1105' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='601'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<method id='1107' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='601'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='182' bci='31'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='182' bci='35'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='182' bci='38'/>
+<method id='1110' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='3647'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1112' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='7593'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='6316'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='9'/>
+<klass id='1118' name='java.util.Arrays' flags='1'/>
+<method id='1119' holder='1118' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1121' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='7665'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1123' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='47174'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.564'/>
+</parse>
+<parse_done stamp='0.564'/>
+</parse>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1125' name='java.lang.StringUTF16' flags='16'/>
+<method id='1126' holder='1125' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='183' bci='41'/>
+<klass id='1095' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1128' holder='1095' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.564'/>
+</phase>
+<parse_done stamp='0.564'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.564'>
+<phase_done name='optimize_blocks' stamp='0.564'/>
+</phase>
+<phase name='gvn' stamp='0.564'>
+<phase_done name='gvn' stamp='0.564'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.564'>
+<phase_done name='rangeCheckElimination' stamp='0.564'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.564'>
+<phase_done name='optimize_null_checks' stamp='0.564'/>
+</phase>
+<phase_done name='buildIR' stamp='0.564'/>
+</phase>
+<phase name='emit_lir' stamp='0.564'>
+<phase name='lirGeneration' stamp='0.564'>
+<phase_done name='lirGeneration' stamp='0.564'/>
+</phase>
+<phase name='linearScan' stamp='0.564'>
+<phase_done name='linearScan' stamp='0.564'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.564'/>
+</phase>
+<phase name='codeemit' stamp='0.564'>
+<phase_done name='codeemit' stamp='0.565'/>
+</phase>
+<phase name='codeinstall' stamp='0.565'>
+<phase_done name='codeinstall' stamp='0.565'/>
+</phase>
+<code_cache total_blobs='1429' nmethods='834' adapters='270' free_code_cache='246317312'/>
+<task_done success='1' nmsize='3256' count='293' inlined_bytes='126' stamp='0.565'/>
+</task>
+<task compile_id='838' method='java.io.OutputStream flush ()V' bytes='1' count='270' iicount='270' level='3' stamp='0.565'>
+<phase name='setup' stamp='0.565'>
+<phase_done name='setup' stamp='0.565'/>
+</phase>
+<phase name='buildIR' stamp='0.565'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.OutputStream' flags='1025'/>
+<method id='1094' holder='1093' name='flush' return='977' flags='1' bytes='1' iicount='270'/>
+<parse method='1094'  stamp='0.565'>
+<phase name='parse_hir' stamp='0.565'>
+<phase_done name='parse_hir' stamp='0.565'/>
+</phase>
+<parse_done stamp='0.565'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.565'>
+<phase_done name='optimize_blocks' stamp='0.565'/>
+</phase>
+<phase name='gvn' stamp='0.565'>
+<phase_done name='gvn' stamp='0.565'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.565'>
+<phase_done name='rangeCheckElimination' stamp='0.565'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.565'>
+<phase_done name='optimize_null_checks' stamp='0.565'/>
+</phase>
+<phase_done name='buildIR' stamp='0.565'/>
+</phase>
+<phase name='emit_lir' stamp='0.565'>
+<phase name='lirGeneration' stamp='0.565'>
+<phase_done name='lirGeneration' stamp='0.565'/>
+</phase>
+<phase name='linearScan' stamp='0.565'>
+<phase_done name='linearScan' stamp='0.565'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.565'/>
+</phase>
+<phase name='codeemit' stamp='0.565'>
+<phase_done name='codeemit' stamp='0.565'/>
+</phase>
+<phase name='codeinstall' stamp='0.565'>
+<phase_done name='codeinstall' stamp='0.565'/>
+</phase>
+<code_cache total_blobs='1430' nmethods='835' adapters='270' free_code_cache='246316416'/>
+<task_done success='1' nmsize='336' count='285' stamp='0.565'/>
+</task>
+<task compile_id='841' method='java.io.BufferedWriter flushBuffer ()V' bytes='53' count='269' iicount='269' level='3' stamp='0.565'>
+<phase name='setup' stamp='0.565'>
+<phase_done name='setup' stamp='0.565'/>
+</phase>
+<phase name='buildIR' stamp='0.565'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.BufferedWriter' flags='1'/>
+<method id='1094' holder='1093' name='flushBuffer' return='977' flags='0' bytes='53' iicount='269'/>
+<parse method='1094'  stamp='0.565'>
+<phase name='parse_hir' stamp='0.565'>
+<bc code='183' bci='8'/>
+<method id='1098' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='820' compiler='c1' level='3' iicount='546'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1100' name='java.io.IOException' flags='1'/>
+<method id='1102' holder='1100' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='34'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1097' name='java.io.Writer' flags='1025'/>
+<method id='1104' holder='1097' name='write' return='977' arguments='1082 975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.565'/>
+</phase>
+<parse_done stamp='0.565'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.565'>
+<phase_done name='optimize_blocks' stamp='0.565'/>
+</phase>
+<phase name='gvn' stamp='0.565'>
+<phase_done name='gvn' stamp='0.565'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.565'>
+<phase_done name='rangeCheckElimination' stamp='0.565'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.565'>
+<phase_done name='optimize_null_checks' stamp='0.565'/>
+</phase>
+<phase_done name='buildIR' stamp='0.565'/>
+</phase>
+<phase name='emit_lir' stamp='0.565'>
+<phase name='lirGeneration' stamp='0.565'>
+<phase_done name='lirGeneration' stamp='0.565'/>
+</phase>
+<phase name='linearScan' stamp='0.565'>
+<phase_done name='linearScan' stamp='0.566'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.566'/>
+</phase>
+<phase name='codeemit' stamp='0.566'>
+<phase_done name='codeemit' stamp='0.566'/>
+</phase>
+<phase name='codeinstall' stamp='0.566'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.566'/>
+</phase>
+<code_cache total_blobs='1433' nmethods='838' adapters='270' free_code_cache='246308608'/>
+<task_done success='1' nmsize='1496' count='296' inlined_bytes='18' stamp='0.566'/>
+</task>
+<task compile_id='845' method='sun.nio.cs.StreamEncoder implFlushBuffer ()V' bytes='15' count='303' iicount='303' level='3' stamp='0.566'>
+<phase name='setup' stamp='0.566'>
+<phase_done name='setup' stamp='0.566'/>
+</phase>
+<phase name='buildIR' stamp='0.566'>
+<type id='977' name='void'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='implFlushBuffer' return='977' flags='0' bytes='15' iicount='303'/>
+<parse method='1094'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1097' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='183' bci='11'/>
+<method id='1099' holder='1093' name='writeBytes' return='977' flags='2' bytes='132' iicount='278'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.566'/>
+</phase>
+<parse_done stamp='0.566'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.566'>
+<phase_done name='optimize_blocks' stamp='0.566'/>
+</phase>
+<phase name='gvn' stamp='0.566'>
+<phase_done name='gvn' stamp='0.566'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.566'>
+<phase_done name='rangeCheckElimination' stamp='0.566'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.566'>
+<phase_done name='optimize_null_checks' stamp='0.566'/>
+</phase>
+<phase_done name='buildIR' stamp='0.566'/>
+</phase>
+<phase name='emit_lir' stamp='0.566'>
+<phase name='lirGeneration' stamp='0.566'>
+<phase_done name='lirGeneration' stamp='0.566'/>
+</phase>
+<phase name='linearScan' stamp='0.566'>
+<phase_done name='linearScan' stamp='0.566'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.566'/>
+</phase>
+<phase name='codeemit' stamp='0.566'>
+<phase_done name='codeemit' stamp='0.566'/>
+</phase>
+<phase name='codeinstall' stamp='0.566'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.566'/>
+</phase>
+<code_cache total_blobs='1437' nmethods='842' adapters='270' free_code_cache='246302592'/>
+<task_done success='1' nmsize='616' count='310' inlined_bytes='5' stamp='0.566'/>
+</task>
+<task compile_id='851' method='java.util.Formatter$Flags contains (Ljava/util/Formatter$Flags;)Z' bytes='22' count='261' iicount='261' level='3' stamp='0.566'>
+<phase name='setup' stamp='0.566'>
+<phase_done name='setup' stamp='0.566'/>
+</phase>
+<phase name='buildIR' stamp='0.566'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='1093' flags='1' bytes='22' iicount='261'/>
+<parse method='1094'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<bc code='182' bci='5'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.566'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.566'/>
+</phase>
+<parse_done stamp='0.566'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.566'>
+<phase_done name='optimize_blocks' stamp='0.566'/>
+</phase>
+<phase name='gvn' stamp='0.566'>
+<phase_done name='gvn' stamp='0.566'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.566'>
+<phase_done name='rangeCheckElimination' stamp='0.566'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.566'>
+<phase_done name='optimize_null_checks' stamp='0.566'/>
+</phase>
+<phase_done name='buildIR' stamp='0.566'/>
+</phase>
+<phase name='emit_lir' stamp='0.566'>
+<phase name='lirGeneration' stamp='0.566'>
+<phase_done name='lirGeneration' stamp='0.566'/>
+</phase>
+<phase name='linearScan' stamp='0.566'>
+<phase_done name='linearScan' stamp='0.567'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.567'/>
+</phase>
+<phase name='codeemit' stamp='0.567'>
+<phase_done name='codeemit' stamp='0.567'/>
+</phase>
+<phase name='codeinstall' stamp='0.567'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.567'/>
+</phase>
+<code_cache total_blobs='1439' nmethods='844' adapters='270' free_code_cache='246300416'/>
+<task_done success='1' nmsize='528' count='279' inlined_bytes='10' stamp='0.567'/>
+</task>
+<task compile_id='852' method='java.lang.StringBuilder charAt (I)C' bytes='6' count='279' iicount='279' level='3' stamp='0.567'>
+<phase name='setup' stamp='0.567'>
+<phase_done name='setup' stamp='0.567'/>
+</phase>
+<phase name='buildIR' stamp='0.567'>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1093' holder='1050' name='charAt' return='970' arguments='975' flags='4161' bytes='6' iicount='279'/>
+<parse method='1093'  stamp='0.567'>
+<phase name='parse_hir' stamp='0.567'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='charAt' return='970' arguments='975' flags='1' bytes='36' iicount='288'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.567'/>
+</phase>
+<parse_done stamp='0.567'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.567'>
+<phase_done name='optimize_blocks' stamp='0.567'/>
+</phase>
+<phase name='gvn' stamp='0.567'>
+<phase_done name='gvn' stamp='0.567'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.567'>
+<phase_done name='rangeCheckElimination' stamp='0.567'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.567'>
+<phase_done name='optimize_null_checks' stamp='0.567'/>
+</phase>
+<phase_done name='buildIR' stamp='0.567'/>
+</phase>
+<phase name='emit_lir' stamp='0.567'>
+<phase name='lirGeneration' stamp='0.567'>
+<phase_done name='lirGeneration' stamp='0.567'/>
+</phase>
+<phase name='linearScan' stamp='0.567'>
+<phase_done name='linearScan' stamp='0.567'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.567'/>
+</phase>
+<phase name='codeemit' stamp='0.567'>
+<phase_done name='codeemit' stamp='0.567'/>
+</phase>
+<phase name='codeinstall' stamp='0.567'>
+<phase_done name='codeinstall' stamp='0.567'/>
+</phase>
+<code_cache total_blobs='1442' nmethods='847' adapters='270' free_code_cache='246295808'/>
+<task_done success='1' nmsize='392' count='297' stamp='0.567'/>
+</task>
+<task compile_id='854' method='java.lang.String valueOf (Ljava/lang/Object;)Ljava/lang/String;' bytes='14' count='265' iicount='265' level='3' stamp='0.567'>
+<phase name='setup' stamp='0.567'>
+<phase_done name='setup' stamp='0.567'/>
+</phase>
+<phase name='buildIR' stamp='0.567'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1093' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='266'/>
+<parse method='1093'  stamp='0.567'>
+<phase name='parse_hir' stamp='0.567'>
+<bc code='182' bci='10'/>
+<method id='1096' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.567'/>
+</phase>
+<parse_done stamp='0.567'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.567'>
+<phase_done name='optimize_blocks' stamp='0.567'/>
+</phase>
+<phase name='gvn' stamp='0.567'>
+<phase_done name='gvn' stamp='0.567'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.567'>
+<phase_done name='rangeCheckElimination' stamp='0.567'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.567'>
+<phase_done name='optimize_null_checks' stamp='0.567'/>
+</phase>
+<phase_done name='buildIR' stamp='0.567'/>
+</phase>
+<phase name='emit_lir' stamp='0.567'>
+<phase name='lirGeneration' stamp='0.567'>
+<phase_done name='lirGeneration' stamp='0.567'/>
+</phase>
+<phase name='linearScan' stamp='0.567'>
+<phase_done name='linearScan' stamp='0.567'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.567'/>
+</phase>
+<phase name='codeemit' stamp='0.567'>
+<phase_done name='codeemit' stamp='0.567'/>
+</phase>
+<phase name='codeinstall' stamp='0.567'>
+<phase_done name='codeinstall' stamp='0.567'/>
+</phase>
+<code_cache total_blobs='1443' nmethods='848' adapters='270' free_code_cache='246294528'/>
+<task_done success='1' nmsize='616' count='279' stamp='0.567'/>
+</task>
+<task compile_id='855' method='java.util.regex.Matcher getTextLength ()I' bytes='10' count='646' iicount='646' level='3' stamp='0.567'>
+<phase name='setup' stamp='0.567'>
+<phase_done name='setup' stamp='0.567'/>
+</phase>
+<phase name='buildIR' stamp='0.567'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='getTextLength' return='975' flags='0' bytes='10' iicount='646'/>
+<parse method='1094'  stamp='0.568'>
+<phase name='parse_hir' stamp='0.568'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.lang.CharSequence' flags='1537'/>
+<method id='1097' holder='1096' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.568'/>
+</phase>
+<parse_done stamp='0.568'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.568'>
+<phase_done name='optimize_blocks' stamp='0.568'/>
+</phase>
+<phase name='gvn' stamp='0.568'>
+<phase_done name='gvn' stamp='0.568'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.568'>
+<phase_done name='rangeCheckElimination' stamp='0.568'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.568'>
+<phase_done name='optimize_null_checks' stamp='0.568'/>
+</phase>
+<phase_done name='buildIR' stamp='0.568'/>
+</phase>
+<phase name='emit_lir' stamp='0.568'>
+<phase name='lirGeneration' stamp='0.568'>
+<phase_done name='lirGeneration' stamp='0.568'/>
+</phase>
+<phase name='linearScan' stamp='0.568'>
+<phase_done name='linearScan' stamp='0.568'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.568'/>
+</phase>
+<phase name='codeemit' stamp='0.568'>
+<phase_done name='codeemit' stamp='0.568'/>
+</phase>
+<phase name='codeinstall' stamp='0.568'>
+<phase_done name='codeinstall' stamp='0.568'/>
+</phase>
+<code_cache total_blobs='1445' nmethods='850' adapters='270' free_code_cache='246291072'/>
+<task_done success='1' nmsize='552' count='649' stamp='0.568'/>
+</task>
+<task compile_id='856' method='java.util.ArrayList iterator ()Ljava/util/Iterator;' bytes='9' count='256' iicount='256' level='3' stamp='0.568'>
+<phase name='setup' stamp='0.568'>
+<phase_done name='setup' stamp='0.568'/>
+</phase>
+<phase name='buildIR' stamp='0.568'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1095' holder='1093' name='iterator' return='1094' flags='1' bytes='9' iicount='257'/>
+<parse method='1095'  stamp='0.568'>
+<phase name='parse_hir' stamp='0.568'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.ArrayList$Itr' flags='2'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='1093' flags='0' bytes='26' iicount='257'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='47614'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.568'/>
+</parse>
+<parse_done stamp='0.568'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.568'/>
+</phase>
+<parse_done stamp='0.568'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.568'>
+<phase_done name='optimize_blocks' stamp='0.568'/>
+</phase>
+<phase name='gvn' stamp='0.568'>
+<phase_done name='gvn' stamp='0.568'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.568'>
+<phase_done name='rangeCheckElimination' stamp='0.568'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.568'>
+<phase_done name='optimize_null_checks' stamp='0.568'/>
+</phase>
+<phase_done name='buildIR' stamp='0.568'/>
+</phase>
+<phase name='emit_lir' stamp='0.568'>
+<phase name='lirGeneration' stamp='0.568'>
+<phase_done name='lirGeneration' stamp='0.568'/>
+</phase>
+<phase name='linearScan' stamp='0.568'>
+<phase_done name='linearScan' stamp='0.568'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.568'/>
+</phase>
+<phase name='codeemit' stamp='0.568'>
+<phase_done name='codeemit' stamp='0.568'/>
+</phase>
+<phase name='codeinstall' stamp='0.568'>
+<phase_done name='codeinstall' stamp='0.568'/>
+</phase>
+<code_cache total_blobs='1447' nmethods='852' adapters='270' free_code_cache='246288384'/>
+<task_done success='1' nmsize='720' count='260' inlined_bytes='27' stamp='0.568'/>
+</task>
+<task compile_id='859' method='java.nio.charset.CharsetEncoder encode (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;Z)Ljava/nio/charset/CoderResult;' bytes='285' count='389' iicount='389' level='3' stamp='0.568'>
+<phase name='setup' stamp='0.568'>
+<phase_done name='setup' stamp='0.568'/>
+</phase>
+<phase name='buildIR' stamp='0.568'>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1095' name='java.nio.ByteBuffer' flags='1025'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.nio.charset.CharsetEncoder' flags='1025'/>
+<method id='1097' holder='1093' name='encode' return='1096' arguments='1094 1095 969' flags='17' bytes='285' iicount='390'/>
+<parse method='1097'  stamp='0.568'>
+<phase name='parse_hir' stamp='0.568'>
+<bc code='183' bci='45'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1093' name='throwIllegalStateException' return='977' arguments='975 975' flags='2' bytes='44' iicount='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='57'/>
+<method id='1101' holder='1093' name='encodeLoop' return='1096' arguments='1094 1095' flags='1028' bytes='0' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='73'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<klass id='1102' name='java.nio.charset.CoderMalfunctionError' unloaded='1'/>
+<method id='1103' holder='1102' name='&lt;init&gt;' return='977' arguments='992' unloaded='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='85'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='91'/>
+<method id='1104' holder='1096' name='isOverflow' return='969' flags='1' bytes='14' compile_id='800' compiler='c1' level='3' iicount='639'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1104'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='102'/>
+<method id='1106' holder='1096' name='isUnderflow' return='969' flags='1' bytes='13' compile_id='778' compiler='c1' level='3' iicount='1070'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1106'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='113'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1108' holder='1064' name='hasRemaining' return='969' flags='17' bytes='17' compile_id='475' compiler='c1' level='3' iicount='3423'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='120'/>
+<method id='1110' holder='1064' name='remaining' return='975' flags='17' bytes='10' compile_id='772' compiler='c1' level='3' iicount='714'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='184' bci='123'/>
+<method id='1112' holder='1096' name='malformedForLength' return='1096' arguments='975' flags='9' bytes='8' iicount='1'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='184' bci='4'/>
+<klass id='1114' name='java.nio.charset.CoderResult$Cache' flags='1034'/>
+<method id='1116' holder='1114' name='access$200' return='1096' arguments='1114 975' flags='4104' bytes='6' iicount='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='183' bci='2'/>
+<method id='1118' holder='1114' name='get' return='1096' arguments='975' flags='34' bytes='105' iicount='1'/>
+<call method='1118' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.569'/>
+</parse>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='139'/>
+<method id='1120' holder='1096' name='isMalformed' return='969' flags='1' bytes='14' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1120'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='156'/>
+<method id='1123' holder='1096' name='isUnmappable' return='969' flags='1' bytes='14' iicount='1'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1123'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1123'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='210'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='230'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1130' holder='1095' name='put' return='1095' arguments='1085' flags='17' bytes='9' iicount='1'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='5'/>
+<method id='1132' holder='1095' name='put' return='1095' arguments='1085 975 975' flags='1' bytes='55' iicount='1'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='252'/>
+<method id='1134' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1134' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='257'/>
+<method id='1136' holder='1096' name='length' return='975' flags='1' bytes='20' iicount='1'/>
+<call method='1136' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1136'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1136'>
+<bc code='182' bci='1'/>
+<method id='1138' holder='1096' name='isError' return='969' flags='1' bytes='14' iicount='1'/>
+<call method='1138' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1138'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1138'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='183' bci='11'/>
+<klass id='1140' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1141' holder='1140' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1141' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.570'/>
+</parse>
+<bc code='182' bci='261'/>
+<method id='1142' holder='1094' name='position' return='1094' arguments='975' flags='17' bytes='8' compile_id='760' compiler='c1' level='3' iicount='1182'/>
+<call method='1142' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='183' bci='2'/>
+<method id='1144' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='2268'/>
+<call method='1144' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.570'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.570'/>
+</phase>
+<parse_done stamp='0.570'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.570'>
+<phase_done name='optimize_blocks' stamp='0.570'/>
+</phase>
+<phase name='gvn' stamp='0.570'>
+<phase_done name='gvn' stamp='0.570'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.570'>
+<phase_done name='rangeCheckElimination' stamp='0.570'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.570'>
+<phase_done name='optimize_null_checks' stamp='0.570'/>
+</phase>
+<phase_done name='buildIR' stamp='0.570'/>
+</phase>
+<phase name='emit_lir' stamp='0.570'>
+<phase name='lirGeneration' stamp='0.570'>
+<phase_done name='lirGeneration' stamp='0.570'/>
+</phase>
+<phase name='linearScan' stamp='0.570'>
+<phase_done name='linearScan' stamp='0.571'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.571'/>
+</phase>
+<phase name='codeemit' stamp='0.571'>
+<phase_done name='codeemit' stamp='0.571'/>
+</phase>
+<phase name='codeinstall' stamp='0.571'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1136'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1138'/>
+<phase_done name='codeinstall' stamp='0.571'/>
+</phase>
+<code_cache total_blobs='1458' nmethods='863' adapters='270' free_code_cache='246235264'/>
+<task_done success='1' nmsize='5752' count='545' inlined_bytes='162' stamp='0.571'/>
+</task>
+<task compile_id='866' method='sun.nio.cs.StreamEncoder implWrite ([CII)V' bytes='15' count='533' iicount='533' level='3' stamp='0.571'>
+<phase name='setup' stamp='0.571'>
+<phase_done name='setup' stamp='0.571'/>
+</phase>
+<phase name='buildIR' stamp='0.571'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='implWrite' return='977' arguments='1082 975 975' flags='0' bytes='15' iicount='541'/>
+<parse method='1094'  stamp='0.571'>
+<phase name='parse_hir' stamp='0.571'>
+<bc code='184' bci='3'/>
+<klass id='1096' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1097' holder='1096' name='wrap' return='1096' arguments='1082 975 975' flags='9' bytes='20' compile_id='829' compiler='c1' level='3' iicount='644'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='7'/>
+<klass id='1099' name='java.nio.HeapCharBuffer' flags='0'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='0' bytes='14' compile_id='830' compiler='c1' level='3' iicount='651'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='10'/>
+<method id='1102' holder='1096' name='&lt;init&gt;' return='977' arguments='975 975 975 975 1082 975' flags='0' bytes='22' compile_id='823' compiler='c1' level='3' iicount='696'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='6'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1104' holder='1064' name='&lt;init&gt;' return='977' arguments='975 975 975 975' flags='0' bytes='99' compile_id='731' compiler='c1' level='3' iicount='879'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.572'/>
+</parse>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='183' bci='16'/>
+<klass id='1106' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1107' holder='1106' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1108' holder='1093' name='implWrite' return='977' arguments='1096' flags='0' bytes='137' iicount='576'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.572'>
+<phase_done name='lirGeneration' stamp='0.572'/>
+</phase>
+<phase name='linearScan' stamp='0.572'>
+<phase_done name='linearScan' stamp='0.572'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.572'/>
+</phase>
+<phase name='codeemit' stamp='0.572'>
+<phase_done name='codeemit' stamp='0.572'/>
+</phase>
+<phase name='codeinstall' stamp='0.572'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.572'/>
+</phase>
+<code_cache total_blobs='1465' nmethods='870' adapters='270' free_code_cache='246219648'/>
+<task_done success='1' nmsize='1160' count='600' inlined_bytes='56' stamp='0.572'/>
+</task>
+<task compile_id='878' method='java.util.regex.CharPredicates$$Lambda$11/517210187 is (I)Z' bytes='5' count='384' iicount='384' level='3' stamp='0.572'>
+<phase name='setup' stamp='0.572'>
+<phase_done name='setup' stamp='0.572'/>
+</phase>
+<phase name='buildIR' stamp='0.572'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.regex.CharPredicates$$Lambda$11/517210187' flags='4112'/>
+<method id='1095' holder='1094' name='is' return='969' arguments='975' flags='1' bytes='5' iicount='384'/>
+<parse method='1095'  stamp='0.572'>
+<phase name='parse_hir' stamp='0.572'>
+<bc code='184' bci='1'/>
+<klass id='1097' name='java.util.regex.CharPredicates' flags='0'/>
+<method id='1098' holder='1097' name='lambda$ASCII_DIGIT$15' return='969' arguments='975' flags='4106' bytes='20' iicount='384'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='8'/>
+<klass id='1100' name='java.util.regex.ASCII' flags='16'/>
+<method id='1101' holder='1100' name='isDigit' return='969' arguments='975' flags='8' bytes='18' iicount='384'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.572'/>
+</parse>
+<parse_done stamp='0.572'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1468' nmethods='873' adapters='270' free_code_cache='246213504'/>
+<task_done success='1' nmsize='784' count='402' inlined_bytes='38' stamp='0.573'/>
+</task>
+<task compile_id='881' method='java.util.regex.Pattern$GroupHead match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='47' count='408' iicount='408' level='3' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$GroupHead' flags='24'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='47' iicount='408'/>
+<parse method='1096'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<bc code='182' bci='28'/>
+<klass id='1098' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1099' holder='1098' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.573'/>
+</phase>
+<parse_done stamp='0.573'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.573'>
+<phase_done name='optimize_blocks' stamp='0.573'/>
+</phase>
+<phase name='gvn' stamp='0.573'>
+<phase_done name='gvn' stamp='0.573'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.573'>
+<phase_done name='rangeCheckElimination' stamp='0.573'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.573'>
+<phase_done name='optimize_null_checks' stamp='0.573'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1474' nmethods='879' adapters='270' free_code_cache='246205184'/>
+<task_done success='1' nmsize='680' count='432' stamp='0.573'/>
+</task>
+<task compile_id='885' method='java.lang.ThreadLocal getMap (Ljava/lang/Thread;)Ljava/lang/ThreadLocal$ThreadLocalMap;' bytes='5' count='257' iicount='257' level='3' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<klass id='1094' name='java.lang.ThreadLocal$ThreadLocalMap' flags='8'/>
+<klass id='1014' name='java.lang.Thread' flags='1'/>
+<klass id='1093' name='java.lang.ThreadLocal' flags='1'/>
+<method id='1095' holder='1093' name='getMap' return='1094' arguments='1014' flags='0' bytes='5' iicount='257'/>
+<parse method='1095'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<phase_done name='parse_hir' stamp='0.574'/>
+</phase>
+<parse_done stamp='0.574'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.574'>
+<phase_done name='optimize_blocks' stamp='0.574'/>
+</phase>
+<phase name='gvn' stamp='0.574'>
+<phase_done name='gvn' stamp='0.574'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.574'>
+<phase_done name='rangeCheckElimination' stamp='0.574'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.574'>
+<phase_done name='optimize_null_checks' stamp='0.574'/>
+</phase>
+<phase_done name='buildIR' stamp='0.574'/>
+</phase>
+<phase name='emit_lir' stamp='0.574'>
+<phase name='lirGeneration' stamp='0.574'>
+<phase_done name='lirGeneration' stamp='0.574'/>
+</phase>
+<phase name='linearScan' stamp='0.574'>
+<phase_done name='linearScan' stamp='0.574'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.574'/>
+</phase>
+<phase name='codeemit' stamp='0.574'>
+<phase_done name='codeemit' stamp='0.574'/>
+</phase>
+<phase name='codeinstall' stamp='0.574'>
+<phase_done name='codeinstall' stamp='0.574'/>
+</phase>
+<code_cache total_blobs='1476' nmethods='881' adapters='270' free_code_cache='246202752'/>
+<task_done success='1' nmsize='336' count='260' stamp='0.574'/>
+</task>
+<task compile_id='888' method='java.lang.ThreadLocal$ThreadLocalMap access$000 (Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;' bytes='6' count='256' iicount='256' level='3' stamp='0.574'>
+<phase name='setup' stamp='0.574'>
+<phase_done name='setup' stamp='0.574'/>
+</phase>
+<phase name='buildIR' stamp='0.574'>
+<klass id='1095' name='java.lang.ThreadLocal$ThreadLocalMap$Entry' flags='8'/>
+<klass id='1093' name='java.lang.ThreadLocal$ThreadLocalMap' flags='8'/>
+<klass id='1094' name='java.lang.ThreadLocal' flags='1'/>
+<method id='1096' holder='1093' name='access$000' return='1095' arguments='1093 1094' flags='4104' bytes='6' iicount='258'/>
+<parse method='1096'  stamp='0.574'>
+<phase name='parse_hir' stamp='0.574'>
+<bc code='183' bci='2'/>
+<method id='1098' holder='1093' name='getEntry' return='1095' arguments='1094' flags='2' bytes='42' iicount='258'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.574'/>
+</phase>
+<parse_done stamp='0.574'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.574'>
+<phase_done name='optimize_blocks' stamp='0.574'/>
+</phase>
+<phase name='gvn' stamp='0.574'>
+<phase_done name='gvn' stamp='0.574'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.574'>
+<phase_done name='rangeCheckElimination' stamp='0.574'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.574'>
+<phase_done name='optimize_null_checks' stamp='0.574'/>
+</phase>
+<phase_done name='buildIR' stamp='0.574'/>
+</phase>
+<phase name='emit_lir' stamp='0.574'>
+<phase name='lirGeneration' stamp='0.574'>
+<phase_done name='lirGeneration' stamp='0.574'/>
+</phase>
+<phase name='linearScan' stamp='0.574'>
+<phase_done name='linearScan' stamp='0.574'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.574'/>
+</phase>
+<phase name='codeemit' stamp='0.574'>
+<phase_done name='codeemit' stamp='0.575'/>
+</phase>
+<phase name='codeinstall' stamp='0.575'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.575'/>
+</phase>
+<code_cache total_blobs='1479' nmethods='884' adapters='270' free_code_cache='246195712'/>
+<task_done success='1' nmsize='360' count='262' stamp='0.575'/>
+</task>
+<task compile_id='890' method='java.util.Formatter ensureOpen ()V' bytes='16' count='259' iicount='259' level='3' stamp='0.575'>
+<phase name='setup' stamp='0.575'>
+<phase_done name='setup' stamp='0.575'/>
+</phase>
+<phase name='buildIR' stamp='0.575'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<method id='1094' holder='1093' name='ensureOpen' return='977' flags='2' bytes='16' iicount='259'/>
+<parse method='1094'  stamp='0.575'>
+<phase name='parse_hir' stamp='0.575'>
+<bc code='183' bci='11'/>
+<klass id='1097' name='java.util.FormatterClosedException' unloaded='1'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.576'/>
+</phase>
+<parse_done stamp='0.576'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.576'>
+<phase_done name='optimize_blocks' stamp='0.576'/>
+</phase>
+<phase name='gvn' stamp='0.576'>
+<phase_done name='gvn' stamp='0.576'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.576'>
+<phase_done name='rangeCheckElimination' stamp='0.576'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.576'>
+<phase_done name='optimize_null_checks' stamp='0.576'/>
+</phase>
+<phase_done name='buildIR' stamp='0.576'/>
+</phase>
+<phase name='emit_lir' stamp='0.576'>
+<phase name='lirGeneration' stamp='0.576'>
+<phase_done name='lirGeneration' stamp='0.576'/>
+</phase>
+<phase name='linearScan' stamp='0.576'>
+<phase_done name='linearScan' stamp='0.576'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.576'/>
+</phase>
+<phase name='codeemit' stamp='0.576'>
+<phase_done name='codeemit' stamp='0.576'/>
+</phase>
+<phase name='codeinstall' stamp='0.576'>
+<phase_done name='codeinstall' stamp='0.576'/>
+</phase>
+<code_cache total_blobs='1482' nmethods='887' adapters='270' free_code_cache='246190976'/>
+<task_done success='1' nmsize='520' count='262' stamp='0.576'/>
+</task>
+<task compile_id='896' method='java.util.regex.Pattern$GroupTail match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='111' count='390' iicount='390' level='3' stamp='0.577'>
+<phase name='setup' stamp='0.577'>
+<phase_done name='setup' stamp='0.577'/>
+</phase>
+<phase name='buildIR' stamp='0.577'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$GroupTail' flags='24'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='111' iicount='390'/>
+<parse method='1096'  stamp='0.577'>
+<phase name='parse_hir' stamp='0.577'>
+<bc code='182' bci='70'/>
+<klass id='1098' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1099' holder='1098' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.577'/>
+</phase>
+<parse_done stamp='0.577'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.577'>
+<phase_done name='optimize_blocks' stamp='0.577'/>
+</phase>
+<phase name='gvn' stamp='0.577'>
+<phase_done name='gvn' stamp='0.577'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.577'>
+<phase_done name='rangeCheckElimination' stamp='0.577'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.577'>
+<phase_done name='optimize_null_checks' stamp='0.577'/>
+</phase>
+<phase_done name='buildIR' stamp='0.577'/>
+</phase>
+<phase name='emit_lir' stamp='0.577'>
+<phase name='lirGeneration' stamp='0.577'>
+<phase_done name='lirGeneration' stamp='0.577'/>
+</phase>
+<phase name='linearScan' stamp='0.577'>
+<phase_done name='linearScan' stamp='0.577'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.577'/>
+</phase>
+<phase name='codeemit' stamp='0.577'>
+<phase_done name='codeemit' stamp='0.577'/>
+</phase>
+<phase name='codeinstall' stamp='0.577'>
+<phase_done name='codeinstall' stamp='0.577'/>
+</phase>
+<code_cache total_blobs='1489' nmethods='892' adapters='270' free_code_cache='246182784'/>
+<task_done success='1' nmsize='968' count='405' stamp='0.577'/>
+</task>
+<task compile_id='899' method='java.util.regex.Pattern$$Lambda$13/1273765644 is (I)Z' bytes='9' count='256' iicount='256' level='3' stamp='0.580'>
+<phase name='setup' stamp='0.580'>
+<phase_done name='setup' stamp='0.580'/>
+</phase>
+<phase name='buildIR' stamp='0.580'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.regex.Pattern$$Lambda$13/1273765644' flags='4112'/>
+<method id='1095' holder='1094' name='is' return='969' arguments='975' flags='1' bytes='9' iicount='258'/>
+<parse method='1095'  stamp='0.580'>
+<phase name='parse_hir' stamp='0.580'>
+<bc code='184' bci='5'/>
+<klass id='1097' name='java.util.regex.Pattern$BitClass' flags='24'/>
+<klass id='1098' name='java.util.regex.Pattern' flags='17'/>
+<method id='1099' holder='1098' name='lambda$clazz$1' return='969' arguments='1097 975' flags='4106' bytes='22' iicount='258'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.580'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.580'/>
+</phase>
+<parse_done stamp='0.580'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.580'>
+<phase_done name='optimize_blocks' stamp='0.580'/>
+</phase>
+<phase name='gvn' stamp='0.580'>
+<phase_done name='gvn' stamp='0.580'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.580'>
+<phase_done name='rangeCheckElimination' stamp='0.580'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.580'>
+<phase_done name='optimize_null_checks' stamp='0.580'/>
+</phase>
+<phase_done name='buildIR' stamp='0.580'/>
+</phase>
+<phase name='emit_lir' stamp='0.580'>
+<phase name='lirGeneration' stamp='0.580'>
+<phase_done name='lirGeneration' stamp='0.580'/>
+</phase>
+<phase name='linearScan' stamp='0.580'>
+<phase_done name='linearScan' stamp='0.580'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.580'/>
+</phase>
+<phase name='codeemit' stamp='0.580'>
+<phase_done name='codeemit' stamp='0.580'/>
+</phase>
+<phase name='codeinstall' stamp='0.580'>
+<phase_done name='codeinstall' stamp='0.580'/>
+</phase>
+<code_cache total_blobs='1495' nmethods='896' adapters='270' free_code_cache='246174592'/>
+<task_done success='1' nmsize='656' count='260' inlined_bytes='22' stamp='0.580'/>
+</task>
+<task compile_id='902' method='java.util.regex.Pattern$BmpCharPredicate lambda$union$2 (Ljava/util/regex/Pattern$CharPredicate;I)Z' bytes='26' count='260' iicount='260' level='3' stamp='0.580'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Pattern$BmpCharPredicate' flags='1544'/>
+<method id='1095' holder='1093' name='lambda$union$2' return='969' arguments='1094 975' flags='4098' bytes='26' iicount='260'/>
+<parse method='1095'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<bc code='185' bci='2'/>
+<method id='1101' holder='1093' name='is' return='969' arguments='975' flags='4161' bytes='10' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='12'/>
+<method id='1102' holder='1094' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1499' nmethods='900' adapters='270' free_code_cache='246166656'/>
+<task_done success='1' nmsize='888' count='264' stamp='0.581'/>
+</task>
+<task compile_id='905' method='java.util.Formatter$FormatSpecifier index ()I' bytes='5' count='132' iicount='132' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='index' return='975' flags='1' bytes='5' iicount='132'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1502' nmethods='903' adapters='270' free_code_cache='246164224'/>
+<task_done success='1' nmsize='272' count='134' stamp='0.581'/>
+</task>
+<task compile_id='909' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer isExceptional ()Z' bytes='2' count='132' iicount='132' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer' flags='8'/>
+<method id='1094' holder='1093' name='isExceptional' return='969' flags='1' bytes='2' iicount='132'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1506' nmethods='907' adapters='270' free_code_cache='246160896'/>
+<task_done success='1' nmsize='272' count='134' stamp='0.581'/>
+</task>
+<task compile_id='913' method='java.util.Formatter access$400 (Ljava/util/Formatter;)C' bytes='5' count='135' iicount='135' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<method id='1094' holder='1093' name='access$400' return='970' arguments='1093' flags='4104' bytes='5' iicount='136'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.582'/>
+</phase>
+<parse_done stamp='0.582'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.582'>
+<phase_done name='optimize_blocks' stamp='0.582'/>
+</phase>
+<phase name='gvn' stamp='0.582'>
+<phase_done name='gvn' stamp='0.582'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.582'>
+<phase_done name='rangeCheckElimination' stamp='0.582'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.582'>
+<phase_done name='optimize_null_checks' stamp='0.582'/>
+</phase>
+<phase_done name='buildIR' stamp='0.582'/>
+</phase>
+<phase name='emit_lir' stamp='0.582'>
+<phase name='lirGeneration' stamp='0.582'>
+<phase_done name='lirGeneration' stamp='0.582'/>
+</phase>
+<phase name='linearScan' stamp='0.582'>
+<phase_done name='linearScan' stamp='0.582'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.582'/>
+</phase>
+<phase name='codeemit' stamp='0.582'>
+<phase_done name='codeemit' stamp='0.582'/>
+</phase>
+<phase name='codeinstall' stamp='0.582'>
+<phase_done name='codeinstall' stamp='0.582'/>
+</phase>
+<code_cache total_blobs='1511' nmethods='912' adapters='270' free_code_cache='246156800'/>
+<task_done success='1' nmsize='240' count='139' stamp='0.582'/>
+</task>
+<task compile_id='920' method='com.sun.hotspot.tools.compiler.Compilation getId ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.584'>
+<phase name='setup' stamp='0.584'>
+<phase_done name='setup' stamp='0.584'/>
+</phase>
+<phase name='buildIR' stamp='0.584'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1094' holder='1093' name='getId' return='975' flags='1' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.584'>
+<phase name='parse_hir' stamp='0.584'>
+<phase_done name='parse_hir' stamp='0.584'/>
+</phase>
+<parse_done stamp='0.584'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.584'>
+<phase_done name='optimize_blocks' stamp='0.584'/>
+</phase>
+<phase name='gvn' stamp='0.584'>
+<phase_done name='gvn' stamp='0.584'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.584'>
+<phase_done name='rangeCheckElimination' stamp='0.584'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.584'>
+<phase_done name='optimize_null_checks' stamp='0.584'/>
+</phase>
+<phase_done name='buildIR' stamp='0.584'/>
+</phase>
+<phase name='emit_lir' stamp='0.584'>
+<phase name='lirGeneration' stamp='0.584'>
+<phase_done name='lirGeneration' stamp='0.584'/>
+</phase>
+<phase name='linearScan' stamp='0.584'>
+<phase_done name='linearScan' stamp='0.584'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.584'/>
+</phase>
+<phase name='codeemit' stamp='0.584'>
+<phase_done name='codeemit' stamp='0.584'/>
+</phase>
+<phase name='codeinstall' stamp='0.584'>
+<phase_done name='codeinstall' stamp='0.584'/>
+</phase>
+<code_cache total_blobs='1517' nmethods='916' adapters='270' free_code_cache='246153088'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.584'/>
+</task>
+<task compile_id='925' method='java.io.PrintStream append (Ljava/lang/CharSequence;)Ljava/io/PrintStream;' bytes='10' count='384' iicount='384' level='3' stamp='0.586'>
+<phase name='setup' stamp='0.586'>
+<phase_done name='setup' stamp='0.586'/>
+</phase>
+<phase name='buildIR' stamp='0.586'>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<method id='1095' holder='1093' name='append' return='1093' arguments='1094' flags='1' bytes='10' iicount='384'/>
+<parse method='1095'  stamp='0.586'>
+<phase name='parse_hir' stamp='0.586'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='1426'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='10'/>
+<method id='1100' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='5'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1093' name='print' return='977' arguments='983' flags='1' bytes='9' compile_id='884' compiler='c1' level='3' iicount='1037'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1101'>
+<bc code='184' bci='2'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='10'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1103' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='1713'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.586'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.586'/>
+</phase>
+<parse_done stamp='0.586'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.586'>
+<phase_done name='optimize_blocks' stamp='0.586'/>
+</phase>
+<phase name='gvn' stamp='0.586'>
+<phase_done name='gvn' stamp='0.586'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.586'>
+<phase_done name='rangeCheckElimination' stamp='0.586'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.586'>
+<phase_done name='optimize_null_checks' stamp='0.586'/>
+</phase>
+<phase_done name='buildIR' stamp='0.586'/>
+</phase>
+<phase name='emit_lir' stamp='0.586'>
+<phase name='lirGeneration' stamp='0.586'>
+<phase_done name='lirGeneration' stamp='0.587'/>
+</phase>
+<phase name='linearScan' stamp='0.587'>
+<phase_done name='linearScan' stamp='0.587'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.587'/>
+</phase>
+<phase name='codeemit' stamp='0.587'>
+<phase_done name='codeemit' stamp='0.587'/>
+</phase>
+<phase name='codeinstall' stamp='0.587'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.587'/>
+</phase>
+<code_cache total_blobs='1524' nmethods='921' adapters='270' free_code_cache='246141056'/>
+<task_done success='1' nmsize='1288' count='395' inlined_bytes='37' stamp='0.587'/>
+</task>
+<task compile_id='926' method='java.util.Formatter locale ()Ljava/util/Locale;' bytes='9' count='392' iicount='392' level='3' stamp='0.587'>
+<phase name='setup' stamp='0.587'>
+<phase_done name='setup' stamp='0.587'/>
+</phase>
+<phase name='buildIR' stamp='0.587'>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<method id='1095' holder='1093' name='locale' return='1094' flags='1' bytes='9' iicount='393'/>
+<parse method='1095'  stamp='0.587'>
+<phase name='parse_hir' stamp='0.587'>
+<bc code='183' bci='1'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1093' name='ensureOpen' return='977' flags='2' bytes='16' compile_id='890' compiler='c1' level='3' iicount='592'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='11'/>
+<klass id='1100' name='java.util.FormatterClosedException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.587'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.587'/>
+</phase>
+<parse_done stamp='0.587'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.587'>
+<phase_done name='optimize_blocks' stamp='0.587'/>
+</phase>
+<phase name='gvn' stamp='0.587'>
+<phase_done name='gvn' stamp='0.587'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.587'>
+<phase_done name='rangeCheckElimination' stamp='0.587'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.587'>
+<phase_done name='optimize_null_checks' stamp='0.587'/>
+</phase>
+<phase_done name='buildIR' stamp='0.587'/>
+</phase>
+<phase name='emit_lir' stamp='0.587'>
+<phase name='lirGeneration' stamp='0.587'>
+<phase_done name='lirGeneration' stamp='0.587'/>
+</phase>
+<phase name='linearScan' stamp='0.587'>
+<phase_done name='linearScan' stamp='0.587'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.587'/>
+</phase>
+<phase name='codeemit' stamp='0.587'>
+<phase_done name='codeemit' stamp='0.587'/>
+</phase>
+<phase name='codeinstall' stamp='0.587'>
+<phase_done name='codeinstall' stamp='0.587'/>
+</phase>
+<code_cache total_blobs='1526' nmethods='923' adapters='270' free_code_cache='246138752'/>
+<task_done success='1' nmsize='648' count='400' inlined_bytes='16' stamp='0.587'/>
+</task>
+<task compile_id='929' method='java.util.Formatter$Conversion isFloat (C)Z' bytes='72' count='396' iicount='396' level='3' stamp='0.587'>
+<phase name='setup' stamp='0.587'>
+<phase_done name='setup' stamp='0.587'/>
+</phase>
+<phase name='buildIR' stamp='0.587'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1094' holder='1093' name='isFloat' return='969' arguments='970' flags='8' bytes='72' iicount='398'/>
+<parse method='1094'  stamp='0.587'>
+<phase name='parse_hir' stamp='0.587'>
+<phase_done name='parse_hir' stamp='0.587'/>
+</phase>
+<parse_done stamp='0.587'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.587'>
+<phase_done name='optimize_blocks' stamp='0.587'/>
+</phase>
+<phase name='gvn' stamp='0.587'>
+<phase_done name='gvn' stamp='0.587'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.587'>
+<phase_done name='rangeCheckElimination' stamp='0.587'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.587'>
+<phase_done name='optimize_null_checks' stamp='0.587'/>
+</phase>
+<phase_done name='buildIR' stamp='0.587'/>
+</phase>
+<phase name='emit_lir' stamp='0.587'>
+<phase name='lirGeneration' stamp='0.587'>
+<phase_done name='lirGeneration' stamp='0.587'/>
+</phase>
+<phase name='linearScan' stamp='0.587'>
+<phase_done name='linearScan' stamp='0.587'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.587'/>
+</phase>
+<phase name='codeemit' stamp='0.587'>
+<phase_done name='codeemit' stamp='0.587'/>
+</phase>
+<phase name='codeinstall' stamp='0.587'>
+<phase_done name='codeinstall' stamp='0.588'/>
+</phase>
+<code_cache total_blobs='1529' nmethods='926' adapters='270' free_code_cache='246129664'/>
+<task_done success='1' nmsize='400' count='402' stamp='0.588'/>
+</task>
+<task compile_id='934' method='java.lang.Character getType (I)I' bytes='9' count='256' iicount='256' level='3' stamp='0.591'>
+<phase name='setup' stamp='0.591'>
+<phase_done name='setup' stamp='0.591'/>
+</phase>
+<phase name='buildIR' stamp='0.591'>
+<type id='975' name='int'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='getType' return='975' arguments='975' flags='9' bytes='9' iicount='256'/>
+<parse method='1093'  stamp='0.591'>
+<phase name='parse_hir' stamp='0.591'>
+<bc code='184' bci='1'/>
+<klass id='1095' name='java.lang.CharacterData' flags='1024'/>
+<method id='1096' holder='1095' name='of' return='1095' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1098' holder='1095' name='getType' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.591'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<phase_done name='codeinstall' stamp='0.592'/>
+</phase>
+<code_cache total_blobs='1538' nmethods='931' adapters='270' free_code_cache='246079232'/>
+<task_done success='1' nmsize='568' count='259' stamp='0.592'/>
+</task>
+<task compile_id='937' method='java.util.regex.Pattern$$Lambda$14/701141022 is (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.592'>
+<phase name='setup' stamp='0.592'>
+<phase_done name='setup' stamp='0.592'/>
+</phase>
+<phase name='buildIR' stamp='0.592'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.regex.Pattern$$Lambda$14/701141022' flags='4112'/>
+<method id='1095' holder='1094' name='is' return='969' arguments='975' flags='1' bytes='13' iicount='256'/>
+<parse method='1095'  stamp='0.592'>
+<phase name='parse_hir' stamp='0.592'>
+<bc code='184' bci='9'/>
+<klass id='1097' name='java.util.regex.Pattern' flags='17'/>
+<method id='1098' holder='1097' name='lambda$Range$11' return='969' arguments='975 975 975' flags='4106' bytes='7' iicount='256'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='3'/>
+<method id='1100' holder='1097' name='inRange' return='969' arguments='975 975 975' flags='10' bytes='16' iicount='256'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.592'/>
+</parse>
+<parse_done stamp='0.592'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.592'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<phase_done name='codeinstall' stamp='0.592'/>
+</phase>
+<code_cache total_blobs='1545' nmethods='936' adapters='270' free_code_cache='246083200'/>
+<task_done success='1' nmsize='688' count='257' inlined_bytes='23' stamp='0.592'/>
+</task>
+<task compile_id='942' method='java.util.Formatter$FormatSpecifier index (Ljava/lang/String;II)I' bytes='50' count='258' iicount='258' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='index' return='975' arguments='983 975 975' flags='2' bytes='50' iicount='259'/>
+<parse method='1094'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='184' bci='12'/>
+<klass id='1096' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1097' holder='1076' name='parseInt' return='975' arguments='1096 975 975 975' flags='9' bytes='302' compile_id='927' compiler='c1' level='3' iicount='509'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.593'/>
+</phase>
+<parse_done stamp='0.593'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.593'>
+<phase_done name='optimize_blocks' stamp='0.593'/>
+</phase>
+<phase name='gvn' stamp='0.593'>
+<phase_done name='gvn' stamp='0.593'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.593'>
+<phase_done name='rangeCheckElimination' stamp='0.593'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.593'>
+<phase_done name='optimize_null_checks' stamp='0.593'/>
+</phase>
+<phase_done name='buildIR' stamp='0.593'/>
+</phase>
+<phase name='emit_lir' stamp='0.593'>
+<phase name='lirGeneration' stamp='0.593'>
+<phase_done name='lirGeneration' stamp='0.593'/>
+</phase>
+<phase name='linearScan' stamp='0.593'>
+<phase_done name='linearScan' stamp='0.593'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.593'/>
+</phase>
+<phase name='codeemit' stamp='0.593'>
+<phase_done name='codeemit' stamp='0.593'/>
+</phase>
+<phase name='codeinstall' stamp='0.593'>
+<phase_done name='codeinstall' stamp='0.593'/>
+</phase>
+<code_cache total_blobs='1549' nmethods='940' adapters='270' free_code_cache='246078464'/>
+<task_done success='1' nmsize='584' count='262' stamp='0.593'/>
+</task>
+<task compile_id='950' method='com.sun.hotspot.tools.compiler.CallSite emit (Ljava/io/PrintStream;I)V' bytes='20' count='256' backedge_count='824' iicount='256' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.io.PrintStream' flags='1'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1095' holder='1093' name='emit' return='977' arguments='1094 975' flags='0' bytes='20' iicount='257'/>
+<parse method='1095'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='182' bci='10'/>
+<type id='970' name='char'/>
+<method id='1097' holder='1094' name='print' return='977' arguments='970' flags='1' bytes='9' compile_id='886' compiler='c1' level='3' iicount='826'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1097'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1099' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' compile_id='846' compiler='c1' level='3' iicount='1023'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='5'/>
+<method id='1101' holder='1094' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='2333'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.593'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.593'/>
+</phase>
+<parse_done stamp='0.593'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.593'>
+<phase_done name='optimize_blocks' stamp='0.593'/>
+</phase>
+<phase name='gvn' stamp='0.593'>
+<phase_done name='gvn' stamp='0.593'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.593'>
+<phase_done name='rangeCheckElimination' stamp='0.593'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.593'>
+<phase_done name='optimize_null_checks' stamp='0.593'/>
+</phase>
+<phase_done name='buildIR' stamp='0.593'/>
+</phase>
+<phase name='emit_lir' stamp='0.593'>
+<phase name='lirGeneration' stamp='0.593'>
+<phase_done name='lirGeneration' stamp='0.593'/>
+</phase>
+<phase name='linearScan' stamp='0.593'>
+<phase_done name='linearScan' stamp='0.593'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.593'/>
+</phase>
+<phase name='codeemit' stamp='0.593'>
+<phase_done name='codeemit' stamp='0.593'/>
+</phase>
+<phase name='codeinstall' stamp='0.593'>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.593'/>
+</phase>
+<code_cache total_blobs='1551' nmethods='942' adapters='270' free_code_cache='246075136'/>
+<task_done success='1' nmsize='760' count='260' backedge_count='832' inlined_bytes='9' stamp='0.593'/>
+</task>
+<task compile_id='945' method='java.util.Formatter$FormatSpecifier width (Ljava/lang/String;II)I' bytes='64' count='267' iicount='267' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='width' return='975' arguments='983 975 975' flags='2' bytes='64' iicount='267'/>
+<parse method='1094'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='184' bci='15'/>
+<klass id='1096' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1097' holder='1076' name='parseInt' return='975' arguments='1096 975 975 975' flags='9' bytes='302' compile_id='927' compiler='c1' level='3' iicount='523'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='36'/>
+<type id='977' name='void'/>
+<klass id='1099' name='java.util.IllegalFormatWidthException' unloaded='1'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.594'/>
+</phase>
+<parse_done stamp='0.594'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.594'>
+<phase_done name='optimize_blocks' stamp='0.594'/>
+</phase>
+<phase name='gvn' stamp='0.594'>
+<phase_done name='gvn' stamp='0.594'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.594'>
+<phase_done name='rangeCheckElimination' stamp='0.594'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.594'>
+<phase_done name='optimize_null_checks' stamp='0.594'/>
+</phase>
+<phase_done name='buildIR' stamp='0.594'/>
+</phase>
+<phase name='emit_lir' stamp='0.594'>
+<phase name='lirGeneration' stamp='0.594'>
+<phase_done name='lirGeneration' stamp='0.594'/>
+</phase>
+<phase name='linearScan' stamp='0.594'>
+<phase_done name='linearScan' stamp='0.594'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.594'/>
+</phase>
+<phase name='codeemit' stamp='0.594'>
+<phase_done name='codeemit' stamp='0.594'/>
+</phase>
+<phase name='codeinstall' stamp='0.594'>
+<phase_done name='codeinstall' stamp='0.594'/>
+</phase>
+<code_cache total_blobs='1555' nmethods='944' adapters='270' free_code_cache='246072832'/>
+<task_done success='1' nmsize='760' count='272' stamp='0.594'/>
+</task>
+<task compile_id='946' method='java.util.Formatter$FormatSpecifier precision (Ljava/lang/String;II)I' bytes='66' count='272' iicount='272' level='3' stamp='0.594'>
+<phase name='setup' stamp='0.594'>
+<phase_done name='setup' stamp='0.594'/>
+</phase>
+<phase name='buildIR' stamp='0.594'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='precision' return='975' arguments='983 975 975' flags='2' bytes='66' iicount='273'/>
+<parse method='1094'  stamp='0.594'>
+<phase name='parse_hir' stamp='0.594'>
+<bc code='184' bci='17'/>
+<klass id='1096' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1097' holder='1076' name='parseInt' return='975' arguments='1096 975 975 975' flags='9' bytes='302' compile_id='927' compiler='c1' level='3' iicount='535'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='38'/>
+<type id='977' name='void'/>
+<klass id='1099' name='java.util.IllegalFormatPrecisionException' unloaded='1'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.594'/>
+</phase>
+<parse_done stamp='0.594'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.594'>
+<phase_done name='optimize_blocks' stamp='0.594'/>
+</phase>
+<phase name='gvn' stamp='0.594'>
+<phase_done name='gvn' stamp='0.594'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.594'>
+<phase_done name='rangeCheckElimination' stamp='0.594'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.594'>
+<phase_done name='optimize_null_checks' stamp='0.594'/>
+</phase>
+<phase_done name='buildIR' stamp='0.594'/>
+</phase>
+<phase name='emit_lir' stamp='0.594'>
+<phase name='lirGeneration' stamp='0.594'>
+<phase_done name='lirGeneration' stamp='0.594'/>
+</phase>
+<phase name='linearScan' stamp='0.594'>
+<phase_done name='linearScan' stamp='0.595'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.595'/>
+</phase>
+<phase name='codeemit' stamp='0.595'>
+<phase_done name='codeemit' stamp='0.595'/>
+</phase>
+<phase name='codeinstall' stamp='0.595'>
+<phase_done name='codeinstall' stamp='0.595'/>
+</phase>
+<code_cache total_blobs='1558' nmethods='947' adapters='270' free_code_cache='246065024'/>
+<task_done success='1' nmsize='760' count='281' stamp='0.595'/>
+</task>
+<task compile_id='952' method='java.lang.Double doubleToLongBits (D)J' bytes='16' count='260' iicount='260' level='3' stamp='0.595'>
+<phase name='setup' stamp='0.595'>
+<phase_done name='setup' stamp='0.595'/>
+</phase>
+<phase name='buildIR' stamp='0.595'>
+<type id='976' name='long'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='doubleToLongBits' return='976' arguments='972' flags='9' bytes='16' iicount='260'/>
+<parse method='1093'  stamp='0.595'>
+<phase name='parse_hir' stamp='0.595'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='1073' name='isNaN' return='969' arguments='972' flags='9' bytes='12' compile_id='916' compiler='c1' level='3' iicount='534'/>
+<call method='1095' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.595'/>
+</parse>
+<bc code='184' bci='8'/>
+<method id='1097' holder='1073' name='doubleToRawLongBits' return='976' arguments='972' flags='265' bytes='0' iicount='679'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.595'/>
+</phase>
+<parse_done stamp='0.595'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.595'>
+<phase_done name='optimize_blocks' stamp='0.595'/>
+</phase>
+<phase name='gvn' stamp='0.595'>
+<phase_done name='gvn' stamp='0.595'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.595'>
+<phase_done name='rangeCheckElimination' stamp='0.595'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.595'>
+<phase_done name='optimize_null_checks' stamp='0.595'/>
+</phase>
+<phase_done name='buildIR' stamp='0.595'/>
+</phase>
+<phase name='emit_lir' stamp='0.595'>
+<phase name='lirGeneration' stamp='0.595'>
+<phase_done name='lirGeneration' stamp='0.595'/>
+</phase>
+<phase name='linearScan' stamp='0.595'>
+<phase_done name='linearScan' stamp='0.595'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.595'/>
+</phase>
+<phase name='codeemit' stamp='0.595'>
+<phase_done name='codeemit' stamp='0.595'/>
+</phase>
+<phase name='codeinstall' stamp='0.595'>
+<phase_done name='codeinstall' stamp='0.595'/>
+</phase>
+<code_cache total_blobs='1560' nmethods='949' adapters='270' free_code_cache='246062592'/>
+<task_done success='1' nmsize='624' count='262' inlined_bytes='12' stamp='0.595'/>
+</task>
+<task compile_id='956' method='com.sun.hotspot.tools.compiler.Method getFlags ()Ljava/lang/String;' bytes='5' count='130' iicount='130' level='1' stamp='0.596'>
+<phase name='setup' stamp='0.596'>
+<phase_done name='setup' stamp='0.596'/>
+</phase>
+<phase name='buildIR' stamp='0.596'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='getFlags' return='983' flags='1' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.596'>
+<phase name='parse_hir' stamp='0.596'>
+<phase_done name='parse_hir' stamp='0.597'/>
+</phase>
+<parse_done stamp='0.597'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.597'>
+<phase_done name='optimize_blocks' stamp='0.597'/>
+</phase>
+<phase name='gvn' stamp='0.597'>
+<phase_done name='gvn' stamp='0.597'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.597'>
+<phase_done name='rangeCheckElimination' stamp='0.597'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.597'>
+<phase_done name='optimize_null_checks' stamp='0.597'/>
+</phase>
+<phase_done name='buildIR' stamp='0.597'/>
+</phase>
+<phase name='emit_lir' stamp='0.597'>
+<phase name='lirGeneration' stamp='0.597'>
+<phase_done name='lirGeneration' stamp='0.597'/>
+</phase>
+<phase name='linearScan' stamp='0.597'>
+<phase_done name='linearScan' stamp='0.597'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.597'/>
+</phase>
+<phase name='codeemit' stamp='0.597'>
+<phase_done name='codeemit' stamp='0.597'/>
+</phase>
+<phase name='codeinstall' stamp='0.597'>
+<phase_done name='codeinstall' stamp='0.597'/>
+</phase>
+<code_cache total_blobs='1567' nmethods='954' adapters='270' free_code_cache='246047616'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.597'/>
+</task>
+<task compile_id='964' method='java.lang.Character isUpperCase (C)Z' bytes='5' count='384' iicount='384' level='3' stamp='0.603'>
+<phase name='setup' stamp='0.603'>
+<phase_done name='setup' stamp='0.603'/>
+</phase>
+<phase name='buildIR' stamp='0.603'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='isUpperCase' return='969' arguments='970' flags='9' bytes='5' iicount='384'/>
+<parse method='1093'  stamp='0.603'>
+<phase name='parse_hir' stamp='0.603'>
+<bc code='184' bci='1'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1070' name='isUpperCase' return='969' arguments='975' flags='9' bytes='25' iicount='384'/>
+<call method='1095' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='184' bci='1'/>
+<method id='1097' holder='1070' name='getType' return='975' arguments='975' flags='9' bytes='9' compile_id='934' compiler='c1' level='3' iicount='388'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='184' bci='1'/>
+<klass id='1100' name='java.lang.CharacterData' flags='1024'/>
+<method id='1101' holder='1100' name='of' return='1100' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1103' holder='1100' name='getType' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.603'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='13'/>
+<method id='1104' holder='1100' name='isOtherUppercase' return='969' arguments='975' flags='0' bytes='2' iicount='1'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.603'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.603'/>
+</phase>
+<parse_done stamp='0.603'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.603'>
+<phase_done name='optimize_blocks' stamp='0.603'/>
+</phase>
+<phase name='gvn' stamp='0.603'>
+<phase_done name='gvn' stamp='0.603'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.603'>
+<phase_done name='rangeCheckElimination' stamp='0.603'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.603'>
+<phase_done name='optimize_null_checks' stamp='0.603'/>
+</phase>
+<phase_done name='buildIR' stamp='0.603'/>
+</phase>
+<phase name='emit_lir' stamp='0.603'>
+<phase name='lirGeneration' stamp='0.603'>
+<phase_done name='lirGeneration' stamp='0.603'/>
+</phase>
+<phase name='linearScan' stamp='0.603'>
+<phase_done name='linearScan' stamp='0.603'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.603'/>
+</phase>
+<phase name='codeemit' stamp='0.603'>
+<phase_done name='codeemit' stamp='0.603'/>
+</phase>
+<phase name='codeinstall' stamp='0.603'>
+<phase_done name='codeinstall' stamp='0.603'/>
+</phase>
+<code_cache total_blobs='1579' nmethods='960' adapters='270' free_code_cache='246030848'/>
+<task_done success='1' nmsize='1144' count='387' inlined_bytes='34' stamp='0.603'/>
+</task>
+<task compile_id='974' method='java.util.Formatter format (Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/Formatter;' bytes='280' count='385' backedge_count='773' iicount='385' level='3' stamp='0.603'>
+<phase name='setup' stamp='0.603'>
+<phase_done name='setup' stamp='0.603'/>
+</phase>
+<phase name='buildIR' stamp='0.604'>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1096' holder='1093' name='format' return='1093' arguments='1094 983 1095' flags='129' bytes='280' iicount='385'/>
+<parse method='1096'  stamp='0.604'>
+<phase name='parse_hir' stamp='0.604'>
+<bc code='183' bci='1'/>
+<type id='977' name='void'/>
+<method id='1098' holder='1093' name='ensureOpen' return='977' flags='2' bytes='16' compile_id='890' compiler='c1' level='3' iicount='1152'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='11'/>
+<klass id='1101' name='java.util.FormatterClosedException' unloaded='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='183' bci='12'/>
+<klass id='1103' name='java.util.List' flags='1537'/>
+<method id='1104' holder='1093' name='parse' return='1103' arguments='983' flags='2' bytes='137' iicount='387'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='19'/>
+<klass id='1107' name='java.util.Iterator' flags='1537'/>
+<method id='1108' holder='1103' name='iterator' return='1107' flags='1025' bytes='0' iicount='1'/>
+<call method='1108' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='28'/>
+<type id='969' name='boolean'/>
+<method id='1109' holder='1107' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1109' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='38'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1110' holder='1107' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='50'/>
+<type id='975' name='int'/>
+<klass id='1111' name='java.util.Formatter$FormatString' flags='1546'/>
+<method id='1112' holder='1111' name='index' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1112' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='88'/>
+<method id='1113' holder='1111' name='print' return='977' arguments='982 1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='144'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='120'/>
+<method id='1115' holder='1111' name='toString' return='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1115' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='125'/>
+<klass id='1114' name='java.util.MissingFormatArgumentException' unloaded='1'/>
+<method id='1116' holder='1114' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='178'/>
+<call method='1115' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='183'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='202'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='235'/>
+<call method='1115' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='240'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='259'/>
+<call method='1113' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.604'/>
+</phase>
+<parse_done stamp='0.604'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.604'>
+<phase_done name='optimize_blocks' stamp='0.604'/>
+</phase>
+<phase name='gvn' stamp='0.604'>
+<phase_done name='gvn' stamp='0.604'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.604'>
+<phase_done name='rangeCheckElimination' stamp='0.604'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.604'>
+<phase_done name='optimize_null_checks' stamp='0.604'/>
+</phase>
+<phase_done name='buildIR' stamp='0.604'/>
+</phase>
+<phase name='emit_lir' stamp='0.604'>
+<phase name='lirGeneration' stamp='0.604'>
+<phase_done name='lirGeneration' stamp='0.604'/>
+</phase>
+<phase name='linearScan' stamp='0.604'>
+<phase_done name='linearScan' stamp='0.605'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.605'/>
+</phase>
+<phase name='codeemit' stamp='0.605'>
+<phase_done name='codeemit' stamp='0.605'/>
+</phase>
+<phase name='codeinstall' stamp='0.605'>
+<phase_done name='codeinstall' stamp='0.605'/>
+</phase>
+<code_cache total_blobs='1586' nmethods='967' adapters='270' free_code_cache='245977472'/>
+<task_done success='1' nmsize='5208' count='398' backedge_count='798' inlined_bytes='16' stamp='0.605'/>
+</task>
+<task compile_id='972' method='java.util.Formatter$FormatSpecifier appendJustified (Ljava/lang/Appendable;Ljava/lang/CharSequence;)Ljava/lang/Appendable;' bytes='91' count='399' iicount='399' level='3' stamp='0.605'>
+<phase name='setup' stamp='0.605'>
+<phase_done name='setup' stamp='0.605'/>
+</phase>
+<phase name='buildIR' stamp='0.605'>
+<klass id='1094' name='java.lang.Appendable' flags='1537'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1096' holder='1093' name='appendJustified' return='1094' arguments='1094 1095' flags='2' bytes='91' iicount='399'/>
+<parse method='1096'  stamp='0.605'>
+<phase name='parse_hir' stamp='0.605'>
+<bc code='185' bci='10'/>
+<method id='1098' holder='1094' name='append' return='1094' arguments='1095' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='23'/>
+<type id='969' name='boolean'/>
+<klass id='1099' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1102' holder='1099' name='contains' return='969' arguments='1099' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='3600'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1102'>
+<bc code='182' bci='5'/>
+<type id='975' name='int'/>
+<method id='1104' holder='1099' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1104'>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1104'>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='185' bci='32'/>
+<method id='1106' holder='1095' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1106' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='46'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='65'/>
+<type id='970' name='char'/>
+<method id='1107' holder='1094' name='append' return='1094' arguments='970' flags='1025' bytes='0' iicount='1'/>
+<call method='1107' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='83'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.605'/>
+</phase>
+<parse_done stamp='0.605'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.605'>
+<phase_done name='optimize_blocks' stamp='0.605'/>
+</phase>
+<phase name='gvn' stamp='0.605'>
+<phase_done name='gvn' stamp='0.605'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.605'>
+<phase_done name='rangeCheckElimination' stamp='0.605'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.605'>
+<phase_done name='optimize_null_checks' stamp='0.605'/>
+</phase>
+<phase_done name='buildIR' stamp='0.605'/>
+</phase>
+<phase name='emit_lir' stamp='0.605'>
+<phase name='lirGeneration' stamp='0.605'>
+<phase_done name='lirGeneration' stamp='0.605'/>
+</phase>
+<phase name='linearScan' stamp='0.605'>
+<phase_done name='linearScan' stamp='0.606'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.606'/>
+</phase>
+<phase name='codeemit' stamp='0.606'>
+<phase_done name='codeemit' stamp='0.606'/>
+</phase>
+<phase name='codeinstall' stamp='0.606'>
+<dependency type='leaf_type' ctxk='1099'/>
+<phase_done name='codeinstall' stamp='0.606'/>
+</phase>
+<code_cache total_blobs='1588' nmethods='969' adapters='270' free_code_cache='245971200'/>
+<task_done success='1' nmsize='2024' count='404' inlined_bytes='32' stamp='0.606'/>
+</task>
+<task compile_id='978' method='java.util.Formatter$FormatSpecifier adjustWidth (ILjava/util/Formatter$Flags;Z)I' bytes='29' count='398' iicount='398' level='3' stamp='0.606'>
+<phase name='setup' stamp='0.606'>
+<phase_done name='setup' stamp='0.606'/>
+</phase>
+<phase name='buildIR' stamp='0.606'>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.Formatter$Flags' flags='10'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1095' holder='1093' name='adjustWidth' return='975' arguments='975 1094 969' flags='2' bytes='29' iicount='398'/>
+<parse method='1095'  stamp='0.606'>
+<phase name='parse_hir' stamp='0.606'>
+<bc code='182' bci='17'/>
+<method id='1099' holder='1094' name='contains' return='969' arguments='1094' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='3671'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1099'>
+<bc code='182' bci='5'/>
+<method id='1101' holder='1094' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.606'/>
+</phase>
+<parse_done stamp='0.606'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.606'>
+<phase_done name='optimize_blocks' stamp='0.606'/>
+</phase>
+<phase name='gvn' stamp='0.606'>
+<phase_done name='gvn' stamp='0.606'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.606'>
+<phase_done name='rangeCheckElimination' stamp='0.606'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.606'>
+<phase_done name='optimize_null_checks' stamp='0.606'/>
+</phase>
+<phase_done name='buildIR' stamp='0.606'/>
+</phase>
+<phase name='emit_lir' stamp='0.606'>
+<phase name='lirGeneration' stamp='0.606'>
+<phase_done name='lirGeneration' stamp='0.606'/>
+</phase>
+<phase name='linearScan' stamp='0.606'>
+<phase_done name='linearScan' stamp='0.606'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.606'/>
+</phase>
+<phase name='codeemit' stamp='0.606'>
+<phase_done name='codeemit' stamp='0.606'/>
+</phase>
+<phase name='codeinstall' stamp='0.606'>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.606'/>
+</phase>
+<code_cache total_blobs='1591' nmethods='971' adapters='270' free_code_cache='245961856'/>
+<task_done success='1' nmsize='784' count='405' inlined_bytes='32' stamp='0.606'/>
+</task>
+<task compile_id='970' method='java.io.PrintStream append (Ljava/lang/CharSequence;II)Ljava/io/PrintStream;' bytes='20' count='413' iicount='413' level='3' stamp='0.606'>
+<phase name='setup' stamp='0.606'>
+<phase_done name='setup' stamp='0.606'/>
+</phase>
+<phase name='buildIR' stamp='0.606'>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1093' name='append' return='1093' arguments='1094 975 975' flags='1' bytes='20' iicount='413'/>
+<parse method='1095'  stamp='0.606'>
+<phase name='parse_hir' stamp='0.606'>
+<bc code='185' bci='11'/>
+<method id='1098' holder='1094' name='subSequence' return='1094' arguments='975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<method id='1099' holder='1093' name='append' return='1093' arguments='1094' flags='1' bytes='10' compile_id='925' compiler='c1' level='3' iicount='828'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1099'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='3064'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='10'/>
+<method id='1103' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='5'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='print' return='977' arguments='983' flags='1' bytes='9' compile_id='884' compiler='c1' level='3' iicount='2229'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1104'>
+<bc code='184' bci='2'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='10'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1106' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='3689'/>
+<call method='1106' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.607'/>
+</parse>
+<parse_done stamp='0.607'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.607'/>
+</phase>
+<parse_done stamp='0.607'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.607'>
+<phase_done name='optimize_blocks' stamp='0.607'/>
+</phase>
+<phase name='gvn' stamp='0.607'>
+<phase_done name='gvn' stamp='0.607'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.607'>
+<phase_done name='rangeCheckElimination' stamp='0.607'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.607'>
+<phase_done name='optimize_null_checks' stamp='0.607'/>
+</phase>
+<phase_done name='buildIR' stamp='0.607'/>
+</phase>
+<phase name='emit_lir' stamp='0.607'>
+<phase name='lirGeneration' stamp='0.607'>
+<phase_done name='lirGeneration' stamp='0.607'/>
+</phase>
+<phase name='linearScan' stamp='0.607'>
+<phase_done name='linearScan' stamp='0.607'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.607'/>
+</phase>
+<phase name='codeemit' stamp='0.607'>
+<phase_done name='codeemit' stamp='0.607'/>
+</phase>
+<phase name='codeinstall' stamp='0.607'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.607'/>
+</phase>
+<code_cache total_blobs='1596' nmethods='975' adapters='270' free_code_cache='245956352'/>
+<task_done success='1' nmsize='1624' count='426' inlined_bytes='47' stamp='0.607'/>
+</task>
+<task compile_id='980' method='java.io.PrintStream println (Ljava/lang/String;)V' bytes='24' count='410' iicount='410' level='3' stamp='0.607'>
+<phase name='setup' stamp='0.607'>
+<phase_done name='setup' stamp='0.607'/>
+</phase>
+<phase name='buildIR' stamp='0.607'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='println' return='977' arguments='983' flags='1' bytes='24' iicount='411'/>
+<parse method='1094'  stamp='0.607'>
+<phase name='parse_hir' stamp='0.607'>
+<bc code='182' bci='6'/>
+<method id='1096' holder='1093' name='print' return='977' arguments='983' flags='1' bytes='9' compile_id='884' compiler='c1' level='3' iicount='2278'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<bc code='184' bci='2'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='3145'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='10'/>
+<method id='1101' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1102' holder='983' name='toString' return='983' flags='1' bytes='2' compile_id='777' compiler='c1' level='1' iicount='2465'/>
+<parse method='1102'>
+<parse_done stamp='0.607'/>
+</parse>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1104' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='3760'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1109' holder='1093' name='newLine' return='977' flags='2' bytes='73' compile_id='923' compiler='c1' level='3' iicount='606'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.607'/>
+</phase>
+<parse_done stamp='0.607'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.607'>
+<phase_done name='optimize_blocks' stamp='0.607'/>
+</phase>
+<phase name='gvn' stamp='0.607'>
+<phase_done name='gvn' stamp='0.607'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.607'>
+<phase_done name='rangeCheckElimination' stamp='0.607'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.607'>
+<phase_done name='optimize_null_checks' stamp='0.607'/>
+</phase>
+<phase_done name='buildIR' stamp='0.607'/>
+</phase>
+<phase name='emit_lir' stamp='0.607'>
+<phase name='lirGeneration' stamp='0.607'>
+<phase_done name='lirGeneration' stamp='0.607'/>
+</phase>
+<phase name='linearScan' stamp='0.607'>
+<phase_done name='linearScan' stamp='0.608'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.608'/>
+</phase>
+<phase name='codeemit' stamp='0.608'>
+<phase_done name='codeemit' stamp='0.608'/>
+</phase>
+<phase name='codeinstall' stamp='0.608'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.608'/>
+</phase>
+<code_cache total_blobs='1597' nmethods='976' adapters='270' free_code_cache='245954048'/>
+<task_done success='1' nmsize='1240' count='418' inlined_bytes='25' stamp='0.608'/>
+</task>
+<task compile_id='990' method='java.util.Formatter$FormatSpecifier conversion (C)C' bytes='90' count='434' iicount='434' level='3' stamp='0.608'>
+<phase name='setup' stamp='0.608'>
+<phase_done name='setup' stamp='0.608'/>
+</phase>
+<phase name='buildIR' stamp='0.608'>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='conversion' return='970' arguments='970' flags='2' bytes='90' iicount='434'/>
+<parse method='1094'  stamp='0.608'>
+<phase name='parse_hir' stamp='0.608'>
+<bc code='184' bci='16'/>
+<type id='969' name='boolean'/>
+<klass id='1096' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1097' holder='1096' name='isValid' return='969' arguments='970' flags='8' bytes='47' compile_id='963' compiler='c1' level='3' iicount='434'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='30'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1100' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' compile_id='846' compiler='c1' level='3' iicount='1489'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='33'/>
+<type id='977' name='void'/>
+<klass id='1099' name='java.util.UnknownFormatConversionException' unloaded='1'/>
+<method id='1102' holder='1099' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='41'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1103' holder='1070' name='isUpperCase' return='969' arguments='970' flags='9' bytes='5' compile_id='964' compiler='c1' level='3' iicount='434'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='184' bci='1'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1070' name='isUpperCase' return='969' arguments='975' flags='9' bytes='25' compile_id='965' compiler='c1' level='3' iicount='435'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='1'/>
+<method id='1108' holder='1070' name='getType' return='975' arguments='975' flags='9' bytes='9' compile_id='934' compiler='c1' level='3' iicount='439'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='1'/>
+<klass id='1110' name='java.lang.CharacterData' flags='1024'/>
+<method id='1111' holder='1110' name='of' return='1110' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1113' holder='1110' name='getType' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='13'/>
+<method id='1114' holder='1110' name='isOtherUppercase' return='969' arguments='975' flags='0' bytes='2' iicount='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='184' bci='54'/>
+<klass id='1115' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1118' holder='1115' name='access$100' return='1115' arguments='1115 1115' flags='4104' bytes='6' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='2'/>
+<method id='1120' holder='1115' name='add' return='1115' arguments='1115' flags='2' bytes='15' iicount='1'/>
+<call method='1120' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='182' bci='6'/>
+<method id='1122' holder='1115' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse method='1122'>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='184' bci='63'/>
+<method id='1124' holder='1070' name='toLowerCase' return='970' arguments='970' flags='9' bytes='6' iicount='71'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='184' bci='1'/>
+<method id='1126' holder='1070' name='toLowerCase' return='975' arguments='975' flags='9' bytes='9' compile_id='171' compiler='c1' level='3' iicount='754'/>
+<call method='1126' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='184' bci='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1128' holder='1110' name='toLowerCase' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.608'/>
+</parse>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='184' bci='73'/>
+<method id='1129' holder='1096' name='isText' return='969' arguments='970' flags='8' bytes='32' compile_id='991' compiler='c1' level='3' iicount='440'/>
+<call method='1129' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.608'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.608'/>
+</phase>
+<parse_done stamp='0.608'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.608'>
+<phase_done name='optimize_blocks' stamp='0.608'/>
+</phase>
+<phase name='gvn' stamp='0.608'>
+<phase_done name='gvn' stamp='0.608'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.608'>
+<phase_done name='rangeCheckElimination' stamp='0.608'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.608'>
+<phase_done name='optimize_null_checks' stamp='0.608'/>
+</phase>
+<phase_done name='buildIR' stamp='0.608'/>
+</phase>
+<phase name='emit_lir' stamp='0.608'>
+<phase name='lirGeneration' stamp='0.608'>
+<phase_done name='lirGeneration' stamp='0.609'/>
+</phase>
+<phase name='linearScan' stamp='0.609'>
+<phase_done name='linearScan' stamp='0.609'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.609'/>
+</phase>
+<phase name='codeemit' stamp='0.609'>
+<phase_done name='codeemit' stamp='0.609'/>
+</phase>
+<phase name='codeinstall' stamp='0.609'>
+<dependency type='leaf_type' ctxk='1115'/>
+<phase_done name='codeinstall' stamp='0.609'/>
+</phase>
+<code_cache total_blobs='1602' nmethods='981' adapters='270' free_code_cache='245924224'/>
+<task_done success='1' nmsize='2600' count='450' inlined_bytes='112' stamp='0.609'/>
+</task>
+<fragment>
+<![CDATA[
+<task compile_id='982' method='java.util.Formatter$FormatSpecifier print (DLjava/util/Locale;)V' bytes='160' count='434' iicount='434' level='3' stamp='0.609'>
+<phase name='setup' stamp='0.609'>
+<phase_done name='setup' stamp='0.609'/>
+</phase>
+<phase name='buildIR' stamp='0.609'>
+<type id='977' name='void'/>
+<type id='972' name='double'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1095' holder='1093' name='print' return='977' arguments='972 1094' flags='2' bytes='160' iicount='435'/>
+<parse method='1095'  stamp='0.609'>
+<phase name='parse_hir' stamp='0.609'>
+<bc code='183' bci='4'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1097' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='5271'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1099' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='961' compiler='c2' level='4' iicount='5250'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1101' holder='1073' name='compare' return='975' arguments='972 972' flags='9' bytes='54' iicount='438'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='26'/>
+<type id='969' name='boolean'/>
+<method id='1103' holder='1073' name='isNaN' return='969' arguments='972' flags='9' bytes='12' compile_id='916' compiler='c1' level='3' iicount='858'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='33'/>
+<klass id='1105' name='java.lang.Math' flags='17'/>
+<method id='1106' holder='1105' name='abs' return='972' arguments='972' flags='9' bytes='14' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='43'/>
+<method id='1108' holder='1093' name='leadingSign' return='1050' arguments='1050 969' flags='2' bytes='82' compile_id='977' compiler='c1' level='3' iicount='447'/>
+<call method='1108' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='49'/>
+<method id='1111' holder='1073' name='isInfinite' return='969' arguments='972' flags='9' bytes='22' iicount='440'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='183' bci='75'/>
+<klass id='1110' name='java.util.Formatter$Flags' flags='10'/>
+<type id='970' name='char'/>
+<method id='1113' holder='1093' name='print' return='977' arguments='1050 972 1094 1110 970 975 969' flags='2' bytes='889' iicount='442'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='90'/>
+<method id='1117' holder='1110' name='contains' return='969' arguments='1110' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='4140'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1117'>
+<bc code='182' bci='5'/>
+<method id='1119' holder='1110' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1119'>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1119'>
+<parse_done stamp='0.610'/>
+</parse>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='103'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1123' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6667'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='2'/>
+<method id='1125' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1125' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='183' bci='112'/>
+<method id='1127' holder='1093' name='trailingSign' return='1050' arguments='1050 969' flags='2' bytes='26' compile_id='979' compiler='c1' level='3' iicount='452'/>
+<call method='1127' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='182' bci='11'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1117'>
+<bc code='182' bci='5'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1119'>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1119'>
+<parse_done stamp='0.610'/>
+</parse>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1130' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='6186'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='2'/>
+<method id='1132' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='962' compiler='c2' level='4' iicount='5864'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.610'/>
+</parse>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='128'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1117'>
+<bc code='182' bci='5'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1119'>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1110'/>
+<parse method='1119'>
+<parse_done stamp='0.610'/>
+</parse>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='141'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='2'/>
+<call method='1125' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='184' bci='150'/>
+<klass id='1137' name='java.lang.Appendable' flags='1537'/>
+<klass id='1136' name='java.util.Formatter' flags='17'/>
+<method id='1138' holder='1136' name='access$000' return='1137' arguments='1136' flags='4104' bytes='5' compile_id='883' compiler='c1' level='1' iicount='142'/>
+<call method='1138' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='183' bci='155'/>
+<klass id='1140' name='java.lang.CharSequence' flags='1537'/>
+<method id='1141' holder='1093' name='appendJustified' return='1137' arguments='1137 1140' flags='2' bytes='91' compile_id='972' compiler='c1' level='3' iicount='460'/>
+<call method='1141' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.610'/>
+</phase>
+<parse_done stamp='0.610'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.610'>
+<phase_done name='optimize_blocks' stamp='0.610'/>
+</phase>
+<phase name='gvn' stamp='0.610'>
+<phase_done name='gvn' stamp='0.610'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.610'>
+<phase_done name='rangeCheckElimination' stamp='0.610'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.610'>
+<phase_done name='optimize_null_checks' stamp='0.610'/>
+</phase>
+<phase_done name='buildIR' stamp='0.610'/>
+</phase>
+<phase name='emit_lir' stamp='0.610'>
+<phase name='lirGeneration' stamp='0.610'>
+<phase_done name='lirGeneration' stamp='0.610'/>
+</phase>
+<phase name='linearScan' stamp='0.610'>
+<phase_done name='linearScan' stamp='0.611'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.611'/>
+</phase>
+<phase name='codeemit' stamp='0.611'>
+<phase_done name='codeemit' stamp='0.611'/>
+</phase>
+<phase name='codeinstall' stamp='0.611'>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='25167'>
+<start_compile_thread name='C1 CompilerThread9' thread='25167' process='25109' stamp='0.107'/>
+<task compile_id='2' method='java.lang.StringUTF16 getChar ([BI)C' bytes='60' count='371' iicount='375' level='3' stamp='0.109'>
+<phase name='setup' stamp='0.109'>
+<phase_done name='setup' stamp='0.109'/>
+</phase>
+<phase name='buildIR' stamp='0.109'>
+<type id='970' name='char'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringUTF16' flags='16'/>
+<method id='1094' holder='1093' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' iicount='512'/>
+<parse method='1094'  stamp='0.109'>
+<phase name='parse_hir' stamp='0.109'>
+<phase_done name='parse_hir' stamp='0.109'/>
+</phase>
+<parse_done stamp='0.109'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.109'>
+<phase_done name='optimize_blocks' stamp='0.109'/>
+</phase>
+<phase name='gvn' stamp='0.109'>
+<phase_done name='gvn' stamp='0.109'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.109'>
+<phase_done name='rangeCheckElimination' stamp='0.109'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.109'>
+<phase_done name='optimize_null_checks' stamp='0.109'/>
+</phase>
+<phase_done name='buildIR' stamp='0.109'/>
+</phase>
+<phase name='emit_lir' stamp='0.109'>
+<phase name='lirGeneration' stamp='0.109'>
+<phase_done name='lirGeneration' stamp='0.109'/>
+</phase>
+<phase name='linearScan' stamp='0.109'>
+<phase_done name='linearScan' stamp='0.109'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.109'/>
+</phase>
+<phase name='codeemit' stamp='0.109'>
+<phase_done name='codeemit' stamp='0.109'/>
+</phase>
+<phase name='codeinstall' stamp='0.109'>
+<phase_done name='codeinstall' stamp='0.110'/>
+</phase>
+<code_cache total_blobs='238' nmethods='2' adapters='129' free_code_cache='248791808'/>
+<task_done success='1' nmsize='432' count='512' stamp='0.110'/>
+</task>
+<task compile_id='6' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='546' iicount='546' level='3' stamp='0.116'>
+<phase name='setup' stamp='0.116'>
+<phase_done name='setup' stamp='0.116'/>
+</phase>
+<phase name='buildIR' stamp='0.116'>
+<type id='970' name='char'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' iicount='564'/>
+<parse method='1094'  stamp='0.116'>
+<phase name='parse_hir' stamp='0.116'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.116'/>
+</phase>
+<parse_done stamp='0.116'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.116'>
+<phase_done name='optimize_blocks' stamp='0.116'/>
+</phase>
+<phase name='gvn' stamp='0.116'>
+<phase_done name='gvn' stamp='0.116'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.116'>
+<phase_done name='rangeCheckElimination' stamp='0.116'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.116'>
+<phase_done name='optimize_null_checks' stamp='0.116'/>
+</phase>
+<phase_done name='buildIR' stamp='0.116'/>
+</phase>
+<phase name='emit_lir' stamp='0.116'>
+<phase name='lirGeneration' stamp='0.116'>
+<phase_done name='lirGeneration' stamp='0.117'/>
+</phase>
+<phase name='linearScan' stamp='0.117'>
+<phase_done name='linearScan' stamp='0.117'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.117'/>
+</phase>
+<phase name='codeemit' stamp='0.117'>
+<phase_done name='codeemit' stamp='0.117'/>
+</phase>
+<phase name='codeinstall' stamp='0.117'>
+<phase_done name='codeinstall' stamp='0.117'/>
+</phase>
+<code_cache total_blobs='296' nmethods='5' adapters='150' free_code_cache='248771456'/>
+<task_done success='1' nmsize='584' count='622' stamp='0.117'/>
+</task>
+<task compile_id='9' method='java.lang.Object &lt;init&gt; ()V' bytes='1' count='776' iicount='776' level='3' stamp='0.123'>
+<phase name='setup' stamp='0.123'>
+<phase_done name='setup' stamp='0.123'/>
+</phase>
+<phase name='buildIR' stamp='0.123'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1093' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' iicount='776'/>
+<parse method='1093'  stamp='0.123'>
+<phase name='parse_hir' stamp='0.123'>
+<phase_done name='parse_hir' stamp='0.123'/>
+</phase>
+<parse_done stamp='0.123'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.123'>
+<phase_done name='optimize_blocks' stamp='0.123'/>
+</phase>
+<phase name='gvn' stamp='0.123'>
+<phase_done name='gvn' stamp='0.123'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.123'>
+<phase_done name='rangeCheckElimination' stamp='0.123'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.123'>
+<phase_done name='optimize_null_checks' stamp='0.123'/>
+</phase>
+<phase_done name='buildIR' stamp='0.123'/>
+</phase>
+<phase name='emit_lir' stamp='0.123'>
+<phase name='lirGeneration' stamp='0.123'>
+<phase_done name='lirGeneration' stamp='0.123'/>
+</phase>
+<phase name='linearScan' stamp='0.123'>
+<phase_done name='linearScan' stamp='0.123'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.123'/>
+</phase>
+<phase name='codeemit' stamp='0.124'>
+<phase_done name='codeemit' stamp='0.124'/>
+</phase>
+<phase name='codeinstall' stamp='0.124'>
+<phase_done name='codeinstall' stamp='0.124'/>
+</phase>
+<code_cache total_blobs='306' nmethods='9' adapters='157' free_code_cache='248760832'/>
+<task_done success='1' nmsize='336' count='776' stamp='0.124'/>
+</task>
+<task compile_id='16' method='java.util.Collections$EmptySet hashCode ()I' bytes='2' count='151' iicount='151' level='1' stamp='0.131'>
+<phase name='setup' stamp='0.131'>
+<phase_done name='setup' stamp='0.131'/>
+</phase>
+<phase name='buildIR' stamp='0.131'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Collections$EmptySet' flags='10'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='2' iicount='151'/>
+<parse method='1094'  stamp='0.131'>
+<phase name='parse_hir' stamp='0.131'>
+<phase_done name='parse_hir' stamp='0.131'/>
+</phase>
+<parse_done stamp='0.131'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.131'>
+<phase_done name='optimize_blocks' stamp='0.131'/>
+</phase>
+<phase name='gvn' stamp='0.131'>
+<phase_done name='gvn' stamp='0.131'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.131'>
+<phase_done name='rangeCheckElimination' stamp='0.131'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.131'>
+<phase_done name='optimize_null_checks' stamp='0.131'/>
+</phase>
+<phase_done name='buildIR' stamp='0.131'/>
+</phase>
+<phase name='emit_lir' stamp='0.131'>
+<phase name='lirGeneration' stamp='0.131'>
+<phase_done name='lirGeneration' stamp='0.131'/>
+</phase>
+<phase name='linearScan' stamp='0.131'>
+<phase_done name='linearScan' stamp='0.131'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.131'/>
+</phase>
+<phase name='codeemit' stamp='0.131'>
+<phase_done name='codeemit' stamp='0.131'/>
+</phase>
+<phase name='codeinstall' stamp='0.131'>
+<phase_done name='codeinstall' stamp='0.132'/>
+</phase>
+<code_cache total_blobs='315' nmethods='16' adapters='158' free_code_cache='248748672'/>
+<task_done success='1' nmsize='272' count='164' stamp='0.132'/>
+</task>
+<task compile_id='20' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='280' iicount='280' level='3' stamp='0.132'>
+<phase name='setup' stamp='0.132'>
+<phase_done name='setup' stamp='0.132'/>
+</phase>
+<phase name='buildIR' stamp='0.132'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Objects' flags='17'/>
+<method id='1094' holder='1093' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' iicount='280'/>
+<parse method='1094'  stamp='0.132'>
+<phase name='parse_hir' stamp='0.132'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1096' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.132'/>
+</phase>
+<parse_done stamp='0.132'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.132'>
+<phase_done name='optimize_blocks' stamp='0.132'/>
+</phase>
+<phase name='gvn' stamp='0.132'>
+<phase_done name='gvn' stamp='0.132'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.132'>
+<phase_done name='rangeCheckElimination' stamp='0.132'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.132'>
+<phase_done name='optimize_null_checks' stamp='0.132'/>
+</phase>
+<phase_done name='buildIR' stamp='0.132'/>
+</phase>
+<phase name='emit_lir' stamp='0.132'>
+<phase name='lirGeneration' stamp='0.132'>
+<phase_done name='lirGeneration' stamp='0.132'/>
+</phase>
+<phase name='linearScan' stamp='0.132'>
+<phase_done name='linearScan' stamp='0.132'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.132'/>
+</phase>
+<phase name='codeemit' stamp='0.132'>
+<phase_done name='codeemit' stamp='0.132'/>
+</phase>
+<phase name='codeinstall' stamp='0.132'>
+<phase_done name='codeinstall' stamp='0.132'/>
+</phase>
+<code_cache total_blobs='318' nmethods='19' adapters='158' free_code_cache='248744576'/>
+<task_done success='1' nmsize='552' count='456' stamp='0.132'/>
+</task>
+<task compile_id='24' method='java.util.AbstractSet &lt;init&gt; ()V' bytes='5' count='263' iicount='263' level='3' stamp='0.133'>
+<phase name='setup' stamp='0.133'>
+<phase_done name='setup' stamp='0.133'/>
+</phase>
+<phase name='buildIR' stamp='0.133'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.AbstractSet' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='265'/>
+<parse method='1094'  stamp='0.133'>
+<phase name='parse_hir' stamp='0.133'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='327'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1805'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.133'/>
+</parse>
+<parse_done stamp='0.133'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.133'/>
+</phase>
+<parse_done stamp='0.133'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.133'>
+<phase_done name='optimize_blocks' stamp='0.133'/>
+</phase>
+<phase name='gvn' stamp='0.133'>
+<phase_done name='gvn' stamp='0.133'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.133'>
+<phase_done name='rangeCheckElimination' stamp='0.133'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.133'>
+<phase_done name='optimize_null_checks' stamp='0.133'/>
+</phase>
+<phase_done name='buildIR' stamp='0.133'/>
+</phase>
+<phase name='emit_lir' stamp='0.133'>
+<phase name='lirGeneration' stamp='0.133'>
+<phase_done name='lirGeneration' stamp='0.133'/>
+</phase>
+<phase name='linearScan' stamp='0.133'>
+<phase_done name='linearScan' stamp='0.133'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.133'/>
+</phase>
+<phase name='codeemit' stamp='0.133'>
+<phase_done name='codeemit' stamp='0.133'/>
+</phase>
+<phase name='codeinstall' stamp='0.133'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.133'/>
+</phase>
+<code_cache total_blobs='322' nmethods='23' adapters='158' free_code_cache='248739200'/>
+<task_done success='1' nmsize='528' count='303' inlined_bytes='6' stamp='0.133'/>
+</task>
+<task compile_id='27' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='12' count='265' iicount='265' level='3' stamp='0.133'>
+<phase name='setup' stamp='0.133'>
+<phase_done name='setup' stamp='0.133'/>
+</phase>
+<phase name='buildIR' stamp='0.133'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983 1094' flags='9' bytes='12' iicount='268'/>
+<parse method='1096'  stamp='0.133'>
+<phase name='parse_hir' stamp='0.133'>
+<bc code='185' bci='6'/>
+<klass id='1098' name='jdk.internal.misc.JavaLangModuleAccess' flags='1537'/>
+<method id='1102' holder='1098' name='newExports' return='1095' arguments='1094 983 1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1100' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<method id='1103' holder='1100' name='newExports' return='1095' arguments='1094 983 1094' flags='1' bytes='13' iicount='271'/>
+<parse method='1103'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1100' flags='4096' bytes='10' compile_id='17' compiler='c1' level='3' iicount='519'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='6'/>
+<method id='1107' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='18' compiler='c1' level='3' iicount='529'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1109' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2131'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.134'/>
+</phase>
+<parse_done stamp='0.134'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.134'>
+<phase_done name='optimize_blocks' stamp='0.134'/>
+</phase>
+<phase name='gvn' stamp='0.134'>
+<phase_done name='gvn' stamp='0.134'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.134'>
+<phase_done name='rangeCheckElimination' stamp='0.134'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.134'>
+<phase_done name='optimize_null_checks' stamp='0.134'/>
+</phase>
+<phase_done name='buildIR' stamp='0.134'/>
+</phase>
+<phase name='emit_lir' stamp='0.134'>
+<phase name='lirGeneration' stamp='0.134'>
+<phase_done name='lirGeneration' stamp='0.134'/>
+</phase>
+<phase name='linearScan' stamp='0.134'>
+<phase_done name='linearScan' stamp='0.134'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.134'/>
+</phase>
+<phase name='codeemit' stamp='0.134'>
+<phase_done name='codeemit' stamp='0.134'/>
+</phase>
+<phase name='codeinstall' stamp='0.134'>
+<dependency type='leaf_type' ctxk='1100'/>
+<phase_done name='codeinstall' stamp='0.134'/>
+</phase>
+<code_cache total_blobs='327' nmethods='26' adapters='158' free_code_cache='248723584'/>
+<task_done success='1' nmsize='1104' count='305' inlined_bytes='44' stamp='0.134'/>
+</task>
+<task compile_id='31' method='jdk.internal.module.Builder newExports (Ljava/util/Set;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Exports;' bytes='11' count='259' iicount='259' level='3' stamp='0.134'>
+<phase name='setup' stamp='0.134'>
+<phase_done name='setup' stamp='0.134'/>
+</phase>
+<phase name='buildIR' stamp='0.134'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newExports' return='1095' arguments='1094 983' flags='9' bytes='11' iicount='272'/>
+<parse method='1096'  stamp='0.134'>
+<phase name='parse_hir' stamp='0.134'>
+<bc code='185' bci='5'/>
+<klass id='1098' name='jdk.internal.misc.JavaLangModuleAccess' flags='1537'/>
+<method id='1102' holder='1098' name='newExports' return='1095' arguments='1094 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1100' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<method id='1103' holder='1100' name='newExports' return='1095' arguments='1094 983' flags='1' bytes='15' iicount='272'/>
+<parse method='1103'>
+<bc code='184' bci='6'/>
+<klass id='1105' name='java.util.Collections' flags='1'/>
+<method id='1106' holder='1105' name='emptySet' return='1094' flags='25' bytes='4' compile_id='15' compiler='c1' level='3' iicount='693'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<method id='1111' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969 1100' flags='4096' bytes='10' compile_id='17' compiler='c1' level='3' iicount='601'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='6'/>
+<method id='1113' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' compile_id='18' compiler='c1' level='3' iicount='601'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2275'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.134'/>
+</phase>
+<parse_done stamp='0.134'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.134'>
+<phase_done name='optimize_blocks' stamp='0.134'/>
+</phase>
+<phase name='gvn' stamp='0.134'>
+<phase_done name='gvn' stamp='0.134'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.134'>
+<phase_done name='rangeCheckElimination' stamp='0.134'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.134'>
+<phase_done name='optimize_null_checks' stamp='0.134'/>
+</phase>
+<phase_done name='buildIR' stamp='0.134'/>
+</phase>
+<phase name='emit_lir' stamp='0.134'>
+<phase name='lirGeneration' stamp='0.134'>
+<phase_done name='lirGeneration' stamp='0.134'/>
+</phase>
+<phase name='linearScan' stamp='0.134'>
+<phase_done name='linearScan' stamp='0.135'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.135'/>
+</phase>
+<phase name='codeemit' stamp='0.135'>
+<phase_done name='codeemit' stamp='0.135'/>
+</phase>
+<phase name='codeinstall' stamp='0.135'>
+<dependency type='leaf_type' ctxk='1100'/>
+<phase_done name='codeinstall' stamp='0.135'/>
+</phase>
+<code_cache total_blobs='332' nmethods='31' adapters='158' free_code_cache='248724992'/>
+<task_done success='1' nmsize='1232' count='303' inlined_bytes='50' stamp='0.135'/>
+</task>
+<task compile_id='36' method='jdk.internal.module.Builder newRequires (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/module/ModuleDescriptor$Requires;' bytes='51' count='262' iicount='262' level='3' stamp='0.135'>
+<phase name='setup' stamp='0.135'>
+<phase_done name='setup' stamp='0.135'/>
+</phase>
+<phase name='buildIR' stamp='0.135'>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.Builder' flags='16'/>
+<method id='1096' holder='1093' name='newRequires' return='1095' arguments='1094 983 983' flags='9' bytes='51' iicount='262'/>
+<parse method='1096'  stamp='0.135'>
+<phase name='parse_hir' stamp='0.135'>
+<bc code='182' bci='19'/>
+<klass id='1099' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<method id='1101' holder='1099' name='toString' return='983' flags='1' bytes='5' iicount='84'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='182' bci='22'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='8' compiler='c1' level='3' iicount='1825'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='35'/>
+<method id='1105' holder='1099' name='parse' return='1099' arguments='983' flags='9' bytes='9' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1099' name='&lt;init&gt;' return='977' arguments='983' flags='2' bytes='488' iicount='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='185' bci='45'/>
+<klass id='1109' name='jdk.internal.misc.JavaLangModuleAccess' flags='1537'/>
+<method id='1111' holder='1109' name='newRequires' return='1095' arguments='1094 983 1099' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' instr='invokeinterface'/>
+<inline_success reason='receiver is statically known'/>
+<klass id='1098' name='java.lang.module.ModuleDescriptor$1' flags='0'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<method id='1112' holder='1098' name='newRequires' return='1095' arguments='1094 983 1099' flags='1' bytes='13' iicount='322'/>
+<parse method='1112'>
+<bc code='183' bci='9'/>
+<method id='1114' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1099 969 1098' flags='4096' bytes='10' iicount='338'/>
+<call method='1114' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='6'/>
+<method id='1116' holder='1095' name='&lt;init&gt;' return='977' arguments='1094 983 1099 969' flags='2' bytes='25' iicount='349'/>
+<call method='1116' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='183' bci='1'/>
+<method id='1118' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2678'/>
+<call method='1118' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.136'/>
+</parse>
+<parse_done stamp='0.136'/>
+</parse>
+<parse_done stamp='0.136'/>
+</parse>
+<parse_done stamp='0.136'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.136'/>
+</phase>
+<parse_done stamp='0.136'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.136'>
+<phase_done name='optimize_blocks' stamp='0.136'/>
+</phase>
+<phase name='gvn' stamp='0.136'>
+<phase_done name='gvn' stamp='0.136'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.136'>
+<phase_done name='rangeCheckElimination' stamp='0.136'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.136'>
+<phase_done name='optimize_null_checks' stamp='0.136'/>
+</phase>
+<phase_done name='buildIR' stamp='0.136'/>
+</phase>
+<phase name='emit_lir' stamp='0.136'>
+<phase name='lirGeneration' stamp='0.136'>
+<phase_done name='lirGeneration' stamp='0.136'/>
+</phase>
+<phase name='linearScan' stamp='0.136'>
+<phase_done name='linearScan' stamp='0.136'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.136'/>
+</phase>
+<phase name='codeemit' stamp='0.136'>
+<phase_done name='codeemit' stamp='0.136'/>
+</phase>
+<phase name='codeinstall' stamp='0.136'>
+<dependency type='leaf_type' ctxk='1098'/>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='339' nmethods='38' adapters='158' free_code_cache='248705664'/>
+<task_done success='1' nmsize='2008' count='349' inlined_bytes='63' stamp='0.136'/>
+</task>
+<task compile_id='43' method='java.nio.DirectLongBufferU ix (I)J' bytes='10' count='296' iicount='296' level='3' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.138'/>
+</phase>
+<phase name='buildIR' stamp='0.138'>
+<type id='976' name='long'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.DirectLongBufferU' flags='0'/>
+<method id='1094' holder='1093' name='ix' return='976' arguments='975' flags='2' bytes='10' iicount='302'/>
+<parse method='1094'  stamp='0.138'>
+<phase name='parse_hir' stamp='0.138'>
+<phase_done name='parse_hir' stamp='0.138'/>
+</phase>
+<parse_done stamp='0.138'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.138'>
+<phase_done name='optimize_blocks' stamp='0.138'/>
+</phase>
+<phase name='gvn' stamp='0.138'>
+<phase_done name='gvn' stamp='0.138'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.138'>
+<phase_done name='rangeCheckElimination' stamp='0.138'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.138'>
+<phase_done name='optimize_null_checks' stamp='0.138'/>
+</phase>
+<phase_done name='buildIR' stamp='0.138'/>
+</phase>
+<phase name='emit_lir' stamp='0.138'>
+<phase name='lirGeneration' stamp='0.138'>
+<phase_done name='lirGeneration' stamp='0.138'/>
+</phase>
+<phase name='linearScan' stamp='0.138'>
+<phase_done name='linearScan' stamp='0.138'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.138'/>
+</phase>
+<phase name='codeemit' stamp='0.138'>
+<phase_done name='codeemit' stamp='0.138'/>
+</phase>
+<phase name='codeinstall' stamp='0.138'>
+<phase_done name='codeinstall' stamp='0.138'/>
+</phase>
+<code_cache total_blobs='343' nmethods='42' adapters='158' free_code_cache='248700032'/>
+<task_done success='1' nmsize='368' count='367' stamp='0.138'/>
+</task>
+<task compile_id='47' method='java.net.URI hash (ILjava/lang/String;)I' bytes='33' count='340' iicount='340' level='3' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.138'/>
+</phase>
+<phase name='buildIR' stamp='0.138'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.net.URI' flags='17'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='975 983' flags='10' bytes='33' iicount='340'/>
+<parse method='1094'  stamp='0.138'>
+<phase name='parse_hir' stamp='0.138'>
+<bc code='182' bci='9'/>
+<method id='1096' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' iicount='112'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='3'/>
+<method id='1098' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='127'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='1' compiler='c1' level='3' iicount='5214'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.139'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1103' name='java.lang.StringLatin1' flags='16'/>
+<method id='1104' holder='1103' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='127'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1106' name='java.lang.StringUTF16' flags='16'/>
+<method id='1107' holder='1106' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.139'/>
+</parse>
+<parse_done stamp='0.139'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1109' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='4478'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='29'/>
+<method id='1111' holder='1093' name='normalizedHash' return='975' arguments='975 983' flags='10' bytes='84' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.139'/>
+</phase>
+<parse_done stamp='0.139'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.139'>
+<phase_done name='optimize_blocks' stamp='0.139'/>
+</phase>
+<phase name='gvn' stamp='0.139'>
+<phase_done name='gvn' stamp='0.139'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.139'>
+<phase_done name='rangeCheckElimination' stamp='0.139'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.139'>
+<phase_done name='optimize_null_checks' stamp='0.139'/>
+</phase>
+<phase_done name='buildIR' stamp='0.139'/>
+</phase>
+<phase name='emit_lir' stamp='0.139'>
+<phase name='lirGeneration' stamp='0.139'>
+<phase_done name='lirGeneration' stamp='0.139'/>
+</phase>
+<phase name='linearScan' stamp='0.139'>
+<phase_done name='linearScan' stamp='0.139'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.139'/>
+</phase>
+<phase name='codeemit' stamp='0.139'>
+<phase_done name='codeemit' stamp='0.139'/>
+</phase>
+<phase name='codeinstall' stamp='0.139'>
+<phase_done name='codeinstall' stamp='0.139'/>
+</phase>
+<code_cache total_blobs='349' nmethods='48' adapters='158' free_code_cache='248692096'/>
+<task_done success='1' nmsize='1592' count='396' inlined_bytes='55' stamp='0.139'/>
+</task>
+<task compile_id='53' method='jdk.internal.misc.Unsafe getObjectAcquire (Ljava/lang/Object;J)Ljava/lang/Object;' bytes='7' count='640' iicount='640' level='3' stamp='0.144'>
+<phase name='setup' stamp='0.144'>
+<phase_done name='setup' stamp='0.144'/>
+</phase>
+<phase name='buildIR' stamp='0.144'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1093' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' iicount='640'/>
+<parse method='1093'  stamp='0.144'>
+<phase name='parse_hir' stamp='0.144'>
+<bc code='182' bci='3'/>
+<method id='1095' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='54' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.144'/>
+</phase>
+<parse_done stamp='0.144'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.144'>
+<phase_done name='optimize_blocks' stamp='0.144'/>
+</phase>
+<phase name='gvn' stamp='0.144'>
+<phase_done name='gvn' stamp='0.144'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.144'>
+<phase_done name='rangeCheckElimination' stamp='0.144'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.144'>
+<phase_done name='optimize_null_checks' stamp='0.144'/>
+</phase>
+<phase_done name='buildIR' stamp='0.144'/>
+</phase>
+<phase name='emit_lir' stamp='0.144'>
+<phase name='lirGeneration' stamp='0.144'>
+<phase_done name='lirGeneration' stamp='0.144'/>
+</phase>
+<phase name='linearScan' stamp='0.144'>
+<phase_done name='linearScan' stamp='0.144'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.144'/>
+</phase>
+<phase name='codeemit' stamp='0.144'>
+<phase_done name='codeemit' stamp='0.144'/>
+</phase>
+<phase name='codeinstall' stamp='0.144'>
+<phase_done name='codeinstall' stamp='0.144'/>
+</phase>
+<code_cache total_blobs='360' nmethods='53' adapters='162' free_code_cache='248684800'/>
+<task_done success='1' nmsize='432' count='640' stamp='0.144'/>
+</task>
+<task compile_id='59' method='java.util.concurrent.ConcurrentHashMap casTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z' bytes='21' count='270' iicount='270' level='3' stamp='0.145'>
+<phase name='setup' stamp='0.145'>
+<phase_done name='setup' stamp='0.145'/>
+</phase>
+<phase name='buildIR' stamp='0.145'>
+<type id='969' name='boolean'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='casTabAt' return='969' arguments='1095 975 1094 1094' flags='24' bytes='21' iicount='271'/>
+<parse method='1096'  stamp='0.145'>
+<phase name='parse_hir' stamp='0.145'>
+<bc code='182' bci='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='compareAndSetObject' return='969' arguments='982 976 982 982' flags='273' bytes='0' compile_id='57' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.145'/>
+</phase>
+<parse_done stamp='0.145'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.145'>
+<phase_done name='optimize_blocks' stamp='0.145'/>
+</phase>
+<phase name='gvn' stamp='0.145'>
+<phase_done name='gvn' stamp='0.145'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.145'>
+<phase_done name='rangeCheckElimination' stamp='0.145'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.145'>
+<phase_done name='optimize_null_checks' stamp='0.145'/>
+</phase>
+<phase_done name='buildIR' stamp='0.145'/>
+</phase>
+<phase name='emit_lir' stamp='0.145'>
+<phase name='lirGeneration' stamp='0.145'>
+<phase_done name='lirGeneration' stamp='0.145'/>
+</phase>
+<phase name='linearScan' stamp='0.145'>
+<phase_done name='linearScan' stamp='0.145'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.145'/>
+</phase>
+<phase name='codeemit' stamp='0.145'>
+<phase_done name='codeemit' stamp='0.145'/>
+</phase>
+<phase name='codeinstall' stamp='0.145'>
+<phase_done name='codeinstall' stamp='0.145'/>
+</phase>
+<code_cache total_blobs='366' nmethods='59' adapters='162' free_code_cache='248677888'/>
+<task_done success='1' nmsize='464' count='274' stamp='0.145'/>
+</task>
+<task compile_id='61' method='java.util.concurrent.ConcurrentHashMap addCount (JI)V' bytes='289' count='259' backedge_count='3' iicount='259' level='3' stamp='0.145'>
+<phase name='setup' stamp='0.145'>
+<phase_done name='setup' stamp='0.145'/>
+</phase>
+<phase name='buildIR' stamp='0.145'>
+<type id='977' name='void'/>
+<type id='976' name='long'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='addCount' return='977' arguments='976 975' flags='18' bytes='289' iicount='259'/>
+<parse method='1094'  stamp='0.145'>
+<phase name='parse_hir' stamp='0.145'>
+<bc code='182' bci='31'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='compareAndSetLong' return='969' arguments='982 976 976 976' flags='273' bytes='0' compile_id='62' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='58'/>
+<klass id='1101' name='java.util.concurrent.ThreadLocalRandom' unloaded='1'/>
+<method id='1102' holder='1101' name='getProbe' return='975' unloaded='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='91'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='115'/>
+<method id='1103' holder='1093' name='sumCount' return='976' flags='16' bytes='48' iicount='4'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='161'/>
+<method id='1107' holder='1093' name='resizeStamp' return='975' arguments='975' flags='24' bytes='8' iicount='6'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='1'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1109' holder='1076' name='numberOfLeadingZeros' return='975' arguments='975' flags='9' bytes='76' iicount='7'/>
+<call method='1109' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.145'/>
+</parse>
+<bc code='182' bci='233'/>
+<method id='1111' holder='1051' name='compareAndSetInt' return='969' arguments='982 976 975 975' flags='273' bytes='0' iicount='24'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='244'/>
+<klass id='1106' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<method id='1112' holder='1093' name='transfer' return='977' arguments='1106 1106' flags='18' bytes='828' iicount='3'/>
+<call method='1112' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='266'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='276'/>
+<call method='1112' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='280'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='104'/>
+<method id='1114' holder='1093' name='fullAddCount' return='977' arguments='976 969' flags='18' bytes='487' iicount='1'/>
+<call method='1114' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.145'/>
+</phase>
+<parse_done stamp='0.145'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.145'>
+<phase_done name='optimize_blocks' stamp='0.145'/>
+</phase>
+<phase name='gvn' stamp='0.145'>
+<phase_done name='gvn' stamp='0.146'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.146'>
+<phase_done name='rangeCheckElimination' stamp='0.146'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.146'>
+<phase_done name='optimize_null_checks' stamp='0.146'/>
+</phase>
+<phase_done name='buildIR' stamp='0.146'/>
+</phase>
+<phase name='emit_lir' stamp='0.146'>
+<phase name='lirGeneration' stamp='0.146'>
+<phase_done name='lirGeneration' stamp='0.146'/>
+</phase>
+<phase name='linearScan' stamp='0.146'>
+<phase_done name='linearScan' stamp='0.146'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.146'/>
+</phase>
+<phase name='codeemit' stamp='0.146'>
+<phase_done name='codeemit' stamp='0.146'/>
+</phase>
+<phase name='codeinstall' stamp='0.146'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.146'/>
+</phase>
+<code_cache total_blobs='369' nmethods='62' adapters='162' free_code_cache='248671104'/>
+<task_done success='1' nmsize='2760' count='259' backedge_count='3' inlined_bytes='8' stamp='0.146'/>
+</task>
+<task compile_id='66' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='276' iicount='276' level='3' stamp='0.148'>
+<phase name='setup' stamp='0.148'>
+<phase_done name='setup' stamp='0.148'/>
+</phase>
+<phase name='buildIR' stamp='0.148'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' iicount='278'/>
+<parse method='1094'  stamp='0.148'>
+<phase name='parse_hir' stamp='0.148'>
+<bc code='182' bci='9'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.148'/>
+</phase>
+<parse_done stamp='0.148'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.148'>
+<phase_done name='optimize_blocks' stamp='0.148'/>
+</phase>
+<phase name='gvn' stamp='0.148'>
+<phase_done name='gvn' stamp='0.148'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.148'>
+<phase_done name='rangeCheckElimination' stamp='0.148'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.148'>
+<phase_done name='optimize_null_checks' stamp='0.148'/>
+</phase>
+<phase_done name='buildIR' stamp='0.148'/>
+</phase>
+<phase name='emit_lir' stamp='0.148'>
+<phase name='lirGeneration' stamp='0.148'>
+<phase_done name='lirGeneration' stamp='0.148'/>
+</phase>
+<phase name='linearScan' stamp='0.148'>
+<phase_done name='linearScan' stamp='0.148'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.148'/>
+</phase>
+<phase name='codeemit' stamp='0.148'>
+<phase_done name='codeemit' stamp='0.148'/>
+</phase>
+<phase name='codeinstall' stamp='0.148'>
+<phase_done name='codeinstall' stamp='0.148'/>
+</phase>
+<code_cache total_blobs='373' nmethods='66' adapters='162' free_code_cache='248655616'/>
+<task_done success='1' nmsize='584' count='357' stamp='0.148'/>
+</task>
+<task compile_id='69' method='java.lang.module.ModuleDescriptor$Requires name ()Ljava/lang/String;' bytes='5' count='149' iicount='149' level='1' stamp='0.148'>
+<phase name='setup' stamp='0.148'>
+<phase_done name='setup' stamp='0.148'/>
+</phase>
+<phase name='buildIR' stamp='0.148'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1094' holder='1093' name='name' return='983' flags='1' bytes='5' iicount='155'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='375' nmethods='68' adapters='162' free_code_cache='248654080'/>
+<task_done success='1' nmsize='272' count='182' stamp='0.149'/>
+</task>
+<task compile_id='73' method='java.util.HashMap put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;' bytes='13' count='321' iicount='321' level='3' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='put' return='982' arguments='982 982' flags='1' bytes='13' iicount='329'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='697'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='146'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.149'/>
+</parse>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' iicount='354'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='379' nmethods='72' adapters='162' free_code_cache='248644352'/>
+<task_done success='1' nmsize='952' count='381' inlined_bytes='20' stamp='0.149'/>
+</task>
+<task compile_id='77' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='378' iicount='378' level='3' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' iicount='378'/>
+<parse method='1094'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='381' nmethods='74' adapters='162' free_code_cache='248642048'/>
+<task_done success='1' nmsize='336' count='378' stamp='0.150'/>
+</task>
+<task compile_id='78' method='java.lang.module.ModuleDescriptor provides ()Ljava/util/Set;' bytes='5' count='142' iicount='142' level='1' stamp='0.150'>
+<phase name='setup' stamp='0.150'>
+<phase_done name='setup' stamp='0.150'/>
+</phase>
+<phase name='buildIR' stamp='0.150'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='provides' return='1094' flags='1' bytes='5' iicount='142'/>
+<parse method='1095'  stamp='0.150'>
+<phase name='parse_hir' stamp='0.150'>
+<phase_done name='parse_hir' stamp='0.150'/>
+</phase>
+<parse_done stamp='0.150'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.150'>
+<phase_done name='optimize_blocks' stamp='0.150'/>
+</phase>
+<phase name='gvn' stamp='0.150'>
+<phase_done name='gvn' stamp='0.150'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.150'>
+<phase_done name='rangeCheckElimination' stamp='0.150'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.150'>
+<phase_done name='optimize_null_checks' stamp='0.150'/>
+</phase>
+<phase_done name='buildIR' stamp='0.150'/>
+</phase>
+<phase name='emit_lir' stamp='0.150'>
+<phase name='lirGeneration' stamp='0.150'>
+<phase_done name='lirGeneration' stamp='0.150'/>
+</phase>
+<phase name='linearScan' stamp='0.150'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='384' nmethods='77' adapters='162' free_code_cache='248638848'/>
+<task_done success='1' nmsize='272' count='142' stamp='0.150'/>
+</task>
+<task compile_id='82' method='java.lang.module.Resolver isTracing ()Z' bytes='13' count='260' iicount='260' level='3' stamp='0.150'>
+<phase name='setup' stamp='0.150'>
+<phase_done name='setup' stamp='0.150'/>
+</phase>
+<phase name='buildIR' stamp='0.150'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.Resolver' flags='16'/>
+<method id='1094' holder='1093' name='isTracing' return='969' flags='2' bytes='13' iicount='264'/>
+<parse method='1094'  stamp='0.150'>
+<phase name='parse_hir' stamp='0.150'>
+<phase_done name='parse_hir' stamp='0.150'/>
+</phase>
+<parse_done stamp='0.150'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.150'>
+<phase_done name='optimize_blocks' stamp='0.150'/>
+</phase>
+<phase name='gvn' stamp='0.150'>
+<phase_done name='gvn' stamp='0.150'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.150'>
+<phase_done name='rangeCheckElimination' stamp='0.150'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.150'>
+<phase_done name='optimize_null_checks' stamp='0.150'/>
+</phase>
+<phase_done name='buildIR' stamp='0.150'/>
+</phase>
+<phase name='emit_lir' stamp='0.150'>
+<phase name='lirGeneration' stamp='0.150'>
+<phase_done name='lirGeneration' stamp='0.150'/>
+</phase>
+<phase name='linearScan' stamp='0.150'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='388' nmethods='81' adapters='162' free_code_cache='248628864'/>
+<task_done success='1' nmsize='432' count='316' stamp='0.151'/>
+</task>
+<task compile_id='87' method='java.util.ImmutableCollections$MapN get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='21' count='257' iicount='257' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$MapN' flags='24'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='21' iicount='258'/>
+<parse method='1094'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='183' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='64' compile_id='67' compiler='c1' level='3' iicount='408'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.151'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.151'/>
+</phase>
+<phase name='codeemit' stamp='0.151'>
+<phase_done name='codeemit' stamp='0.151'/>
+</phase>
+<phase name='codeinstall' stamp='0.151'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='391' nmethods='84' adapters='162' free_code_cache='248624768'/>
+<task_done success='1' nmsize='520' count='275' stamp='0.151'/>
+</task>
+<task compile_id='88' method='java.util.Optional orElse (Ljava/lang/Object;)Ljava/lang/Object;' bytes='16' count='274' iicount='274' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<method id='1094' holder='1093' name='orElse' return='982' arguments='982' flags='1' bytes='16' iicount='274'/>
+<parse method='1094'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.151'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.151'/>
+</phase>
+<phase name='codeemit' stamp='0.151'>
+<phase_done name='codeemit' stamp='0.151'/>
+</phase>
+<phase name='codeinstall' stamp='0.151'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='394' nmethods='87' adapters='162' free_code_cache='248619904'/>
+<task_done success='1' nmsize='432' count='274' stamp='0.151'/>
+</task>
+<task compile_id='93' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='262' iicount='262' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='23' iicount='265'/>
+<parse method='1094'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='1248'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='9'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='251'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1100' name='java.util.HashMap$Node' flags='8'/>
+<method id='1101' holder='1093' name='getNode' return='1100' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='695'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='398' nmethods='91' adapters='162' free_code_cache='248612992'/>
+<task_done success='1' nmsize='1016' count='473' inlined_bytes='20' stamp='0.152'/>
+</task>
+<task compile_id='91' method='java.util.ImmutableCollections$Set0 size ()I' bytes='2' count='130' iicount='130' level='1' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='2' iicount='130'/>
+<parse method='1094'  stamp='0.152'>
+<phase name='parse_hir' stamp='0.152'>
+<phase_done name='parse_hir' stamp='0.152'/>
+</phase>
+<parse_done stamp='0.152'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.152'>
+<phase_done name='optimize_blocks' stamp='0.152'/>
+</phase>
+<phase name='gvn' stamp='0.152'>
+<phase_done name='gvn' stamp='0.152'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.152'>
+<phase_done name='rangeCheckElimination' stamp='0.152'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.152'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='400' nmethods='93' adapters='162' free_code_cache='248608768'/>
+<task_done success='1' nmsize='272' count='130' stamp='0.152'/>
+</task>
+<task compile_id='98' method='java.lang.module.ModuleDescriptor requires ()Ljava/util/Set;' bytes='5' count='129' iicount='129' level='1' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1095' holder='1093' name='requires' return='1094' flags='1' bytes='5' iicount='131'/>
+<parse method='1095'  stamp='0.152'>
+<phase name='parse_hir' stamp='0.152'>
+<phase_done name='parse_hir' stamp='0.152'/>
+</phase>
+<parse_done stamp='0.152'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.152'>
+<phase_done name='optimize_blocks' stamp='0.152'/>
+</phase>
+<phase name='gvn' stamp='0.152'>
+<phase_done name='gvn' stamp='0.152'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.152'>
+<phase_done name='rangeCheckElimination' stamp='0.152'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.152'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='405' nmethods='98' adapters='162' free_code_cache='248600960'/>
+<task_done success='1' nmsize='272' count='140' stamp='0.152'/>
+</task>
+<task compile_id='103' method='java.util.AbstractMap &lt;init&gt; ()V' bytes='5' count='258' iicount='258' level='3' stamp='0.153'>
+<phase name='setup' stamp='0.153'>
+<phase_done name='setup' stamp='0.153'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.AbstractMap' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='258'/>
+<parse method='1094'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='4593'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.153'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.153'/>
+</phase>
+<code_cache total_blobs='409' nmethods='101' adapters='162' free_code_cache='248592384'/>
+<task_done success='1' nmsize='432' count='258' inlined_bytes='1' stamp='0.153'/>
+</task>
+<task compile_id='107' method='java.util.HashMap keySet ()Ljava/util/Set;' bytes='25' count='353' iicount='353' level='3' stamp='0.153'>
+<phase name='setup' stamp='0.153'>
+<phase_done name='setup' stamp='0.153'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='keySet' return='1094' flags='1' bytes='25' iicount='366'/>
+<parse method='1095'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='183' bci='14'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.HashMap$KeySet' flags='16'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' arguments='1093' flags='0' bytes='10' iicount='165'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='6'/>
+<klass id='1101' name='java.util.AbstractSet' flags='1025'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='880'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<klass id='1104' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='979'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1107' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='4728'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.153'/>
+</parse>
+<parse_done stamp='0.153'/>
+</parse>
+<parse_done stamp='0.153'/>
+</parse>
+<parse_done stamp='0.153'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.154'/>
+</phase>
+<phase name='codeinstall' stamp='0.154'>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='416' nmethods='107' adapters='162' free_code_cache='248587264'/>
+<task_done success='1' nmsize='1072' count='690' inlined_bytes='21' stamp='0.154'/>
+</task>
+<task compile_id='111' method='java.util.KeyValueHolder getKey ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' level='1' stamp='0.154'>
+<phase name='setup' stamp='0.154'>
+<phase_done name='setup' stamp='0.154'/>
+</phase>
+<phase name='buildIR' stamp='0.154'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1094' holder='1093' name='getKey' return='982' flags='1' bytes='5' iicount='176'/>
+<parse method='1094'  stamp='0.154'>
+<phase name='parse_hir' stamp='0.154'>
+<phase_done name='parse_hir' stamp='0.154'/>
+</phase>
+<parse_done stamp='0.154'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.154'>
+<phase_done name='optimize_blocks' stamp='0.154'/>
+</phase>
+<phase name='gvn' stamp='0.154'>
+<phase_done name='gvn' stamp='0.154'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.154'>
+<phase_done name='rangeCheckElimination' stamp='0.154'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.154'>
+<phase_done name='optimize_null_checks' stamp='0.154'/>
+</phase>
+<phase_done name='buildIR' stamp='0.154'/>
+</phase>
+<phase name='emit_lir' stamp='0.154'>
+<phase name='lirGeneration' stamp='0.154'>
+<phase_done name='lirGeneration' stamp='0.154'/>
+</phase>
+<phase name='linearScan' stamp='0.154'>
+<phase_done name='linearScan' stamp='0.154'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.154'/>
+</phase>
+<phase name='codeemit' stamp='0.154'>
+<phase_done name='codeemit' stamp='0.154'/>
+</phase>
+<phase name='codeinstall' stamp='0.154'>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='420' nmethods='111' adapters='162' free_code_cache='248582272'/>
+<task_done success='1' nmsize='272' count='176' stamp='0.154'/>
+</task>
+<task compile_id='116' method='java.lang.String indexOf (II)I' bytes='29' count='261' iicount='261' level='3' stamp='0.155'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='265'/>
+<parse method='1093'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='6219'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.155'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='273'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='425' nmethods='116' adapters='162' free_code_cache='248575360'/>
+<task_done success='1' nmsize='728' count='299' inlined_bytes='19' stamp='0.155'/>
+</task>
+<task compile_id='121' method='jdk.internal.misc.Unsafe putObjectRelease (Ljava/lang/Object;JLjava/lang/Object;)V' bytes='9' count='299' iicount='299' level='3' stamp='0.156'>
+<phase name='setup' stamp='0.156'>
+<phase_done name='setup' stamp='0.156'/>
+</phase>
+<phase name='buildIR' stamp='0.156'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1093' holder='1051' name='putObjectRelease' return='977' arguments='982 976 982' flags='17' bytes='9' iicount='299'/>
+<parse method='1093'  stamp='0.156'>
+<phase name='parse_hir' stamp='0.156'>
+<bc code='182' bci='5'/>
+<method id='1095' holder='1051' name='putObjectVolatile' return='977' arguments='982 976 982' flags='257' bytes='0' compile_id='122' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.156'/>
+</phase>
+<parse_done stamp='0.156'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.156'>
+<phase_done name='optimize_blocks' stamp='0.156'/>
+</phase>
+<phase name='gvn' stamp='0.156'>
+<phase_done name='gvn' stamp='0.156'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.156'>
+<phase_done name='rangeCheckElimination' stamp='0.156'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.156'>
+<phase_done name='optimize_null_checks' stamp='0.156'/>
+</phase>
+<phase_done name='buildIR' stamp='0.156'/>
+</phase>
+<phase name='emit_lir' stamp='0.156'>
+<phase name='lirGeneration' stamp='0.156'>
+<phase_done name='lirGeneration' stamp='0.156'/>
+</phase>
+<phase name='linearScan' stamp='0.156'>
+<phase_done name='linearScan' stamp='0.156'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.156'/>
+</phase>
+<phase name='codeemit' stamp='0.156'>
+<phase_done name='codeemit' stamp='0.156'/>
+</phase>
+<phase name='codeinstall' stamp='0.156'>
+<phase_done name='codeinstall' stamp='0.156'/>
+</phase>
+<code_cache total_blobs='431' nmethods='122' adapters='162' free_code_cache='248568704'/>
+<task_done success='1' nmsize='432' count='347' stamp='0.156'/>
+</task>
+<task compile_id='126' method='java.lang.module.ResolvedModule name ()Ljava/lang/String;' bytes='11' count='308' iicount='308' level='3' stamp='0.156'>
+<phase name='setup' stamp='0.157'>
+<phase_done name='setup' stamp='0.157'/>
+</phase>
+<phase name='buildIR' stamp='0.157'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1094' holder='1093' name='name' return='983' flags='1' bytes='11' iicount='311'/>
+<parse method='1094'  stamp='0.157'>
+<phase name='parse_hir' stamp='0.157'>
+<bc code='182' bci='1'/>
+<klass id='1096' name='java.lang.module.ModuleReference' flags='1025'/>
+<method id='1097' holder='1093' name='reference' return='1096' flags='1' bytes='5' compile_id='113' compiler='c1' level='1' iicount='160'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.157'/>
+</parse>
+<bc code='182' bci='4'/>
+<klass id='1099' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1100' holder='1096' name='descriptor' return='1099' flags='17' bytes='5' compile_id='46' compiler='c1' level='1' iicount='227'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.157'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1102' holder='1099' name='name' return='983' flags='1' bytes='5' compile_id='41' compiler='c1' level='1' iicount='177'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1102'>
+<parse_done stamp='0.157'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.157'/>
+</phase>
+<parse_done stamp='0.157'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.157'>
+<phase_done name='optimize_blocks' stamp='0.157'/>
+</phase>
+<phase name='gvn' stamp='0.157'>
+<phase_done name='gvn' stamp='0.157'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.157'>
+<phase_done name='rangeCheckElimination' stamp='0.157'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.157'>
+<phase_done name='optimize_null_checks' stamp='0.157'/>
+</phase>
+<phase_done name='buildIR' stamp='0.157'/>
+</phase>
+<phase name='emit_lir' stamp='0.157'>
+<phase name='lirGeneration' stamp='0.157'>
+<phase_done name='lirGeneration' stamp='0.157'/>
+</phase>
+<phase name='linearScan' stamp='0.157'>
+<phase_done name='linearScan' stamp='0.157'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.157'/>
+</phase>
+<phase name='codeemit' stamp='0.157'>
+<phase_done name='codeemit' stamp='0.157'/>
+</phase>
+<phase name='codeinstall' stamp='0.157'>
+<dependency type='leaf_type' ctxk='1099'/>
+<phase_done name='codeinstall' stamp='0.157'/>
+</phase>
+<code_cache total_blobs='435' nmethods='126' adapters='162' free_code_cache='248562432'/>
+<task_done success='1' nmsize='720' count='334' inlined_bytes='15' stamp='0.157'/>
+</task>
+<task compile_id='133' method='java.util.Collections$EmptyMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='2' count='134' iicount='134' level='1' stamp='0.159'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$EmptyMap' flags='10'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='2' iicount='135'/>
+<parse method='1094'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<phase_done name='parse_hir' stamp='0.160'/>
+</phase>
+<parse_done stamp='0.160'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.160'>
+<phase_done name='optimize_blocks' stamp='0.160'/>
+</phase>
+<phase name='gvn' stamp='0.160'>
+<phase_done name='gvn' stamp='0.160'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.160'>
+<phase_done name='rangeCheckElimination' stamp='0.160'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.160'>
+<phase_done name='optimize_null_checks' stamp='0.160'/>
+</phase>
+<phase_done name='buildIR' stamp='0.160'/>
+</phase>
+<phase name='emit_lir' stamp='0.160'>
+<phase name='lirGeneration' stamp='0.160'>
+<phase_done name='lirGeneration' stamp='0.160'/>
+</phase>
+<phase name='linearScan' stamp='0.160'>
+<phase_done name='linearScan' stamp='0.160'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.160'/>
+</phase>
+<phase name='codeemit' stamp='0.160'>
+<phase_done name='codeemit' stamp='0.160'/>
+</phase>
+<phase name='codeinstall' stamp='0.160'>
+<phase_done name='codeinstall' stamp='0.160'/>
+</phase>
+<code_cache total_blobs='445' nmethods='132' adapters='162' free_code_cache='248556160'/>
+<task_done success='1' nmsize='272' count='178' stamp='0.160'/>
+</task>
+<task compile_id='135' method='java.util.HashSet &lt;init&gt; ()V' bytes='16' count='262' iicount='262' level='3' stamp='0.160'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.HashSet' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='16' iicount='265'/>
+<parse method='1094'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractSet' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='941'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='1099' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='1045'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='6771'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.160'/>
+</parse>
+<parse_done stamp='0.160'/>
+</parse>
+<parse_done stamp='0.160'/>
+</parse>
+<bc code='183' bci='9'/>
+<klass id='1104' name='java.util.HashMap' flags='1'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' flags='1' bytes='11' compile_id='132' compiler='c1' level='3' iicount='316'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<klass id='1107' name='java.util.AbstractMap' flags='1025'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='103' compiler='c1' level='3' iicount='359'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.160'/>
+</parse>
+<parse_done stamp='0.160'/>
+</parse>
+<parse_done stamp='0.160'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.160'/>
+</phase>
+<parse_done stamp='0.160'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.160'>
+<phase_done name='optimize_blocks' stamp='0.160'/>
+</phase>
+<phase name='gvn' stamp='0.160'>
+<phase_done name='gvn' stamp='0.160'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.160'>
+<phase_done name='rangeCheckElimination' stamp='0.160'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.160'>
+<phase_done name='optimize_null_checks' stamp='0.160'/>
+</phase>
+<phase_done name='buildIR' stamp='0.160'/>
+</phase>
+<phase name='emit_lir' stamp='0.160'>
+<phase name='lirGeneration' stamp='0.160'>
+<phase_done name='lirGeneration' stamp='0.160'/>
+</phase>
+<phase name='linearScan' stamp='0.160'>
+<phase_done name='linearScan' stamp='0.160'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.160'/>
+</phase>
+<phase name='codeemit' stamp='0.160'>
+<phase_done name='codeemit' stamp='0.160'/>
+</phase>
+<phase name='codeinstall' stamp='0.160'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.161'/>
+</phase>
+<code_cache total_blobs='450' nmethods='137' adapters='162' free_code_cache='248550272'/>
+<task_done success='1' nmsize='1104' count='321' inlined_bytes='28' stamp='0.161'/>
+</task>
+<task compile_id='139' method='java.util.Collections$EmptySet isEmpty ()Z' bytes='2' count='128' iicount='128' level='1' stamp='0.161'>
+<phase name='setup' stamp='0.161'>
+<phase_done name='setup' stamp='0.161'/>
+</phase>
+<phase name='buildIR' stamp='0.161'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Collections$EmptySet' flags='10'/>
+<method id='1094' holder='1093' name='isEmpty' return='969' flags='1' bytes='2' iicount='130'/>
+<parse method='1094'  stamp='0.161'>
+<phase name='parse_hir' stamp='0.161'>
+<phase_done name='parse_hir' stamp='0.161'/>
+</phase>
+<parse_done stamp='0.161'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.161'>
+<phase_done name='optimize_blocks' stamp='0.161'/>
+</phase>
+<phase name='gvn' stamp='0.161'>
+<phase_done name='gvn' stamp='0.161'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.161'>
+<phase_done name='rangeCheckElimination' stamp='0.161'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.161'>
+<phase_done name='optimize_null_checks' stamp='0.161'/>
+</phase>
+<phase_done name='buildIR' stamp='0.161'/>
+</phase>
+<phase name='emit_lir' stamp='0.161'>
+<phase name='lirGeneration' stamp='0.161'>
+<phase_done name='lirGeneration' stamp='0.161'/>
+</phase>
+<phase name='linearScan' stamp='0.161'>
+<phase_done name='linearScan' stamp='0.161'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.161'/>
+</phase>
+<phase name='codeemit' stamp='0.161'>
+<phase_done name='codeemit' stamp='0.161'/>
+</phase>
+<phase name='codeinstall' stamp='0.161'>
+<phase_done name='codeinstall' stamp='0.161'/>
+</phase>
+<code_cache total_blobs='451' nmethods='138' adapters='162' free_code_cache='248549504'/>
+<task_done success='1' nmsize='272' count='156' stamp='0.161'/>
+</task>
+<task compile_id='140' method='java.util.ArrayList access$000 (Ljava/util/ArrayList;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.161'>
+<phase name='setup' stamp='0.161'>
+<phase_done name='setup' stamp='0.161'/>
+</phase>
+<phase name='buildIR' stamp='0.161'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='access$000' return='975' arguments='1093' flags='4104' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.161'>
+<phase name='parse_hir' stamp='0.161'>
+<phase_done name='parse_hir' stamp='0.161'/>
+</phase>
+<parse_done stamp='0.161'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.161'>
+<phase_done name='optimize_blocks' stamp='0.161'/>
+</phase>
+<phase name='gvn' stamp='0.161'>
+<phase_done name='gvn' stamp='0.161'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.161'>
+<phase_done name='rangeCheckElimination' stamp='0.161'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.161'>
+<phase_done name='optimize_null_checks' stamp='0.161'/>
+</phase>
+<phase_done name='buildIR' stamp='0.161'/>
+</phase>
+<phase name='emit_lir' stamp='0.161'>
+<phase name='lirGeneration' stamp='0.161'>
+<phase_done name='lirGeneration' stamp='0.161'/>
+</phase>
+<phase name='linearScan' stamp='0.161'>
+<phase_done name='linearScan' stamp='0.161'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.161'/>
+</phase>
+<phase name='codeemit' stamp='0.161'>
+<phase_done name='codeemit' stamp='0.161'/>
+</phase>
+<phase name='codeinstall' stamp='0.161'>
+<phase_done name='codeinstall' stamp='0.161'/>
+</phase>
+<code_cache total_blobs='452' nmethods='139' adapters='162' free_code_cache='248548608'/>
+<task_done success='1' nmsize='240' count='155' stamp='0.161'/>
+</task>
+<task compile_id='141' method='java.lang.Module findModule (Ljava/lang/String;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)Ljava/lang/Module;' bytes='93' count='267' backedge_count='30' iicount='267' level='3' stamp='0.161'>
+<phase name='setup' stamp='0.161'>
+<phase_done name='setup' stamp='0.161'/>
+</phase>
+<phase name='buildIR' stamp='0.161'>
+<klass id='1019' name='java.lang.Module' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.util.Map' flags='1537'/>
+<klass id='1094' name='java.util.List' flags='1537'/>
+<method id='1095' holder='1019' name='findModule' return='1019' arguments='983 1093 1093 1094' flags='10' bytes='93' iicount='267'/>
+<parse method='1095'  stamp='0.161'>
+<phase name='parse_hir' stamp='0.161'>
+<bc code='185' bci='2'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='1093' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='19'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='35'/>
+<klass id='1098' name='java.util.Iterator' flags='1537'/>
+<method id='1099' holder='1094' name='iterator' return='1098' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='44'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='1098' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='54'/>
+<method id='1101' holder='1098' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='67'/>
+<klass id='1103' name='java.util.Optional' flags='17'/>
+<klass id='1102' name='java.lang.ModuleLayer' flags='17'/>
+<method id='1104' holder='1102' name='findModule' return='1103' arguments='983' flags='1' bytes='87' iicount='66'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='71'/>
+<method id='1106' holder='1103' name='orElse' return='982' arguments='982' flags='1' bytes='16' compile_id='88' compiler='c1' level='3' iicount='495'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.162'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='460' nmethods='147' adapters='162' free_code_cache='248530432'/>
+<task_done success='1' nmsize='3160' count='408' backedge_count='68' inlined_bytes='16' stamp='0.162'/>
+</task>
+<task compile_id='152' method='java.util.Collections singletonIterator (Ljava/lang/Object;)Ljava/util/Iterator;' bytes='9' count='257' iicount='257' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<klass id='1094' name='java.util.Iterator' flags='1537'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections' flags='1'/>
+<method id='1095' holder='1093' name='singletonIterator' return='1094' arguments='982' flags='8' bytes='9' iicount='259'/>
+<parse method='1095'  stamp='0.163'>
+<phase name='parse_hir' stamp='0.163'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.Collections$1' flags='0'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='15' iicount='264'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='6'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='8223'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.163'/>
+</parse>
+<parse_done stamp='0.163'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.163'/>
+</phase>
+<parse_done stamp='0.163'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.163'>
+<phase_done name='optimize_blocks' stamp='0.163'/>
+</phase>
+<phase name='gvn' stamp='0.163'>
+<phase_done name='gvn' stamp='0.163'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.163'>
+<phase_done name='rangeCheckElimination' stamp='0.163'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.163'>
+<phase_done name='optimize_null_checks' stamp='0.163'/>
+</phase>
+<phase_done name='buildIR' stamp='0.163'/>
+</phase>
+<phase name='emit_lir' stamp='0.163'>
+<phase name='lirGeneration' stamp='0.163'>
+<phase_done name='lirGeneration' stamp='0.163'/>
+</phase>
+<phase name='linearScan' stamp='0.163'>
+<phase_done name='linearScan' stamp='0.163'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.163'/>
+</phase>
+<phase name='codeemit' stamp='0.163'>
+<phase_done name='codeemit' stamp='0.163'/>
+</phase>
+<phase name='codeinstall' stamp='0.163'>
+<phase_done name='codeinstall' stamp='0.163'/>
+</phase>
+<code_cache total_blobs='466' nmethods='153' adapters='162' free_code_cache='248523904'/>
+<task_done success='1' nmsize='688' count='281' inlined_bytes='16' stamp='0.163'/>
+</task>
+<task compile_id='156' method='java.util.Collections$UnmodifiableCollection$1 next ()Ljava/lang/Object;' bytes='10' count='256' iicount='256' level='3' stamp='0.163'>
+<phase name='setup' stamp='0.163'>
+<phase_done name='setup' stamp='0.163'/>
+</phase>
+<phase name='buildIR' stamp='0.163'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$UnmodifiableCollection$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='10' iicount='256'/>
+<parse method='1094'  stamp='0.163'>
+<phase name='parse_hir' stamp='0.163'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Iterator' flags='1537'/>
+<method id='1097' holder='1096' name='next' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.163'/>
+</phase>
+<parse_done stamp='0.163'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.163'>
+<phase_done name='optimize_blocks' stamp='0.163'/>
+</phase>
+<phase name='gvn' stamp='0.163'>
+<phase_done name='gvn' stamp='0.163'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.163'>
+<phase_done name='rangeCheckElimination' stamp='0.163'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.163'>
+<phase_done name='optimize_null_checks' stamp='0.163'/>
+</phase>
+<phase_done name='buildIR' stamp='0.163'/>
+</phase>
+<phase name='emit_lir' stamp='0.163'>
+<phase name='lirGeneration' stamp='0.163'>
+<phase_done name='lirGeneration' stamp='0.163'/>
+</phase>
+<phase name='linearScan' stamp='0.163'>
+<phase_done name='linearScan' stamp='0.163'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.163'/>
+</phase>
+<phase name='codeemit' stamp='0.163'>
+<phase_done name='codeemit' stamp='0.163'/>
+</phase>
+<phase name='codeinstall' stamp='0.163'>
+<phase_done name='codeinstall' stamp='0.163'/>
+</phase>
+<code_cache total_blobs='470' nmethods='157' adapters='162' free_code_cache='248519040'/>
+<task_done success='1' nmsize='552' count='257' stamp='0.163'/>
+</task>
+<task compile_id='162' method='java.util.KeyValueHolder &lt;init&gt; (Ljava/lang/Object;Ljava/lang/Object;)V' bytes='21' count='280' iicount='280' level='3' stamp='0.165'>
+<phase name='setup' stamp='0.165'>
+<phase_done name='setup' stamp='0.165'/>
+</phase>
+<phase name='buildIR' stamp='0.165'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982 982' flags='0' bytes='21' iicount='280'/>
+<parse method='1094'  stamp='0.165'>
+<phase name='parse_hir' stamp='0.165'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='8748'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.165'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1098' name='java.util.Objects' flags='17'/>
+<method id='1099' holder='1098' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='3378'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1101' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.165'/>
+</parse>
+<bc code='184' bci='14'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.165'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.165'/>
+</phase>
+<parse_done stamp='0.165'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.165'>
+<phase_done name='optimize_blocks' stamp='0.165'/>
+</phase>
+<phase name='gvn' stamp='0.165'>
+<phase_done name='gvn' stamp='0.165'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.165'>
+<phase_done name='rangeCheckElimination' stamp='0.165'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.165'>
+<phase_done name='optimize_null_checks' stamp='0.165'/>
+</phase>
+<phase_done name='buildIR' stamp='0.165'/>
+</phase>
+<phase name='emit_lir' stamp='0.165'>
+<phase name='lirGeneration' stamp='0.165'>
+<phase_done name='lirGeneration' stamp='0.165'/>
+</phase>
+<phase name='linearScan' stamp='0.165'>
+<phase_done name='linearScan' stamp='0.165'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.165'/>
+</phase>
+<phase name='codeemit' stamp='0.165'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.166'/>
+</phase>
+<code_cache total_blobs='474' nmethods='161' adapters='162' free_code_cache='248514560'/>
+<task_done success='1' nmsize='1304' count='280' inlined_bytes='29' stamp='0.166'/>
+</task>
+<task compile_id='165' method='jdk.internal.module.ModuleBootstrap$2 hasNext ()Z' bytes='30' count='263' iicount='263' level='3' stamp='0.166'>
+<phase name='setup' stamp='0.166'>
+<phase_done name='setup' stamp='0.166'/>
+</phase>
+<phase name='buildIR' stamp='0.166'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.module.ModuleBootstrap$2' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='30' iicount='263'/>
+<parse method='1094'  stamp='0.166'>
+<phase name='parse_hir' stamp='0.166'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Iterator' flags='1537'/>
+<method id='1097' holder='1096' name='hasNext' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='16'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.166'/>
+</phase>
+<parse_done stamp='0.166'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.166'>
+<phase_done name='optimize_blocks' stamp='0.166'/>
+</phase>
+<phase name='gvn' stamp='0.166'>
+<phase_done name='gvn' stamp='0.166'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.166'>
+<phase_done name='rangeCheckElimination' stamp='0.166'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.166'>
+<phase_done name='optimize_null_checks' stamp='0.166'/>
+</phase>
+<phase_done name='buildIR' stamp='0.166'/>
+</phase>
+<phase name='emit_lir' stamp='0.166'>
+<phase name='lirGeneration' stamp='0.166'>
+<phase_done name='lirGeneration' stamp='0.166'/>
+</phase>
+<phase name='linearScan' stamp='0.166'>
+<phase_done name='linearScan' stamp='0.166'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.166'/>
+</phase>
+<phase name='codeemit' stamp='0.166'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.166'/>
+</phase>
+<code_cache total_blobs='479' nmethods='166' adapters='162' free_code_cache='248507776'/>
+<task_done success='1' nmsize='888' count='331' stamp='0.166'/>
+</task>
+<task compile_id='170' method='java.util.ImmutableCollections$Set0 instance ()Ljava/util/ImmutableCollections$Set0;' bytes='4' count='236' iicount='236' level='3' stamp='0.167'>
+<phase name='setup' stamp='0.167'>
+<phase_done name='setup' stamp='0.167'/>
+</phase>
+<phase name='buildIR' stamp='0.167'>
+<klass id='1093' name='java.util.ImmutableCollections$Set0' flags='24'/>
+<method id='1094' holder='1093' name='instance' return='1093' flags='8' bytes='4' iicount='236'/>
+<parse method='1094'  stamp='0.167'>
+<phase name='parse_hir' stamp='0.167'>
+<phase_done name='parse_hir' stamp='0.167'/>
+</phase>
+<parse_done stamp='0.167'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.167'>
+<phase_done name='optimize_blocks' stamp='0.167'/>
+</phase>
+<phase name='gvn' stamp='0.167'>
+<phase_done name='gvn' stamp='0.167'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.167'>
+<phase_done name='rangeCheckElimination' stamp='0.167'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.167'>
+<phase_done name='optimize_null_checks' stamp='0.167'/>
+</phase>
+<phase_done name='buildIR' stamp='0.167'/>
+</phase>
+<phase name='emit_lir' stamp='0.167'>
+<phase name='lirGeneration' stamp='0.167'>
+<phase_done name='lirGeneration' stamp='0.167'/>
+</phase>
+<phase name='linearScan' stamp='0.167'>
+<phase_done name='linearScan' stamp='0.167'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.167'/>
+</phase>
+<phase name='codeemit' stamp='0.167'>
+<phase_done name='codeemit' stamp='0.167'/>
+</phase>
+<phase name='codeinstall' stamp='0.167'>
+<phase_done name='codeinstall' stamp='0.167'/>
+</phase>
+<code_cache total_blobs='482' nmethods='169' adapters='162' free_code_cache='248502784'/>
+<task_done success='1' nmsize='304' count='236' stamp='0.167'/>
+</task>
+<task compile_id='174' method='java.util.jar.Attributes$Name isValid (C)Z' bytes='32' count='368' iicount='368' level='3' stamp='0.183'>
+<phase name='setup' stamp='0.183'>
+<phase_done name='setup' stamp='0.183'/>
+</phase>
+<phase name='buildIR' stamp='0.183'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.jar.Attributes$Name' flags='9'/>
+<method id='1094' holder='1093' name='isValid' return='969' arguments='970' flags='10' bytes='32' iicount='368'/>
+<parse method='1094'  stamp='0.183'>
+<phase name='parse_hir' stamp='0.183'>
+<bc code='184' bci='1'/>
+<method id='1096' holder='1093' name='isAlpha' return='969' arguments='970' flags='10' bytes='30' iicount='368'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.183'/>
+</parse>
+<bc code='184' bci='8'/>
+<method id='1098' holder='1093' name='isDigit' return='969' arguments='970' flags='10' bytes='18' iicount='24'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.183'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.183'/>
+</phase>
+<parse_done stamp='0.183'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.183'>
+<phase_done name='optimize_blocks' stamp='0.183'/>
+</phase>
+<phase name='gvn' stamp='0.183'>
+<phase_done name='gvn' stamp='0.183'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.183'>
+<phase_done name='rangeCheckElimination' stamp='0.183'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.183'>
+<phase_done name='optimize_null_checks' stamp='0.183'/>
+</phase>
+<phase_done name='buildIR' stamp='0.183'/>
+</phase>
+<phase name='emit_lir' stamp='0.183'>
+<phase name='lirGeneration' stamp='0.183'>
+<phase_done name='lirGeneration' stamp='0.183'/>
+</phase>
+<phase name='linearScan' stamp='0.183'>
+<phase_done name='linearScan' stamp='0.184'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.184'/>
+</phase>
+<phase name='codeemit' stamp='0.184'>
+<phase_done name='codeemit' stamp='0.184'/>
+</phase>
+<phase name='codeinstall' stamp='0.184'>
+<phase_done name='codeinstall' stamp='0.184'/>
+</phase>
+<code_cache total_blobs='523' nmethods='175' adapters='195' free_code_cache='248476544'/>
+<task_done success='1' nmsize='1168' count='368' inlined_bytes='48' stamp='0.184'/>
+</task>
+<task compile_id='180' method='java.lang.AbstractStringBuilder putStringAt (ILjava/lang/String;)V' bytes='29' count='259' iicount='259' level='3' stamp='0.197'>
+<phase name='setup' stamp='0.197'>
+<phase_done name='setup' stamp='0.197'/>
+</phase>
+<phase name='buildIR' stamp='0.197'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='putStringAt' return='977' arguments='975 983' flags='18' bytes='29' iicount='259'/>
+<parse method='1093'  stamp='0.197'>
+<phase name='parse_hir' stamp='0.197'>
+<bc code='182' bci='1'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='1048' name='getCoder' return='973' flags='16' bytes='15' iicount='259'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.197'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1098' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='8096'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.197'/>
+</parse>
+<bc code='183' bci='12'/>
+<method id='1100' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='25'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1102' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' iicount='259'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.197'/>
+</phase>
+<parse_done stamp='0.197'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.197'>
+<phase_done name='optimize_blocks' stamp='0.197'/>
+</phase>
+<phase name='gvn' stamp='0.197'>
+<phase_done name='gvn' stamp='0.197'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.197'>
+<phase_done name='rangeCheckElimination' stamp='0.197'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.197'>
+<phase_done name='optimize_null_checks' stamp='0.197'/>
+</phase>
+<phase_done name='buildIR' stamp='0.197'/>
+</phase>
+<phase name='emit_lir' stamp='0.197'>
+<phase name='lirGeneration' stamp='0.197'>
+<phase_done name='lirGeneration' stamp='0.197'/>
+</phase>
+<phase name='linearScan' stamp='0.197'>
+<phase_done name='linearScan' stamp='0.197'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.197'/>
+</phase>
+<phase name='codeemit' stamp='0.197'>
+<phase_done name='codeemit' stamp='0.197'/>
+</phase>
+<phase name='codeinstall' stamp='0.197'>
+<phase_done name='codeinstall' stamp='0.197'/>
+</phase>
+<code_cache total_blobs='533' nmethods='182' adapters='198' free_code_cache='248465792'/>
+<task_done success='1' nmsize='1208' count='259' inlined_bytes='30' stamp='0.197'/>
+</task>
+<task compile_id='186' method='java.lang.reflect.Method getName ()Ljava/lang/String;' bytes='5' count='434' iicount='434' level='1' stamp='0.202'>
+<phase name='setup' stamp='0.202'>
+<phase_done name='setup' stamp='0.202'/>
+</phase>
+<phase name='buildIR' stamp='0.202'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1024' name='java.lang.reflect.Method' flags='17'/>
+<method id='1093' holder='1024' name='getName' return='983' flags='1' bytes='5' iicount='434'/>
+<parse method='1093'  stamp='0.202'>
+<phase name='parse_hir' stamp='0.202'>
+<phase_done name='parse_hir' stamp='0.202'/>
+</phase>
+<parse_done stamp='0.202'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.202'>
+<phase_done name='optimize_blocks' stamp='0.202'/>
+</phase>
+<phase name='gvn' stamp='0.202'>
+<phase_done name='gvn' stamp='0.202'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.202'>
+<phase_done name='rangeCheckElimination' stamp='0.202'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.202'>
+<phase_done name='optimize_null_checks' stamp='0.202'/>
+</phase>
+<phase_done name='buildIR' stamp='0.202'/>
+</phase>
+<phase name='emit_lir' stamp='0.202'>
+<phase name='lirGeneration' stamp='0.202'>
+<phase_done name='lirGeneration' stamp='0.202'/>
+</phase>
+<phase name='linearScan' stamp='0.202'>
+<phase_done name='linearScan' stamp='0.202'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.202'/>
+</phase>
+<phase name='codeemit' stamp='0.202'>
+<phase_done name='codeemit' stamp='0.202'/>
+</phase>
+<phase name='codeinstall' stamp='0.202'>
+<phase_done name='codeinstall' stamp='0.202'/>
+</phase>
+<code_cache total_blobs='540' nmethods='186' adapters='201' free_code_cache='248457216'/>
+<task_done success='1' nmsize='272' count='434' stamp='0.202'/>
+</task>
+<task compile_id='193' method='java.util.concurrent.ConcurrentHashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='162' count='257' backedge_count='6' iicount='257' level='3' stamp='0.206'>
+<phase name='setup' stamp='0.206'>
+<phase_done name='setup' stamp='0.206'/>
+</phase>
+<phase name='buildIR' stamp='0.206'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='162' iicount='257'/>
+<parse method='1094'  stamp='0.206'>
+<phase name='parse_hir' stamp='0.206'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='4'/>
+<method id='1097' holder='1093' name='spread' return='975' arguments='975' flags='24' bytes='10' compile_id='55' compiler='c1' level='3' iicount='1701'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.206'/>
+</parse>
+<bc code='184' bci='34'/>
+<klass id='1099' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1100' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<method id='1101' holder='1093' name='tabAt' return='1099' arguments='1100 975' flags='24' bytes='22' compile_id='52' compiler='c1' level='3' iicount='2945'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='15'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1106' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' compile_id='53' compiler='c1' level='3' iicount='2946'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='3'/>
+<method id='1108' holder='1051' name='getObjectVolatile' return='982' arguments='982 976' flags='257' bytes='0' compile_id='54' compile_kind='c2n' compiler='' level='0' iicount='640'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.207'/>
+</parse>
+<parse_done stamp='0.207'/>
+</parse>
+<bc code='182' bci='73'/>
+<type id='969' name='boolean'/>
+<method id='1109' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='4'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='93'/>
+<method id='1110' holder='1099' name='find' return='1099' arguments='975 982' flags='0' bytes='52' iicount='1'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='149'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.207'/>
+</phase>
+<parse_done stamp='0.207'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.207'>
+<phase_done name='optimize_blocks' stamp='0.207'/>
+</phase>
+<phase name='gvn' stamp='0.207'>
+<phase_done name='gvn' stamp='0.207'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.207'>
+<phase_done name='rangeCheckElimination' stamp='0.207'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.207'>
+<phase_done name='optimize_null_checks' stamp='0.207'/>
+</phase>
+<phase_done name='buildIR' stamp='0.207'/>
+</phase>
+<phase name='emit_lir' stamp='0.207'>
+<phase name='lirGeneration' stamp='0.207'>
+<phase_done name='lirGeneration' stamp='0.207'/>
+</phase>
+<phase name='linearScan' stamp='0.207'>
+<phase_done name='linearScan' stamp='0.207'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.207'/>
+</phase>
+<phase name='codeemit' stamp='0.207'>
+<phase_done name='codeemit' stamp='0.207'/>
+</phase>
+<phase name='codeinstall' stamp='0.207'>
+<phase_done name='codeinstall' stamp='0.208'/>
+</phase>
+<code_cache total_blobs='568' nmethods='195' adapters='220' free_code_cache='248428544'/>
+<task_done success='1' nmsize='3288' count='268' backedge_count='6' inlined_bytes='39' stamp='0.208'/>
+</task>
+<task compile_id='207' method='java.lang.invoke.MethodTypeForm canonicalize (Ljava/lang/Class;I)Ljava/lang/Class;' bytes='233' count='259' iicount='259' level='3' stamp='0.213'>
+<phase name='setup' stamp='0.213'>
+<phase_done name='setup' stamp='0.213'/>
+</phase>
+<phase name='buildIR' stamp='0.213'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1094' holder='1093' name='canonicalize' return='984' arguments='984 975' flags='8' bytes='233' iicount='259'/>
+<parse method='1094'  stamp='0.213'>
+<phase name='parse_hir' stamp='0.213'>
+<bc code='182' bci='10'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='53'/>
+<klass id='1099' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1100' holder='1099' name='asPrimitiveType' return='984' arguments='984' flags='9' bytes='20' iicount='1'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='184' bci='1'/>
+<method id='1102' holder='1099' name='findWrapperType' return='1099' arguments='984' flags='8' bytes='25' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='4'/>
+<method id='1107' holder='1099' name='hashWrap' return='975' arguments='984' flags='10' bytes='62' iicount='10'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.214'/>
+</parse>
+<bc code='182' bci='10'/>
+<method id='1109' holder='1099' name='primitiveType' return='984' flags='1' bytes='5' iicount='4'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.214'/>
+</parse>
+<bc code='184' bci='14'/>
+<method id='1111' holder='1099' name='forceType' return='984' arguments='984 984' flags='8' bytes='165' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.214'/>
+</parse>
+<bc code='184' bci='149'/>
+<method id='1118' holder='1099' name='asWrapperType' return='984' arguments='984' flags='9' bytes='18' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='182' bci='1'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='8'/>
+<method id='1120' holder='1099' name='forPrimitiveType' return='1099' arguments='984' flags='9' bytes='49' iicount='54'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='12'/>
+<method id='1122' holder='1099' name='wrapperType' return='984' arguments='984' flags='1' bytes='52' iicount='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.214'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.214'/>
+</phase>
+<parse_done stamp='0.214'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.214'>
+<phase_done name='optimize_blocks' stamp='0.214'/>
+</phase>
+<phase name='gvn' stamp='0.214'>
+<phase_done name='gvn' stamp='0.214'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.214'>
+<phase_done name='rangeCheckElimination' stamp='0.214'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.214'>
+<phase_done name='optimize_null_checks' stamp='0.214'/>
+</phase>
+<phase_done name='buildIR' stamp='0.214'/>
+</phase>
+<phase name='emit_lir' stamp='0.214'>
+<phase name='lirGeneration' stamp='0.214'>
+<phase_done name='lirGeneration' stamp='0.214'/>
+</phase>
+<phase name='linearScan' stamp='0.214'>
+<phase_done name='linearScan' stamp='0.215'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.215'/>
+</phase>
+<phase name='codeemit' stamp='0.215'>
+<phase_done name='codeemit' stamp='0.215'/>
+</phase>
+<phase name='codeinstall' stamp='0.215'>
+<phase_done name='codeinstall' stamp='0.215'/>
+</phase>
+<code_cache total_blobs='589' nmethods='209' adapters='226' free_code_cache='248410240'/>
+<task_done success='1' nmsize='2968' count='259' inlined_bytes='68' stamp='0.215'/>
+</task>
+<task compile_id='224' method='java.lang.invoke.MemberName testAnyFlags (I)Z' bytes='15' count='263' iicount='263' level='3' stamp='0.220'>
+<phase name='setup' stamp='0.220'>
+<phase_done name='setup' stamp='0.220'/>
+</phase>
+<phase name='buildIR' stamp='0.220'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' iicount='263'/>
+<parse method='1093'  stamp='0.220'>
+<phase name='parse_hir' stamp='0.220'>
+<bc code='183' bci='3'/>
+<method id='1095' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='400'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.220'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.220'/>
+</phase>
+<parse_done stamp='0.220'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.220'>
+<phase_done name='optimize_blocks' stamp='0.220'/>
+</phase>
+<phase name='gvn' stamp='0.220'>
+<phase_done name='gvn' stamp='0.220'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.220'>
+<phase_done name='rangeCheckElimination' stamp='0.220'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.220'>
+<phase_done name='optimize_null_checks' stamp='0.220'/>
+</phase>
+<phase_done name='buildIR' stamp='0.220'/>
+</phase>
+<phase name='emit_lir' stamp='0.220'>
+<phase name='lirGeneration' stamp='0.220'>
+<phase_done name='lirGeneration' stamp='0.220'/>
+</phase>
+<phase name='linearScan' stamp='0.220'>
+<phase_done name='linearScan' stamp='0.220'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.220'/>
+</phase>
+<phase name='codeemit' stamp='0.220'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='607' nmethods='220' adapters='232' free_code_cache='248395648'/>
+<task_done success='1' nmsize='624' count='270' inlined_bytes='16' stamp='0.221'/>
+</task>
+<task compile_id='222' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='259' iicount='259' level='3' stamp='0.221'>
+<phase name='setup' stamp='0.221'>
+<phase_done name='setup' stamp='0.221'/>
+</phase>
+<phase name='buildIR' stamp='0.221'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<type id='970' name='char'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' iicount='261'/>
+<parse method='1093'  stamp='0.221'>
+<phase name='parse_hir' stamp='0.221'>
+<bc code='183' bci='7'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='131' compiler='c1' level='3' iicount='712'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='11'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='530'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.221'/>
+</parse>
+<bc code='184' bci='18'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='2014'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.221'/>
+</parse>
+<bc code='182' bci='46'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.221'/>
+</parse>
+<bc code='183' bci='53'/>
+<method id='1103' holder='1048' name='inflate' return='977' flags='2' bytes='42' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='72'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1105' name='java.lang.StringUTF16' flags='16'/>
+<method id='1106' holder='1105' name='putCharSB' return='977' arguments='1085 975 975' flags='9' bytes='12' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='2'/>
+<method id='1108' holder='1105' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='2'/>
+<method id='1110' holder='1105' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.221'/>
+</parse>
+<bc code='184' bci='5'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1112' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1112' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.221'/>
+</parse>
+<bc code='184' bci='8'/>
+<method id='1114' holder='1105' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.221'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.221'/>
+</phase>
+<parse_done stamp='0.221'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.221'>
+<phase_done name='optimize_blocks' stamp='0.221'/>
+</phase>
+<phase name='gvn' stamp='0.221'>
+<phase_done name='gvn' stamp='0.221'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.221'>
+<phase_done name='rangeCheckElimination' stamp='0.221'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.221'>
+<phase_done name='optimize_null_checks' stamp='0.221'/>
+</phase>
+<phase_done name='buildIR' stamp='0.221'/>
+</phase>
+<phase name='emit_lir' stamp='0.221'>
+<phase name='lirGeneration' stamp='0.221'>
+<phase_done name='lirGeneration' stamp='0.221'/>
+</phase>
+<phase name='linearScan' stamp='0.222'>
+<phase_done name='linearScan' stamp='0.222'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.222'/>
+</phase>
+<phase name='codeemit' stamp='0.222'>
+<phase_done name='codeemit' stamp='0.222'/>
+</phase>
+<phase name='codeinstall' stamp='0.222'>
+<phase_done name='codeinstall' stamp='0.222'/>
+</phase>
+<code_cache total_blobs='612' nmethods='224' adapters='233' free_code_cache='248386560'/>
+<task_done success='1' nmsize='2024' count='279' inlined_bytes='77' stamp='0.222'/>
+</task>
+<task compile_id='231' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='105' backedge_count='3096' iicount='105' level='3' stamp='0.225'>
+<phase name='setup' stamp='0.225'>
+<phase_done name='setup' stamp='0.225'/>
+</phase>
+<phase name='buildIR' stamp='0.226'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='replace' return='983' arguments='1085 970 970' flags='9' bytes='196' iicount='105'/>
+<parse method='1094'  stamp='0.226'>
+<phase name='parse_hir' stamp='0.226'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='2289'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.226'/>
+</parse>
+<bc code='184' bci='41'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.226'/>
+</parse>
+<bc code='183' bci='121'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1098' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='739'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10921'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.226'/>
+</parse>
+<parse_done stamp='0.226'/>
+</parse>
+<bc code='184' bci='126'/>
+<klass id='1102' name='java.lang.StringUTF16' flags='16'/>
+<method id='1103' holder='1102' name='newBytesFor' return='1085' arguments='975' flags='9' bytes='61' iicount='1'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='138'/>
+<method id='1105' holder='1093' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='10' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='6'/>
+<method id='1107' holder='1102' name='inflate' return='977' arguments='1085 975 1085 975 975' flags='9' bytes='42' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.226'/>
+</parse>
+<bc code='184' bci='174'/>
+<method id='1109' holder='1102' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='190'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.226'/>
+</parse>
+<parse_done stamp='0.226'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.226'/>
+</phase>
+<parse_done stamp='0.226'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.226'>
+<phase_done name='optimize_blocks' stamp='0.226'/>
+</phase>
+<phase name='gvn' stamp='0.226'>
+<phase_done name='gvn' stamp='0.226'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.226'>
+<phase_done name='rangeCheckElimination' stamp='0.226'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.226'>
+<phase_done name='optimize_null_checks' stamp='0.226'/>
+</phase>
+<phase_done name='buildIR' stamp='0.226'/>
+</phase>
+<phase name='emit_lir' stamp='0.226'>
+<phase name='lirGeneration' stamp='0.226'>
+<phase_done name='lirGeneration' stamp='0.226'/>
+</phase>
+<phase name='linearScan' stamp='0.226'>
+<phase_done name='linearScan' stamp='0.227'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.227'/>
+</phase>
+<phase name='codeemit' stamp='0.227'>
+<phase_done name='codeemit' stamp='0.227'/>
+</phase>
+<phase name='codeinstall' stamp='0.227'>
+<phase_done name='codeinstall' stamp='0.227'/>
+</phase>
+<code_cache total_blobs='621' nmethods='232' adapters='234' free_code_cache='248372992'/>
+<task_done success='1' nmsize='3160' count='109' backedge_count='3208' inlined_bytes='68' stamp='0.227'/>
+</task>
+<task compile_id='233' method='java.lang.invoke.MethodType checkSlotCount (I)V' bytes='33' count='258' iicount='258' level='3' stamp='0.227'>
+<phase name='setup' stamp='0.227'>
+<phase_done name='setup' stamp='0.227'/>
+</phase>
+<phase name='buildIR' stamp='0.227'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='checkSlotCount' return='977' arguments='975' flags='8' bytes='33' iicount='258'/>
+<parse method='1093'  stamp='0.227'>
+<phase name='parse_hir' stamp='0.227'>
+<bc code='183' bci='13'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1095' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='248'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1097' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' iicount='261'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.227'/>
+</parse>
+<bc code='182' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1100' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='460'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='2'/>
+<method id='1102' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='461'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.227'/>
+</parse>
+<bc code='182' bci='22'/>
+<method id='1104' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='32'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='2'/>
+<method id='1106' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='32'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.227'/>
+</parse>
+<bc code='182' bci='25'/>
+<method id='1108' holder='1050' name='toString' return='983' flags='1' bytes='35' iicount='261'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1110' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='655'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.227'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1113' name='java.lang.StringLatin1' flags='16'/>
+<method id='1114' holder='1113' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='502'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='184' bci='9'/>
+<klass id='1116' name='java.util.Arrays' flags='1'/>
+<method id='1117' holder='1116' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='519'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1119' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='759'/>
+<call method='1119' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1121' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10972'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1123' name='java.lang.StringUTF16' flags='16'/>
+<method id='1124' holder='1123' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1124' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='28'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='1126' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1127' holder='1126' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='5'/>
+<klass id='1129' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1130' holder='1129' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1130' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.228'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.228'/>
+</phase>
+<parse_done stamp='0.228'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.228'>
+<phase_done name='optimize_blocks' stamp='0.228'/>
+</phase>
+<phase name='gvn' stamp='0.228'>
+<phase_done name='gvn' stamp='0.228'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.228'>
+<phase_done name='rangeCheckElimination' stamp='0.228'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.228'>
+<phase_done name='optimize_null_checks' stamp='0.228'/>
+</phase>
+<phase_done name='buildIR' stamp='0.228'/>
+</phase>
+<phase name='emit_lir' stamp='0.228'>
+<phase name='lirGeneration' stamp='0.228'>
+<phase_done name='lirGeneration' stamp='0.228'/>
+</phase>
+<phase name='linearScan' stamp='0.228'>
+<phase_done name='linearScan' stamp='0.228'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.228'/>
+</phase>
+<phase name='codeemit' stamp='0.228'>
+<phase_done name='codeemit' stamp='0.228'/>
+</phase>
+<phase name='codeinstall' stamp='0.228'>
+<phase_done name='codeinstall' stamp='0.228'/>
+</phase>
+<code_cache total_blobs='626' nmethods='237' adapters='234' free_code_cache='248362496'/>
+<task_done success='1' nmsize='2776' count='263' inlined_bytes='119' stamp='0.228'/>
+</task>
+<task compile_id='243' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='54' count='262' iicount='262' level='3' stamp='0.229'>
+<phase name='setup' stamp='0.229'>
+<phase_done name='setup' stamp='0.229'/>
+</phase>
+<phase name='buildIR' stamp='0.229'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet' flags='10'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='54' iicount='262'/>
+<parse method='1094'  stamp='0.229'>
+<phase name='parse_hir' stamp='0.229'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1096' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='183' bci='13'/>
+<method id='1098' holder='1093' name='expungeStaleElements' return='977' flags='2' bytes='27' compile_id='220' compiler='c1' level='3' iicount='349'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='4'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<klass id='1100' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1101' holder='1100' name='poll' return='1008' flags='1' bytes='28' compile_id='211' compiler='c1' level='3' iicount='413'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1101'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='17'/>
+<method id='1104' holder='1100' name='reallyPoll' return='1008' flags='2' bytes='65' iicount='2'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='185' bci='17'/>
+<klass id='1106' name='java.util.concurrent.ConcurrentMap' flags='1537'/>
+<method id='1107' holder='1106' name='remove' return='982' arguments='982' flags='4161' bytes='10' iicount='1'/>
+<call method='1107' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='183' bci='25'/>
+<klass id='1109' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry' flags='10'/>
+<method id='1110' holder='1109' name='&lt;init&gt;' return='977' arguments='982' flags='1' bytes='14' iicount='277'/>
+<call method='1110' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='2'/>
+<klass id='1010' name='java.lang.ref.WeakReference' flags='1'/>
+<method id='1112' holder='1010' name='&lt;init&gt;' return='977' arguments='982' flags='1' bytes='6' compile_id='239' compiler='c1' level='3' iicount='283'/>
+<call method='1112' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<method id='1114' holder='1008' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='7' compile_id='208' compiler='c1' level='3' iicount='429'/>
+<call method='1114' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<method id='1116' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1100' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='609'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.230'/>
+</parse>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='182' bci='7'/>
+<type id='975' name='int'/>
+<method id='1118' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='185' bci='28'/>
+<method id='1119' holder='1106' name='get' return='982' arguments='982' flags='4161' bytes='10' iicount='1'/>
+<call method='1119' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='192' bci='33'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<bc code='182' bci='42'/>
+<method id='1120' holder='1008' name='get' return='982' flags='1' bytes='5' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1109'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1101'/>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='640' nmethods='251' adapters='234' free_code_cache='248334208'/>
+<task_done success='1' nmsize='3320' count='295' inlined_bytes='82' stamp='0.231'/>
+</task>
+<task compile_id='252' method='java.lang.StringBuilder &lt;init&gt; ()V' bytes='7' count='266' iicount='266' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1093' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='266'/>
+<parse method='1093'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='279'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='641' nmethods='252' adapters='234' free_code_cache='248333184'/>
+<task_done success='1' nmsize='392' count='268' stamp='0.231'/>
+</task>
+<task compile_id='259' method='java.lang.invoke.LambdaForm argument (ILjava/lang/invoke/LambdaForm$BasicType;)Ljava/lang/invoke/LambdaForm$Name;' bytes='27' count='262' iicount='262' level='3' stamp='0.232'>
+<phase name='setup' stamp='0.232'>
+<phase_done name='setup' stamp='0.232'/>
+</phase>
+<phase name='buildIR' stamp='0.232'>
+<klass id='1094' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1095' holder='1040' name='argument' return='1094' arguments='975 1093' flags='8' bytes='27' iicount='262'/>
+<parse method='1095'  stamp='0.232'>
+<phase name='parse_hir' stamp='0.232'>
+<bc code='183' bci='12'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1094' name='&lt;init&gt;' return='977' arguments='975 1093' flags='0' bytes='9' iicount='54'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='5'/>
+<klass id='1099' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<klass id='1100' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1101' holder='1094' name='&lt;init&gt;' return='977' arguments='975 1093 1099 1100' flags='2' bytes='54' iicount='150'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.232'/>
+</parse>
+<bc code='182' bci='20'/>
+<klass id='1107' name='java.lang.Enum' flags='1025'/>
+<method id='1108' holder='1107' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.232'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.232'>
+<phase_done name='lirGeneration' stamp='0.232'/>
+</phase>
+<phase name='linearScan' stamp='0.232'>
+<phase_done name='linearScan' stamp='0.232'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.232'/>
+</phase>
+<phase name='codeemit' stamp='0.232'>
+<phase_done name='codeemit' stamp='0.233'/>
+</phase>
+<phase name='codeinstall' stamp='0.233'>
+<phase_done name='codeinstall' stamp='0.233'/>
+</phase>
+<code_cache total_blobs='649' nmethods='260' adapters='234' free_code_cache='248321792'/>
+<task_done success='1' nmsize='904' count='262' inlined_bytes='14' stamp='0.233'/>
+</task>
+<task compile_id='263' method='java.lang.invoke.MethodType ptypes ()[Ljava/lang/Class;' bytes='5' count='131' iicount='131' level='1' stamp='0.234'>
+<phase name='setup' stamp='0.234'>
+<phase_done name='setup' stamp='0.234'/>
+</phase>
+<phase name='buildIR' stamp='0.234'>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1094' holder='1041' name='ptypes' return='1093' flags='0' bytes='5' iicount='132'/>
+<parse method='1094'  stamp='0.234'>
+<phase name='parse_hir' stamp='0.234'>
+<phase_done name='parse_hir' stamp='0.234'/>
+</phase>
+<parse_done stamp='0.234'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.234'>
+<phase_done name='optimize_blocks' stamp='0.234'/>
+</phase>
+<phase name='gvn' stamp='0.234'>
+<phase_done name='gvn' stamp='0.234'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.234'>
+<phase_done name='rangeCheckElimination' stamp='0.234'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.234'>
+<phase_done name='optimize_null_checks' stamp='0.234'/>
+</phase>
+<phase_done name='buildIR' stamp='0.234'/>
+</phase>
+<phase name='emit_lir' stamp='0.234'>
+<phase name='lirGeneration' stamp='0.234'>
+<phase_done name='lirGeneration' stamp='0.234'/>
+</phase>
+<phase name='linearScan' stamp='0.234'>
+<phase_done name='linearScan' stamp='0.234'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.234'/>
+</phase>
+<phase name='codeemit' stamp='0.234'>
+<phase_done name='codeemit' stamp='0.234'/>
+</phase>
+<phase name='codeinstall' stamp='0.234'>
+<phase_done name='codeinstall' stamp='0.234'/>
+</phase>
+<code_cache total_blobs='654' nmethods='264' adapters='235' free_code_cache='248317952'/>
+<task_done success='1' nmsize='272' count='135' stamp='0.234'/>
+</task>
+<task compile_id='266' method='java.lang.Class getComponentType ()Ljava/lang/Class;' bytes='14' count='257' iicount='257' level='3' stamp='0.234'>
+<phase name='setup' stamp='0.234'>
+<phase_done name='setup' stamp='0.234'/>
+</phase>
+<phase name='buildIR' stamp='0.234'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getComponentType' return='984' flags='1' bytes='14' iicount='257'/>
+<parse method='1093'  stamp='0.234'>
+<phase name='parse_hir' stamp='0.234'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.234'/>
+</phase>
+<parse_done stamp='0.234'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.234'>
+<phase_done name='optimize_blocks' stamp='0.234'/>
+</phase>
+<phase name='gvn' stamp='0.234'>
+<phase_done name='gvn' stamp='0.234'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.234'>
+<phase_done name='rangeCheckElimination' stamp='0.234'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.234'>
+<phase_done name='optimize_null_checks' stamp='0.234'/>
+</phase>
+<phase_done name='buildIR' stamp='0.234'/>
+</phase>
+<phase name='emit_lir' stamp='0.234'>
+<phase name='lirGeneration' stamp='0.234'>
+<phase_done name='lirGeneration' stamp='0.234'/>
+</phase>
+<phase name='linearScan' stamp='0.234'>
+<phase_done name='linearScan' stamp='0.234'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.234'/>
+</phase>
+<phase name='codeemit' stamp='0.234'>
+<phase_done name='codeemit' stamp='0.234'/>
+</phase>
+<phase name='codeinstall' stamp='0.234'>
+<phase_done name='codeinstall' stamp='0.234'/>
+</phase>
+<code_cache total_blobs='658' nmethods='268' adapters='235' free_code_cache='248314496'/>
+<task_done success='1' nmsize='616' count='262' stamp='0.234'/>
+</task>
+<task compile_id='272' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry equals (Ljava/lang/Object;)Z' bytes='49' count='257' iicount='257' level='3' stamp='0.235'>
+<phase name='setup' stamp='0.235'>
+<phase_done name='setup' stamp='0.235'/>
+</phase>
+<phase name='buildIR' stamp='0.235'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry' flags='10'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982' flags='1' bytes='49' iicount='257'/>
+<parse method='1094'  stamp='0.235'>
+<phase name='parse_hir' stamp='0.235'>
+<bc code='193' bci='1'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='192' bci='8'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='11'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1096' holder='1008' name='get' return='982' flags='1' bytes='5' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='16'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='43'/>
+<method id='1098' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='33'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.235'/>
+</phase>
+<parse_done stamp='0.235'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.235'>
+<phase_done name='optimize_blocks' stamp='0.235'/>
+</phase>
+<phase name='gvn' stamp='0.235'>
+<phase_done name='gvn' stamp='0.235'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.235'>
+<phase_done name='rangeCheckElimination' stamp='0.235'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.235'>
+<phase_done name='optimize_null_checks' stamp='0.235'/>
+</phase>
+<phase_done name='buildIR' stamp='0.235'/>
+</phase>
+<phase name='emit_lir' stamp='0.235'>
+<phase name='lirGeneration' stamp='0.235'>
+<phase_done name='lirGeneration' stamp='0.235'/>
+</phase>
+<phase name='linearScan' stamp='0.235'>
+<phase_done name='linearScan' stamp='0.235'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.235'/>
+</phase>
+<phase name='codeemit' stamp='0.235'>
+<phase_done name='codeemit' stamp='0.235'/>
+</phase>
+<phase name='codeinstall' stamp='0.235'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.235'/>
+</phase>
+<code_cache total_blobs='664' nmethods='274' adapters='235' free_code_cache='248305536'/>
+<task_done success='1' nmsize='1704' count='260' stamp='0.235'/>
+</task>
+<task compile_id='282' method='java.util.Arrays copyOf ([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;' bytes='40' count='260' iicount='260' level='3' stamp='0.238'>
+<phase name='setup' stamp='0.238'>
+<phase_done name='setup' stamp='0.238'/>
+</phase>
+<phase name='buildIR' stamp='0.238'>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1095' holder='1093' name='copyOf' return='1094' arguments='1094 975 984' flags='9' bytes='40' iicount='260'/>
+<parse method='1095'  stamp='0.238'>
+<phase name='parse_hir' stamp='0.238'>
+<bc code='182' bci='14'/>
+<method id='1098' holder='984' name='getComponentType' return='984' flags='1' bytes='14' compile_id='266' compiler='c1' level='3' iicount='307'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.238'/>
+</parse>
+<bc code='184' bci='18'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1101' name='java.lang.reflect.Array' flags='17'/>
+<method id='1102' holder='1101' name='newInstance' return='982' arguments='984 975' flags='9' bytes='6' compile_id='275' compiler='c1' level='3' iicount='289'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='2'/>
+<method id='1104' holder='1101' name='newArray' return='982' arguments='984 975' flags='266' bytes='0' compile_id='276' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.238'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1105' name='java.lang.Math' flags='17'/>
+<method id='1106' holder='1105' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='120' compiler='c1' level='3' iicount='1881'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.238'/>
+</parse>
+<bc code='184' bci='35'/>
+<type id='977' name='void'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1108' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.238'/>
+</phase>
+<parse_done stamp='0.238'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.238'>
+<phase_done name='optimize_blocks' stamp='0.238'/>
+</phase>
+<phase name='gvn' stamp='0.238'>
+<phase_done name='gvn' stamp='0.238'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.238'>
+<phase_done name='rangeCheckElimination' stamp='0.238'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.238'>
+<phase_done name='optimize_null_checks' stamp='0.238'/>
+</phase>
+<phase_done name='buildIR' stamp='0.238'/>
+</phase>
+<phase name='emit_lir' stamp='0.238'>
+<phase name='lirGeneration' stamp='0.238'>
+<phase_done name='lirGeneration' stamp='0.238'/>
+</phase>
+<phase name='linearScan' stamp='0.238'>
+<phase_done name='linearScan' stamp='0.238'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.238'/>
+</phase>
+<phase name='codeemit' stamp='0.238'>
+<phase_done name='codeemit' stamp='0.239'/>
+</phase>
+<phase name='codeinstall' stamp='0.239'>
+<phase_done name='codeinstall' stamp='0.239'/>
+</phase>
+<code_cache total_blobs='678' nmethods='284' adapters='239' free_code_cache='248288512'/>
+<task_done success='1' nmsize='1992' count='271' inlined_bytes='31' stamp='0.239'/>
+</task>
+<task compile_id='288' method='jdk.internal.org.objectweb.asm.Item isEqualTo (Ljdk/internal/org/objectweb/asm/Item;)Z' bytes='354' count='236' iicount='236' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1094' holder='1093' name='isEqualTo' return='969' arguments='1093' flags='0' bytes='354' iicount='236'/>
+<parse method='1094'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='182' bci='234'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1096' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='8' compiler='c1' level='3' iicount='5290'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='248'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='280'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='294'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='156'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='214'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='314'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='328'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='342'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='685' nmethods='291' adapters='239' free_code_cache='248269568'/>
+<task_done success='1' nmsize='3336' count='263' stamp='0.241'/>
+</task>
+<task compile_id='294' method='java.lang.reflect.Modifier isStatic (I)Z' bytes='13' count='256' iicount='256' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1094' holder='1093' name='isStatic' return='969' arguments='975' flags='9' bytes='13' iicount='256'/>
+<parse method='1094'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='687' nmethods='293' adapters='239' free_code_cache='248267776'/>
+<task_done success='1' nmsize='400' count='256' stamp='0.241'/>
+</task>
+<task compile_id='299' method='sun.invoke.util.Wrapper findPrimitiveType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='25' count='256' iicount='256' level='3' stamp='0.242'>
+<phase name='setup' stamp='0.242'>
+<phase_done name='setup' stamp='0.242'/>
+</phase>
+<phase name='buildIR' stamp='0.242'>
+<klass id='1093' name='sun.invoke.util.Wrapper' flags='16401'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1094' holder='1093' name='findPrimitiveType' return='1093' arguments='984' flags='8' bytes='25' iicount='256'/>
+<parse method='1094'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<bc code='184' bci='4'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1093' name='hashPrim' return='975' arguments='984' flags='10' bytes='30' iicount='266'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='182' bci='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1101' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='604'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='11'/>
+<method id='1103' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='57'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1104' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='3337'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1106' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='13598'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='17'/>
+<type id='970' name='char'/>
+<method id='1109' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='12444'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1111' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='20216'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1113' name='java.lang.StringLatin1' flags='16'/>
+<method id='1114' holder='1113' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='6' compiler='c1' level='3' iicount='12575'/>
+<call method='1114' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='1116' name='java.lang.StringUTF16' flags='16'/>
+<method id='1117' holder='1116' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<type id='977' name='void'/>
+<method id='1119' holder='1116' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='184' bci='2'/>
+<method id='1121' holder='1116' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1123' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1125' holder='1116' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='182' bci='22'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1114' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='2'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='184' bci='2'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.243'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.244'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.244'/>
+</phase>
+<parse_done stamp='0.244'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.244'>
+<phase_done name='optimize_blocks' stamp='0.244'/>
+</phase>
+<phase name='gvn' stamp='0.244'>
+<phase_done name='gvn' stamp='0.244'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.244'>
+<phase_done name='rangeCheckElimination' stamp='0.244'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.244'>
+<phase_done name='optimize_null_checks' stamp='0.244'/>
+</phase>
+<phase_done name='buildIR' stamp='0.244'/>
+</phase>
+<phase name='emit_lir' stamp='0.244'>
+<phase name='lirGeneration' stamp='0.244'>
+<phase_done name='lirGeneration' stamp='0.244'/>
+</phase>
+<phase name='linearScan' stamp='0.244'>
+<phase_done name='linearScan' stamp='0.244'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.244'/>
+</phase>
+<phase name='codeemit' stamp='0.244'>
+<phase_done name='codeemit' stamp='0.244'/>
+</phase>
+<phase name='codeinstall' stamp='0.244'>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='697' nmethods='303' adapters='239' free_code_cache='248249472'/>
+<task_done success='1' nmsize='3592' count='276' inlined_bytes='215' stamp='0.245'/>
+</task>
+<task compile_id='307' method='java.lang.invoke.LambdaForm$NamedFunction methodType ()Ljava/lang/invoke/MethodType;' bytes='23' count='264' iicount='264' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<method id='1094' holder='1093' name='methodType' return='1041' flags='0' bytes='23' iicount='265'/>
+<parse method='1094'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<bc code='182' bci='11'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1096' holder='1035' name='type' return='1041' flags='1' bytes='5' compile_id='260' compiler='c1' level='1' iicount='129'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1035' x='1096'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='182' bci='19'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1098' holder='1038' name='getInvocationType' return='1041' flags='1' bytes='56' iicount='151'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.245'/>
+</phase>
+<phase name='codeinstall' stamp='0.245'>
+<dependency type='unique_concrete_method' ctxk='1035' x='1096'/>
+<phase_done name='codeinstall' stamp='0.245'/>
+</phase>
+<code_cache total_blobs='701' nmethods='307' adapters='239' free_code_cache='248241920'/>
+<task_done success='1' nmsize='776' count='269' inlined_bytes='5' stamp='0.245'/>
+</task>
+<task compile_id='310' method='jdk.internal.org.objectweb.asm.Frame push (I)V' bytes='110' count='359' iicount='359' level='3' stamp='0.245'>
+<phase name='setup' stamp='0.245'>
+<phase_done name='setup' stamp='0.245'/>
+</phase>
+<phase name='buildIR' stamp='0.245'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1094' holder='1093' name='push' return='977' arguments='975' flags='2' bytes='110' iicount='364'/>
+<parse method='1094'  stamp='0.245'>
+<phase name='parse_hir' stamp='0.245'>
+<bc code='184' bci='38'/>
+<klass id='1096' name='java.lang.Math' flags='17'/>
+<method id='1097' holder='1096' name='max' return='975' arguments='975 975' flags='9' bytes='11' iicount='145'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.246'/>
+</parse>
+<bc code='184' bci='52'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1099' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.246'/>
+</phase>
+<parse_done stamp='0.246'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.246'>
+<phase_done name='optimize_blocks' stamp='0.246'/>
+</phase>
+<phase name='gvn' stamp='0.246'>
+<phase_done name='gvn' stamp='0.246'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.246'>
+<phase_done name='rangeCheckElimination' stamp='0.246'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.246'>
+<phase_done name='optimize_null_checks' stamp='0.246'/>
+</phase>
+<phase_done name='buildIR' stamp='0.246'/>
+</phase>
+<phase name='emit_lir' stamp='0.246'>
+<phase name='lirGeneration' stamp='0.246'>
+<phase_done name='lirGeneration' stamp='0.246'/>
+</phase>
+<phase name='linearScan' stamp='0.246'>
+<phase_done name='linearScan' stamp='0.246'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.246'/>
+</phase>
+<phase name='codeemit' stamp='0.246'>
+<phase_done name='codeemit' stamp='0.246'/>
+</phase>
+<phase name='codeinstall' stamp='0.246'>
+<phase_done name='codeinstall' stamp='0.246'/>
+</phase>
+<code_cache total_blobs='704' nmethods='310' adapters='239' free_code_cache='248229248'/>
+<task_done success='1' nmsize='1480' count='383' inlined_bytes='11' stamp='0.246'/>
+</task>
+<task compile_id='313' method='java.lang.invoke.LambdaForm$Name useCount (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='42' count='262' backedge_count='654' iicount='262' level='3' stamp='0.246'>
+<phase name='setup' stamp='0.246'>
+<phase_done name='setup' stamp='0.246'/>
+</phase>
+<phase name='buildIR' stamp='0.246'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1094' holder='1093' name='useCount' return='975' arguments='1093' flags='0' bytes='42' iicount='262'/>
+<parse method='1094'  stamp='0.246'>
+<phase name='parse_hir' stamp='0.246'>
+<phase_done name='parse_hir' stamp='0.246'/>
+</phase>
+<parse_done stamp='0.246'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.246'>
+<phase_done name='optimize_blocks' stamp='0.246'/>
+</phase>
+<phase name='gvn' stamp='0.246'>
+<phase_done name='gvn' stamp='0.246'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.246'>
+<phase_done name='rangeCheckElimination' stamp='0.246'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.246'>
+<phase_done name='optimize_null_checks' stamp='0.246'/>
+</phase>
+<phase_done name='buildIR' stamp='0.246'/>
+</phase>
+<phase name='emit_lir' stamp='0.246'>
+<phase name='lirGeneration' stamp='0.246'>
+<phase_done name='lirGeneration' stamp='0.246'/>
+</phase>
+<phase name='linearScan' stamp='0.246'>
+<phase_done name='linearScan' stamp='0.247'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.247'/>
+</phase>
+<phase name='codeemit' stamp='0.247'>
+<phase_done name='codeemit' stamp='0.247'/>
+</phase>
+<phase name='codeinstall' stamp='0.247'>
+<phase_done name='codeinstall' stamp='0.247'/>
+</phase>
+<code_cache total_blobs='705' nmethods='311' adapters='239' free_code_cache='248227712'/>
+<task_done success='1' nmsize='784' count='283' backedge_count='716' stamp='0.247'/>
+</task>
+<task compile_id='315' method='java.lang.invoke.MemberName isStatic ()Z' bytes='8' count='257' iicount='257' level='3' stamp='0.247'>
+<phase name='setup' stamp='0.247'>
+<phase_done name='setup' stamp='0.247'/>
+</phase>
+<phase name='buildIR' stamp='0.247'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isStatic' return='969' flags='1' bytes='8' iicount='257'/>
+<parse method='1093'  stamp='0.247'>
+<phase name='parse_hir' stamp='0.247'>
+<bc code='184' bci='4'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1096' holder='1095' name='isStatic' return='969' arguments='975' flags='9' bytes='13' compile_id='294' compiler='c1' level='3' iicount='307'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.247'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.247'/>
+</phase>
+<parse_done stamp='0.247'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.247'>
+<phase_done name='optimize_blocks' stamp='0.247'/>
+</phase>
+<phase name='gvn' stamp='0.247'>
+<phase_done name='gvn' stamp='0.247'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.247'>
+<phase_done name='rangeCheckElimination' stamp='0.247'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.247'>
+<phase_done name='optimize_null_checks' stamp='0.247'/>
+</phase>
+<phase_done name='buildIR' stamp='0.247'/>
+</phase>
+<phase name='emit_lir' stamp='0.247'>
+<phase name='lirGeneration' stamp='0.247'>
+<phase_done name='lirGeneration' stamp='0.247'/>
+</phase>
+<phase name='linearScan' stamp='0.247'>
+<phase_done name='linearScan' stamp='0.247'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.247'/>
+</phase>
+<phase name='codeemit' stamp='0.247'>
+<phase_done name='codeemit' stamp='0.247'/>
+</phase>
+<phase name='codeinstall' stamp='0.247'>
+<phase_done name='codeinstall' stamp='0.247'/>
+</phase>
+<code_cache total_blobs='706' nmethods='312' adapters='239' free_code_cache='248226560'/>
+<task_done success='1' nmsize='528' count='260' inlined_bytes='13' stamp='0.247'/>
+</task>
+<task compile_id='318' method='sun.invoke.util.Wrapper forPrimitiveType (Ljava/lang/Class;)Lsun/invoke/util/Wrapper;' bytes='49' count='311' iicount='311' level='3' stamp='0.248'>
+<phase name='setup' stamp='0.248'>
+<phase_done name='setup' stamp='0.248'/>
+</phase>
+<phase name='buildIR' stamp='0.248'>
+<klass id='1093' name='sun.invoke.util.Wrapper' flags='16401'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1094' holder='1093' name='forPrimitiveType' return='1093' arguments='984' flags='9' bytes='49' iicount='311'/>
+<parse method='1094'  stamp='0.248'>
+<phase name='parse_hir' stamp='0.248'>
+<bc code='184' bci='1'/>
+<method id='1096' holder='1093' name='findPrimitiveType' return='1093' arguments='984' flags='8' bytes='25' compile_id='299' compiler='c1' level='3' iicount='311'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='4'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1093' name='hashPrim' return='975' arguments='984' flags='10' bytes='30' compile_id='298' compiler='c1' level='3' iicount='321'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1103' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='740'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='11'/>
+<method id='1105' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='59'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1106' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='3662'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1108' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='14195'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='182' bci='17'/>
+<type id='970' name='char'/>
+<method id='1111' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='14359'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1113' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='22273'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='14367'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='1118' name='java.lang.StringUTF16' flags='16'/>
+<method id='1119' holder='1118' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='184' bci='2'/>
+<type id='977' name='void'/>
+<method id='1121' holder='1118' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<method id='1123' holder='1118' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1125' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1125' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1127' holder='1118' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1127' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='182' bci='22'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='1'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='184' bci='2'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1125' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1127' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='182' bci='12'/>
+<method id='1128' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='22'/>
+<klass id='1130' name='java.lang.InternalError' flags='1'/>
+<method id='1131' holder='1130' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='30'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1132' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='478'/>
+<call method='1132' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1134' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='493'/>
+<call method='1134' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='182' bci='35'/>
+<method id='1137' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='695'/>
+<call method='1137' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<method id='1139' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='695'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.249'/>
+</parse>
+<bc code='182' bci='39'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1141' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1141' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='184' bci='2'/>
+<method id='1143' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='182' bci='10'/>
+<method id='1146' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1137' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='42'/>
+<method id='1149' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='495'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='182' bci='1'/>
+<method id='1151' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1374'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='16'/>
+<method id='1153' holder='1115' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='913'/>
+<call method='1153' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='184' bci='9'/>
+<klass id='1155' name='java.util.Arrays' flags='1'/>
+<method id='1156' holder='1155' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='930'/>
+<call method='1156' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1158' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1311'/>
+<call method='1158' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='183' bci='1'/>
+<method id='1160' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='13368'/>
+<call method='1160' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1160'>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='31'/>
+<method id='1162' holder='1118' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1162' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='45'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1164' holder='1093' name='newIllegalArgumentException' return='993' arguments='983' flags='10' bytes='9' iicount='1'/>
+<call method='1164' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1164'>
+<bc code='183' bci='5'/>
+<klass id='1166' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1167' holder='1166' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1167' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.250'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='731' nmethods='332' adapters='239' free_code_cache='248136576'/>
+<task_done success='1' nmsize='7016' count='341' inlined_bytes='382' stamp='0.252'/>
+</task>
+<task compile_id='337' method='java.lang.invoke.LambdaForm$Name replaceNames ([Ljava/lang/invoke/LambdaForm$Name;[Ljava/lang/invoke/LambdaForm$Name;II)Ljava/lang/invoke/LambdaForm$Name;' bytes='174' count='212' backedge_count='2064' iicount='212' level='3' stamp='0.252'>
+<phase name='setup' stamp='0.252'>
+<phase_done name='setup' stamp='0.252'/>
+</phase>
+<phase name='buildIR' stamp='0.252'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1094' name='[Ljava.lang.invoke.LambdaForm$Name;' flags='1040'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1093' name='replaceNames' return='1093' arguments='1094 1094 975 975' flags='0' bytes='174' iicount='212'/>
+<parse method='1095'  stamp='0.252'>
+<phase name='parse_hir' stamp='0.252'>
+<bc code='182' bci='121'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='clone' return='982' flags='260' bytes='0' compile_id='248' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='170'/>
+<type id='977' name='void'/>
+<klass id='1099' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<klass id='1097' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1100' holder='1093' name='&lt;init&gt;' return='977' arguments='1099 1097' flags='128' bytes='44' iicount='249'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.252'/>
+</phase>
+<parse_done stamp='0.252'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.252'>
+<phase_done name='optimize_blocks' stamp='0.252'/>
+</phase>
+<phase name='gvn' stamp='0.252'>
+<phase_done name='gvn' stamp='0.252'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.252'>
+<phase_done name='rangeCheckElimination' stamp='0.252'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.252'>
+<phase_done name='optimize_null_checks' stamp='0.252'/>
+</phase>
+<phase_done name='buildIR' stamp='0.252'/>
+</phase>
+<phase name='emit_lir' stamp='0.252'>
+<phase name='lirGeneration' stamp='0.252'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.253'/>
+</phase>
+<code_cache total_blobs='736' nmethods='338' adapters='239' free_code_cache='248122112'/>
+<task_done success='1' nmsize='3064' count='212' backedge_count='2064' stamp='0.253'/>
+</task>
+<task compile_id='341' method='java.lang.Class hasEnclosingMethodInfo ()Z' bytes='17' count='256' iicount='256' level='3' stamp='0.253'>
+<phase name='setup' stamp='0.253'>
+<phase_done name='setup' stamp='0.253'/>
+</phase>
+<phase name='buildIR' stamp='0.253'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='hasEnclosingMethodInfo' return='969' flags='2' bytes='17' iicount='256'/>
+<parse method='1093'  stamp='0.253'>
+<phase name='parse_hir' stamp='0.253'>
+<bc code='183' bci='1'/>
+<klass id='1095' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1096' holder='984' name='getEnclosingMethod0' return='1095' flags='258' bytes='0' compile_id='342' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.lang.Class$EnclosingMethodInfo' unloaded='1'/>
+<method id='1098' holder='1097' name='validate' return='977' arguments='1095' unloaded='1'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.253'/>
+</phase>
+<parse_done stamp='0.253'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.253'>
+<phase_done name='optimize_blocks' stamp='0.253'/>
+</phase>
+<phase name='gvn' stamp='0.253'>
+<phase_done name='gvn' stamp='0.253'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.253'>
+<phase_done name='rangeCheckElimination' stamp='0.253'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.253'>
+<phase_done name='optimize_null_checks' stamp='0.253'/>
+</phase>
+<phase_done name='buildIR' stamp='0.253'/>
+</phase>
+<phase name='emit_lir' stamp='0.253'>
+<phase name='lirGeneration' stamp='0.253'>
+<phase_done name='lirGeneration' stamp='0.253'/>
+</phase>
+<phase name='linearScan' stamp='0.253'>
+<phase_done name='linearScan' stamp='0.253'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.253'/>
+</phase>
+<phase name='codeemit' stamp='0.253'>
+<phase_done name='codeemit' stamp='0.253'/>
+</phase>
+<phase name='codeinstall' stamp='0.253'>
+<phase_done name='codeinstall' stamp='0.253'/>
+</phase>
+<code_cache total_blobs='739' nmethods='341' adapters='239' free_code_cache='248119168'/>
+<task_done success='1' nmsize='504' count='256' stamp='0.253'/>
+</task>
+<task compile_id='346' method='java.lang.invoke.LambdaForm$BasicType basicTypeSlots ()I' bytes='8' count='271' iicount='271' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1094' holder='1093' name='basicTypeSlots' return='975' flags='0' bytes='8' iicount='271'/>
+<parse method='1094'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='182' bci='4'/>
+<klass id='1096' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1097' holder='1096' name='stackSlots' return='975' flags='1' bytes='9' iicount='271'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.254'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.254'>
+<phase_done name='lirGeneration' stamp='0.254'/>
+</phase>
+<phase name='linearScan' stamp='0.254'>
+<phase_done name='linearScan' stamp='0.254'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.254'/>
+</phase>
+<phase name='codeemit' stamp='0.254'>
+<phase_done name='codeemit' stamp='0.254'/>
+</phase>
+<phase name='codeinstall' stamp='0.254'>
+<phase_done name='codeinstall' stamp='0.254'/>
+</phase>
+<code_cache total_blobs='744' nmethods='344' adapters='239' free_code_cache='248104960'/>
+<task_done success='1' nmsize='592' count='271' inlined_bytes='9' stamp='0.254'/>
+</task>
+<task compile_id='348' method='java.lang.invoke.MemberName getFieldType ()Ljava/lang/Class;' bytes='177' count='278' iicount='278' level='3' stamp='0.254'>
+<phase name='setup' stamp='0.254'>
+<phase_done name='setup' stamp='0.254'/>
+</phase>
+<phase name='buildIR' stamp='0.254'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getFieldType' return='984' flags='1' bytes='177' iicount='279'/>
+<parse method='1093'  stamp='0.254'>
+<phase name='parse_hir' stamp='0.254'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<method id='1095' holder='1038' name='expandFromVM' return='977' flags='2' bytes='21' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1038' name='isResolved' return='969' flags='1' bytes='13' iicount='221'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='184' bci='17'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1099' holder='1039' name='expand' return='977' arguments='1038' flags='264' bytes='0' iicount='1'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1100' holder='1038' name='isInvocable' return='969' flags='1' bytes='7' compile_id='223' compiler='c1' level='3' iicount='1194'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1102' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' compile_id='224' compiler='c1' level='3' iicount='1194'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='3'/>
+<method id='1104' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='1865'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.255'/>
+</parse>
+<parse_done stamp='0.255'/>
+</parse>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='184' bci='29'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1107' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1108' holder='1107' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='5'/>
+<klass id='1110' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1111' holder='1110' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='183' bci='76'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1113' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='541'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1115' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='558'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='182' bci='81'/>
+<method id='1118' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='773'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='2'/>
+<method id='1120' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='773'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='182' bci='85'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='2'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='182' bci='88'/>
+<method id='1122' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='558'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='182' bci='1'/>
+<method id='1124' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1579'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1127' name='java.lang.StringLatin1' flags='16'/>
+<method id='1128' holder='1127' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='1036'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='184' bci='9'/>
+<klass id='1130' name='java.util.Arrays' flags='1'/>
+<method id='1131' holder='1130' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='1054'/>
+<call method='1131' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1133' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1497'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1135' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='14115'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.255'/>
+</parse>
+<parse_done stamp='0.255'/>
+</parse>
+<parse_done stamp='0.255'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1137' name='java.lang.StringUTF16' flags='16'/>
+<method id='1138' holder='1137' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.256'/>
+</parse>
+<bc code='182' bci='92'/>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<method id='1140' holder='1038' name='getClassLoader' return='986' flags='1' bytes='8' iicount='1'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='182' bci='4'/>
+<method id='1142' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' compile_id='240' compiler='c1' level='3' iicount='885'/>
+<call method='1142' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1142'>
+<bc code='182' bci='1'/>
+<method id='1144' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<parse_done stamp='0.256'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1146' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='481'/>
+<call method='1146' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1146'>
+<parse_done stamp='0.256'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1149' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1150' holder='1149' name='getCallerClass' return='984' flags='265' bytes='0' iicount='31'/>
+<call method='1150' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<method id='1151' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1151' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.256'/>
+</parse>
+<parse_done stamp='0.256'/>
+</parse>
+<bc code='184' bci='95'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1153' holder='1041' name='fromDescriptor' return='1041' arguments='983 986' flags='8' bytes='88' iicount='8'/>
+<call method='1153' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='100'/>
+<method id='1155' holder='1041' name='returnType' return='984' flags='1' bytes='5' compile_id='204' compiler='c1' level='1' iicount='128'/>
+<call method='1155' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<parse_done stamp='0.256'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.256'/>
+</phase>
+<parse_done stamp='0.256'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.256'>
+<phase_done name='optimize_blocks' stamp='0.256'/>
+</phase>
+<phase name='gvn' stamp='0.256'>
+<phase_done name='gvn' stamp='0.256'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.256'>
+<phase_done name='rangeCheckElimination' stamp='0.256'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.256'>
+<phase_done name='optimize_null_checks' stamp='0.256'/>
+</phase>
+<phase_done name='buildIR' stamp='0.256'/>
+</phase>
+<phase name='emit_lir' stamp='0.256'>
+<phase name='lirGeneration' stamp='0.256'>
+<phase_done name='lirGeneration' stamp='0.256'/>
+</phase>
+<phase name='linearScan' stamp='0.256'>
+<phase_done name='linearScan' stamp='0.257'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.257'/>
+</phase>
+<phase name='codeemit' stamp='0.257'>
+<phase_done name='codeemit' stamp='0.257'/>
+</phase>
+<phase name='codeinstall' stamp='0.257'>
+<phase_done name='codeinstall' stamp='0.257'/>
+</phase>
+<code_cache total_blobs='759' nmethods='358' adapters='240' free_code_cache='248071296'/>
+<task_done success='1' nmsize='7224' count='329' inlined_bytes='214' stamp='0.257'/>
+</task>
+<task compile_id='362' method='jdk.internal.org.objectweb.asm.ClassWriter put122 (III)V' bytes='15' count='262' iicount='262' level='3' stamp='0.257'>
+<phase name='setup' stamp='0.257'>
+<phase_done name='setup' stamp='0.257'/>
+</phase>
+<phase name='buildIR' stamp='0.257'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1094' holder='1093' name='put122' return='977' arguments='975 975 975' flags='2' bytes='15' iicount='264'/>
+<parse method='1094'  stamp='0.257'>
+<phase name='parse_hir' stamp='0.257'>
+<bc code='182' bci='6'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1097' holder='1096' name='put12' return='1096' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='647'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='10'/>
+<method id='1099' holder='1096' name='putShort' return='1096' arguments='975' flags='1' bytes='52' compile_id='238' compiler='c1' level='3' iicount='954'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='parse_hir' stamp='0.258'/>
+</phase>
+<parse_done stamp='0.258'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.258'>
+<phase_done name='optimize_blocks' stamp='0.258'/>
+</phase>
+<phase name='gvn' stamp='0.258'>
+<phase_done name='gvn' stamp='0.258'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.258'>
+<phase_done name='rangeCheckElimination' stamp='0.258'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.258'>
+<phase_done name='optimize_null_checks' stamp='0.258'/>
+</phase>
+<phase_done name='buildIR' stamp='0.258'/>
+</phase>
+<phase name='emit_lir' stamp='0.258'>
+<phase name='lirGeneration' stamp='0.258'>
+<phase_done name='lirGeneration' stamp='0.258'/>
+</phase>
+<phase name='linearScan' stamp='0.258'>
+<phase_done name='linearScan' stamp='0.258'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.258'/>
+</phase>
+<phase name='codeemit' stamp='0.258'>
+<phase_done name='codeemit' stamp='0.258'/>
+</phase>
+<phase name='codeinstall' stamp='0.258'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.258'/>
+</phase>
+<code_cache total_blobs='762' nmethods='360' adapters='241' free_code_cache='248068480'/>
+<task_done success='1' nmsize='504' count='266' stamp='0.258'/>
+</task>
+<task compile_id='367' method='java.lang.invoke.MemberName getMethodType ()Ljava/lang/invoke/MethodType;' bytes='202' count='358' iicount='358' level='3' stamp='0.259'>
+<phase name='setup' stamp='0.259'>
+<phase_done name='setup' stamp='0.259'/>
+</phase>
+<phase name='buildIR' stamp='0.259'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getMethodType' return='1041' flags='1' bytes='202' iicount='359'/>
+<parse method='1093'  stamp='0.259'>
+<phase name='parse_hir' stamp='0.259'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<method id='1095' holder='1038' name='expandFromVM' return='977' flags='2' bytes='21' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1038' name='isResolved' return='969' flags='1' bytes='13' iicount='269'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.259'/>
+</parse>
+<bc code='184' bci='17'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1099' holder='1039' name='expand' return='977' arguments='1038' flags='264' bytes='0' iicount='1'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.259'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1100' holder='1038' name='isInvocable' return='969' flags='1' bytes='7' compile_id='223' compiler='c1' level='3' iicount='1451'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1102' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' compile_id='224' compiler='c1' level='3' iicount='1453'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='3'/>
+<method id='1104' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='2271'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.259'/>
+</parse>
+<parse_done stamp='0.259'/>
+</parse>
+<parse_done stamp='0.259'/>
+</parse>
+<bc code='184' bci='29'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1107' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1108' holder='1107' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='5'/>
+<klass id='1110' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1111' holder='1110' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='74'/>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<method id='1113' holder='1038' name='getClassLoader' return='986' flags='1' bytes='8' iicount='1'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='4'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1115' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' compile_id='240' compiler='c1' level='3' iicount='1045'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1115'>
+<bc code='182' bci='1'/>
+<method id='1117' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1119' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='504'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1122' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1123' holder='1122' name='getCallerClass' return='984' flags='265' bytes='0' iicount='32'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<method id='1124' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1124' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='77'/>
+<method id='1126' holder='1041' name='fromDescriptor' return='1041' arguments='983 986' flags='8' bytes='88' iicount='9'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='125'/>
+<klass id='1130' name='[Ljava.lang.Class;' flags='1041'/>
+<method id='1131' holder='1041' name='methodType' return='1041' arguments='984 1130' flags='9' bytes='7' iicount='151'/>
+<call method='1131' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='184' bci='3'/>
+<method id='1133' holder='1041' name='makeImpl' return='1041' arguments='984 1130 969' flags='8' bytes='66' compile_id='241' compiler='c1' level='3' iicount='850'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.260'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.260'/>
+</phase>
+<parse_done stamp='0.260'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.260'>
+<phase_done name='optimize_blocks' stamp='0.260'/>
+</phase>
+<phase name='gvn' stamp='0.260'>
+<phase_done name='gvn' stamp='0.260'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.260'>
+<phase_done name='rangeCheckElimination' stamp='0.260'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.260'>
+<phase_done name='optimize_null_checks' stamp='0.260'/>
+</phase>
+<phase_done name='buildIR' stamp='0.260'/>
+</phase>
+<phase name='emit_lir' stamp='0.260'>
+<phase name='lirGeneration' stamp='0.260'>
+<phase_done name='lirGeneration' stamp='0.261'/>
+</phase>
+<phase name='linearScan' stamp='0.261'>
+<phase_done name='linearScan' stamp='0.261'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.261'/>
+</phase>
+<phase name='codeemit' stamp='0.261'>
+<phase_done name='codeemit' stamp='0.261'/>
+</phase>
+<phase name='codeinstall' stamp='0.261'>
+<phase_done name='codeinstall' stamp='0.261'/>
+</phase>
+<code_cache total_blobs='771' nmethods='369' adapters='241' free_code_cache='248018432'/>
+<task_done success='1' nmsize='6264' count='387' inlined_bytes='106' stamp='0.261'/>
+</task>
+<task compile_id='382' method='java.lang.invoke.LambdaForm$Name newIndex (I)Ljava/lang/invoke/LambdaForm$Name;' bytes='16' count='276' iicount='276' level='3' stamp='0.265'>
+<phase name='setup' stamp='0.265'>
+<phase_done name='setup' stamp='0.265'/>
+</phase>
+<phase name='buildIR' stamp='0.265'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='newIndex' return='1093' arguments='975' flags='0' bytes='16' iicount='276'/>
+<parse method='1094'  stamp='0.265'>
+<phase name='parse_hir' stamp='0.265'>
+<bc code='182' bci='2'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='initIndex' return='969' arguments='975' flags='0' bytes='26' compile_id='274' compiler='c1' level='3' iicount='1135'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.265'/>
+</parse>
+<bc code='182' bci='12'/>
+<method id='1098' holder='1093' name='cloneWithIndex' return='1093' arguments='975' flags='0' bytes='47' iicount='236'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.265'/>
+</phase>
+<parse_done stamp='0.265'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.265'>
+<phase_done name='optimize_blocks' stamp='0.265'/>
+</phase>
+<phase name='gvn' stamp='0.265'>
+<phase_done name='gvn' stamp='0.265'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.265'>
+<phase_done name='rangeCheckElimination' stamp='0.265'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.265'>
+<phase_done name='optimize_null_checks' stamp='0.265'/>
+</phase>
+<phase_done name='buildIR' stamp='0.265'/>
+</phase>
+<phase name='emit_lir' stamp='0.265'>
+<phase name='lirGeneration' stamp='0.265'>
+<phase_done name='lirGeneration' stamp='0.265'/>
+</phase>
+<phase name='linearScan' stamp='0.265'>
+<phase_done name='linearScan' stamp='0.265'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.265'/>
+</phase>
+<phase name='codeemit' stamp='0.265'>
+<phase_done name='codeemit' stamp='0.265'/>
+</phase>
+<phase name='codeinstall' stamp='0.265'>
+<phase_done name='codeinstall' stamp='0.266'/>
+</phase>
+<code_cache total_blobs='787' nmethods='383' adapters='241' free_code_cache='247986816'/>
+<task_done success='1' nmsize='936' count='276' inlined_bytes='26' stamp='0.266'/>
+</task>
+<task compile_id='387' method='java.lang.reflect.Modifier isPrivate (I)Z' bytes='12' count='258' iicount='258' level='3' stamp='0.266'>
+<phase name='setup' stamp='0.266'>
+<phase_done name='setup' stamp='0.266'/>
+</phase>
+<phase name='buildIR' stamp='0.266'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1094' holder='1093' name='isPrivate' return='969' arguments='975' flags='9' bytes='12' iicount='258'/>
+<parse method='1094'  stamp='0.266'>
+<phase name='parse_hir' stamp='0.266'>
+<phase_done name='parse_hir' stamp='0.266'/>
+</phase>
+<parse_done stamp='0.266'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.266'>
+<phase_done name='optimize_blocks' stamp='0.266'/>
+</phase>
+<phase name='gvn' stamp='0.266'>
+<phase_done name='gvn' stamp='0.266'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.266'>
+<phase_done name='rangeCheckElimination' stamp='0.266'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.266'>
+<phase_done name='optimize_null_checks' stamp='0.266'/>
+</phase>
+<phase_done name='buildIR' stamp='0.266'/>
+</phase>
+<phase name='emit_lir' stamp='0.266'>
+<phase name='lirGeneration' stamp='0.266'>
+<phase_done name='lirGeneration' stamp='0.266'/>
+</phase>
+<phase name='linearScan' stamp='0.266'>
+<phase_done name='linearScan' stamp='0.266'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.266'/>
+</phase>
+<phase name='codeemit' stamp='0.266'>
+<phase_done name='codeemit' stamp='0.266'/>
+</phase>
+<phase name='codeinstall' stamp='0.266'>
+<phase_done name='codeinstall' stamp='0.266'/>
+</phase>
+<code_cache total_blobs='789' nmethods='385' adapters='241' free_code_cache='247984512'/>
+<task_done success='1' nmsize='400' count='258' stamp='0.266'/>
+</task>
+<task compile_id='390' method='sun.invoke.util.BytecodeDescriptor unparseSig (Ljava/lang/Class;Ljava/lang/StringBuilder;)V' bytes='75' count='257' iicount='257' level='3' stamp='0.267'>
+<phase name='setup' stamp='0.267'>
+<phase_done name='setup' stamp='0.267'/>
+</phase>
+<phase name='buildIR' stamp='0.267'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<klass id='1093' name='sun.invoke.util.BytecodeDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='unparseSig' return='977' arguments='984 1050' flags='10' bytes='75' iicount='264'/>
+<parse method='1094'  stamp='0.267'>
+<phase name='parse_hir' stamp='0.267'>
+<bc code='184' bci='1'/>
+<klass id='1096' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1097' holder='1096' name='forBasicType' return='1096' arguments='984' flags='9' bytes='16' iicount='282'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='8'/>
+<method id='1101' holder='1096' name='forPrimitiveType' return='1096' arguments='984' flags='9' bytes='49' compile_id='318' compiler='c1' level='3' iicount='631'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='182' bci='4'/>
+<type id='970' name='char'/>
+<method id='1105' holder='1096' name='basicTypeChar' return='970' flags='1' bytes='5' compile_id='291' compiler='c1' level='1' iicount='129'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='182' bci='16'/>
+<method id='1107' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='1190'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1109' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='1190'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='182' bci='24'/>
+<method id='1111' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='43'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='182' bci='49'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1112' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='1527'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='11'/>
+<method id='1114' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='67'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='182' bci='56'/>
+<method id='1115' holder='983' name='replace' return='983' arguments='970 970' flags='1' bytes='42' compile_id='327' compiler='c1' level='3' iicount='535'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='59'/>
+<method id='1117' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='1028'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<method id='1119' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='1029'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='182' bci='70'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.268'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.268'/>
+</phase>
+<parse_done stamp='0.268'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.268'>
+<phase_done name='optimize_blocks' stamp='0.268'/>
+</phase>
+<phase name='gvn' stamp='0.268'>
+<phase_done name='gvn' stamp='0.268'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.268'>
+<phase_done name='rangeCheckElimination' stamp='0.268'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.268'>
+<phase_done name='optimize_null_checks' stamp='0.268'/>
+</phase>
+<phase_done name='buildIR' stamp='0.268'/>
+</phase>
+<phase name='emit_lir' stamp='0.268'>
+<phase name='lirGeneration' stamp='0.268'>
+<phase_done name='lirGeneration' stamp='0.268'/>
+</phase>
+<phase name='linearScan' stamp='0.268'>
+<phase_done name='linearScan' stamp='0.268'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.268'/>
+</phase>
+<phase name='codeemit' stamp='0.268'>
+<phase_done name='codeemit' stamp='0.268'/>
+</phase>
+<phase name='codeinstall' stamp='0.268'>
+<phase_done name='codeinstall' stamp='0.268'/>
+</phase>
+<code_cache total_blobs='799' nmethods='394' adapters='242' free_code_cache='247959808'/>
+<task_done success='1' nmsize='3128' count='275' inlined_bytes='74' stamp='0.268'/>
+</task>
+<task compile_id='397' method='java.lang.invoke.MethodType parameterArray ()[Ljava/lang/Class;' bytes='11' count='257' iicount='257' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1094' holder='1041' name='parameterArray' return='1093' flags='1' bytes='11' iicount='257'/>
+<parse method='1094'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='182' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='clone' return='982' flags='260' bytes='0' compile_id='248' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.269'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.269'/>
+</phase>
+<phase name='codeemit' stamp='0.269'>
+<phase_done name='codeemit' stamp='0.269'/>
+</phase>
+<phase name='codeinstall' stamp='0.269'>
+<phase_done name='codeinstall' stamp='0.269'/>
+</phase>
+<code_cache total_blobs='802' nmethods='397' adapters='242' free_code_cache='247955072'/>
+<task_done success='1' nmsize='776' count='263' stamp='0.269'/>
+</task>
+<task compile_id='400' method='java.lang.Class isAnonymousClass ()Z' bytes='27' count='263' iicount='263' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='isAnonymousClass' return='969' flags='1' bytes='27' iicount='263'/>
+<parse method='1093'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='183' bci='8'/>
+<method id='1096' holder='984' name='isLocalOrAnonymousClass' return='969' flags='2' bytes='5' compile_id='340' compiler='c1' level='3' iicount='550'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<method id='1098' holder='984' name='hasEnclosingMethodInfo' return='969' flags='2' bytes='17' compile_id='341' compiler='c1' level='3' iicount='552'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='1100' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1101' holder='984' name='getEnclosingMethod0' return='1100' flags='258' bytes='0' compile_id='342' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1102' name='java.lang.Class$EnclosingMethodInfo' unloaded='1'/>
+<method id='1103' holder='1102' name='validate' return='977' arguments='1100' unloaded='1'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='183' bci='15'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1104' holder='984' name='getSimpleBinaryName0' return='983' flags='258' bytes='0' iicount='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.270'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.270'/>
+</phase>
+<phase name='codeemit' stamp='0.270'>
+<phase_done name='codeemit' stamp='0.270'/>
+</phase>
+<phase name='codeinstall' stamp='0.270'>
+<phase_done name='codeinstall' stamp='0.270'/>
+</phase>
+<code_cache total_blobs='806' nmethods='401' adapters='242' free_code_cache='247947648'/>
+<task_done success='1' nmsize='1144' count='274' inlined_bytes='22' stamp='0.270'/>
+</task>
+<task compile_id='405' method='java.util.ArrayList add (Ljava/lang/Object;)Z' bytes='25' count='261' iicount='261' level='3' stamp='0.270'>
+<phase name='setup' stamp='0.270'>
+<phase_done name='setup' stamp='0.270'/>
+</phase>
+<phase name='buildIR' stamp='0.270'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='add' return='969' arguments='982' flags='1' bytes='25' iicount='261'/>
+<parse method='1094'  stamp='0.270'>
+<phase name='parse_hir' stamp='0.270'>
+<bc code='183' bci='20'/>
+<type id='977' name='void'/>
+<klass id='1097' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1093' name='add' return='977' arguments='982 1097 975' flags='2' bytes='23' iicount='261'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='7'/>
+<method id='1100' holder='1093' name='grow' return='1097' flags='2' bytes='11' iicount='73'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='7'/>
+<method id='1102' holder='1093' name='grow' return='1097' arguments='975' flags='2' bytes='18' iicount='73'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='7'/>
+<method id='1104' holder='1093' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' iicount='74'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1106' name='java.util.Arrays' flags='1'/>
+<method id='1107' holder='1106' name='copyOf' return='1097' arguments='1097 975' flags='9' bytes='10' iicount='242'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1109' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1111' holder='1106' name='copyOf' return='1097' arguments='1097 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='800'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.270'/>
+</phase>
+<parse_done stamp='0.270'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.270'>
+<phase_done name='optimize_blocks' stamp='0.271'/>
+</phase>
+<phase name='gvn' stamp='0.271'>
+<phase_done name='gvn' stamp='0.271'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.271'>
+<phase_done name='rangeCheckElimination' stamp='0.271'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.271'>
+<phase_done name='optimize_null_checks' stamp='0.271'/>
+</phase>
+<phase_done name='buildIR' stamp='0.271'/>
+</phase>
+<phase name='emit_lir' stamp='0.271'>
+<phase name='lirGeneration' stamp='0.271'>
+<phase_done name='lirGeneration' stamp='0.271'/>
+</phase>
+<phase name='linearScan' stamp='0.271'>
+<phase_done name='linearScan' stamp='0.271'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.271'/>
+</phase>
+<phase name='codeemit' stamp='0.271'>
+<phase_done name='codeemit' stamp='0.271'/>
+</phase>
+<phase name='codeinstall' stamp='0.271'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.271'/>
+</phase>
+<code_cache total_blobs='810' nmethods='405' adapters='242' free_code_cache='247940480'/>
+<task_done success='1' nmsize='1688' count='262' inlined_bytes='62' stamp='0.271'/>
+</task>
+<task compile_id='408' method='java.lang.invoke.MethodHandles$Lookup lookupClassOrNull ()Ljava/lang/Class;' bytes='17' count='257' iicount='257' level='3' stamp='0.271'>
+<phase name='setup' stamp='0.271'>
+<phase_done name='setup' stamp='0.271'/>
+</phase>
+<phase name='buildIR' stamp='0.271'>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='java.lang.invoke.MethodHandles$Lookup' flags='25'/>
+<method id='1094' holder='1093' name='lookupClassOrNull' return='984' flags='2' bytes='17' iicount='259'/>
+<parse method='1094'  stamp='0.271'>
+<phase name='parse_hir' stamp='0.271'>
+<phase_done name='parse_hir' stamp='0.271'/>
+</phase>
+<parse_done stamp='0.271'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.271'>
+<phase_done name='optimize_blocks' stamp='0.271'/>
+</phase>
+<phase name='gvn' stamp='0.271'>
+<phase_done name='gvn' stamp='0.271'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.271'>
+<phase_done name='rangeCheckElimination' stamp='0.271'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.271'>
+<phase_done name='optimize_null_checks' stamp='0.271'/>
+</phase>
+<phase_done name='buildIR' stamp='0.271'/>
+</phase>
+<phase name='emit_lir' stamp='0.271'>
+<phase name='lirGeneration' stamp='0.271'>
+<phase_done name='lirGeneration' stamp='0.271'/>
+</phase>
+<phase name='linearScan' stamp='0.271'>
+<phase_done name='linearScan' stamp='0.271'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.271'/>
+</phase>
+<phase name='codeemit' stamp='0.271'>
+<phase_done name='codeemit' stamp='0.271'/>
+</phase>
+<phase name='codeinstall' stamp='0.271'>
+<phase_done name='codeinstall' stamp='0.271'/>
+</phase>
+<code_cache total_blobs='811' nmethods='406' adapters='242' free_code_cache='247939456'/>
+<task_done success='1' nmsize='432' count='271' stamp='0.271'/>
+</task>
+<task compile_id='414' method='jdk.internal.org.objectweb.asm.Frame pop (I)V' bytes='45' count='324' iicount='324' level='3' stamp='0.272'>
+<phase name='setup' stamp='0.272'>
+<phase_done name='setup' stamp='0.272'/>
+</phase>
+<phase name='buildIR' stamp='0.272'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1094' holder='1093' name='pop' return='977' arguments='975' flags='2' bytes='45' iicount='324'/>
+<parse method='1094'  stamp='0.272'>
+<phase name='parse_hir' stamp='0.272'>
+<phase_done name='parse_hir' stamp='0.272'/>
+</phase>
+<parse_done stamp='0.272'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.272'>
+<phase_done name='optimize_blocks' stamp='0.272'/>
+</phase>
+<phase name='gvn' stamp='0.272'>
+<phase_done name='gvn' stamp='0.272'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.272'>
+<phase_done name='rangeCheckElimination' stamp='0.272'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.272'>
+<phase_done name='optimize_null_checks' stamp='0.272'/>
+</phase>
+<phase_done name='buildIR' stamp='0.272'/>
+</phase>
+<phase name='emit_lir' stamp='0.272'>
+<phase name='lirGeneration' stamp='0.272'>
+<phase_done name='lirGeneration' stamp='0.272'/>
+</phase>
+<phase name='linearScan' stamp='0.272'>
+<phase_done name='linearScan' stamp='0.272'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.272'/>
+</phase>
+<phase name='codeemit' stamp='0.272'>
+<phase_done name='codeemit' stamp='0.273'/>
+</phase>
+<phase name='codeinstall' stamp='0.273'>
+<phase_done name='codeinstall' stamp='0.273'/>
+</phase>
+<code_cache total_blobs='818' nmethods='413' adapters='242' free_code_cache='247908992'/>
+<task_done success='1' nmsize='464' count='334' stamp='0.273'/>
+</task>
+<task compile_id='418' method='java.lang.invoke.MethodType &lt;init&gt; (Ljava/lang/Class;[Ljava/lang/Class;Z)V' bytes='40' count='214' iicount='214' level='3' stamp='0.273'>
+<phase name='setup' stamp='0.273'>
+<phase_done name='setup' stamp='0.273'/>
+</phase>
+<phase name='buildIR' stamp='0.273'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<type id='969' name='boolean'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1094' holder='1041' name='&lt;init&gt;' return='977' arguments='984 1093 969' flags='2' bytes='40' iicount='214'/>
+<parse method='1094'  stamp='0.273'>
+<phase name='parse_hir' stamp='0.273'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='17498'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.273'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1098' holder='1041' name='checkRtype' return='977' arguments='984' flags='10' bytes='6' iicount='215'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='184' bci='1'/>
+<klass id='1100' name='java.util.Objects' flags='17'/>
+<method id='1101' holder='1100' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='372' compiler='c2' level='4' iicount='5738'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1103' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.273'/>
+</parse>
+<parse_done stamp='0.273'/>
+</parse>
+<bc code='184' bci='9'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1041' name='checkPtypes' return='975' arguments='1093' flags='10' bytes='61' compile_id='280' compiler='c1' level='3' iicount='643'/>
+<call method='1105' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='30'/>
+<klass id='1108' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1107' name='java.util.Arrays' flags='1'/>
+<method id='1109' holder='1107' name='copyOf' return='1108' arguments='1108 975' flags='9' bytes='10' iicount='246'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='182' bci='3'/>
+<method id='1111' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1113' holder='1107' name='copyOf' return='1108' arguments='1108 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='858'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.274'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.274'/>
+</phase>
+<parse_done stamp='0.274'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.274'>
+<phase_done name='optimize_blocks' stamp='0.274'/>
+</phase>
+<phase name='gvn' stamp='0.274'>
+<phase_done name='gvn' stamp='0.274'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.274'>
+<phase_done name='rangeCheckElimination' stamp='0.274'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.274'>
+<phase_done name='optimize_null_checks' stamp='0.274'/>
+</phase>
+<phase_done name='buildIR' stamp='0.274'/>
+</phase>
+<phase name='emit_lir' stamp='0.274'>
+<phase name='lirGeneration' stamp='0.274'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='829' nmethods='424' adapters='242' free_code_cache='247892864'/>
+<task_done success='1' nmsize='1800' count='215' inlined_bytes='31' stamp='0.274'/>
+</task>
+<task compile_id='431' method='jdk.internal.org.objectweb.asm.ClassWriter newNameType (Ljava/lang/String;Ljava/lang/String;)I' bytes='10' count='256' iicount='256' level='3' stamp='0.276'>
+<phase name='setup' stamp='0.276'>
+<phase_done name='setup' stamp='0.276'/>
+</phase>
+<phase name='buildIR' stamp='0.276'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1094' holder='1093' name='newNameType' return='975' arguments='983 983' flags='1' bytes='10' iicount='256'/>
+<parse method='1094'  stamp='0.276'>
+<phase name='parse_hir' stamp='0.276'>
+<bc code='182' bci='3'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1097' holder='1093' name='newNameTypeItem' return='1096' arguments='983 983' flags='0' bytes='71' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.276'/>
+</phase>
+<parse_done stamp='0.276'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.276'>
+<phase_done name='optimize_blocks' stamp='0.276'/>
+</phase>
+<phase name='gvn' stamp='0.276'>
+<phase_done name='gvn' stamp='0.276'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.276'>
+<phase_done name='rangeCheckElimination' stamp='0.276'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.276'>
+<phase_done name='optimize_null_checks' stamp='0.276'/>
+</phase>
+<phase_done name='buildIR' stamp='0.276'/>
+</phase>
+<phase name='emit_lir' stamp='0.276'>
+<phase name='lirGeneration' stamp='0.276'>
+<phase_done name='lirGeneration' stamp='0.276'/>
+</phase>
+<phase name='linearScan' stamp='0.276'>
+<phase_done name='linearScan' stamp='0.276'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.276'/>
+</phase>
+<phase name='codeemit' stamp='0.276'>
+<phase_done name='codeemit' stamp='0.276'/>
+</phase>
+<phase name='codeinstall' stamp='0.276'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.276'/>
+</phase>
+<code_cache total_blobs='835' nmethods='430' adapters='242' free_code_cache='247884800'/>
+<task_done success='1' nmsize='424' count='256' stamp='0.276'/>
+</task>
+<task compile_id='439' method='java.lang.ref.WeakReference &lt;init&gt; (Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V' bytes='7' count='257' iicount='257' level='3' stamp='0.278'>
+<phase name='setup' stamp='0.278'>
+<phase_done name='setup' stamp='0.278'/>
+</phase>
+<phase name='buildIR' stamp='0.278'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<klass id='1010' name='java.lang.ref.WeakReference' flags='1'/>
+<method id='1094' holder='1010' name='&lt;init&gt;' return='977' arguments='982 1093' flags='1' bytes='7' iicount='257'/>
+<parse method='1094'  stamp='0.278'>
+<phase name='parse_hir' stamp='0.278'>
+<bc code='183' bci='3'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1096' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1093' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='1884'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='18526'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1010'/>
+<parse_done stamp='0.278'/>
+</parse>
+<parse_done stamp='0.278'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.278'/>
+</phase>
+<parse_done stamp='0.278'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.278'>
+<phase_done name='optimize_blocks' stamp='0.278'/>
+</phase>
+<phase name='gvn' stamp='0.278'>
+<phase_done name='gvn' stamp='0.278'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.278'>
+<phase_done name='rangeCheckElimination' stamp='0.278'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.278'>
+<phase_done name='optimize_null_checks' stamp='0.278'/>
+</phase>
+<phase_done name='buildIR' stamp='0.278'/>
+</phase>
+<phase name='emit_lir' stamp='0.278'>
+<phase name='lirGeneration' stamp='0.278'>
+<phase_done name='lirGeneration' stamp='0.278'/>
+</phase>
+<phase name='linearScan' stamp='0.278'>
+<phase_done name='linearScan' stamp='0.278'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.278'/>
+</phase>
+<phase name='codeemit' stamp='0.278'>
+<phase_done name='codeemit' stamp='0.278'/>
+</phase>
+<phase name='codeinstall' stamp='0.278'>
+<dependency type='no_finalizable_subclasses' ctxk='1010'/>
+<phase_done name='codeinstall' stamp='0.278'/>
+</phase>
+<code_cache total_blobs='847' nmethods='439' adapters='243' free_code_cache='247857024'/>
+<task_done success='1' nmsize='848' count='259' inlined_bytes='26' stamp='0.278'/>
+</task>
+<task compile_id='446' method='java.lang.invoke.BoundMethodHandle$Factory typeSig (C)Ljava/lang/String;' bytes='16' count='298' iicount='298' level='3' stamp='0.281'>
+<phase name='setup' stamp='0.281'>
+<phase_done name='setup' stamp='0.281'/>
+</phase>
+<phase name='buildIR' stamp='0.281'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.lang.invoke.BoundMethodHandle$Factory' flags='8'/>
+<method id='1094' holder='1093' name='typeSig' return='983' arguments='970' flags='8' bytes='16' iicount='299'/>
+<parse method='1094'  stamp='0.281'>
+<phase name='parse_hir' stamp='0.281'>
+<bc code='184' bci='12'/>
+<method id='1097' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' iicount='136'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.281'/>
+</phase>
+<parse_done stamp='0.281'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.281'>
+<phase_done name='optimize_blocks' stamp='0.281'/>
+</phase>
+<phase name='gvn' stamp='0.281'>
+<phase_done name='gvn' stamp='0.281'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.281'>
+<phase_done name='rangeCheckElimination' stamp='0.281'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.281'>
+<phase_done name='optimize_null_checks' stamp='0.281'/>
+</phase>
+<phase_done name='buildIR' stamp='0.281'/>
+</phase>
+<phase name='emit_lir' stamp='0.281'>
+<phase name='lirGeneration' stamp='0.281'>
+<phase_done name='lirGeneration' stamp='0.281'/>
+</phase>
+<phase name='linearScan' stamp='0.281'>
+<phase_done name='linearScan' stamp='0.281'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.281'/>
+</phase>
+<phase name='codeemit' stamp='0.282'>
+<phase_done name='codeemit' stamp='0.282'/>
+</phase>
+<phase name='codeinstall' stamp='0.282'>
+<phase_done name='codeinstall' stamp='0.282'/>
+</phase>
+<code_cache total_blobs='857' nmethods='448' adapters='244' free_code_cache='247855360'/>
+<task_done success='1' nmsize='456' count='322' stamp='0.282'/>
+</task>
+<task compile_id='452' method='jdk.internal.org.objectweb.asm.ClassWriter newFieldItem (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='77' count='265' iicount='265' level='3' stamp='0.282'>
+<phase name='setup' stamp='0.282'>
+<phase_done name='setup' stamp='0.282'/>
+</phase>
+<phase name='buildIR' stamp='0.282'>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='newFieldItem' return='1094' arguments='983 983 983' flags='0' bytes='77' iicount='265'/>
+<parse method='1095'  stamp='0.282'>
+<phase name='parse_hir' stamp='0.282'>
+<bc code='182' bci='9'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1094' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' compile_id='225' compiler='c1' level='3' iicount='3832'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='17'/>
+<method id='1099' holder='1093' name='get' return='1094' arguments='1094' flags='2' bytes='49' compile_id='226' compiler='c1' level='3' iicount='3838'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='32'/>
+<method id='1101' holder='1093' name='newClass' return='975' arguments='983' flags='1' bytes='9' compile_id='383' compiler='c1' level='3' iicount='419'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1101'>
+<bc code='182' bci='2'/>
+<method id='1103' holder='1093' name='newClassItem' return='1094' arguments='983' flags='0' bytes='70' compile_id='351' compiler='c1' level='3' iicount='621'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='182' bci='38'/>
+<method id='1106' holder='1093' name='newNameType' return='975' arguments='983 983' flags='1' bytes='10' compile_id='431' compiler='c1' level='3' iicount='312'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1106'>
+<bc code='182' bci='3'/>
+<method id='1108' holder='1093' name='newNameTypeItem' return='1094' arguments='983 983' flags='0' bytes='71' compile_id='432' compiler='c1' level='3' iicount='312'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='183' bci='41'/>
+<method id='1110' holder='1093' name='put122' return='977' arguments='975 975 975' flags='2' bytes='15' compile_id='362' compiler='c1' level='3' iicount='624'/>
+<call method='1110' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='6'/>
+<klass id='1105' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1112' holder='1105' name='put12' return='1105' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='1548'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<bc code='182' bci='10'/>
+<method id='1114' holder='1105' name='putShort' return='1105' arguments='975' flags='1' bytes='52' compile_id='238' compiler='c1' level='3' iicount='2209'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='183' bci='63'/>
+<method id='1116' holder='1094' name='&lt;init&gt;' return='977' arguments='975 1094' flags='0' bytes='66' compile_id='253' compiler='c1' level='3' iicount='2109'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='71'/>
+<method id='1118' holder='1093' name='put' return='977' arguments='1094' flags='2' bytes='152' compile_id='254' compiler='c1' level='3' iicount='2115'/>
+<call method='1118' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.282'/>
+</phase>
+<parse_done stamp='0.282'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.282'>
+<phase_done name='optimize_blocks' stamp='0.282'/>
+</phase>
+<phase name='gvn' stamp='0.282'>
+<phase_done name='gvn' stamp='0.282'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.282'>
+<phase_done name='rangeCheckElimination' stamp='0.282'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.282'>
+<phase_done name='optimize_null_checks' stamp='0.282'/>
+</phase>
+<phase_done name='buildIR' stamp='0.282'/>
+</phase>
+<phase name='emit_lir' stamp='0.282'>
+<phase name='lirGeneration' stamp='0.282'>
+<phase_done name='lirGeneration' stamp='0.282'/>
+</phase>
+<phase name='linearScan' stamp='0.282'>
+<phase_done name='linearScan' stamp='0.283'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.283'/>
+</phase>
+<phase name='codeemit' stamp='0.283'>
+<phase_done name='codeemit' stamp='0.283'/>
+</phase>
+<phase name='codeinstall' stamp='0.283'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<phase_done name='codeinstall' stamp='0.283'/>
+</phase>
+<code_cache total_blobs='863' nmethods='453' adapters='245' free_code_cache='247846656'/>
+<task_done success='1' nmsize='1560' count='265' inlined_bytes='34' stamp='0.283'/>
+</task>
+<task compile_id='460' method='java.lang.invoke.MethodHandleNatives refKindHasReceiver (B)Z' bytes='33' count='261' iicount='261' level='3' stamp='0.285'>
+<phase name='setup' stamp='0.285'>
+<phase_done name='setup' stamp='0.285'/>
+</phase>
+<phase name='buildIR' stamp='0.285'>
+<type id='969' name='boolean'/>
+<type id='973' name='byte'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1093' holder='1039' name='refKindHasReceiver' return='969' arguments='973' flags='8' bytes='33' iicount='261'/>
+<parse method='1093'  stamp='0.285'>
+<phase name='parse_hir' stamp='0.285'>
+<phase_done name='parse_hir' stamp='0.285'/>
+</phase>
+<parse_done stamp='0.285'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.285'>
+<phase_done name='optimize_blocks' stamp='0.285'/>
+</phase>
+<phase name='gvn' stamp='0.285'>
+<phase_done name='gvn' stamp='0.285'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.285'>
+<phase_done name='rangeCheckElimination' stamp='0.285'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.285'>
+<phase_done name='optimize_null_checks' stamp='0.285'/>
+</phase>
+<phase_done name='buildIR' stamp='0.285'/>
+</phase>
+<phase name='emit_lir' stamp='0.285'>
+<phase name='lirGeneration' stamp='0.285'>
+<phase_done name='lirGeneration' stamp='0.285'/>
+</phase>
+<phase name='linearScan' stamp='0.285'>
+<phase_done name='linearScan' stamp='0.285'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.285'/>
+</phase>
+<phase name='codeemit' stamp='0.285'>
+<phase_done name='codeemit' stamp='0.285'/>
+</phase>
+<phase name='codeinstall' stamp='0.285'>
+<phase_done name='codeinstall' stamp='0.285'/>
+</phase>
+<code_cache total_blobs='872' nmethods='461' adapters='246' free_code_cache='247832704'/>
+<task_done success='1' nmsize='432' count='261' stamp='0.285'/>
+</task>
+<task compile_id='467' method='jdk.internal.org.objectweb.asm.ClassWriter newMethodItem (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)Ljdk/internal/org/objectweb/asm/Item;' bytes='91' count='256' iicount='256' level='3' stamp='0.286'>
+<phase name='setup' stamp='0.286'>
+<phase_done name='setup' stamp='0.286'/>
+</phase>
+<phase name='buildIR' stamp='0.286'>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='newMethodItem' return='1094' arguments='983 983 983 969' flags='0' bytes='91' iicount='256'/>
+<parse method='1095'  stamp='0.286'>
+<phase name='parse_hir' stamp='0.286'>
+<bc code='182' bci='23'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1094' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' compile_id='225' compiler='c1' level='3' iicount='4396'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='31'/>
+<method id='1099' holder='1093' name='get' return='1094' arguments='1094' flags='2' bytes='49' compile_id='226' compiler='c1' level='3' iicount='4404'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='46'/>
+<method id='1101' holder='1093' name='newClass' return='975' arguments='983' flags='1' bytes='9' compile_id='383' compiler='c1' level='3' iicount='472'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1101'>
+<bc code='182' bci='2'/>
+<method id='1103' holder='1093' name='newClassItem' return='1094' arguments='983' flags='0' bytes='70' compile_id='351' compiler='c1' level='3' iicount='688'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.286'/>
+</parse>
+<bc code='182' bci='52'/>
+<method id='1106' holder='1093' name='newNameType' return='975' arguments='983 983' flags='1' bytes='10' compile_id='431' compiler='c1' level='3' iicount='348'/>
+<call method='1106' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1106'>
+<bc code='182' bci='3'/>
+<method id='1108' holder='1093' name='newNameTypeItem' return='1094' arguments='983 983' flags='0' bytes='71' compile_id='432' compiler='c1' level='3' iicount='348'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.286'/>
+</parse>
+<bc code='183' bci='55'/>
+<method id='1110' holder='1093' name='put122' return='977' arguments='975 975 975' flags='2' bytes='15' compile_id='362' compiler='c1' level='3' iicount='696'/>
+<call method='1110' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='6'/>
+<klass id='1105' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1112' holder='1105' name='put12' return='1105' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='1755'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<bc code='182' bci='10'/>
+<method id='1114' holder='1105' name='putShort' return='1105' arguments='975' flags='1' bytes='52' compile_id='238' compiler='c1' level='3' iicount='2563'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.286'/>
+</parse>
+<bc code='183' bci='77'/>
+<method id='1116' holder='1094' name='&lt;init&gt;' return='977' arguments='975 1094' flags='0' bytes='66' compile_id='253' compiler='c1' level='3' iicount='2364'/>
+<call method='1116' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='85'/>
+<method id='1118' holder='1093' name='put' return='977' arguments='1094' flags='2' bytes='152' compile_id='254' compiler='c1' level='3' iicount='2364'/>
+<call method='1118' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.286'/>
+</phase>
+<parse_done stamp='0.286'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.286'>
+<phase_done name='optimize_blocks' stamp='0.286'/>
+</phase>
+<phase name='gvn' stamp='0.286'>
+<phase_done name='gvn' stamp='0.286'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.286'>
+<phase_done name='rangeCheckElimination' stamp='0.286'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.286'>
+<phase_done name='optimize_null_checks' stamp='0.286'/>
+</phase>
+<phase_done name='buildIR' stamp='0.286'/>
+</phase>
+<phase name='emit_lir' stamp='0.286'>
+<phase name='lirGeneration' stamp='0.286'>
+<phase_done name='lirGeneration' stamp='0.286'/>
+</phase>
+<phase name='linearScan' stamp='0.286'>
+<phase_done name='linearScan' stamp='0.287'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.287'/>
+</phase>
+<phase name='codeemit' stamp='0.287'>
+<phase_done name='codeemit' stamp='0.287'/>
+</phase>
+<phase name='codeinstall' stamp='0.287'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<phase_done name='codeinstall' stamp='0.287'/>
+</phase>
+<code_cache total_blobs='879' nmethods='468' adapters='246' free_code_cache='247818112'/>
+<task_done success='1' nmsize='1656' count='256' inlined_bytes='34' stamp='0.287'/>
+</task>
+<task compile_id='473' method='java.lang.ThreadLocal access$400 (Ljava/lang/ThreadLocal;)I' bytes='5' count='128' iicount='128' level='1' stamp='0.295'>
+<phase name='setup' stamp='0.295'>
+<phase_done name='setup' stamp='0.295'/>
+</phase>
+<phase name='buildIR' stamp='0.295'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.ThreadLocal' flags='1'/>
+<method id='1094' holder='1093' name='access$400' return='975' arguments='1093' flags='4104' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.295'>
+<phase name='parse_hir' stamp='0.295'>
+<phase_done name='parse_hir' stamp='0.295'/>
+</phase>
+<parse_done stamp='0.295'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.295'>
+<phase_done name='optimize_blocks' stamp='0.295'/>
+</phase>
+<phase name='gvn' stamp='0.295'>
+<phase_done name='gvn' stamp='0.295'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.295'>
+<phase_done name='rangeCheckElimination' stamp='0.295'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.295'>
+<phase_done name='optimize_null_checks' stamp='0.295'/>
+</phase>
+<phase_done name='buildIR' stamp='0.295'/>
+</phase>
+<phase name='emit_lir' stamp='0.295'>
+<phase name='lirGeneration' stamp='0.295'>
+<phase_done name='lirGeneration' stamp='0.295'/>
+</phase>
+<phase name='linearScan' stamp='0.295'>
+<phase_done name='linearScan' stamp='0.295'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.295'/>
+</phase>
+<phase name='codeemit' stamp='0.295'>
+<phase_done name='codeemit' stamp='0.295'/>
+</phase>
+<phase name='codeinstall' stamp='0.295'>
+<phase_done name='codeinstall' stamp='0.295'/>
+</phase>
+<code_cache total_blobs='885' nmethods='473' adapters='247' free_code_cache='247813504'/>
+<task_done success='1' nmsize='240' count='128' stamp='0.295'/>
+</task>
+<task compile_id='478' method='java.nio.DirectByteBuffer ix (I)J' bytes='10' count='356' iicount='356' level='3' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='976' name='long'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.DirectByteBuffer' flags='0'/>
+<method id='1094' holder='1093' name='ix' return='976' arguments='975' flags='2' bytes='10' iicount='382'/>
+<parse method='1094'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.297'/>
+</phase>
+<phase_done name='buildIR' stamp='0.297'/>
+</phase>
+<phase name='emit_lir' stamp='0.297'>
+<phase name='lirGeneration' stamp='0.297'>
+<phase_done name='lirGeneration' stamp='0.297'/>
+</phase>
+<phase name='linearScan' stamp='0.297'>
+<phase_done name='linearScan' stamp='0.297'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.297'/>
+</phase>
+<phase name='codeemit' stamp='0.297'>
+<phase_done name='codeemit' stamp='0.297'/>
+</phase>
+<phase name='codeinstall' stamp='0.297'>
+<phase_done name='codeinstall' stamp='0.297'/>
+</phase>
+<code_cache total_blobs='891' nmethods='478' adapters='248' free_code_cache='247807232'/>
+<task_done success='1' nmsize='336' count='533' stamp='0.297'/>
+</task>
+<task compile_id='483' method='java.nio.Buffer position ()I' bytes='5' count='135' iicount='135' level='1' stamp='0.299'>
+<phase name='setup' stamp='0.299'>
+<phase_done name='setup' stamp='0.299'/>
+</phase>
+<phase name='buildIR' stamp='0.299'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='position' return='975' flags='17' bytes='5' iicount='135'/>
+<parse method='1093'  stamp='0.299'>
+<phase name='parse_hir' stamp='0.299'>
+<phase_done name='parse_hir' stamp='0.299'/>
+</phase>
+<parse_done stamp='0.299'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.299'>
+<phase_done name='optimize_blocks' stamp='0.299'/>
+</phase>
+<phase name='gvn' stamp='0.299'>
+<phase_done name='gvn' stamp='0.299'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.299'>
+<phase_done name='rangeCheckElimination' stamp='0.299'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.299'>
+<phase_done name='optimize_null_checks' stamp='0.299'/>
+</phase>
+<phase_done name='buildIR' stamp='0.299'/>
+</phase>
+<phase name='emit_lir' stamp='0.299'>
+<phase name='lirGeneration' stamp='0.299'>
+<phase_done name='lirGeneration' stamp='0.299'/>
+</phase>
+<phase name='linearScan' stamp='0.299'>
+<phase_done name='linearScan' stamp='0.299'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.299'/>
+</phase>
+<phase name='codeemit' stamp='0.299'>
+<phase_done name='codeemit' stamp='0.299'/>
+</phase>
+<phase name='codeinstall' stamp='0.299'>
+<phase_done name='codeinstall' stamp='0.299'/>
+</phase>
+<code_cache total_blobs='896' nmethods='483' adapters='248' free_code_cache='247797632'/>
+<task_done success='1' nmsize='272' count='140' stamp='0.299'/>
+</task>
+<task compile_id='484' method='java.nio.Buffer position (I)Ljava/nio/Buffer;' bytes='55' count='256' iicount='256' level='3' stamp='0.299'>
+<phase name='setup' stamp='0.299'>
+<phase_done name='setup' stamp='0.299'/>
+</phase>
+<phase name='buildIR' stamp='0.299'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1093' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' iicount='258'/>
+<parse method='1093'  stamp='0.299'>
+<phase name='parse_hir' stamp='0.299'>
+<bc code='183' bci='28'/>
+<klass id='1095' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1096' holder='1064' name='createPositionException' return='1095' arguments='975' flags='2' bytes='104' iicount='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.299'/>
+</phase>
+<parse_done stamp='0.299'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.299'>
+<phase_done name='optimize_blocks' stamp='0.299'/>
+</phase>
+<phase name='gvn' stamp='0.299'>
+<phase_done name='gvn' stamp='0.299'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.299'>
+<phase_done name='rangeCheckElimination' stamp='0.299'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.299'>
+<phase_done name='optimize_null_checks' stamp='0.299'/>
+</phase>
+<phase_done name='buildIR' stamp='0.299'/>
+</phase>
+<phase name='emit_lir' stamp='0.299'>
+<phase name='lirGeneration' stamp='0.299'>
+<phase_done name='lirGeneration' stamp='0.299'/>
+</phase>
+<phase name='linearScan' stamp='0.299'>
+<phase_done name='linearScan' stamp='0.299'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.299'/>
+</phase>
+<phase name='codeemit' stamp='0.299'>
+<phase_done name='codeemit' stamp='0.299'/>
+</phase>
+<phase name='codeinstall' stamp='0.299'>
+<phase_done name='codeinstall' stamp='0.299'/>
+</phase>
+<code_cache total_blobs='897' nmethods='484' adapters='248' free_code_cache='247796224'/>
+<task_done success='1' nmsize='712' count='288' stamp='0.299'/>
+</task>
+<task compile_id='490' method='java.nio.MappedByteBuffer limit (I)Ljava/nio/MappedByteBuffer;' bytes='8' count='258' iicount='258' level='3' stamp='0.300'>
+<phase name='setup' stamp='0.300'>
+<phase_done name='setup' stamp='0.300'/>
+</phase>
+<phase name='buildIR' stamp='0.300'>
+<klass id='1093' name='java.nio.MappedByteBuffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='limit' return='1093' arguments='975' flags='17' bytes='8' iicount='270'/>
+<parse method='1094'  stamp='0.300'>
+<phase name='parse_hir' stamp='0.300'>
+<bc code='183' bci='2'/>
+<klass id='1096' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1097' holder='1096' name='limit' return='1096' arguments='975' flags='1' bytes='8' compile_id='488' compiler='c1' level='3' iicount='289'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='2'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1099' holder='1064' name='limit' return='1064' arguments='975' flags='1' bytes='74' compile_id='485' compiler='c1' level='3' iicount='322'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.300'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.300'/>
+</phase>
+<parse_done stamp='0.300'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.300'>
+<phase_done name='optimize_blocks' stamp='0.300'/>
+</phase>
+<phase name='gvn' stamp='0.300'>
+<phase_done name='gvn' stamp='0.300'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.300'>
+<phase_done name='rangeCheckElimination' stamp='0.300'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.300'>
+<phase_done name='optimize_null_checks' stamp='0.300'/>
+</phase>
+<phase_done name='buildIR' stamp='0.300'/>
+</phase>
+<phase name='emit_lir' stamp='0.300'>
+<phase name='lirGeneration' stamp='0.300'>
+<phase_done name='lirGeneration' stamp='0.300'/>
+</phase>
+<phase name='linearScan' stamp='0.300'>
+<phase_done name='linearScan' stamp='0.300'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.300'/>
+</phase>
+<phase name='codeemit' stamp='0.300'>
+<phase_done name='codeemit' stamp='0.300'/>
+</phase>
+<phase name='codeinstall' stamp='0.300'>
+<phase_done name='codeinstall' stamp='0.300'/>
+</phase>
+<code_cache total_blobs='902' nmethods='489' adapters='248' free_code_cache='247790848'/>
+<task_done success='1' nmsize='520' count='274' inlined_bytes='8' stamp='0.300'/>
+</task>
+<task compile_id='494' method='java.lang.invoke.MethodTypeForm basicType ()Ljava/lang/invoke/MethodType;' bytes='5' count='128' iicount='128' level='1' stamp='0.302'>
+<phase name='setup' stamp='0.302'>
+<phase_done name='setup' stamp='0.302'/>
+</phase>
+<phase name='buildIR' stamp='0.302'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1094' holder='1093' name='basicType' return='1041' flags='1' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.302'>
+<phase name='parse_hir' stamp='0.302'>
+<phase_done name='parse_hir' stamp='0.302'/>
+</phase>
+<parse_done stamp='0.303'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.303'>
+<phase_done name='optimize_blocks' stamp='0.303'/>
+</phase>
+<phase name='gvn' stamp='0.303'>
+<phase_done name='gvn' stamp='0.303'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.303'>
+<phase_done name='rangeCheckElimination' stamp='0.303'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.303'>
+<phase_done name='optimize_null_checks' stamp='0.303'/>
+</phase>
+<phase_done name='buildIR' stamp='0.303'/>
+</phase>
+<phase name='emit_lir' stamp='0.303'>
+<phase name='lirGeneration' stamp='0.303'>
+<phase_done name='lirGeneration' stamp='0.303'/>
+</phase>
+<phase name='linearScan' stamp='0.303'>
+<phase_done name='linearScan' stamp='0.303'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.303'/>
+</phase>
+<phase name='codeemit' stamp='0.303'>
+<phase_done name='codeemit' stamp='0.303'/>
+</phase>
+<phase name='codeinstall' stamp='0.303'>
+<phase_done name='codeinstall' stamp='0.303'/>
+</phase>
+<code_cache total_blobs='910' nmethods='494' adapters='249' free_code_cache='247785984'/>
+<task_done success='1' nmsize='272' count='130' stamp='0.303'/>
+</task>
+<task compile_id='498' method='java.util.AbstractList &lt;init&gt; ()V' bytes='10' count='256' iicount='256' level='3' stamp='0.303'>
+<phase name='setup' stamp='0.303'>
+<phase_done name='setup' stamp='0.303'/>
+</phase>
+<phase name='buildIR' stamp='0.303'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.AbstractList' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='4' bytes='10' iicount='256'/>
+<parse method='1094'  stamp='0.303'>
+<phase name='parse_hir' stamp='0.303'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='1589'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='22239'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.303'/>
+</parse>
+<parse_done stamp='0.303'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.303'/>
+</phase>
+<parse_done stamp='0.303'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.303'>
+<phase_done name='optimize_blocks' stamp='0.303'/>
+</phase>
+<phase name='gvn' stamp='0.303'>
+<phase_done name='gvn' stamp='0.303'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.303'>
+<phase_done name='rangeCheckElimination' stamp='0.303'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.303'>
+<phase_done name='optimize_null_checks' stamp='0.303'/>
+</phase>
+<phase_done name='buildIR' stamp='0.303'/>
+</phase>
+<phase name='emit_lir' stamp='0.303'>
+<phase name='lirGeneration' stamp='0.303'>
+<phase_done name='lirGeneration' stamp='0.303'/>
+</phase>
+<phase name='linearScan' stamp='0.303'>
+<phase_done name='linearScan' stamp='0.303'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.303'/>
+</phase>
+<phase name='codeemit' stamp='0.303'>
+<phase_done name='codeemit' stamp='0.303'/>
+</phase>
+<phase name='codeinstall' stamp='0.303'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.303'/>
+</phase>
+<code_cache total_blobs='912' nmethods='496' adapters='249' free_code_cache='247784064'/>
+<task_done success='1' nmsize='528' count='256' inlined_bytes='6' stamp='0.303'/>
+</task>
+<task compile_id='500' method='jdk.internal.util.Preconditions checkIndex (IILjava/util/function/BiFunction;)I' bytes='18' count='259' iicount='259' level='3' stamp='0.316'>
+<phase name='setup' stamp='0.316'>
+<phase_done name='setup' stamp='0.316'/>
+</phase>
+<phase name='buildIR' stamp='0.316'>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1093' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1095' holder='1093' name='checkIndex' return='975' arguments='975 975 1094' flags='9' bytes='18' iicount='259'/>
+<parse method='1095'  stamp='0.316'>
+<phase name='parse_hir' stamp='0.316'>
+<bc code='184' bci='12'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1097' holder='1093' name='outOfBoundsCheckIndex' return='993' arguments='1094 975 975' flags='10' bytes='25' iicount='1'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='184' bci='10'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1100' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='65'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='17'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1102' name='[Ljava.lang.Integer;' flags='1041'/>
+<method id='1103' holder='1093' name='outOfBounds' return='993' arguments='1094 983 1102' flags='138' bytes='49' iicount='1'/>
+<call method='1103' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.316'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.316'/>
+</phase>
+<parse_done stamp='0.316'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.316'>
+<phase_done name='optimize_blocks' stamp='0.316'/>
+</phase>
+<phase name='gvn' stamp='0.316'>
+<phase_done name='gvn' stamp='0.316'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.316'>
+<phase_done name='rangeCheckElimination' stamp='0.316'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.316'>
+<phase_done name='optimize_null_checks' stamp='0.316'/>
+</phase>
+<phase_done name='buildIR' stamp='0.316'/>
+</phase>
+<phase name='emit_lir' stamp='0.316'>
+<phase name='lirGeneration' stamp='0.316'>
+<phase_done name='lirGeneration' stamp='0.316'/>
+</phase>
+<phase name='linearScan' stamp='0.316'>
+<phase_done name='linearScan' stamp='0.317'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.317'/>
+</phase>
+<phase name='codeemit' stamp='0.317'>
+<phase_done name='codeemit' stamp='0.317'/>
+</phase>
+<phase name='codeinstall' stamp='0.317'>
+<phase_done name='codeinstall' stamp='0.317'/>
+</phase>
+<code_cache total_blobs='919' nmethods='499' adapters='253' free_code_cache='247772800'/>
+<task_done success='1' nmsize='1640' count='301' inlined_bytes='25' stamp='0.317'/>
+</task>
+<task compile_id='503' method='java.lang.ref.SoftReference get ()Ljava/lang/Object;' bytes='29' count='256' iicount='256' level='3' stamp='0.318'>
+<phase name='setup' stamp='0.318'>
+<phase_done name='setup' stamp='0.318'/>
+</phase>
+<phase name='buildIR' stamp='0.318'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1009' name='java.lang.ref.SoftReference' flags='1'/>
+<method id='1093' holder='1009' name='get' return='982' flags='1' bytes='29' iicount='256'/>
+<parse method='1093'  stamp='0.318'>
+<phase name='parse_hir' stamp='0.318'>
+<bc code='183' bci='1'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1095' holder='1008' name='get' return='982' flags='1' bytes='5' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.318'/>
+</phase>
+<parse_done stamp='0.318'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.318'>
+<phase_done name='optimize_blocks' stamp='0.318'/>
+</phase>
+<phase name='gvn' stamp='0.318'>
+<phase_done name='gvn' stamp='0.318'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.318'>
+<phase_done name='rangeCheckElimination' stamp='0.318'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.318'>
+<phase_done name='optimize_null_checks' stamp='0.318'/>
+</phase>
+<phase_done name='buildIR' stamp='0.318'/>
+</phase>
+<phase name='emit_lir' stamp='0.318'>
+<phase name='lirGeneration' stamp='0.318'>
+<phase_done name='lirGeneration' stamp='0.318'/>
+</phase>
+<phase name='linearScan' stamp='0.318'>
+<phase_done name='linearScan' stamp='0.318'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.318'/>
+</phase>
+<phase name='codeemit' stamp='0.318'>
+<phase_done name='codeemit' stamp='0.318'/>
+</phase>
+<phase name='codeinstall' stamp='0.318'>
+<phase_done name='codeinstall' stamp='0.318'/>
+</phase>
+<code_cache total_blobs='924' nmethods='503' adapters='254' free_code_cache='247762432'/>
+<task_done success='1' nmsize='560' count='256' stamp='0.318'/>
+</task>
+<task compile_id='509' method='com.sun.org.apache.xerces.internal.util.XMLChar isContent (I)Z' bytes='35' count='402' iicount='402' level='3' stamp='0.322'>
+<phase name='setup' stamp='0.322'>
+<phase_done name='setup' stamp='0.322'/>
+</phase>
+<phase name='buildIR' stamp='0.322'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isContent' return='969' arguments='975' flags='9' bytes='35' iicount='488'/>
+<parse method='1094'  stamp='0.322'>
+<phase name='parse_hir' stamp='0.322'>
+<phase_done name='parse_hir' stamp='0.322'/>
+</phase>
+<parse_done stamp='0.322'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.322'>
+<phase_done name='optimize_blocks' stamp='0.322'/>
+</phase>
+<phase name='gvn' stamp='0.322'>
+<phase_done name='gvn' stamp='0.322'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.322'>
+<phase_done name='rangeCheckElimination' stamp='0.322'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.322'>
+<phase_done name='optimize_null_checks' stamp='0.322'/>
+</phase>
+<phase_done name='buildIR' stamp='0.322'/>
+</phase>
+<phase name='emit_lir' stamp='0.322'>
+<phase name='lirGeneration' stamp='0.322'>
+<phase_done name='lirGeneration' stamp='0.322'/>
+</phase>
+<phase name='linearScan' stamp='0.322'>
+<phase_done name='linearScan' stamp='0.322'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.322'/>
+</phase>
+<phase name='codeemit' stamp='0.322'>
+<phase_done name='codeemit' stamp='0.322'/>
+</phase>
+<phase name='codeinstall' stamp='0.322'>
+<phase_done name='codeinstall' stamp='0.322'/>
+</phase>
+<code_cache total_blobs='931' nmethods='508' adapters='254' free_code_cache='247752448'/>
+<task_done success='1' nmsize='624' count='966' stamp='0.322'/>
+</task>
+<task compile_id='512' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='265' iicount='265' level='3' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='checkBeforeLoad' return='975' arguments='1094 975 975' flags='4' bytes='140' iicount='265'/>
+<parse method='1095'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<bc code='182' bci='61'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1100' holder='1093' name='checkLimit' return='977' arguments='1097 1094 975 975' flags='4' bytes='253' iicount='52'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='67'/>
+<method id='1102' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='2'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='100'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1104' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='134'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='934' nmethods='511' adapters='254' free_code_cache='247747328'/>
+<task_done success='1' nmsize='1432' count='510' stamp='0.323'/>
+</task>
+<task compile_id='517' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (ILcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='111' count='260' iicount='260' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1095' holder='1093' name='isOverLimit' return='969' arguments='975 1094' flags='1' bytes='111' iicount='260'/>
+<parse method='1095'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<bc code='182' bci='15'/>
+<klass id='1100' name='java.lang.Enum' flags='1025'/>
+<method id='1101' holder='1100' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='35'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='55'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='65'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='93'/>
+<method id='1108' holder='1094' name='getValue' return='975' arguments='975' flags='1' bytes='24' iicount='1'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='4'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.324'/>
+</parse>
+<parse_done stamp='0.324'/>
+</parse>
+<bc code='182' bci='73'/>
+<method id='1110' holder='1094' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' iicount='256'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.324'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.325'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.325'/>
+</phase>
+<phase name='codeemit' stamp='0.325'>
+<phase_done name='codeemit' stamp='0.325'/>
+</phase>
+<phase name='codeinstall' stamp='0.325'>
+<phase_done name='codeinstall' stamp='0.325'/>
+</phase>
+<code_cache total_blobs='945' nmethods='520' adapters='254' free_code_cache='247734272'/>
+<task_done success='1' nmsize='2768' count='329' inlined_bytes='66' stamp='0.325'/>
+</task>
+<task compile_id='530' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Ljava/lang/String;I)V' bytes='11' count='264' iicount='264' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1095' holder='1093' name='addValue' return='977' arguments='1094 983 975' flags='1' bytes='11' iicount='272'/>
+<parse method='1095'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='182' bci='2'/>
+<klass id='1097' name='java.lang.Enum' flags='1025'/>
+<method id='1098' holder='1097' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1100' holder='1093' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' iicount='284'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.328'/>
+</phase>
+<parse_done stamp='0.328'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.328'>
+<phase_done name='optimize_blocks' stamp='0.328'/>
+</phase>
+<phase name='gvn' stamp='0.328'>
+<phase_done name='gvn' stamp='0.328'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.328'>
+<phase_done name='rangeCheckElimination' stamp='0.328'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.328'>
+<phase_done name='optimize_null_checks' stamp='0.328'/>
+</phase>
+<phase_done name='buildIR' stamp='0.328'/>
+</phase>
+<phase name='emit_lir' stamp='0.328'>
+<phase name='lirGeneration' stamp='0.328'>
+<phase_done name='lirGeneration' stamp='0.328'/>
+</phase>
+<phase name='linearScan' stamp='0.328'>
+<phase_done name='linearScan' stamp='0.328'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.328'/>
+</phase>
+<phase name='codeemit' stamp='0.328'>
+<phase_done name='codeemit' stamp='0.328'/>
+</phase>
+<phase name='codeinstall' stamp='0.328'>
+<phase_done name='codeinstall' stamp='0.328'/>
+</phase>
+<code_cache total_blobs='961' nmethods='528' adapters='260' free_code_cache='247713024'/>
+<task_done success='1' nmsize='680' count='301' inlined_bytes='5' stamp='0.328'/>
+</task>
+<task compile_id='532' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues ([CII)V' bytes='16' count='279' iicount='279' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1094' holder='1093' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' iicount='280'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<phase_done name='parse_hir' stamp='0.328'/>
+</phase>
+<parse_done stamp='0.328'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.328'>
+<phase_done name='optimize_blocks' stamp='0.328'/>
+</phase>
+<phase name='gvn' stamp='0.328'>
+<phase_done name='gvn' stamp='0.328'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.328'>
+<phase_done name='rangeCheckElimination' stamp='0.328'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.328'>
+<phase_done name='optimize_null_checks' stamp='0.328'/>
+</phase>
+<phase_done name='buildIR' stamp='0.328'/>
+</phase>
+<phase name='emit_lir' stamp='0.328'>
+<phase name='lirGeneration' stamp='0.328'>
+<phase_done name='lirGeneration' stamp='0.328'/>
+</phase>
+<phase name='linearScan' stamp='0.328'>
+<phase_done name='linearScan' stamp='0.328'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.328'/>
+</phase>
+<phase name='codeemit' stamp='0.328'>
+<phase_done name='codeemit' stamp='0.328'/>
+</phase>
+<phase name='codeinstall' stamp='0.328'>
+<phase_done name='codeinstall' stamp='0.328'/>
+</phase>
+<code_cache total_blobs='964' nmethods='531' adapters='260' free_code_cache='247707776'/>
+<task_done success='1' nmsize='432' count='297' stamp='0.328'/>
+</task>
+<task compile_id='534' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='265' backedge_count='1935' iicount='265' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanName' return='983' arguments='1094' flags='4' bytes='305' iicount='265'/>
+<parse method='1095'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='2'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='42'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1101' holder='1100' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='554'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='74'/>
+<type id='977' name='void'/>
+<method id='1105' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='2'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='101'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='133'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1108' holder='1107' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' iicount='286'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1107'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1107'/>
+<bc code='184' bci='181'/>
+<method id='1112' holder='1100' name='isName' return='969' arguments='975' flags='9' bytes='23' iicount='1'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='201'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1114' holder='1093' name='checkBeforeLoad' return='975' arguments='1097 975 975' flags='4' bytes='140' compile_id='512' compiler='c1' level='3' iicount='2108'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='215'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='264'/>
+<klass id='1116' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1119' holder='1093' name='checkLimit' return='977' arguments='1116 1097 975 975' flags='4' bytes='253' iicount='301'/>
+<call method='1119' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='275'/>
+<method id='1121' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='510' compiler='c1' level='3' iicount='1824'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='291'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1107'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1107'/>
+<phase_done name='parse_hir' stamp='0.329'/>
+</phase>
+<parse_done stamp='0.329'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.329'>
+<phase_done name='optimize_blocks' stamp='0.329'/>
+</phase>
+<phase name='gvn' stamp='0.329'>
+<phase_done name='gvn' stamp='0.329'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.329'>
+<phase_done name='rangeCheckElimination' stamp='0.329'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.329'>
+<phase_done name='optimize_null_checks' stamp='0.329'/>
+</phase>
+<phase_done name='buildIR' stamp='0.329'/>
+</phase>
+<phase name='emit_lir' stamp='0.329'>
+<phase name='lirGeneration' stamp='0.329'>
+<phase_done name='lirGeneration' stamp='0.329'/>
+</phase>
+<phase name='linearScan' stamp='0.329'>
+<phase_done name='linearScan' stamp='0.329'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.329'/>
+</phase>
+<phase name='codeemit' stamp='0.329'>
+<phase_done name='codeemit' stamp='0.329'/>
+</phase>
+<phase name='codeinstall' stamp='0.329'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1107'/>
+<phase_done name='codeinstall' stamp='0.330'/>
+</phase>
+<code_cache total_blobs='969' nmethods='536' adapters='260' free_code_cache='247687424'/>
+<task_done success='1' nmsize='3208' count='364' backedge_count='2710' inlined_bytes='45' stamp='0.330'/>
+</task>
+<task compile_id='539' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='300' iicount='300' level='3' stamp='0.330'>
+<phase name='setup' stamp='0.330'>
+<phase_done name='setup' stamp='0.330'/>
+</phase>
+<phase name='buildIR' stamp='0.330'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1094' holder='1093' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' iicount='300'/>
+<parse method='1094'  stamp='0.330'>
+<phase name='parse_hir' stamp='0.330'>
+<bc code='184' bci='1'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1097' holder='1096' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='736'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.330'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.330'/>
+</phase>
+<parse_done stamp='0.330'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.330'>
+<phase_done name='optimize_blocks' stamp='0.330'/>
+</phase>
+<phase name='gvn' stamp='0.330'>
+<phase_done name='gvn' stamp='0.330'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.330'>
+<phase_done name='rangeCheckElimination' stamp='0.330'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.330'>
+<phase_done name='optimize_null_checks' stamp='0.330'/>
+</phase>
+<phase_done name='buildIR' stamp='0.330'/>
+</phase>
+<phase name='emit_lir' stamp='0.330'>
+<phase name='lirGeneration' stamp='0.330'>
+<phase_done name='lirGeneration' stamp='0.330'/>
+</phase>
+<phase name='linearScan' stamp='0.330'>
+<phase_done name='linearScan' stamp='0.330'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.330'/>
+</phase>
+<phase name='codeemit' stamp='0.330'>
+<phase_done name='codeemit' stamp='0.330'/>
+</phase>
+<phase name='codeinstall' stamp='0.330'>
+<phase_done name='codeinstall' stamp='0.330'/>
+</phase>
+<code_cache total_blobs='970' nmethods='537' adapters='260' free_code_cache='247686144'/>
+<task_done success='1' nmsize='624' count='321' inlined_bytes='22' stamp='0.330'/>
+</task>
+<task compile_id='543' method='com.sun.org.apache.xerces.internal.impl.XMLScanner scanAttributeValue (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/XMLString;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;IZLjava/lang/String;Z)V' bytes='991' count='317' backedge_count='1' iicount='317' level='3' stamp='0.330'>
+<phase name='setup' stamp='0.330'>
+<phase_done name='setup' stamp='0.330'/>
+</phase>
+<phase name='buildIR' stamp='0.330'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1096' holder='1093' name='scanAttributeValue' return='977' arguments='1094 1094 983 1095 975 969 983 969' flags='4' bytes='991' iicount='318'/>
+<parse method='1096'  stamp='0.330'>
+<phase name='parse_hir' stamp='0.330'>
+<bc code='182' bci='7'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1099' holder='1098' name='peekChar' return='975' flags='1' bytes='63' compile_id='515' compiler='c1' level='3' iicount='916'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='42'/>
+<klass id='1102' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1103' holder='1093' name='reportFatalError' return='977' arguments='983 1102' flags='4' bytes='18' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1105' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1108' holder='1105' name='reportError' return='983' arguments='1107 983 983 1102 974' flags='1' bytes='13' iicount='1'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1110' holder='1105' name='reportError' return='983' arguments='1107 983 983 1102 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='52'/>
+<klass id='1112' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1115' holder='1098' name='scanChar' return='975' arguments='1112' flags='4' bytes='236' compile_id='524' compiler='c1' level='3' iicount='753'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='71'/>
+<method id='1117' holder='1098' name='scanLiteral' return='975' arguments='975 1094 969' flags='4' bytes='755' iicount='340'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='87'/>
+<klass id='1119' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1120' holder='1119' name='clear' return='977' flags='1' bytes='11' iicount='101'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1120'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='95'/>
+<method id='1122' holder='1119' name='append' return='977' arguments='1094' flags='1' bytes='17' iicount='38'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='13'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1124' holder='1119' name='append' return='977' arguments='1082 975 975' flags='1' bytes='110' iicount='38'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='110'/>
+<method id='1126' holder='1093' name='normalizeWhitespace' return='977' arguments='1094' flags='4' bytes='65' iicount='1'/>
+<call method='1126' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='126'/>
+<method id='1128' holder='1093' name='getStringBuffer' return='1119' flags='0' bytes='76' iicount='4'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1128'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='133'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1120'>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='139'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='13'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='158'/>
+<method id='1131' holder='1098' name='skipChar' return='969' arguments='975 1112' flags='4' bytes='285' compile_id='522' compiler='c1' level='3' iicount='647'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='184'/>
+<type id='970' name='char'/>
+<method id='1133' holder='1119' name='append' return='977' arguments='970' flags='1' bytes='87' iicount='6'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='196'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='224'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='241'/>
+<method id='1135' holder='1093' name='scanCharReferenceValue' return='975' arguments='1119 1119' flags='4' bytes='763' iicount='1'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='253'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='274'/>
+<method id='1138' holder='1098' name='scanName' return='983' arguments='1112' flags='4' bytes='305' compile_id='534' compiler='c1' level='3' iicount='471'/>
+<call method='1138' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='288'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='316'/>
+<method id='1142' holder='1119' name='append' return='977' arguments='983' flags='1' bytes='103' iicount='1'/>
+<call method='1142' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='328'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='346'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='374'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='382'/>
+<method id='1145' holder='1093' name='resolveCharacter' return='969' arguments='983 1119' flags='4' bytes='109' iicount='4'/>
+<call method='1145' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1145'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='401'/>
+<method id='1149' holder='1093' name='checkEntityLimit' return='977' arguments='969 983 975' flags='0' bytes='317' iicount='8'/>
+<call method='1149' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1149'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='413'/>
+<klass id='1151' name='com.sun.xml.internal.stream.XMLEntityStorage' flags='1'/>
+<method id='1152' holder='1151' name='isExternalEntity' return='969' arguments='983' flags='1' bytes='25' iicount='1'/>
+<call method='1152' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1152'>
+<bc code='185' bci='5'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1154' name='java.util.Map' flags='1537'/>
+<method id='1155' holder='1154' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1155' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='21'/>
+<klass id='1148' name='com.sun.xml.internal.stream.Entity' flags='1025'/>
+<method id='1156' holder='1148' name='isExternal' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1156' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='431'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='443'/>
+<method id='1158' holder='1151' name='isDeclaredEntity' return='969' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<parse method='1158'>
+<bc code='185' bci='5'/>
+<call method='1155' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='483'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='502'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='513'/>
+<klass id='1161' name='com.sun.org.apache.xerces.internal.impl.XMLEntityManager' flags='1'/>
+<method id='1162' holder='1161' name='startEntity' return='977' arguments='969 983 969' flags='1' bytes='861' iicount='1'/>
+<call method='1162' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1161'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1161'/>
+<bc code='182' bci='542'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='550'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='577'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='184' bci='709'/>
+<klass id='1165' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1166' holder='1165' name='isHighSurrogate' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1166' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1166'>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='719'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1120'>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='727'/>
+<method id='1168' holder='1093' name='scanSurrogates' return='969' arguments='1119' flags='4' bytes='108' iicount='1'/>
+<call method='1168' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1168'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='739'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='13'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='766'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='13'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='781'/>
+<method id='1170' holder='1093' name='isInvalidLiteral' return='969' arguments='975' flags='4' bytes='5' iicount='13'/>
+<call method='1170' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1170'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1170'>
+<bc code='184' bci='1'/>
+<method id='1172' holder='1165' name='isInvalid' return='969' arguments='975' flags='9' bytes='13' iicount='13'/>
+<call method='1172' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1172'>
+<bc code='184' bci='1'/>
+<method id='1174' holder='1165' name='isValid' return='969' arguments='975' flags='9' bytes='34' iicount='13'/>
+<call method='1174' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='184' bci='809'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1177' holder='1076' name='toString' return='983' arguments='975 975' flags='9' bytes='128' iicount='1'/>
+<call method='1177' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='813'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='821'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='848'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='662'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='670'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='695'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='602'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='611'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='637'/>
+<call method='1133' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<bc code='182' bci='860'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='886'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='13'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='901'/>
+<call method='1126' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1126'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='923'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='13'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='929'/>
+<method id='1179' holder='1094' name='setValues' return='977' arguments='1094' flags='1' bytes='17' iicount='5'/>
+<call method='1179' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1179'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1179'>
+<bc code='182' bci='13'/>
+<method id='1181' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='532' compiler='c1' level='3' iicount='717'/>
+<call method='1181' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1181'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='949'/>
+<call method='1179' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1179'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1179'>
+<bc code='182' bci='13'/>
+<call method='1181' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1181'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1181'>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='959'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='987'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='13'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse method='1108'>
+<bc code='182' bci='9'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.333'/>
+</phase>
+<parse_done stamp='0.333'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.333'>
+<phase_done name='optimize_blocks' stamp='0.333'/>
+</phase>
+<phase name='gvn' stamp='0.333'>
+<phase_done name='gvn' stamp='0.333'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.333'>
+<phase_done name='rangeCheckElimination' stamp='0.333'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.333'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.336'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.336'/>
+</phase>
+<phase name='codeemit' stamp='0.336'>
+<phase_done name='codeemit' stamp='0.336'/>
+</phase>
+<phase name='codeinstall' stamp='0.336'>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<dependency type='leaf_type' ctxk='1151'/>
+<dependency type='leaf_type' ctxk='1161'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1126'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1128'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1145'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1149'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1168'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1170'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1179'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1181'/>
+<phase_done name='codeinstall' stamp='0.336'/>
+</phase>
+<code_cache total_blobs='998' nmethods='560' adapters='261' free_code_cache='247555072'/>
+<task_done success='1' nmsize='23576' count='1100' backedge_count='15' inlined_bytes='547' stamp='0.336'/>
+</task>
+<task compile_id='564' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer clear ()V' bytes='11' count='231' iicount='231' level='3' stamp='0.337'>
+<phase name='setup' stamp='0.337'>
+<phase_done name='setup' stamp='0.337'/>
+</phase>
+<phase name='buildIR' stamp='0.337'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1094' holder='1093' name='clear' return='977' flags='1' bytes='11' iicount='231'/>
+<parse method='1094'  stamp='0.337'>
+<phase name='parse_hir' stamp='0.337'>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.338'/>
+</phase>
+<code_cache total_blobs='1001' nmethods='563' adapters='261' free_code_cache='247551744'/>
+<task_done success='1' nmsize='368' count='237' stamp='0.338'/>
+</task>
+<task compile_id='567' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='56' count='258' iicount='258' level='3' stamp='0.338'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getValue' return='983' arguments='983' flags='1' bytes='56' iicount='259'/>
+<parse method='1094'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<bc code='182' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='getIndex' return='975' arguments='983' flags='1' bytes='51' compile_id='565' compiler='c1' level='3' iicount='263'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='40'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1101' holder='1100' name='toString' return='983' flags='1' bytes='32' iicount='237'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1101'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='23'/>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1103' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='1' bytes='14' compile_id='562' compiler='c1' level='3' iicount='313'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='184' bci='7'/>
+<klass id='1105' name='java.lang.Void' flags='17'/>
+<method id='1106' holder='983' name='rangeCheck' return='1105' arguments='1082 975 975' flags='10' bytes='9' compile_id='563' compiler='c1' level='3' iicount='315'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='4'/>
+<method id='1108' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' iicount='409'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.339'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1110' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1105' flags='0' bytes='74' compile_id='527' compiler='c1' level='3' iicount='491'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.339'/>
+</parse>
+<parse_done stamp='0.339'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.339'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.339'/>
+</phase>
+<phase name='codeemit' stamp='0.339'>
+<phase_done name='codeemit' stamp='0.339'/>
+</phase>
+<phase name='codeinstall' stamp='0.339'>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1101'/>
+<phase_done name='codeinstall' stamp='0.339'/>
+</phase>
+<code_cache total_blobs='1004' nmethods='566' adapters='261' free_code_cache='247545600'/>
+<task_done success='1' nmsize='1736' count='293' inlined_bytes='55' stamp='0.339'/>
+</task>
+<task compile_id='568' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser characters (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='78' count='259' iicount='259' level='3' stamp='0.339'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<method id='1096' holder='1093' name='characters' return='977' arguments='1094 1095' flags='1' bytes='78' iicount='259'/>
+<parse method='1096'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<bc code='185' bci='31'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1098' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<method id='1099' holder='1098' name='characters' return='977' arguments='1082 975 975' unloaded='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='59'/>
+<klass id='1100' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1101' holder='1100' name='characters' return='977' arguments='1082 975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<klass id='1102' name='org.xml.sax.helpers.DefaultHandler' flags='1'/>
+<method id='1103' holder='1102' name='characters' return='977' arguments='1082 975 975' flags='1' bytes='1' iicount='259'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1103'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.339'/>
+</parse>
+<bc code='183' bci='73'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<klass id='1105' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<method id='1106' holder='1105' name='&lt;init&gt;' return='977' arguments='992' unloaded='1'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.340'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.340'/>
+</phase>
+<phase name='codeemit' stamp='0.340'>
+<phase_done name='codeemit' stamp='0.340'/>
+</phase>
+<phase name='codeinstall' stamp='0.340'>
+<dependency type='unique_concrete_method' ctxk='1100' x='1103'/>
+<phase_done name='codeinstall' stamp='0.340'/>
+</phase>
+<code_cache total_blobs='1007' nmethods='569' adapters='261' free_code_cache='247541632'/>
+<task_done success='1' nmsize='1080' count='261' inlined_bytes='1' stamp='0.340'/>
+</task>
+<task compile_id='574' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack nextElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='129' count='256' iicount='256' level='3' stamp='0.340'>
+<phase name='setup' stamp='0.340'>
+<phase_done name='setup' stamp='0.340'/>
+</phase>
+<phase name='buildIR' stamp='0.340'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1095' holder='1093' name='nextElement' return='1094' flags='1' bytes='129' iicount='256'/>
+<parse method='1095'  stamp='0.340'>
+<phase name='parse_hir' stamp='0.340'>
+<bc code='184' bci='71'/>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1099' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='102'/>
+<method id='1101' holder='1094' name='&lt;init&gt;' return='977' flags='1' bytes='9' iicount='160'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23615'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.340'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1105' holder='1094' name='clear' return='977' flags='1' bytes='21' iicount='162'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse method='1105'>
+<parse_done stamp='0.340'/>
+</parse>
+<parse_done stamp='0.340'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.340'/>
+</phase>
+<parse_done stamp='0.340'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.340'>
+<phase_done name='optimize_blocks' stamp='0.340'/>
+</phase>
+<phase name='gvn' stamp='0.340'>
+<phase_done name='gvn' stamp='0.340'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.340'>
+<phase_done name='rangeCheckElimination' stamp='0.340'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.340'>
+<phase_done name='optimize_null_checks' stamp='0.340'/>
+</phase>
+<phase_done name='buildIR' stamp='0.340'/>
+</phase>
+<phase name='emit_lir' stamp='0.340'>
+<phase name='lirGeneration' stamp='0.340'>
+<phase_done name='lirGeneration' stamp='0.340'/>
+</phase>
+<phase name='linearScan' stamp='0.340'>
+<phase_done name='linearScan' stamp='0.341'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.341'/>
+</phase>
+<phase name='codeemit' stamp='0.341'>
+<phase_done name='codeemit' stamp='0.341'/>
+</phase>
+<phase name='codeinstall' stamp='0.341'>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.341'/>
+</phase>
+<code_cache total_blobs='1008' nmethods='570' adapters='261' free_code_cache='247538304'/>
+<task_done success='1' nmsize='2024' count='276' inlined_bytes='31' stamp='0.341'/>
+</task>
+<task compile_id='575' method='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl removeAllAttributes ()V' bytes='10' count='277' iicount='277' level='3' stamp='0.341'>
+<phase name='setup' stamp='0.341'>
+<phase_done name='setup' stamp='0.341'/>
+</phase>
+<phase name='buildIR' stamp='0.341'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<method id='1094' holder='1093' name='removeAllAttributes' return='977' flags='1' bytes='10' iicount='278'/>
+<parse method='1094'  stamp='0.341'>
+<phase name='parse_hir' stamp='0.341'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1097' holder='1096' name='removeAllAttributes' return='977' flags='1' bytes='6' iicount='279'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.341'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.341'/>
+</phase>
+<parse_done stamp='0.341'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.341'>
+<phase_done name='optimize_blocks' stamp='0.341'/>
+</phase>
+<phase name='gvn' stamp='0.341'>
+<phase_done name='gvn' stamp='0.341'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.341'>
+<phase_done name='rangeCheckElimination' stamp='0.341'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.341'>
+<phase_done name='optimize_null_checks' stamp='0.341'/>
+</phase>
+<phase_done name='buildIR' stamp='0.341'/>
+</phase>
+<phase name='emit_lir' stamp='0.341'>
+<phase name='lirGeneration' stamp='0.341'>
+<phase_done name='lirGeneration' stamp='0.341'/>
+</phase>
+<phase name='linearScan' stamp='0.341'>
+<phase_done name='linearScan' stamp='0.341'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.341'/>
+</phase>
+<phase name='codeemit' stamp='0.341'>
+<phase_done name='codeemit' stamp='0.341'/>
+</phase>
+<phase name='codeinstall' stamp='0.341'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.341'/>
+</phase>
+<code_cache total_blobs='1009' nmethods='571' adapters='261' free_code_cache='247537280'/>
+<task_done success='1' nmsize='432' count='284' inlined_bytes='6' stamp='0.341'/>
+</task>
+<task compile_id='576' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl removeAllAttributes ()V' bytes='6' count='284' iicount='284' level='3' stamp='0.341'>
+<phase name='setup' stamp='0.341'>
+<phase_done name='setup' stamp='0.341'/>
+</phase>
+<phase name='buildIR' stamp='0.341'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='removeAllAttributes' return='977' flags='1' bytes='6' iicount='284'/>
+<parse method='1094'  stamp='0.341'>
+<phase name='parse_hir' stamp='0.341'>
+<phase_done name='parse_hir' stamp='0.341'/>
+</phase>
+<parse_done stamp='0.341'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.341'>
+<phase_done name='optimize_blocks' stamp='0.341'/>
+</phase>
+<phase name='gvn' stamp='0.341'>
+<phase_done name='gvn' stamp='0.341'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.341'>
+<phase_done name='rangeCheckElimination' stamp='0.341'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.341'>
+<phase_done name='optimize_null_checks' stamp='0.341'/>
+</phase>
+<phase_done name='buildIR' stamp='0.341'/>
+</phase>
+<phase name='emit_lir' stamp='0.341'>
+<phase name='lirGeneration' stamp='0.341'>
+<phase_done name='lirGeneration' stamp='0.341'/>
+</phase>
+<phase name='linearScan' stamp='0.341'>
+<phase_done name='linearScan' stamp='0.341'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.341'/>
+</phase>
+<phase name='codeemit' stamp='0.341'>
+<phase_done name='codeemit' stamp='0.341'/>
+</phase>
+<phase name='codeinstall' stamp='0.341'>
+<phase_done name='codeinstall' stamp='0.341'/>
+</phase>
+<code_cache total_blobs='1010' nmethods='572' adapters='261' free_code_cache='247536384'/>
+<task_done success='1' nmsize='336' count='284' stamp='0.341'/>
+</task>
+<task compile_id='578' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser startElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='318' count='283' iicount='283' level='3' stamp='0.341'>
+<phase name='setup' stamp='0.341'>
+<phase_done name='setup' stamp='0.341'/>
+</phase>
+<phase name='buildIR' stamp='0.341'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<method id='1097' holder='1093' name='startElement' return='977' arguments='1094 1095 1096' flags='1' bytes='318' iicount='283'/>
+<parse method='1097'  stamp='0.341'>
+<phase name='parse_hir' stamp='0.341'>
+<bc code='182' bci='12'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1101' holder='1100' name='setAttributes' return='977' arguments='1095' flags='1' bytes='6' compile_id='561' compiler='c1' level='1' iicount='147'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='185' bci='27'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1103' name='org.xml.sax.AttributeList' flags='1537'/>
+<klass id='1099' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<method id='1104' holder='1099' name='startElement' return='977' arguments='983 1103' unloaded='1'/>
+<call method='1104' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='47'/>
+<method id='1106' holder='1093' name='startNamespaceMapping' return='977' flags='20' bytes='77' iicount='1'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='51'/>
+<type id='975' name='int'/>
+<method id='1108' holder='1095' name='getLength' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1108' instr='invokeinterface'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1110' holder='1109' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1110'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.342'/>
+</parse>
+<bc code='185' bci='83'/>
+<method id='1112' holder='1095' name='getName' return='977' arguments='975 1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1112' instr='invokeinterface'/>
+<method id='1113' holder='1109' name='getName' return='977' arguments='975 1094' flags='1' bytes='14' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='10'/>
+<method id='1117' holder='1094' name='setValues' return='977' arguments='1094' flags='1' bytes='33' compile_id='549' compiler='c1' level='3' iicount='2163'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse_done stamp='0.342'/>
+</parse>
+<bc code='185' bci='117'/>
+<method id='1122' holder='1095' name='removeAttributeAt' return='977' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1122' instr='invokeinterface'/>
+<method id='1123' holder='1109' name='removeAttributeAt' return='977' arguments='975' flags='1' bytes='68' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1123'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='156'/>
+<call method='1112' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='10'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse_done stamp='0.342'/>
+</parse>
+<bc code='185' bci='221'/>
+<method id='1126' holder='1095' name='setName' return='977' arguments='975 1094' flags='1025' bytes='0' iicount='1'/>
+<call method='1126' instr='invokeinterface'/>
+<method id='1127' holder='1109' name='setName' return='977' arguments='975 1094' flags='1' bytes='14' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1127'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='182' bci='10'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<parse_done stamp='0.343'/>
+</parse>
+<bc code='182' bci='278'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.343'/>
+</parse>
+<bc code='185' bci='297'/>
+<klass id='1129' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1105' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1130' holder='1105' name='startElement' return='977' arguments='983 983 983 1129' flags='1025' bytes='0' iicount='1'/>
+<call method='1130' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='313'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<klass id='1133' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<method id='1134' holder='1133' name='&lt;init&gt;' return='977' arguments='992' unloaded='1'/>
+<call method='1134' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.343'/>
+</phase>
+<parse_done stamp='0.343'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.343'>
+<phase_done name='optimize_blocks' stamp='0.343'/>
+</phase>
+<phase name='gvn' stamp='0.343'>
+<phase_done name='gvn' stamp='0.343'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.343'>
+<phase_done name='rangeCheckElimination' stamp='0.343'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.343'>
+<phase_done name='optimize_null_checks' stamp='0.343'/>
+</phase>
+<phase_done name='buildIR' stamp='0.344'/>
+</phase>
+<phase name='emit_lir' stamp='0.344'>
+<phase name='lirGeneration' stamp='0.344'>
+<phase_done name='lirGeneration' stamp='0.345'/>
+</phase>
+<phase name='linearScan' stamp='0.345'>
+<phase_done name='linearScan' stamp='0.345'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.345'/>
+</phase>
+<phase name='codeemit' stamp='0.345'>
+<phase_done name='codeemit' stamp='0.345'/>
+</phase>
+<phase name='codeinstall' stamp='0.345'>
+<dependency type='leaf_type' ctxk='1094'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1110'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1127'/>
+<phase_done name='codeinstall' stamp='0.346'/>
+</phase>
+<code_cache total_blobs='1017' nmethods='577' adapters='261' free_code_cache='247480576'/>
+<task_done success='1' nmsize='4984' count='386' inlined_bytes='59' stamp='0.346'/>
+</task>
+<task compile_id='586' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkNodeCount (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;)V' bytes='22' count='407' iicount='407' level='3' stamp='0.346'>
+<phase name='setup' stamp='0.346'>
+<phase_done name='setup' stamp='0.346'/>
+</phase>
+<phase name='buildIR' stamp='0.346'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='checkNodeCount' return='977' arguments='1094' flags='4' bytes='22' iicount='407'/>
+<parse method='1095'  stamp='0.346'>
+<phase name='parse_hir' stamp='0.346'>
+<bc code='182' bci='18'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<type id='975' name='int'/>
+<method id='1100' holder='1093' name='checkLimit' return='977' arguments='1097 1094 975 975' flags='4' bytes='253' compile_id='538' compiler='c1' level='3' iicount='3458'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.346'/>
+</phase>
+<parse_done stamp='0.346'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.346'>
+<phase_done name='optimize_blocks' stamp='0.346'/>
+</phase>
+<phase name='gvn' stamp='0.346'>
+<phase_done name='gvn' stamp='0.346'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.346'>
+<phase_done name='rangeCheckElimination' stamp='0.346'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.346'>
+<phase_done name='optimize_null_checks' stamp='0.346'/>
+</phase>
+<phase_done name='buildIR' stamp='0.346'/>
+</phase>
+<phase name='emit_lir' stamp='0.346'>
+<phase name='lirGeneration' stamp='0.346'>
+<phase_done name='lirGeneration' stamp='0.346'/>
+</phase>
+<phase name='linearScan' stamp='0.346'>
+<phase_done name='linearScan' stamp='0.346'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.346'/>
+</phase>
+<phase name='codeemit' stamp='0.346'>
+<phase_done name='codeemit' stamp='0.346'/>
+</phase>
+<phase name='codeinstall' stamp='0.346'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.346'/>
+</phase>
+<code_cache total_blobs='1025' nmethods='581' adapters='261' free_code_cache='247464704'/>
+<task_done success='1' nmsize='552' count='417' stamp='0.346'/>
+</task>
+<task compile_id='581' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser endElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='108' count='394' iicount='394' level='3' stamp='0.347'>
+<phase name='setup' stamp='0.347'>
+<phase_done name='setup' stamp='0.347'/>
+</phase>
+<phase name='buildIR' stamp='0.347'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<method id='1096' holder='1093' name='endElement' return='977' arguments='1094 1095' flags='1' bytes='108' iicount='396'/>
+<parse method='1096'  stamp='0.347'>
+<phase name='parse_hir' stamp='0.347'>
+<bc code='185' bci='15'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1098' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<method id='1099' holder='1098' name='endElement' return='977' arguments='983' unloaded='1'/>
+<call method='1099' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='78'/>
+<klass id='1100' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1102' holder='1100' name='endElement' return='977' arguments='983 983 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='91'/>
+<method id='1105' holder='1093' name='endNamespaceMapping' return='977' flags='20' bytes='47' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='103'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' arguments='992' unloaded='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.347'/>
+</phase>
+<parse_done stamp='0.347'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.347'>
+<phase_done name='optimize_blocks' stamp='0.347'/>
+</phase>
+<phase name='gvn' stamp='0.347'>
+<phase_done name='gvn' stamp='0.347'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.347'>
+<phase_done name='rangeCheckElimination' stamp='0.347'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.347'>
+<phase_done name='optimize_null_checks' stamp='0.347'/>
+</phase>
+<phase_done name='buildIR' stamp='0.347'/>
+</phase>
+<phase name='emit_lir' stamp='0.347'>
+<phase name='lirGeneration' stamp='0.347'>
+<phase_done name='lirGeneration' stamp='0.347'/>
+</phase>
+<phase name='linearScan' stamp='0.347'>
+<phase_done name='linearScan' stamp='0.347'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.347'/>
+</phase>
+<phase name='codeemit' stamp='0.347'>
+<phase_done name='codeemit' stamp='0.347'/>
+</phase>
+<phase name='codeinstall' stamp='0.347'>
+<phase_done name='codeinstall' stamp='0.347'/>
+</phase>
+<code_cache total_blobs='1033' nmethods='585' adapters='261' free_code_cache='247454592'/>
+<task_done success='1' nmsize='1496' count='412' stamp='0.347'/>
+</task>
+<task compile_id='599' method='com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser emptyElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='14' count='402' iicount='402' level='3' stamp='0.347'>
+<phase name='setup' stamp='0.347'>
+<phase_done name='setup' stamp='0.347'/>
+</phase>
+<phase name='buildIR' stamp='0.347'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser' flags='1025'/>
+<method id='1097' holder='1093' name='emptyElement' return='977' arguments='1094 1095 1096' flags='1' bytes='14' iicount='402'/>
+<parse method='1097'  stamp='0.347'>
+<phase name='parse_hir' stamp='0.347'>
+<bc code='182' bci='4'/>
+<method id='1099' holder='1093' name='startElement' return='977' arguments='1094 1095 1096' flags='1' bytes='1' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='10'/>
+<method id='1100' holder='1093' name='endElement' return='977' arguments='1094 1096' flags='1' bytes='1' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.348'/>
+</phase>
+<parse_done stamp='0.348'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.348'>
+<phase_done name='optimize_blocks' stamp='0.348'/>
+</phase>
+<phase name='gvn' stamp='0.348'>
+<phase_done name='gvn' stamp='0.348'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.348'>
+<phase_done name='rangeCheckElimination' stamp='0.348'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.348'>
+<phase_done name='optimize_null_checks' stamp='0.348'/>
+</phase>
+<phase_done name='buildIR' stamp='0.348'/>
+</phase>
+<phase name='emit_lir' stamp='0.348'>
+<phase name='lirGeneration' stamp='0.348'>
+<phase_done name='lirGeneration' stamp='0.348'/>
+</phase>
+<phase name='linearScan' stamp='0.348'>
+<phase_done name='linearScan' stamp='0.348'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.348'/>
+</phase>
+<phase name='codeemit' stamp='0.348'>
+<phase_done name='codeemit' stamp='0.348'/>
+</phase>
+<phase name='codeinstall' stamp='0.348'>
+<phase_done name='codeinstall' stamp='0.348'/>
+</phase>
+<code_cache total_blobs='1034' nmethods='586' adapters='261' free_code_cache='247453184'/>
+<task_done success='1' nmsize='760' count='402' stamp='0.348'/>
+</task>
+<task compile_id='601' compile_kind='osr' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='22' backedge_count='81970' iicount='22' osr_bci='73' level='3' stamp='0.348'>
+<phase name='setup' stamp='0.348'>
+<phase_done name='setup' stamp='0.348'/>
+</phase>
+<phase name='buildIR' stamp='0.348'>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1095' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Decoder' flags='10'/>
+<method id='1097' holder='1093' name='decodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='691' iicount='22'/>
+<parse method='1097'  stamp='0.348'>
+<phase name='parse_hir' stamp='0.348'>
+<bc code='182' bci='1'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1099' holder='1094' name='array' return='1085' flags='17' bytes='35' iicount='45'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.UnsupportedOperationException' unloaded='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1103' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1094' name='arrayOffset' return='975' flags='17' bytes='35' iicount='113'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='10'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1107' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='17'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1109' holder='1064' name='limit' return='975' flags='17' bytes='5' compile_id='481' compiler='c1' level='1' iicount='147'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='28'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1111' holder='1095' name='array' return='1082' flags='17' bytes='35' iicount='34'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.348'/>
+</parse>
+<bc code='182' bci='34'/>
+<method id='1113' holder='1095' name='arrayOffset' return='975' flags='17' bytes='35' iicount='102'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.349'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.349'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.349'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.349'/>
+</parse>
+<bc code='184' bci='67'/>
+<klass id='1115' name='java.lang.Math' flags='17'/>
+<method id='1116' holder='1115' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='6552'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.349'/>
+</parse>
+<bc code='184' bci='140'/>
+<method id='1118' holder='1093' name='xflow' return='1096' arguments='1064 975 975 1064 975 975' flags='10' bytes='31' iicount='22'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<klass id='1120' name='sun.nio.cs.UTF_8' flags='0'/>
+<method id='1121' holder='1120' name='access$200' return='977' arguments='1064 975 1064 975' flags='4104' bytes='8' iicount='34'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<method id='1123' holder='1120' name='updatePositions' return='977' arguments='1064 975 1064 975' flags='26' bytes='23' iicount='38'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<method id='1125' holder='1064' name='arrayOffset' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<method id='1126' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='441'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.351'/>
+</parse>
+<parse_done stamp='0.351'/>
+</parse>
+<parse_done stamp='0.351'/>
+</parse>
+<bc code='184' bci='217'/>
+<type id='969' name='boolean'/>
+<method id='1130' holder='1093' name='isNotContinuation' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='230'/>
+<method id='1132' holder='1093' name='malformedForLength' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='13' iicount='1'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1134' holder='1096' name='malformedForLength' return='1096' arguments='975' flags='9' bytes='8' iicount='1'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='4'/>
+<klass id='1136' name='java.nio.charset.CoderResult$Cache' flags='1034'/>
+<method id='1137' holder='1136' name='access$200' return='1096' arguments='1136 975' flags='4104' bytes='6' iicount='1'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<method id='1139' holder='1136' name='get' return='1096' arguments='975' flags='34' bytes='105' iicount='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='203'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='356'/>
+<method id='1141' holder='1093' name='isMalformed3' return='969' arguments='975 975 975' flags='10' bytes='45' iicount='1'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='369'/>
+<method id='1143' holder='1093' name='malformed' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='29' iicount='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='182' bci='3'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<method id='1145' holder='1094' name='position' return='1094' arguments='975' flags='1' bytes='8' compile_id='486' compiler='c1' level='3' iicount='353'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='14'/>
+<method id='1146' holder='1093' name='malformedN' return='1096' arguments='1094 975' flags='10' bytes='192' iicount='1'/>
+<call method='1146' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='395'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1148' holder='1070' name='isSurrogate' return='969' arguments='970' flags='9' bytes='18' iicount='43'/>
+<call method='1148' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<parse_done stamp='0.352'/>
+</parse>
+<bc code='184' bci='408'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='4'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='304'/>
+<method id='1150' holder='1093' name='isMalformed3_2' return='969' arguments='975 975' flags='10' bytes='34' iicount='1'/>
+<call method='1150' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1150'>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='317'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='4'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='330'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='607'/>
+<method id='1152' holder='1093' name='isMalformed4' return='969' arguments='975 975 975' flags='10' bytes='39' iicount='1'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='615'/>
+<method id='1154' holder='1070' name='isSupplementaryCodePoint' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1154' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1154'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='641'/>
+<method id='1156' holder='1070' name='highSurrogate' return='970' arguments='975' flags='9' bytes='9' iicount='1'/>
+<call method='1156' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='654'/>
+<method id='1158' holder='1070' name='lowSurrogate' return='970' arguments='975' flags='9' bytes='10' iicount='1'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='628'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='182' bci='3'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='14'/>
+<call method='1146' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='493'/>
+<method id='1160' holder='1093' name='isMalformed4_2' return='969' arguments='975 975' flags='10' bytes='56' iicount='1'/>
+<call method='1160' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='522'/>
+<method id='1162' holder='1093' name='isMalformed4_3' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1162' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='535'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='4'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='548'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='506'/>
+<call method='1132' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='4'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='2'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='184' bci='671'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='182' bci='3'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='14'/>
+<call method='1146' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<parse_done stamp='0.362'/>
+</parse>
+<bc code='184' bci='687'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.363'/>
+</parse>
+<parse_done stamp='0.363'/>
+</parse>
+<parse_done stamp='0.363'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.363'/>
+</phase>
+<parse_done stamp='0.363'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.363'>
+<phase_done name='optimize_blocks' stamp='0.363'/>
+</phase>
+<phase name='gvn' stamp='0.363'>
+<phase_done name='gvn' stamp='0.364'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.364'>
+<phase_done name='optimize_null_checks' stamp='0.365'/>
+</phase>
+<phase_done name='buildIR' stamp='0.365'/>
+</phase>
+<phase name='emit_lir' stamp='0.365'>
+<phase name='lirGeneration' stamp='0.365'>
+<phase_done name='lirGeneration' stamp='0.368'/>
+</phase>
+<phase name='linearScan' stamp='0.368'>
+<phase_done name='linearScan' stamp='0.373'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.373'/>
+</phase>
+<phase name='codeemit' stamp='0.373'>
+<phase_done name='codeemit' stamp='0.377'/>
+</phase>
+<phase name='codeinstall' stamp='0.377'>
+<phase_done name='codeinstall' stamp='0.378'/>
+</phase>
+<code_cache total_blobs='1079' nmethods='606' adapters='262' free_code_cache='247309568'/>
+<task_done success='1' nmsize='27496' count='44' backedge_count='172035' inlined_bytes='1144' stamp='0.378'/>
+</task>
+<task compile_id='608' method='com.sun.org.apache.xerces.internal.xni.XMLString toString ()Ljava/lang/String;' bytes='32' count='1982' iicount='1982' level='3' stamp='0.378'>
+<phase name='setup' stamp='0.378'>
+<phase_done name='setup' stamp='0.378'/>
+</phase>
+<phase name='buildIR' stamp='0.378'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1094' holder='1093' name='toString' return='983' flags='1' bytes='32' iicount='1982'/>
+<parse method='1094'  stamp='0.378'>
+<phase name='parse_hir' stamp='0.378'>
+<bc code='183' bci='23'/>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1096' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='1' bytes='14' compile_id='562' compiler='c1' level='3' iicount='2060'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='7'/>
+<klass id='1098' name='java.lang.Void' flags='17'/>
+<method id='1099' holder='983' name='rangeCheck' return='1098' arguments='1082 975 975' flags='10' bytes='9' compile_id='563' compiler='c1' level='3' iicount='2062'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='184' bci='4'/>
+<method id='1101' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' compile_id='587' compiler='c1' level='3' iicount='2160'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1103' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1098' flags='0' bytes='74' compile_id='527' compiler='c1' level='3' iicount='2279'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.378'/>
+</phase>
+<parse_done stamp='0.378'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.378'>
+<phase_done name='optimize_blocks' stamp='0.378'/>
+</phase>
+<phase name='gvn' stamp='0.378'>
+<phase_done name='gvn' stamp='0.378'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.378'>
+<phase_done name='rangeCheckElimination' stamp='0.378'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.378'>
+<phase_done name='optimize_null_checks' stamp='0.378'/>
+</phase>
+<phase_done name='buildIR' stamp='0.378'/>
+</phase>
+<phase name='emit_lir' stamp='0.378'>
+<phase name='lirGeneration' stamp='0.378'>
+<phase_done name='lirGeneration' stamp='0.378'/>
+</phase>
+<phase name='linearScan' stamp='0.378'>
+<phase_done name='linearScan' stamp='0.378'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.378'/>
+</phase>
+<phase name='codeemit' stamp='0.378'>
+<phase_done name='codeemit' stamp='0.378'/>
+</phase>
+<phase name='codeinstall' stamp='0.378'>
+<phase_done name='codeinstall' stamp='0.378'/>
+</phase>
+<code_cache total_blobs='1081' nmethods='608' adapters='262' free_code_cache='247302016'/>
+<task_done success='1' nmsize='920' count='2023' inlined_bytes='23' stamp='0.378'/>
+</task>
+<task compile_id='624' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;)Ljava/lang/String;' bytes='39' count='1099' iicount='1099' level='3' stamp='0.378'>
+<phase name='setup' stamp='0.378'>
+<phase_done name='setup' stamp='0.378'/>
+</phase>
+<phase name='buildIR' stamp='0.378'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='search' return='983' arguments='1094 983' flags='0' bytes='39' iicount='1100'/>
+<parse method='1095'  stamp='0.378'>
+<phase name='parse_hir' stamp='0.378'>
+<bc code='185' bci='2'/>
+<method id='1098' holder='1094' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1099' holder='1097' name='getValue' return='983' arguments='983' flags='1' bytes='11' compile_id='566' compiler='c1' level='3' iicount='2825'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='185' bci='5'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1103' holder='1102' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<klass id='1104' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1105' holder='1104' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='567' compiler='c1' level='3' iicount='2837'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='183' bci='19'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1108' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1566'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1110' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1694'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='24'/>
+<method id='1113' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='2508'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='2'/>
+<method id='1115' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='2508'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='28'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='2'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='31'/>
+<method id='1117' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1694'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1119' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='4944'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1122' name='java.lang.StringLatin1' flags='16'/>
+<method id='1123' holder='1122' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='3277'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='9'/>
+<klass id='1125' name='java.util.Arrays' flags='1'/>
+<method id='1126' holder='1125' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='3295'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1128' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4542'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1130' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='26774'/>
+<call method='1130' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1132' name='java.lang.StringUTF16' flags='16'/>
+<method id='1133' holder='1132' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='183' bci='34'/>
+<method id='1135' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1135' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1137' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1137' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.379'/>
+</phase>
+<parse_done stamp='0.379'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.379'>
+<phase_done name='optimize_blocks' stamp='0.379'/>
+</phase>
+<phase name='gvn' stamp='0.379'>
+<phase_done name='gvn' stamp='0.379'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.379'>
+<phase_done name='rangeCheckElimination' stamp='0.379'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.379'>
+<phase_done name='optimize_null_checks' stamp='0.379'/>
+</phase>
+<phase_done name='buildIR' stamp='0.379'/>
+</phase>
+<phase name='emit_lir' stamp='0.379'>
+<phase name='lirGeneration' stamp='0.379'>
+<phase_done name='lirGeneration' stamp='0.379'/>
+</phase>
+<phase name='linearScan' stamp='0.379'>
+<phase_done name='linearScan' stamp='0.380'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.380'/>
+</phase>
+<phase name='codeemit' stamp='0.380'>
+<phase_done name='codeemit' stamp='0.380'/>
+</phase>
+<phase name='codeinstall' stamp='0.380'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1105'/>
+<phase_done name='codeinstall' stamp='0.380'/>
+</phase>
+<code_cache total_blobs='1082' nmethods='609' adapters='262' free_code_cache='247297280'/>
+<task_done success='1' nmsize='3080' count='1195' inlined_bytes='128' stamp='0.380'/>
+</task>
+<task compile_id='642' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='45' backedge_count='173611' iicount='45' level='3' stamp='0.380'>
+<phase name='setup' stamp='0.380'>
+<phase_done name='setup' stamp='0.380'/>
+</phase>
+<phase name='buildIR' stamp='0.380'>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1095' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Decoder' flags='10'/>
+<method id='1097' holder='1093' name='decodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='691' iicount='45'/>
+<parse method='1097'  stamp='0.380'>
+<phase name='parse_hir' stamp='0.380'>
+<bc code='182' bci='1'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1099' holder='1094' name='array' return='1085' flags='17' bytes='35' iicount='81'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1103' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1094' name='arrayOffset' return='975' flags='17' bytes='35' iicount='197'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='182' bci='10'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1107' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='182' bci='17'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1109' holder='1064' name='limit' return='975' flags='17' bytes='5' compile_id='481' compiler='c1' level='1' iicount='147'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='182' bci='28'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1111' holder='1095' name='array' return='1082' flags='17' bytes='35' iicount='58'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='34'/>
+<method id='1113' holder='1095' name='arrayOffset' return='975' flags='17' bytes='35' iicount='174'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='11'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='67'/>
+<klass id='1115' name='java.lang.Math' flags='17'/>
+<method id='1116' holder='1115' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='7068'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='140'/>
+<method id='1118' holder='1093' name='xflow' return='1096' arguments='1064 975 975 1064 975 975' flags='10' bytes='31' iicount='46'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<klass id='1120' name='sun.nio.cs.UTF_8' flags='0'/>
+<method id='1121' holder='1120' name='access$200' return='977' arguments='1064 975 1064 975' flags='4104' bytes='8' iicount='58'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<method id='1123' holder='1120' name='updatePositions' return='977' arguments='1064 975 1064 975' flags='26' bytes='23' iicount='58'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<method id='1127' holder='1064' name='arrayOffset' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<method id='1128' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='515'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<method id='1130' holder='1095' name='position' return='1064' arguments='975' flags='4161' bytes='6' iicount='101'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<method id='1132' holder='1095' name='position' return='1095' arguments='975' flags='17' bytes='8' iicount='101'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='217'/>
+<type id='969' name='boolean'/>
+<method id='1138' holder='1093' name='isNotContinuation' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1138' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.381'/>
+</parse>
+<bc code='184' bci='230'/>
+<method id='1140' holder='1093' name='malformedForLength' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='13' iicount='1'/>
+<call method='1140' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1142' holder='1096' name='malformedForLength' return='1096' arguments='975' flags='9' bytes='8' iicount='1'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='184' bci='4'/>
+<klass id='1144' name='java.nio.charset.CoderResult$Cache' flags='1034'/>
+<method id='1145' holder='1144' name='access$200' return='1096' arguments='1144 975' flags='4104' bytes='6' iicount='1'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='183' bci='2'/>
+<method id='1147' holder='1144' name='get' return='1096' arguments='975' flags='34' bytes='105' iicount='1'/>
+<call method='1147' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='203'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='356'/>
+<method id='1149' holder='1093' name='isMalformed3' return='969' arguments='975 975 975' flags='10' bytes='45' iicount='1'/>
+<call method='1149' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='369'/>
+<method id='1151' holder='1093' name='malformed' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='29' iicount='1'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='182' bci='3'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<method id='1153' holder='1094' name='position' return='1094' arguments='975' flags='1' bytes='8' compile_id='486' compiler='c1' level='3' iicount='393'/>
+<call method='1153' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='14'/>
+<method id='1154' holder='1093' name='malformedN' return='1096' arguments='1094 975' flags='10' bytes='192' iicount='1'/>
+<call method='1154' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='395'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1156' holder='1070' name='isSurrogate' return='969' arguments='970' flags='9' bytes='18' iicount='43'/>
+<call method='1156' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<parse_done stamp='0.382'/>
+</parse>
+<bc code='184' bci='408'/>
+<call method='1140' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.384'/>
+</parse>
+<parse_done stamp='0.385'/>
+</parse>
+<parse_done stamp='0.385'/>
+</parse>
+<parse_done stamp='0.385'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='184' bci='4'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='183' bci='2'/>
+<call method='1147' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.385'/>
+</parse>
+<parse_done stamp='0.385'/>
+</parse>
+<parse_done stamp='0.385'/>
+</parse>
+<bc code='184' bci='304'/>
+<method id='1158' holder='1093' name='isMalformed3_2' return='969' arguments='975 975' flags='10' bytes='34' iicount='1'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='317'/>
+<call method='1140' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='184' bci='4'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='183' bci='2'/>
+<call method='1147' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='330'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='607'/>
+<method id='1160' holder='1093' name='isMalformed4' return='969' arguments='975 975 975' flags='10' bytes='39' iicount='1'/>
+<call method='1160' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='615'/>
+<method id='1162' holder='1070' name='isSupplementaryCodePoint' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1162' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='641'/>
+<method id='1164' holder='1070' name='highSurrogate' return='970' arguments='975' flags='9' bytes='9' iicount='1'/>
+<call method='1164' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1164'>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='184' bci='654'/>
+<method id='1166' holder='1070' name='lowSurrogate' return='970' arguments='975' flags='9' bytes='10' iicount='1'/>
+<call method='1166' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1166'>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='184' bci='628'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='182' bci='3'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1153' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='14'/>
+<call method='1154' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='184' bci='493'/>
+<method id='1168' holder='1093' name='isMalformed4_2' return='969' arguments='975 975' flags='10' bytes='56' iicount='1'/>
+<call method='1168' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='522'/>
+<method id='1170' holder='1093' name='isMalformed4_3' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1170' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1170'>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='184' bci='535'/>
+<call method='1140' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='184' bci='4'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='183' bci='2'/>
+<call method='1147' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<parse_done stamp='0.387'/>
+</parse>
+<bc code='184' bci='548'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='184' bci='506'/>
+<call method='1140' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='4'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='184' bci='4'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='183' bci='2'/>
+<call method='1147' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='184' bci='671'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='182' bci='3'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1153' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='14'/>
+<call method='1154' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<parse_done stamp='0.388'/>
+</parse>
+<bc code='184' bci='687'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='5'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='4'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='182' bci='3'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='7'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='18'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='2'/>
+<call method='1128' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<parse_done stamp='0.389'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.389'/>
+</phase>
+<parse_done stamp='0.389'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.389'>
+<phase_done name='optimize_blocks' stamp='0.389'/>
+</phase>
+<phase name='gvn' stamp='0.389'>
+<phase_done name='gvn' stamp='0.390'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.390'>
+<phase_done name='rangeCheckElimination' stamp='0.390'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.390'>
+<phase_done name='optimize_null_checks' stamp='0.391'/>
+</phase>
+<phase_done name='buildIR' stamp='0.391'/>
+</phase>
+<phase name='emit_lir' stamp='0.391'>
+<phase name='lirGeneration' stamp='0.391'>
+<phase_done name='lirGeneration' stamp='0.395'/>
+</phase>
+<phase name='linearScan' stamp='0.395'>
+<phase_done name='linearScan' stamp='0.397'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.397'/>
+</phase>
+<phase name='codeemit' stamp='0.397'>
+<phase_done name='codeemit' stamp='0.399'/>
+</phase>
+<phase name='codeinstall' stamp='0.399'>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1130'/>
+<phase_done name='codeinstall' stamp='0.399'/>
+</phase>
+<code_cache total_blobs='1095' nmethods='620' adapters='262' free_code_cache='247213056'/>
+<task_done success='1' nmsize='30888' count='55' backedge_count='221182' inlined_bytes='1326' stamp='0.399'/>
+</task>
+<task compile_id='631' method='java.lang.Double parseDouble (Ljava/lang/String;)D' bytes='5' count='955' iicount='955' level='3' stamp='0.399'>
+<phase name='setup' stamp='0.399'>
+<phase_done name='setup' stamp='0.399'/>
+</phase>
+<phase name='buildIR' stamp='0.399'>
+<type id='972' name='double'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='parseDouble' return='972' arguments='983' flags='9' bytes='5' iicount='956'/>
+<parse method='1093'  stamp='0.399'>
+<phase name='parse_hir' stamp='0.399'>
+<bc code='184' bci='1'/>
+<klass id='1095' name='jdk.internal.math.FloatingDecimal' flags='1'/>
+<method id='1096' holder='1095' name='parseDouble' return='972' arguments='983' flags='9' bytes='10' iicount='958'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='1'/>
+<klass id='1099' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter' flags='1544'/>
+<method id='1100' holder='1095' name='readJavaFormatString' return='1099' arguments='983' flags='8' bytes='826' iicount='959'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<method id='1102' holder='1099' name='doubleValue' return='972' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.399'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.399'/>
+</phase>
+<parse_done stamp='0.399'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.399'>
+<phase_done name='optimize_blocks' stamp='0.399'/>
+</phase>
+<phase name='gvn' stamp='0.399'>
+<phase_done name='gvn' stamp='0.399'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.399'>
+<phase_done name='rangeCheckElimination' stamp='0.399'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.399'>
+<phase_done name='optimize_null_checks' stamp='0.399'/>
+</phase>
+<phase_done name='buildIR' stamp='0.399'/>
+</phase>
+<phase name='emit_lir' stamp='0.399'>
+<phase name='lirGeneration' stamp='0.399'>
+<phase_done name='lirGeneration' stamp='0.399'/>
+</phase>
+<phase name='linearScan' stamp='0.399'>
+<phase_done name='linearScan' stamp='0.399'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.399'/>
+</phase>
+<phase name='codeemit' stamp='0.399'>
+<phase_done name='codeemit' stamp='0.399'/>
+</phase>
+<phase name='codeinstall' stamp='0.399'>
+<phase_done name='codeinstall' stamp='0.399'/>
+</phase>
+<code_cache total_blobs='1096' nmethods='621' adapters='262' free_code_cache='247211648'/>
+<task_done success='1' nmsize='632' count='967' inlined_bytes='10' stamp='0.399'/>
+</task>
+<task compile_id='644' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer &lt;init&gt; (ZI[CI)V' bytes='26' count='967' iicount='967' level='3' stamp='0.399'>
+<phase name='setup' stamp='0.399'>
+<phase_done name='setup' stamp='0.399'/>
+</phase>
+<phase name='buildIR' stamp='0.399'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer' flags='8'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='969 975 1082 975' flags='0' bytes='26' iicount='967'/>
+<parse method='1094'  stamp='0.400'>
+<phase name='parse_hir' stamp='0.400'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='29497'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.400'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.400'/>
+</phase>
+<parse_done stamp='0.400'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.400'>
+<phase_done name='optimize_blocks' stamp='0.400'/>
+</phase>
+<phase name='gvn' stamp='0.400'>
+<phase_done name='gvn' stamp='0.400'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.400'>
+<phase_done name='rangeCheckElimination' stamp='0.400'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.400'>
+<phase_done name='optimize_null_checks' stamp='0.400'/>
+</phase>
+<phase_done name='buildIR' stamp='0.400'/>
+</phase>
+<phase name='emit_lir' stamp='0.400'>
+<phase name='lirGeneration' stamp='0.400'>
+<phase_done name='lirGeneration' stamp='0.400'/>
+</phase>
+<phase name='linearScan' stamp='0.400'>
+<phase_done name='linearScan' stamp='0.400'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.400'/>
+</phase>
+<phase name='codeemit' stamp='0.400'>
+<phase_done name='codeemit' stamp='0.400'/>
+</phase>
+<phase name='codeinstall' stamp='0.400'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.400'/>
+</phase>
+<code_cache total_blobs='1097' nmethods='622' adapters='262' free_code_cache='247210496'/>
+<task_done success='1' nmsize='528' count='973' inlined_bytes='1' stamp='0.400'/>
+</task>
+<task compile_id='655' method='java.util.ArrayDeque elementAt ([Ljava/lang/Object;I)Ljava/lang/Object;' bytes='4' count='678' iicount='678' level='3' stamp='0.400'>
+<phase name='setup' stamp='0.400'>
+<phase_done name='setup' stamp='0.400'/>
+</phase>
+<phase name='buildIR' stamp='0.400'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1095' holder='1093' name='elementAt' return='982' arguments='1094 975' flags='24' bytes='4' iicount='679'/>
+<parse method='1095'  stamp='0.400'>
+<phase name='parse_hir' stamp='0.400'>
+<phase_done name='parse_hir' stamp='0.400'/>
+</phase>
+<parse_done stamp='0.400'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.400'>
+<phase_done name='optimize_blocks' stamp='0.400'/>
+</phase>
+<phase name='gvn' stamp='0.400'>
+<phase_done name='gvn' stamp='0.400'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.400'>
+<phase_done name='rangeCheckElimination' stamp='0.400'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.400'>
+<phase_done name='optimize_null_checks' stamp='0.400'/>
+</phase>
+<phase_done name='buildIR' stamp='0.400'/>
+</phase>
+<phase name='emit_lir' stamp='0.400'>
+<phase name='lirGeneration' stamp='0.400'>
+<phase_done name='lirGeneration' stamp='0.400'/>
+</phase>
+<phase name='linearScan' stamp='0.400'>
+<phase_done name='linearScan' stamp='0.400'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.400'/>
+</phase>
+<phase name='codeemit' stamp='0.400'>
+<phase_done name='codeemit' stamp='0.400'/>
+</phase>
+<phase name='codeinstall' stamp='0.400'>
+<phase_done name='codeinstall' stamp='0.400'/>
+</phase>
+<code_cache total_blobs='1099' nmethods='624' adapters='262' free_code_cache='247208192'/>
+<task_done success='1' nmsize='336' count='681' stamp='0.400'/>
+</task>
+<task compile_id='658' method='java.util.ArrayDeque inc (II)I' bytes='12' count='523' iicount='523' level='3' stamp='0.400'>
+<phase name='setup' stamp='0.400'>
+<phase_done name='setup' stamp='0.400'/>
+</phase>
+<phase name='buildIR' stamp='0.400'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='inc' return='975' arguments='975 975' flags='24' bytes='12' iicount='523'/>
+<parse method='1094'  stamp='0.400'>
+<phase name='parse_hir' stamp='0.400'>
+<phase_done name='parse_hir' stamp='0.400'/>
+</phase>
+<parse_done stamp='0.400'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.400'>
+<phase_done name='optimize_blocks' stamp='0.400'/>
+</phase>
+<phase name='gvn' stamp='0.400'>
+<phase_done name='gvn' stamp='0.400'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.400'>
+<phase_done name='rangeCheckElimination' stamp='0.400'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.400'>
+<phase_done name='optimize_null_checks' stamp='0.400'/>
+</phase>
+<phase_done name='buildIR' stamp='0.400'/>
+</phase>
+<phase name='emit_lir' stamp='0.400'>
+<phase name='lirGeneration' stamp='0.400'>
+<phase_done name='lirGeneration' stamp='0.400'/>
+</phase>
+<phase name='linearScan' stamp='0.400'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.401'/>
+</phase>
+<phase name='codeinstall' stamp='0.401'>
+<phase_done name='codeinstall' stamp='0.401'/>
+</phase>
+<code_cache total_blobs='1101' nmethods='626' adapters='262' free_code_cache='247161344'/>
+<task_done success='1' nmsize='368' count='529' stamp='0.401'/>
+</task>
+<task compile_id='641' method='java.util.ArrayList$SubList access$200 (Ljava/util/ArrayList$SubList;)I' bytes='5' count='396' iicount='396' level='1' stamp='0.401'>
+<phase name='setup' stamp='0.401'>
+<phase_done name='setup' stamp='0.401'/>
+</phase>
+<phase name='buildIR' stamp='0.401'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1094' holder='1093' name='access$200' return='975' arguments='1093' flags='4104' bytes='5' iicount='396'/>
+<parse method='1094'  stamp='0.401'>
+<phase name='parse_hir' stamp='0.401'>
+<phase_done name='parse_hir' stamp='0.401'/>
+</phase>
+<parse_done stamp='0.401'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.401'>
+<phase_done name='optimize_blocks' stamp='0.401'/>
+</phase>
+<phase name='gvn' stamp='0.401'>
+<phase_done name='gvn' stamp='0.401'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.401'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.401'/>
+</phase>
+<phase name='emit_lir' stamp='0.401'>
+<phase name='lirGeneration' stamp='0.401'>
+<phase_done name='lirGeneration' stamp='0.401'/>
+</phase>
+<phase name='linearScan' stamp='0.401'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.401'/>
+</phase>
+<phase name='codeinstall' stamp='0.401'>
+<phase_done name='codeinstall' stamp='0.401'/>
+</phase>
+<code_cache total_blobs='1103' nmethods='628' adapters='262' free_code_cache='247159552'/>
+<task_done success='1' nmsize='240' count='396' stamp='0.401'/>
+</task>
+<task compile_id='661' method='java.util.ArrayDeque dec (II)I' bytes='13' count='445' iicount='445' level='3' stamp='0.401'>
+<phase name='setup' stamp='0.401'>
+<phase_done name='setup' stamp='0.401'/>
+</phase>
+<phase name='buildIR' stamp='0.401'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='dec' return='975' arguments='975 975' flags='24' bytes='13' iicount='448'/>
+<parse method='1094'  stamp='0.401'>
+<phase name='parse_hir' stamp='0.401'>
+<phase_done name='parse_hir' stamp='0.401'/>
+</phase>
+<parse_done stamp='0.401'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.401'>
+<phase_done name='optimize_blocks' stamp='0.401'/>
+</phase>
+<phase name='gvn' stamp='0.401'>
+<phase_done name='gvn' stamp='0.401'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.401'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.401'/>
+</phase>
+<phase name='emit_lir' stamp='0.401'>
+<phase name='lirGeneration' stamp='0.401'>
+<phase_done name='lirGeneration' stamp='0.401'/>
+</phase>
+<phase name='linearScan' stamp='0.401'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.401'/>
+</phase>
+<phase name='codeinstall' stamp='0.401'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1106' nmethods='631' adapters='262' free_code_cache='247156608'/>
+<task_done success='1' nmsize='368' count='450' stamp='0.402'/>
+</task>
+<task compile_id='652' method='com.sun.hotspot.tools.compiler.Phase setEndLiveNodes (I)V' bytes='6' count='323' iicount='323' level='1' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Phase' flags='1'/>
+<method id='1094' holder='1093' name='setEndLiveNodes' return='977' arguments='975' flags='0' bytes='6' iicount='323'/>
+<parse method='1094'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<phase_done name='parse_hir' stamp='0.402'/>
+</phase>
+<parse_done stamp='0.402'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.402'>
+<phase_done name='optimize_blocks' stamp='0.402'/>
+</phase>
+<phase name='gvn' stamp='0.402'>
+<phase_done name='gvn' stamp='0.402'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.402'>
+<phase_done name='rangeCheckElimination' stamp='0.402'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.402'>
+<phase_done name='optimize_null_checks' stamp='0.402'/>
+</phase>
+<phase_done name='buildIR' stamp='0.402'/>
+</phase>
+<phase name='emit_lir' stamp='0.402'>
+<phase name='lirGeneration' stamp='0.402'>
+<phase_done name='lirGeneration' stamp='0.402'/>
+</phase>
+<phase name='linearScan' stamp='0.402'>
+<phase_done name='linearScan' stamp='0.402'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.402'/>
+</phase>
+<phase name='codeemit' stamp='0.402'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1111' nmethods='636' adapters='262' free_code_cache='247152128'/>
+<task_done success='1' nmsize='272' count='324' stamp='0.402'/>
+</task>
+<task compile_id='603' method='com.sun.hotspot.tools.compiler.LogParser parseLong (Ljava/lang/String;)J' bytes='179' count='460' iicount='460' level='3' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<type id='976' name='long'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='parseLong' return='976' arguments='983' flags='0' bytes='179' iicount='460'/>
+<parse method='1094'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<bc code='184' bci='1'/>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<method id='1096' holder='1077' name='decode' return='1077' arguments='983' flags='9' bytes='244' iicount='460'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='4'/>
+<method id='1098' holder='1077' name='longValue' return='976' flags='1' bytes='5' iicount='460'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.402'/>
+</parse>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1100' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='22770'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1102' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='42854'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1105' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1744'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1107' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1909'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='26'/>
+<method id='1110' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='3143'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='2'/>
+<method id='1112' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='3143'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='31'/>
+<method id='1114' holder='983' name='substring' return='983' arguments='975' flags='1' bytes='68' compile_id='572' compiler='c1' level='3' iicount='605'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='34'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='2'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='37'/>
+<method id='1116' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1909'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1118' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='5177'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1120' name='java.lang.StringLatin1' flags='16'/>
+<method id='1121' holder='1120' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='3603'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='9'/>
+<klass id='1123' name='java.util.Arrays' flags='1'/>
+<method id='1124' holder='1123' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='3620'/>
+<call method='1124' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1126' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4875'/>
+<call method='1126' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1128' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='29901'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1130' name='java.lang.StringUTF16' flags='16'/>
+<method id='1131' holder='1130' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1131' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='45'/>
+<method id='1133' holder='983' name='substring' return='983' arguments='975 975' flags='1' bytes='58' compile_id='286' compiler='c1' level='3' iicount='1344'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='52'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='55'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='184' bci='66'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='69'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='183' bci='86'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='3'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.403'/>
+</parse>
+<bc code='182' bci='91'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='2'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='99'/>
+<method id='1135' holder='1077' name='toHexString' return='983' arguments='976' flags='9' bytes='6' iicount='1'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='2'/>
+<method id='1137' holder='1077' name='toUnsignedString0' return='983' arguments='976 975' flags='8' bytes='83' iicount='1'/>
+<call method='1137' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='102'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='183' bci='2'/>
+<call method='1112' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='105'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='1'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='9'/>
+<call method='1124' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1126' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='183' bci='1'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.404'/>
+</parse>
+<parse_done stamp='0.404'/>
+</parse>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1131' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='108'/>
+<method id='1139' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='118'/>
+<klass id='1141' name='java.io.PrintStream' flags='1'/>
+<method id='1144' holder='1141' name='println' return='977' arguments='983' flags='1' bytes='24' iicount='1'/>
+<call method='1144' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1144'>
+<bc code='182' bci='6'/>
+<method id='1146' holder='1141' name='print' return='977' arguments='983' flags='1' bytes='9' iicount='1'/>
+<call method='1146' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1146'>
+<bc code='184' bci='2'/>
+<method id='1148' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='10'/>
+<call method='1148' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<bc code='182' bci='10'/>
+<method id='1151' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1152' holder='983' name='toString' return='983' flags='1' bytes='2' iicount='248'/>
+<parse method='1152'>
+<parse_done stamp='0.404'/>
+</parse>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1154' holder='1141' name='write' return='977' arguments='983' flags='2' bytes='83' iicount='1'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1156' holder='1141' name='newLine' return='977' flags='2' bytes='73' iicount='1'/>
+<call method='1156' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='126'/>
+<call method='1144' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1144'>
+<bc code='182' bci='6'/>
+<call method='1146' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1146'>
+<bc code='184' bci='2'/>
+<call method='1148' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<bc code='182' bci='10'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1156' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='182' bci='134'/>
+<call method='1144' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1144'>
+<bc code='182' bci='6'/>
+<call method='1146' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1146'>
+<bc code='184' bci='2'/>
+<call method='1148' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<bc code='182' bci='10'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<parse_done stamp='0.405'/>
+</parse>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1156' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='182' bci='142'/>
+<method id='1158' holder='1141' name='println' return='977' arguments='976' flags='1' bytes='26' iicount='1'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1158'>
+<bc code='182' bci='6'/>
+<method id='1160' holder='1141' name='print' return='977' arguments='976' flags='1' bytes='9' iicount='1'/>
+<call method='1160' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1160'>
+<bc code='184' bci='2'/>
+<method id='1162' holder='983' name='valueOf' return='983' arguments='976' flags='9' bytes='5' iicount='1'/>
+<call method='1162' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='184' bci='1'/>
+<method id='1164' holder='1077' name='toString' return='983' arguments='976' flags='9' bytes='55' iicount='1'/>
+<call method='1164' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1156' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='182' bci='150'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1158'>
+<bc code='182' bci='6'/>
+<call method='1160' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1160'>
+<bc code='184' bci='2'/>
+<call method='1162' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1162'>
+<bc code='184' bci='1'/>
+<call method='1164' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1156' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='184' bci='161'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='2'/>
+<call method='1137' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.405'/>
+</parse>
+<bc code='182' bci='164'/>
+<call method='1144' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1144'>
+<bc code='182' bci='6'/>
+<call method='1146' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<parse method='1146'>
+<bc code='184' bci='2'/>
+<call method='1148' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<bc code='182' bci='10'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='183' bci='5'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='183' bci='10'/>
+<call method='1156' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1141'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='183' bci='170'/>
+<method id='1167' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1167' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1167'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1169' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1169' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.406'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.406'/>
+</phase>
+<parse_done stamp='0.406'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.406'>
+<phase_done name='optimize_blocks' stamp='0.406'/>
+</phase>
+<phase name='gvn' stamp='0.406'>
+<phase_done name='gvn' stamp='0.406'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.406'>
+<phase_done name='rangeCheckElimination' stamp='0.406'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.406'>
+<phase_done name='optimize_null_checks' stamp='0.406'/>
+</phase>
+<phase_done name='buildIR' stamp='0.406'/>
+</phase>
+<phase name='emit_lir' stamp='0.406'>
+<phase name='lirGeneration' stamp='0.407'>
+<phase_done name='lirGeneration' stamp='0.407'/>
+</phase>
+<phase name='linearScan' stamp='0.407'>
+<phase_done name='linearScan' stamp='0.409'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.409'/>
+</phase>
+<phase name='codeemit' stamp='0.409'>
+<phase_done name='codeemit' stamp='0.410'/>
+</phase>
+<phase name='codeinstall' stamp='0.410'>
+<dependency type='leaf_type' ctxk='1141'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.410'/>
+</phase>
+<code_cache total_blobs='1129' nmethods='648' adapters='262' free_code_cache='247093632'/>
+<task_done success='1' nmsize='14008' count='460' inlined_bytes='554' stamp='0.411'/>
+</task>
+<task compile_id='673' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner arrangeCapacity (IZ)Z' bytes='227' count='568' backedge_count='1' iicount='568' level='3' stamp='0.411'>
+<phase name='setup' stamp='0.411'>
+<phase_done name='setup' stamp='0.411'/>
+</phase>
+<phase name='buildIR' stamp='0.411'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='arrangeCapacity' return='969' arguments='975 969' flags='1' bytes='227' iicount='568'/>
+<parse method='1094'  stamp='0.411'>
+<phase name='parse_hir' stamp='0.411'>
+<bc code='182' bci='64'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='31'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='184' bci='104'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1101' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='168'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='181'/>
+<method id='1103' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='31'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.411'/>
+</phase>
+<parse_done stamp='0.411'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.411'>
+<phase_done name='optimize_blocks' stamp='0.411'/>
+</phase>
+<phase name='gvn' stamp='0.411'>
+<phase_done name='gvn' stamp='0.411'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.411'>
+<phase_done name='rangeCheckElimination' stamp='0.411'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.411'>
+<phase_done name='optimize_null_checks' stamp='0.411'/>
+</phase>
+<phase_done name='buildIR' stamp='0.411'/>
+</phase>
+<phase name='emit_lir' stamp='0.411'>
+<phase name='lirGeneration' stamp='0.411'>
+<phase_done name='lirGeneration' stamp='0.412'/>
+</phase>
+<phase name='linearScan' stamp='0.412'>
+<phase_done name='linearScan' stamp='0.412'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.412'/>
+</phase>
+<phase name='codeemit' stamp='0.412'>
+<phase_done name='codeemit' stamp='0.412'/>
+</phase>
+<phase name='codeinstall' stamp='0.412'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.412'/>
+</phase>
+<code_cache total_blobs='1132' nmethods='651' adapters='262' free_code_cache='247057408'/>
+<task_done success='1' nmsize='1688' count='599' backedge_count='1' stamp='0.412'/>
+</task>
+<task compile_id='672' method='java.util.ArrayDeque addFirst (Ljava/lang/Object;)V' bytes='51' count='599' iicount='599' level='3' stamp='0.413'>
+<phase name='setup' stamp='0.413'>
+<phase_done name='setup' stamp='0.413'/>
+</phase>
+<phase name='buildIR' stamp='0.413'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='addFirst' return='977' arguments='982' flags='1' bytes='51' iicount='600'/>
+<parse method='1094'  stamp='0.413'>
+<phase name='parse_hir' stamp='0.413'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1098' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='184' bci='25'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1093' name='dec' return='975' arguments='975 975' flags='24' bytes='13' compile_id='661' compiler='c1' level='3' iicount='601'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.413'/>
+</parse>
+<bc code='183' bci='47'/>
+<method id='1103' holder='1093' name='grow' return='977' arguments='975' flags='2' bytes='165' iicount='2'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.413'/>
+</phase>
+<parse_done stamp='0.413'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.413'>
+<phase_done name='optimize_blocks' stamp='0.413'/>
+</phase>
+<phase name='gvn' stamp='0.413'>
+<phase_done name='gvn' stamp='0.413'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.413'>
+<phase_done name='rangeCheckElimination' stamp='0.413'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.413'>
+<phase_done name='optimize_null_checks' stamp='0.413'/>
+</phase>
+<phase_done name='buildIR' stamp='0.413'/>
+</phase>
+<phase name='emit_lir' stamp='0.413'>
+<phase name='lirGeneration' stamp='0.413'>
+<phase_done name='lirGeneration' stamp='0.413'/>
+</phase>
+<phase name='linearScan' stamp='0.413'>
+<phase_done name='linearScan' stamp='0.413'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.413'/>
+</phase>
+<phase name='codeemit' stamp='0.413'>
+<phase_done name='codeemit' stamp='0.413'/>
+</phase>
+<phase name='codeinstall' stamp='0.413'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.414'/>
+</phase>
+<code_cache total_blobs='1135' nmethods='654' adapters='262' free_code_cache='247052800'/>
+<task_done success='1' nmsize='1272' count='614' inlined_bytes='13' stamp='0.414'/>
+</task>
+<task compile_id='674' method='com.sun.hotspot.tools.compiler.Phase &lt;init&gt; (Ljava/lang/String;DII)V' bytes='19' count='460' iicount='460' level='3' stamp='0.414'>
+<phase name='setup' stamp='0.414'>
+<phase_done name='setup' stamp='0.414'/>
+</phase>
+<phase name='buildIR' stamp='0.414'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='972' name='double'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Phase' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='983 972 975 975' flags='0' bytes='19' iicount='461'/>
+<parse method='1094'  stamp='0.414'>
+<phase name='parse_hir' stamp='0.414'>
+<bc code='183' bci='3'/>
+<klass id='1096' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' arguments='972 983' flags='0' bytes='20' compile_id='657' compiler='c1' level='3' iicount='703'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='31975'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.414'/>
+</parse>
+<parse_done stamp='0.414'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.414'/>
+</phase>
+<parse_done stamp='0.414'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.414'>
+<phase_done name='optimize_blocks' stamp='0.414'/>
+</phase>
+<phase name='gvn' stamp='0.414'>
+<phase_done name='gvn' stamp='0.414'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.414'>
+<phase_done name='rangeCheckElimination' stamp='0.414'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.414'>
+<phase_done name='optimize_null_checks' stamp='0.414'/>
+</phase>
+<phase_done name='buildIR' stamp='0.414'/>
+</phase>
+<phase name='emit_lir' stamp='0.414'>
+<phase name='lirGeneration' stamp='0.414'>
+<phase_done name='lirGeneration' stamp='0.414'/>
+</phase>
+<phase name='linearScan' stamp='0.414'>
+<phase_done name='linearScan' stamp='0.414'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.414'/>
+</phase>
+<phase name='codeemit' stamp='0.414'>
+<phase_done name='codeemit' stamp='0.414'/>
+</phase>
+<phase name='codeinstall' stamp='0.414'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.414'/>
+</phase>
+<code_cache total_blobs='1139' nmethods='658' adapters='262' free_code_cache='247048320'/>
+<task_done success='1' nmsize='656' count='474' inlined_bytes='21' stamp='0.414'/>
+</task>
+<task compile_id='664' method='com.sun.hotspot.tools.compiler.Method setBytes (Ljava/lang/String;)V' bytes='6' count='185' iicount='185' level='1' stamp='0.415'>
+<phase name='setup' stamp='0.415'>
+<phase_done name='setup' stamp='0.415'/>
+</phase>
+<phase name='buildIR' stamp='0.415'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setBytes' return='977' arguments='983' flags='1' bytes='6' iicount='185'/>
+<parse method='1094'  stamp='0.415'>
+<phase name='parse_hir' stamp='0.415'>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.415'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.415'>
+<phase_done name='optimize_null_checks' stamp='0.415'/>
+</phase>
+<phase_done name='buildIR' stamp='0.415'/>
+</phase>
+<phase name='emit_lir' stamp='0.415'>
+<phase name='lirGeneration' stamp='0.415'>
+<phase_done name='lirGeneration' stamp='0.415'/>
+</phase>
+<phase name='linearScan' stamp='0.415'>
+<phase_done name='linearScan' stamp='0.415'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.415'/>
+</phase>
+<phase name='codeemit' stamp='0.415'>
+<phase_done name='codeemit' stamp='0.415'/>
+</phase>
+<phase name='codeinstall' stamp='0.415'>
+<phase_done name='codeinstall' stamp='0.415'/>
+</phase>
+<code_cache total_blobs='1144' nmethods='663' adapters='262' free_code_cache='247038336'/>
+<task_done success='1' nmsize='368' count='188' stamp='0.415'/>
+</task>
+<task compile_id='684' method='com.sun.hotspot.tools.compiler.CallSite setCount (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.415'>
+<phase name='setup' stamp='0.415'>
+<phase_done name='setup' stamp='0.415'/>
+</phase>
+<phase name='buildIR' stamp='0.415'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='setCount' return='977' arguments='975' flags='1' bytes='6' iicount='129'/>
+<parse method='1094'  stamp='0.415'>
+<phase name='parse_hir' stamp='0.415'>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.415'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.415'>
+<phase_done name='optimize_null_checks' stamp='0.415'/>
+</phase>
+<phase_done name='buildIR' stamp='0.415'/>
+</phase>
+<phase name='emit_lir' stamp='0.415'>
+<phase name='lirGeneration' stamp='0.415'>
+<phase_done name='lirGeneration' stamp='0.415'/>
+</phase>
+<phase name='linearScan' stamp='0.415'>
+<phase_done name='linearScan' stamp='0.416'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.416'/>
+</phase>
+<phase name='codeemit' stamp='0.416'>
+<phase_done name='codeemit' stamp='0.416'/>
+</phase>
+<phase name='codeinstall' stamp='0.416'>
+<phase_done name='codeinstall' stamp='0.416'/>
+</phase>
+<code_cache total_blobs='1146' nmethods='665' adapters='262' free_code_cache='247036672'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.416'/>
+</task>
+<task compile_id='686' method='java.util.regex.Matcher reset ()Ljava/util/regex/Matcher;' bytes='128' count='128' backedge_count='2560' iicount='128' level='3' stamp='0.416'>
+<phase name='setup' stamp='0.416'>
+<phase_done name='setup' stamp='0.416'/>
+</phase>
+<phase name='buildIR' stamp='0.416'>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='reset' return='1093' flags='1' bytes='128' iicount='128'/>
+<parse method='1094'  stamp='0.416'>
+<phase name='parse_hir' stamp='0.416'>
+<bc code='182' bci='89'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.util.regex.IntHashSet' flags='0'/>
+<method id='1098' holder='1096' name='clear' return='977' flags='1' bytes='22' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='110'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1093' name='getTextLength' return='975' flags='0' bytes='10' iicount='129'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='185' bci='4'/>
+<klass id='1101' name='java.lang.CharSequence' flags='1537'/>
+<method id='1102' holder='1101' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.416'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.416'/>
+</phase>
+<parse_done stamp='0.416'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.416'>
+<phase_done name='optimize_blocks' stamp='0.416'/>
+</phase>
+<phase name='gvn' stamp='0.416'>
+<phase_done name='gvn' stamp='0.416'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.416'>
+<phase_done name='rangeCheckElimination' stamp='0.416'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.416'>
+<phase_done name='optimize_null_checks' stamp='0.416'/>
+</phase>
+<phase_done name='buildIR' stamp='0.416'/>
+</phase>
+<phase name='emit_lir' stamp='0.416'>
+<phase name='lirGeneration' stamp='0.416'>
+<phase_done name='lirGeneration' stamp='0.416'/>
+</phase>
+<phase name='linearScan' stamp='0.416'>
+<phase_done name='linearScan' stamp='0.417'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.417'/>
+</phase>
+<phase name='codeemit' stamp='0.417'>
+<phase_done name='codeemit' stamp='0.417'/>
+</phase>
+<phase name='codeinstall' stamp='0.417'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.417'/>
+</phase>
+<code_cache total_blobs='1155' nmethods='670' adapters='262' free_code_cache='247013248'/>
+<task_done success='1' nmsize='1656' count='133' backedge_count='2660' inlined_bytes='10' stamp='0.417'/>
+</task>
+<task compile_id='690' method='java.util.ArrayList$SubList$1 checkForComodification ()V' bytes='26' count='256' iicount='256' level='3' stamp='0.418'>
+<phase name='setup' stamp='0.418'>
+<phase_done name='setup' stamp='0.418'/>
+</phase>
+<phase name='buildIR' stamp='0.418'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.ArrayList$SubList$1' flags='0'/>
+<method id='1094' holder='1093' name='checkForComodification' return='977' flags='16' bytes='26' iicount='256'/>
+<parse method='1094'  stamp='0.418'>
+<phase name='parse_hir' stamp='0.418'>
+<bc code='184' bci='4'/>
+<klass id='1097' name='java.util.ArrayList' flags='1'/>
+<klass id='1096' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1098' holder='1096' name='access$100' return='1097' arguments='1096' flags='4104' bytes='5' compile_id='640' compiler='c1' level='1' iicount='396'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.418'/>
+</parse>
+<bc code='183' bci='21'/>
+<klass id='1101' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.418'/>
+</phase>
+<parse_done stamp='0.418'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.418'>
+<phase_done name='optimize_blocks' stamp='0.418'/>
+</phase>
+<phase name='gvn' stamp='0.418'>
+<phase_done name='gvn' stamp='0.418'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.418'>
+<phase_done name='rangeCheckElimination' stamp='0.418'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.418'>
+<phase_done name='optimize_null_checks' stamp='0.418'/>
+</phase>
+<phase_done name='buildIR' stamp='0.418'/>
+</phase>
+<phase name='emit_lir' stamp='0.418'>
+<phase name='lirGeneration' stamp='0.418'>
+<phase_done name='lirGeneration' stamp='0.418'/>
+</phase>
+<phase name='linearScan' stamp='0.418'>
+<phase_done name='linearScan' stamp='0.418'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.418'/>
+</phase>
+<phase name='codeemit' stamp='0.418'>
+<phase_done name='codeemit' stamp='0.418'/>
+</phase>
+<phase name='codeinstall' stamp='0.418'>
+<phase_done name='codeinstall' stamp='0.418'/>
+</phase>
+<code_cache total_blobs='1160' nmethods='673' adapters='262' free_code_cache='246999808'/>
+<task_done success='1' nmsize='584' count='261' inlined_bytes='5' stamp='0.418'/>
+</task>
+<task compile_id='692' method='java.lang.String subSequence (II)Ljava/lang/CharSequence;' bytes='7' count='257' iicount='257' level='3' stamp='0.418'>
+<phase name='setup' stamp='0.418'>
+<phase_done name='setup' stamp='0.418'/>
+</phase>
+<phase name='buildIR' stamp='0.418'>
+<klass id='1093' name='java.lang.CharSequence' flags='1537'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1094' holder='983' name='subSequence' return='1093' arguments='975 975' flags='1' bytes='7' iicount='257'/>
+<parse method='1094'  stamp='0.418'>
+<phase name='parse_hir' stamp='0.418'>
+<bc code='182' bci='3'/>
+<method id='1096' holder='983' name='substring' return='983' arguments='975 975' flags='1' bytes='58' compile_id='286' compiler='c1' level='3' iicount='1433'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.418'/>
+</phase>
+<parse_done stamp='0.418'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.418'>
+<phase_done name='optimize_blocks' stamp='0.418'/>
+</phase>
+<phase name='gvn' stamp='0.418'>
+<phase_done name='gvn' stamp='0.418'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.418'>
+<phase_done name='rangeCheckElimination' stamp='0.418'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.418'>
+<phase_done name='optimize_null_checks' stamp='0.418'/>
+</phase>
+<phase_done name='buildIR' stamp='0.418'/>
+</phase>
+<phase name='emit_lir' stamp='0.418'>
+<phase name='lirGeneration' stamp='0.418'>
+<phase_done name='lirGeneration' stamp='0.418'/>
+</phase>
+<phase name='linearScan' stamp='0.418'>
+<phase_done name='linearScan' stamp='0.418'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.418'/>
+</phase>
+<phase name='codeemit' stamp='0.418'>
+<phase_done name='codeemit' stamp='0.418'/>
+</phase>
+<phase name='codeinstall' stamp='0.418'>
+<phase_done name='codeinstall' stamp='0.419'/>
+</phase>
+<code_cache total_blobs='1164' nmethods='676' adapters='262' free_code_cache='246989696'/>
+<task_done success='1' nmsize='520' count='260' stamp='0.419'/>
+</task>
+<task compile_id='696' method='com.sun.hotspot.tools.compiler.CallSite setEndNodes (I)V' bytes='6' count='128' iicount='128' level='1' stamp='0.421'>
+<phase name='setup' stamp='0.421'>
+<phase_done name='setup' stamp='0.421'/>
+</phase>
+<phase name='buildIR' stamp='0.421'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='setEndNodes' return='977' arguments='975' flags='0' bytes='6' iicount='128'/>
+<parse method='1094'  stamp='0.421'>
+<phase name='parse_hir' stamp='0.421'>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1174' nmethods='681' adapters='262' free_code_cache='246987776'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.422'/>
+</task>
+<task compile_id='699' method='java.util.ArrayList$SubList$1 hasNext ()Z' bytes='20' count='389' iicount='389' level='3' stamp='0.422'>
+<phase name='setup' stamp='0.422'>
+<phase_done name='setup' stamp='0.422'/>
+</phase>
+<phase name='buildIR' stamp='0.422'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ArrayList$SubList$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='20' iicount='389'/>
+<parse method='1094'  stamp='0.422'>
+<phase name='parse_hir' stamp='0.422'>
+<bc code='184' bci='8'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1097' holder='1096' name='access$200' return='975' arguments='1096' flags='4104' bytes='5' compile_id='641' compiler='c1' level='1' iicount='396'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.422'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1181' nmethods='686' adapters='262' free_code_cache='246970112'/>
+<task_done success='1' nmsize='464' count='397' inlined_bytes='5' stamp='0.422'/>
+</task>
+<task compile_id='703' method='com.sun.hotspot.tools.compiler.LogParser sigtype (Ljava/lang/String;)Ljava/lang/String;' bytes='75' count='412' iicount='412' level='3' stamp='0.424'>
+<phase name='setup' stamp='0.424'>
+<phase_done name='setup' stamp='0.424'/>
+</phase>
+<phase name='buildIR' stamp='0.425'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='sigtype' return='983' arguments='983' flags='0' bytes='75' iicount='412'/>
+<parse method='1094'  stamp='0.425'>
+<phase name='parse_hir' stamp='0.425'>
+<bc code='182' bci='5'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1097' holder='1096' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='5408'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='11402'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='9'/>
+<method id='1104' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1107' name='java.util.HashMap$Node' flags='8'/>
+<method id='1108' holder='1096' name='getNode' return='1107' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='6563'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='183' bci='35'/>
+<type id='977' name='void'/>
+<method id='1111' holder='1093' name='reportInternalError' return='977' arguments='983' flags='2' bytes='7' iicount='1'/>
+<call method='1111' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='3'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1113' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='182' bci='40'/>
+<type id='970' name='char'/>
+<method id='1115' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='61279'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1117' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='75635'/>
+<call method='1117' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1120' name='java.lang.StringLatin1' flags='16'/>
+<method id='1121' holder='1120' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='60325'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='183' bci='15'/>
+<klass id='1123' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1124' holder='1123' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1124' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1125' name='java.lang.StringUTF16' flags='16'/>
+<method id='1126' holder='1125' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1126' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='184' bci='2'/>
+<method id='1128' holder='1125' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='184' bci='2'/>
+<method id='1130' holder='1125' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.425'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1132' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1132' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1134' holder='1125' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.426'/>
+</parse>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='183' bci='54'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1135' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='2018'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1137' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='2239'/>
+<call method='1137' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='182' bci='59'/>
+<method id='1140' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='4131'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='183' bci='2'/>
+<method id='1142' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='4131'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='182' bci='63'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='183' bci='2'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='182' bci='68'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='183' bci='2'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='182' bci='71'/>
+<method id='1145' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='2241'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='182' bci='1'/>
+<method id='1147' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='5540'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='184' bci='16'/>
+<method id='1149' holder='1120' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='4115'/>
+<call method='1149' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='184' bci='9'/>
+<klass id='1151' name='java.util.Arrays' flags='1'/>
+<method id='1152' holder='1151' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='4132'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1154' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='5387'/>
+<call method='1154' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1154'>
+<bc code='183' bci='1'/>
+<method id='1156' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='35724'/>
+<call method='1156' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<parse_done stamp='0.426'/>
+</parse>
+<parse_done stamp='0.426'/>
+</parse>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='184' bci='31'/>
+<method id='1158' holder='1125' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1158' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.426'/>
+</phase>
+<parse_done stamp='0.426'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.426'>
+<phase_done name='optimize_blocks' stamp='0.426'/>
+</phase>
+<phase name='gvn' stamp='0.426'>
+<phase_done name='gvn' stamp='0.427'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.427'>
+<phase_done name='rangeCheckElimination' stamp='0.427'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.427'>
+<phase_done name='optimize_null_checks' stamp='0.427'/>
+</phase>
+<phase_done name='buildIR' stamp='0.427'/>
+</phase>
+<phase name='emit_lir' stamp='0.427'>
+<phase name='lirGeneration' stamp='0.427'>
+<phase_done name='lirGeneration' stamp='0.427'/>
+</phase>
+<phase name='linearScan' stamp='0.427'>
+<phase_done name='linearScan' stamp='0.428'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.428'/>
+</phase>
+<phase name='codeemit' stamp='0.428'>
+<phase_done name='codeemit' stamp='0.428'/>
+</phase>
+<phase name='codeinstall' stamp='0.428'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.428'/>
+</phase>
+<code_cache total_blobs='1205' nmethods='702' adapters='262' free_code_cache='246950784'/>
+<task_done success='1' nmsize='5784' count='443' inlined_bytes='265' stamp='0.428'/>
+</task>
+<task compile_id='716' method='java.util.ArrayList$SubList checkForComodification ()V' bytes='23' count='256' iicount='256' level='3' stamp='0.431'>
+<phase name='setup' stamp='0.431'>
+<phase_done name='setup' stamp='0.431'/>
+</phase>
+<phase name='buildIR' stamp='0.431'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1094' holder='1093' name='checkForComodification' return='977' flags='2' bytes='23' iicount='256'/>
+<parse method='1094'  stamp='0.431'>
+<phase name='parse_hir' stamp='0.431'>
+<bc code='183' bci='18'/>
+<klass id='1098' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.431'/>
+</phase>
+<parse_done stamp='0.431'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.431'>
+<phase_done name='optimize_blocks' stamp='0.431'/>
+</phase>
+<phase name='gvn' stamp='0.431'>
+<phase_done name='gvn' stamp='0.431'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.431'>
+<phase_done name='rangeCheckElimination' stamp='0.431'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.431'>
+<phase_done name='optimize_null_checks' stamp='0.431'/>
+</phase>
+<phase_done name='buildIR' stamp='0.431'/>
+</phase>
+<phase name='emit_lir' stamp='0.431'>
+<phase name='lirGeneration' stamp='0.431'>
+<phase_done name='lirGeneration' stamp='0.431'/>
+</phase>
+<phase name='linearScan' stamp='0.431'>
+<phase_done name='linearScan' stamp='0.431'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.431'/>
+</phase>
+<phase name='codeemit' stamp='0.431'>
+<phase_done name='codeemit' stamp='0.431'/>
+</phase>
+<phase name='codeinstall' stamp='0.431'>
+<phase_done name='codeinstall' stamp='0.431'/>
+</phase>
+<code_cache total_blobs='1212' nmethods='707' adapters='262' free_code_cache='246796288'/>
+<task_done success='1' nmsize='552' count='258' stamp='0.431'/>
+</task>
+<task compile_id='723' method='java.util.regex.Matcher end ()I' bytes='22' count='256' iicount='256' level='3' stamp='0.436'>
+<phase name='setup' stamp='0.436'>
+<phase_done name='setup' stamp='0.436'/>
+</phase>
+<phase name='buildIR' stamp='0.436'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='end' return='975' flags='1' bytes='22' iicount='256'/>
+<parse method='1094'  stamp='0.436'>
+<phase name='parse_hir' stamp='0.436'>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.437'/>
+</phase>
+<parse_done stamp='0.437'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.437'>
+<phase_done name='optimize_blocks' stamp='0.437'/>
+</phase>
+<phase name='gvn' stamp='0.437'>
+<phase_done name='gvn' stamp='0.437'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.437'>
+<phase_done name='rangeCheckElimination' stamp='0.437'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.437'>
+<phase_done name='optimize_null_checks' stamp='0.437'/>
+</phase>
+<phase_done name='buildIR' stamp='0.437'/>
+</phase>
+<phase name='emit_lir' stamp='0.437'>
+<phase name='lirGeneration' stamp='0.437'>
+<phase_done name='lirGeneration' stamp='0.437'/>
+</phase>
+<phase name='linearScan' stamp='0.437'>
+<phase_done name='linearScan' stamp='0.437'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.437'/>
+</phase>
+<phase name='codeemit' stamp='0.437'>
+<phase_done name='codeemit' stamp='0.437'/>
+</phase>
+<phase name='codeinstall' stamp='0.437'>
+<phase_done name='codeinstall' stamp='0.437'/>
+</phase>
+<code_cache total_blobs='1233' nmethods='716' adapters='262' free_code_cache='246765440'/>
+<task_done success='1' nmsize='520' count='258' stamp='0.437'/>
+</task>
+<task compile_id='731' method='java.nio.Buffer &lt;init&gt; (IIII)V' bytes='99' count='256' iicount='256' level='3' stamp='0.447'>
+<phase name='setup' stamp='0.447'>
+<phase_done name='setup' stamp='0.447'/>
+</phase>
+<phase name='buildIR' stamp='0.447'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='&lt;init&gt;' return='977' arguments='975 975 975 975' flags='0' bytes='99' iicount='256'/>
+<parse method='1093'  stamp='0.447'>
+<phase name='parse_hir' stamp='0.447'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='38023'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1064'/>
+<parse_done stamp='0.447'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1097' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1098' holder='1064' name='createCapacityException' return='1097' arguments='975' flags='8' bytes='52' iicount='1'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='33'/>
+<method id='1100' holder='1064' name='limit' return='1064' arguments='975' flags='1' bytes='74' compile_id='485' compiler='c1' level='3' iicount='427'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='39'/>
+<method id='1101' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='673'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='60'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1102' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='2187'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1104' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='2442'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.447'/>
+</parse>
+<bc code='182' bci='65'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1107' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='4728'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<method id='1109' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='4729'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.447'/>
+</parse>
+<bc code='182' bci='69'/>
+<method id='1111' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='446'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='2'/>
+<method id='1113' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='446'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.447'/>
+</parse>
+<bc code='182' bci='74'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.448'/>
+</parse>
+<bc code='182' bci='78'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='2'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.448'/>
+</parse>
+<bc code='182' bci='83'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.448'/>
+</parse>
+<bc code='182' bci='86'/>
+<method id='1117' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='2444'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1119' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='5763'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.448'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1122' name='java.lang.StringLatin1' flags='16'/>
+<method id='1123' holder='1122' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='4410'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='9'/>
+<klass id='1125' name='java.util.Arrays' flags='1'/>
+<method id='1126' holder='1125' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='4430'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1128' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='5686'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.448'/>
+</parse>
+<parse_done stamp='0.448'/>
+</parse>
+<parse_done stamp='0.448'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1130' name='java.lang.StringUTF16' flags='16'/>
+<method id='1131' holder='1130' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1131' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.448'/>
+</parse>
+<bc code='183' bci='89'/>
+<method id='1133' holder='1097' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.448'/>
+</phase>
+<parse_done stamp='0.448'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.448'>
+<phase_done name='optimize_blocks' stamp='0.448'/>
+</phase>
+<phase name='gvn' stamp='0.448'>
+<phase_done name='gvn' stamp='0.448'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.448'>
+<phase_done name='rangeCheckElimination' stamp='0.448'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.448'>
+<phase_done name='optimize_null_checks' stamp='0.448'/>
+</phase>
+<phase_done name='buildIR' stamp='0.448'/>
+</phase>
+<phase name='emit_lir' stamp='0.448'>
+<phase name='lirGeneration' stamp='0.448'>
+<phase_done name='lirGeneration' stamp='0.448'/>
+</phase>
+<phase name='linearScan' stamp='0.448'>
+<phase_done name='linearScan' stamp='0.449'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.449'/>
+</phase>
+<phase name='codeemit' stamp='0.449'>
+<phase_done name='codeemit' stamp='0.449'/>
+</phase>
+<phase name='codeinstall' stamp='0.449'>
+<dependency type='no_finalizable_subclasses' ctxk='1064'/>
+<phase_done name='codeinstall' stamp='0.449'/>
+</phase>
+<code_cache total_blobs='1251' nmethods='725' adapters='262' free_code_cache='246734336'/>
+<task_done success='1' nmsize='4312' count='256' inlined_bytes='135' stamp='0.449'/>
+</task>
+<task compile_id='739' method='java.nio.ByteBuffer arrayOffset ()I' bytes='35' count='370' iicount='370' level='3' stamp='0.461'>
+<phase name='setup' stamp='0.461'>
+<phase_done name='setup' stamp='0.461'/>
+</phase>
+<phase name='buildIR' stamp='0.461'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='arrayOffset' return='975' flags='17' bytes='35' iicount='371'/>
+<parse method='1094'  stamp='0.461'>
+<phase name='parse_hir' stamp='0.461'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1098' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.461'/>
+</phase>
+<parse_done stamp='0.461'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.461'>
+<phase_done name='optimize_blocks' stamp='0.461'/>
+</phase>
+<phase name='gvn' stamp='0.461'>
+<phase_done name='gvn' stamp='0.461'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.461'>
+<phase_done name='rangeCheckElimination' stamp='0.461'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.461'>
+<phase_done name='optimize_null_checks' stamp='0.461'/>
+</phase>
+<phase_done name='buildIR' stamp='0.461'/>
+</phase>
+<phase name='emit_lir' stamp='0.461'>
+<phase name='lirGeneration' stamp='0.461'>
+<phase_done name='lirGeneration' stamp='0.461'/>
+</phase>
+<phase name='linearScan' stamp='0.461'>
+<phase_done name='linearScan' stamp='0.461'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.461'/>
+</phase>
+<phase name='codeemit' stamp='0.461'>
+<phase_done name='codeemit' stamp='0.461'/>
+</phase>
+<phase name='codeinstall' stamp='0.461'>
+<phase_done name='codeinstall' stamp='0.461'/>
+</phase>
+<code_cache total_blobs='1273' nmethods='734' adapters='262' free_code_cache='246680064'/>
+<task_done success='1' nmsize='792' count='371' stamp='0.461'/>
+</task>
+<task compile_id='754' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='6438' backedge_count='53673' iicount='6438' decompiles='1' unstable_if_traps='1' level='3' stamp='0.490'>
+<phase name='setup' stamp='0.490'>
+<phase_done name='setup' stamp='0.490'/>
+</phase>
+<phase name='buildIR' stamp='0.490'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanLiteral' return='975' arguments='975 1094 969' flags='4' bytes='755' iicount='6440'/>
+<parse method='1095'  stamp='0.490'>
+<phase name='parse_hir' stamp='0.490'>
+<bc code='182' bci='21'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='58'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='49'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='59'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='82'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='247'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='366'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='444'/>
+<method id='1105' holder='1093' name='storeWhiteSpace' return='977' arguments='975' flags='2' bytes='61' iicount='1'/>
+<call method='1105' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='496'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1107' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='583' compiler='c2' level='4' iicount='12570'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1107'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.490'/>
+</parse>
+<bc code='184' bci='567'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1110' holder='1109' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='591' compiler='c2' level='4' iicount='60523'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.490'/>
+</parse>
+<bc code='183' bci='598'/>
+<call method='1105' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='656'/>
+<klass id='1114' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1115' holder='1093' name='checkEntityLimit' return='977' arguments='1114 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1115' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='675'/>
+<klass id='1117' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1120' holder='1093' name='checkLimit' return='977' arguments='1117 1097 975 975' flags='4' bytes='253' compile_id='610' compiler='c2' level='4' iicount='15167'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='690'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1107'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.490'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.490'/>
+</phase>
+<parse_done stamp='0.490'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.490'>
+<phase_done name='optimize_blocks' stamp='0.490'/>
+</phase>
+<phase name='gvn' stamp='0.490'>
+<phase_done name='gvn' stamp='0.490'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.490'>
+<phase_done name='rangeCheckElimination' stamp='0.490'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.490'>
+<phase_done name='optimize_null_checks' stamp='0.491'/>
+</phase>
+<phase_done name='buildIR' stamp='0.491'/>
+</phase>
+<phase name='emit_lir' stamp='0.491'>
+<phase name='lirGeneration' stamp='0.491'>
+<phase_done name='lirGeneration' stamp='0.491'/>
+</phase>
+<phase name='linearScan' stamp='0.491'>
+<phase_done name='linearScan' stamp='0.491'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.491'/>
+</phase>
+<phase name='codeemit' stamp='0.491'>
+<phase_done name='codeemit' stamp='0.492'/>
+</phase>
+<phase name='codeinstall' stamp='0.492'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1107'/>
+<phase_done name='codeinstall' stamp='0.492'/>
+</phase>
+<code_cache total_blobs='1314' nmethods='751' adapters='262' free_code_cache='246603136'/>
+<task_done success='1' nmsize='5672' count='6710' backedge_count='55589' inlined_bytes='67' stamp='0.492'/>
+</task>
+<task compile_id='758' method='com.sun.org.apache.xerces.internal.util.XMLStringBuffer clear ()V' bytes='11' count='7271' iicount='7271' level='1' stamp='0.494'>
+<phase name='setup' stamp='0.494'>
+<phase_done name='setup' stamp='0.494'/>
+</phase>
+<phase name='buildIR' stamp='0.494'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1094' holder='1093' name='clear' return='977' flags='1' bytes='11' compile_id='564' compiler='c1' level='3' iicount='7271'/>
+<parse method='1094'  stamp='0.494'>
+<phase name='parse_hir' stamp='0.494'>
+<phase_done name='parse_hir' stamp='0.494'/>
+</phase>
+<parse_done stamp='0.494'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.494'>
+<phase_done name='optimize_blocks' stamp='0.494'/>
+</phase>
+<phase name='gvn' stamp='0.494'>
+<phase_done name='gvn' stamp='0.494'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.494'>
+<phase_done name='rangeCheckElimination' stamp='0.494'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.494'>
+<phase_done name='optimize_null_checks' stamp='0.494'/>
+</phase>
+<phase_done name='buildIR' stamp='0.494'/>
+</phase>
+<phase name='emit_lir' stamp='0.494'>
+<phase name='lirGeneration' stamp='0.494'>
+<phase_done name='lirGeneration' stamp='0.494'/>
+</phase>
+<phase name='linearScan' stamp='0.494'>
+<phase_done name='linearScan' stamp='0.494'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.494'/>
+</phase>
+<phase name='codeemit' stamp='0.494'>
+<phase_done name='codeemit' stamp='0.494'/>
+</phase>
+<phase name='codeinstall' stamp='0.494'>
+<phase_done name='codeinstall' stamp='0.494'/>
+</phase>
+<code_cache total_blobs='1315' nmethods='752' adapters='262' free_code_cache='246602368'/>
+<task_done success='1' nmsize='272' count='7275' stamp='0.494'/>
+</task>
+<task compile_id='760' method='java.nio.CharBuffer position (I)Ljava/nio/CharBuffer;' bytes='8' count='229' iicount='229' level='3' stamp='0.496'>
+<phase name='setup' stamp='0.496'>
+<phase_done name='setup' stamp='0.496'/>
+</phase>
+<phase name='buildIR' stamp='0.496'>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='position' return='1093' arguments='975' flags='17' bytes='8' iicount='229'/>
+<parse method='1094'  stamp='0.496'>
+<phase name='parse_hir' stamp='0.496'>
+<bc code='183' bci='2'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='788'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.496'/>
+</phase>
+<parse_done stamp='0.496'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.496'>
+<phase_done name='optimize_blocks' stamp='0.496'/>
+</phase>
+<phase name='gvn' stamp='0.496'>
+<phase_done name='gvn' stamp='0.496'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.496'>
+<phase_done name='rangeCheckElimination' stamp='0.496'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.496'>
+<phase_done name='optimize_null_checks' stamp='0.496'/>
+</phase>
+<phase_done name='buildIR' stamp='0.496'/>
+</phase>
+<phase name='emit_lir' stamp='0.496'>
+<phase name='lirGeneration' stamp='0.496'>
+<phase_done name='lirGeneration' stamp='0.496'/>
+</phase>
+<phase name='linearScan' stamp='0.496'>
+<phase_done name='linearScan' stamp='0.496'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.496'/>
+</phase>
+<phase name='codeemit' stamp='0.496'>
+<phase_done name='codeemit' stamp='0.496'/>
+</phase>
+<phase name='codeinstall' stamp='0.496'>
+<phase_done name='codeinstall' stamp='0.496'/>
+</phase>
+<code_cache total_blobs='1322' nmethods='755' adapters='262' free_code_cache='246599168'/>
+<task_done success='1' nmsize='392' count='229' stamp='0.496'/>
+</task>
+<task compile_id='762' method='java.util.ArrayList$SubList size ()I' bytes='9' count='256' iicount='256' level='3' stamp='0.498'>
+<phase name='setup' stamp='0.498'>
+<phase_done name='setup' stamp='0.498'/>
+</phase>
+<phase name='buildIR' stamp='0.498'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='9' iicount='256'/>
+<parse method='1094'  stamp='0.498'>
+<phase name='parse_hir' stamp='0.498'>
+<bc code='183' bci='1'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='checkForComodification' return='977' flags='2' bytes='23' compile_id='716' compiler='c1' level='3' iicount='514'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='18'/>
+<klass id='1100' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.498'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.498'/>
+</phase>
+<parse_done stamp='0.498'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.498'>
+<phase_done name='optimize_blocks' stamp='0.498'/>
+</phase>
+<phase name='gvn' stamp='0.498'>
+<phase_done name='gvn' stamp='0.498'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.498'>
+<phase_done name='rangeCheckElimination' stamp='0.498'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.498'>
+<phase_done name='optimize_null_checks' stamp='0.498'/>
+</phase>
+<phase_done name='buildIR' stamp='0.498'/>
+</phase>
+<phase name='emit_lir' stamp='0.498'>
+<phase name='lirGeneration' stamp='0.498'>
+<phase_done name='lirGeneration' stamp='0.498'/>
+</phase>
+<phase name='linearScan' stamp='0.498'>
+<phase_done name='linearScan' stamp='0.498'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.498'/>
+</phase>
+<phase name='codeemit' stamp='0.498'>
+<phase_done name='codeemit' stamp='0.498'/>
+</phase>
+<phase name='codeinstall' stamp='0.498'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.499'/>
+</phase>
+<code_cache total_blobs='1326' nmethods='759' adapters='262' free_code_cache='246589952'/>
+<task_done success='1' nmsize='648' count='257' inlined_bytes='23' stamp='0.499'/>
+</task>
+<task compile_id='766' method='java.util.ArrayList$SubList rangeCheckForAdd (I)V' bytes='26' count='257' iicount='257' level='3' stamp='0.499'>
+<phase name='setup' stamp='0.499'>
+<phase_done name='setup' stamp='0.499'/>
+</phase>
+<phase name='buildIR' stamp='0.499'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1094' holder='1093' name='rangeCheckForAdd' return='977' arguments='975' flags='2' bytes='26' iicount='257'/>
+<parse method='1094'  stamp='0.499'>
+<phase name='parse_hir' stamp='0.499'>
+<bc code='183' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1097' holder='1093' name='outOfBoundsMsg' return='983' arguments='975' flags='2' bytes='32' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='4'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1099' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='2582'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1101' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='2930'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1104' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='5643'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='2'/>
+<method id='1106' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='5643'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='182' bci='13'/>
+<method id='1108' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='500'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<method id='1110' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='500'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='182' bci='18'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='2'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='182' bci='28'/>
+<method id='1113' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='2932'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='183' bci='21'/>
+<klass id='1096' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1115' holder='1096' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.499'/>
+</phase>
+<parse_done stamp='0.499'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.499'>
+<phase_done name='optimize_blocks' stamp='0.499'/>
+</phase>
+<phase name='gvn' stamp='0.499'>
+<phase_done name='gvn' stamp='0.499'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.499'>
+<phase_done name='rangeCheckElimination' stamp='0.499'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.499'>
+<phase_done name='optimize_null_checks' stamp='0.499'/>
+</phase>
+<phase_done name='buildIR' stamp='0.499'/>
+</phase>
+<phase name='emit_lir' stamp='0.499'>
+<phase name='lirGeneration' stamp='0.499'>
+<phase_done name='lirGeneration' stamp='0.499'/>
+</phase>
+<phase name='linearScan' stamp='0.499'>
+<phase_done name='linearScan' stamp='0.499'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.499'/>
+</phase>
+<phase name='codeemit' stamp='0.499'>
+<phase_done name='codeemit' stamp='0.499'/>
+</phase>
+<phase name='codeinstall' stamp='0.499'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.499'/>
+</phase>
+<code_cache total_blobs='1329' nmethods='762' adapters='262' free_code_cache='246581504'/>
+<task_done success='1' nmsize='2248' count='260' inlined_bytes='71' stamp='0.499'/>
+</task>
+<task compile_id='771' method='java.nio.CharBuffer arrayOffset ()I' bytes='35' count='359' iicount='359' level='3' stamp='0.514'>
+<phase name='setup' stamp='0.514'>
+<phase_done name='setup' stamp='0.514'/>
+</phase>
+<phase name='buildIR' stamp='0.514'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='arrayOffset' return='975' flags='17' bytes='35' iicount='359'/>
+<parse method='1094'  stamp='0.514'>
+<phase name='parse_hir' stamp='0.514'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1098' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.514'/>
+</phase>
+<parse_done stamp='0.514'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.514'>
+<phase_done name='optimize_blocks' stamp='0.514'/>
+</phase>
+<phase name='gvn' stamp='0.514'>
+<phase_done name='gvn' stamp='0.514'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.514'>
+<phase_done name='rangeCheckElimination' stamp='0.514'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.514'>
+<phase_done name='optimize_null_checks' stamp='0.514'/>
+</phase>
+<phase_done name='buildIR' stamp='0.514'/>
+</phase>
+<phase name='emit_lir' stamp='0.514'>
+<phase name='lirGeneration' stamp='0.514'>
+<phase_done name='lirGeneration' stamp='0.514'/>
+</phase>
+<phase name='linearScan' stamp='0.514'>
+<phase_done name='linearScan' stamp='0.514'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.514'/>
+</phase>
+<phase name='codeemit' stamp='0.514'>
+<phase_done name='codeemit' stamp='0.514'/>
+</phase>
+<phase name='codeinstall' stamp='0.514'>
+<phase_done name='codeinstall' stamp='0.514'/>
+</phase>
+<code_cache total_blobs='1340' nmethods='769' adapters='262' free_code_cache='246514176'/>
+<task_done success='1' nmsize='792' count='359' stamp='0.514'/>
+</task>
+<task compile_id='777' method='java.lang.String toString ()Ljava/lang/String;' bytes='2' count='1070' iicount='1070' level='1' stamp='0.516'>
+<phase name='setup' stamp='0.516'>
+<phase_done name='setup' stamp='0.516'/>
+</phase>
+<phase name='buildIR' stamp='0.516'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='toString' return='983' flags='1' bytes='2' compile_id='705' compiler='c1' level='3' iicount='1070'/>
+<parse method='1093'  stamp='0.516'>
+<phase name='parse_hir' stamp='0.516'>
+<phase_done name='parse_hir' stamp='0.516'/>
+</phase>
+<parse_done stamp='0.516'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.516'>
+<phase_done name='optimize_blocks' stamp='0.516'/>
+</phase>
+<phase name='gvn' stamp='0.516'>
+<phase_done name='gvn' stamp='0.516'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.516'>
+<phase_done name='rangeCheckElimination' stamp='0.516'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.516'>
+<phase_done name='optimize_null_checks' stamp='0.516'/>
+</phase>
+<phase_done name='buildIR' stamp='0.516'/>
+</phase>
+<phase name='emit_lir' stamp='0.516'>
+<phase name='lirGeneration' stamp='0.516'>
+<phase_done name='lirGeneration' stamp='0.516'/>
+</phase>
+<phase name='linearScan' stamp='0.516'>
+<phase_done name='linearScan' stamp='0.516'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.516'/>
+</phase>
+<phase name='codeemit' stamp='0.516'>
+<phase_done name='codeemit' stamp='0.516'/>
+</phase>
+<phase name='codeinstall' stamp='0.516'>
+<phase_done name='codeinstall' stamp='0.516'/>
+</phase>
+<code_cache total_blobs='1344' nmethods='771' adapters='262' free_code_cache='246498048'/>
+<task_done success='1' nmsize='272' count='1070' stamp='0.516'/>
+</task>
+<task compile_id='778' method='java.nio.charset.CoderResult isUnderflow ()Z' bytes='13' count='256' iicount='256' level='3' stamp='0.522'>
+<phase name='setup' stamp='0.522'>
+<phase_done name='setup' stamp='0.522'/>
+</phase>
+<phase name='buildIR' stamp='0.522'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.nio.charset.CoderResult' flags='1'/>
+<method id='1094' holder='1093' name='isUnderflow' return='969' flags='1' bytes='13' iicount='256'/>
+<parse method='1094'  stamp='0.522'>
+<phase name='parse_hir' stamp='0.522'>
+<phase_done name='parse_hir' stamp='0.522'/>
+</phase>
+<parse_done stamp='0.522'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.522'>
+<phase_done name='optimize_blocks' stamp='0.522'/>
+</phase>
+<phase name='gvn' stamp='0.522'>
+<phase_done name='gvn' stamp='0.522'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.522'>
+<phase_done name='rangeCheckElimination' stamp='0.522'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.522'>
+<phase_done name='optimize_null_checks' stamp='0.522'/>
+</phase>
+<phase_done name='buildIR' stamp='0.522'/>
+</phase>
+<phase name='emit_lir' stamp='0.522'>
+<phase name='lirGeneration' stamp='0.522'>
+<phase_done name='lirGeneration' stamp='0.522'/>
+</phase>
+<phase name='linearScan' stamp='0.522'>
+<phase_done name='linearScan' stamp='0.522'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.522'/>
+</phase>
+<phase name='codeemit' stamp='0.522'>
+<phase_done name='codeemit' stamp='0.522'/>
+</phase>
+<phase name='codeinstall' stamp='0.522'>
+<phase_done name='codeinstall' stamp='0.522'/>
+</phase>
+<code_cache total_blobs='1348' nmethods='775' adapters='262' free_code_cache='246488960'/>
+<task_done success='1' nmsize='432' count='256' stamp='0.522'/>
+</task>
+<task compile_id='788' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='7177' backedge_count='22437' iicount='7177' decompiles='1' unstable_if_traps='1' level='3' stamp='0.546'>
+<phase name='setup' stamp='0.546'>
+<phase_done name='setup' stamp='0.546'/>
+</phase>
+<phase name='buildIR' stamp='0.546'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='scanStartElement' return='969' flags='4' bytes='446' iicount='7177'/>
+<parse method='1094'  stamp='0.546'>
+<phase name='parse_hir' stamp='0.546'>
+<bc code='182' bci='18'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1103' holder='1096' name='getNext' return='1098' flags='1' bytes='29' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1103'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='31'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1107' holder='1097' name='skipString' return='969' arguments='983' flags='4' bytes='122' compile_id='676' compiler='c1' level='3' iicount='2987'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='48'/>
+<type id='977' name='void'/>
+<method id='1109' holder='1096' name='push' return='977' flags='1' bytes='28' iicount='1'/>
+<call method='1109' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1109'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='63'/>
+<method id='1111' holder='1096' name='reposition' return='977' flags='1' bytes='36' iicount='1'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='85'/>
+<method id='1113' holder='1096' name='nextElement' return='1098' flags='1' bytes='129' compile_id='743' compiler='c2' level='4' iicount='5416'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='109'/>
+<klass id='1115' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1118' holder='1097' name='scanQName' return='969' arguments='1098 1115' flags='4' bytes='502' iicount='1'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='123'/>
+<method id='1120' holder='1097' name='scanName' return='983' arguments='1115' flags='4' bytes='305' compile_id='780' compiler='c1' level='3' iicount='19533'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='135'/>
+<method id='1123' holder='1098' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='585' compiler='c2' level='4' iicount='30786'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1123'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='153'/>
+<method id='1125' holder='1096' name='matchElement' return='969' arguments='1098' flags='1' bytes='177' iicount='1'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='182'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<method id='1127' holder='1099' name='removeAllAttributes' return='977' flags='1' bytes='10' compile_id='575' compiler='c1' level='3' iicount='7215'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1127'>
+<bc code='183' bci='1'/>
+<klass id='1129' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1130' holder='1129' name='removeAllAttributes' return='977' flags='1' bytes='6' compile_id='576' compiler='c1' level='3' iicount='7217'/>
+<call method='1130' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='187'/>
+<method id='1132' holder='1093' name='checkDepth' return='977' arguments='983' flags='0' bytes='100' compile_id='744' compiler='c2' level='4' iicount='5555'/>
+<call method='1132' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='191'/>
+<method id='1135' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' compile_id='682' compiler='c2' level='4' iicount='17538'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='222'/>
+<klass id='1137' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1138' holder='1093' name='scanAttribute' return='977' arguments='1137' flags='4' bytes='248' compile_id='769' compiler='c2' level='4' iicount='23926'/>
+<call method='1138' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1138'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='240'/>
+<type id='975' name='int'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1140' holder='1101' name='isNoLimit' return='969' arguments='975' flags='1' bytes='10' compile_id='554' compiler='c1' level='3' iicount='23018'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='250'/>
+<method id='1142' holder='1129' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<call method='1142' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='184' bci='282'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1148' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='344'/>
+<call method='1148' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<bc code='183' bci='28'/>
+<method id='1154' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='414'/>
+<call method='1154' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1154'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1156' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1159'/>
+<call method='1156' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1158' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='45943'/>
+<call method='1158' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.547'/>
+</parse>
+<bc code='182' bci='287'/>
+<klass id='1147' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='974' name='short'/>
+<klass id='1144' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1160' holder='1144' name='reportError' return='983' arguments='983 983 1147 974' flags='1' bytes='14' iicount='1'/>
+<call method='1160' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<parse method='1160'>
+<bc code='182' bci='10'/>
+<klass id='1162' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<method id='1163' holder='1144' name='reportError' return='983' arguments='1162 983 983 1147 974' flags='1' bytes='13' iicount='1'/>
+<call method='1163' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<parse method='1163'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1165' holder='1144' name='reportError' return='983' arguments='1162 983 983 1147 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1165' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<parse_done stamp='0.547'/>
+</parse>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='182' bci='292'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='355'/>
+<klass id='1106' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1168' holder='1106' name='reportFatalError' return='977' arguments='983 1147' flags='4' bytes='18' iicount='1'/>
+<call method='1168' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1168'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1168'>
+<bc code='182' bci='13'/>
+<call method='1163' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<parse method='1163'>
+<bc code='182' bci='9'/>
+<call method='1165' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<parse_done stamp='0.548'/>
+</parse>
+<parse_done stamp='0.548'/>
+</parse>
+<bc code='185' bci='378'/>
+<klass id='1171' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1170' name='com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler' flags='1537'/>
+<method id='1172' holder='1170' name='emptyElement' return='977' arguments='1098 1137 1171' flags='1025' bytes='0' iicount='1'/>
+<call method='1172' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='387'/>
+<method id='1173' holder='1096' name='popElement' return='1098' flags='1' bytes='59' compile_id='746' compiler='c2' level='4' iicount='5468'/>
+<call method='1173' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='413'/>
+<klass id='1175' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<method id='1176' holder='1175' name='startElement' return='977' arguments='1098 1137' unloaded='1'/>
+<call method='1176' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='436'/>
+<method id='1177' holder='1170' name='startElement' return='977' arguments='1098 1137 1171' flags='1025' bytes='0' iicount='1'/>
+<call method='1177' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.548'/>
+</phase>
+<parse_done stamp='0.548'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.548'>
+<phase_done name='optimize_blocks' stamp='0.548'/>
+</phase>
+<phase name='gvn' stamp='0.548'>
+<phase_done name='gvn' stamp='0.548'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.548'>
+<phase_done name='rangeCheckElimination' stamp='0.548'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.548'>
+<phase_done name='optimize_null_checks' stamp='0.548'/>
+</phase>
+<phase_done name='buildIR' stamp='0.548'/>
+</phase>
+<phase name='emit_lir' stamp='0.548'>
+<phase name='lirGeneration' stamp='0.548'>
+<phase_done name='lirGeneration' stamp='0.548'/>
+</phase>
+<phase name='linearScan' stamp='0.548'>
+<phase_done name='linearScan' stamp='0.549'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.549'/>
+</phase>
+<phase name='codeemit' stamp='0.549'>
+<phase_done name='codeemit' stamp='0.549'/>
+</phase>
+<phase name='codeinstall' stamp='0.549'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='leaf_type' ctxk='1144'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1138'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1168'/>
+<phase_done name='codeinstall' stamp='0.549'/>
+</phase>
+<code_cache total_blobs='1367' nmethods='786' adapters='262' free_code_cache='246446592'/>
+<task_done success='1' nmsize='8440' count='7338' backedge_count='22819' inlined_bytes='216' stamp='0.549'/>
+</task>
+<task compile_id='794' method='com.sun.hotspot.tools.compiler.BasicLogEvent setCompilation (Lcom/sun/hotspot/tools/compiler/Compilation;)V' bytes='6' count='208' iicount='208' level='1' stamp='0.550'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1095' holder='1093' name='setCompilation' return='977' arguments='1094' flags='1' bytes='6' iicount='208'/>
+<parse method='1095'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.550'/>
+</phase>
+<phase name='linearScan' stamp='0.550'>
+<phase_done name='linearScan' stamp='0.550'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.550'/>
+</phase>
+<phase name='codeemit' stamp='0.550'>
+<phase_done name='codeemit' stamp='0.550'/>
+</phase>
+<phase name='codeinstall' stamp='0.550'>
+<phase_done name='codeinstall' stamp='0.550'/>
+</phase>
+<code_cache total_blobs='1368' nmethods='787' adapters='262' free_code_cache='246445696'/>
+<task_done success='1' nmsize='368' count='208' stamp='0.550'/>
+</task>
+<task compile_id='795' method='com.sun.hotspot.tools.compiler.Compilation setNMethod (Lcom/sun/hotspot/tools/compiler/NMethod;)V' bytes='6' count='200' iicount='200' level='1' stamp='0.550'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.hotspot.tools.compiler.NMethod' flags='1'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1095' holder='1093' name='setNMethod' return='977' arguments='1094' flags='1' bytes='6' iicount='200'/>
+<parse method='1095'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.550'/>
+</phase>
+<phase name='linearScan' stamp='0.550'>
+<phase_done name='linearScan' stamp='0.550'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.550'/>
+</phase>
+<phase name='codeemit' stamp='0.550'>
+<phase_done name='codeemit' stamp='0.550'/>
+</phase>
+<phase name='codeinstall' stamp='0.550'>
+<phase_done name='codeinstall' stamp='0.550'/>
+</phase>
+<code_cache total_blobs='1371' nmethods='790' adapters='262' free_code_cache='246441344'/>
+<task_done success='1' nmsize='368' count='200' stamp='0.550'/>
+</task>
+<task compile_id='798' method='com.sun.hotspot.tools.compiler.LogParser$1 compare (Lcom/sun/hotspot/tools/compiler/LogEvent;Lcom/sun/hotspot/tools/compiler/LogEvent;)I' bytes='32' count='302' iicount='302' level='3' stamp='0.550'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.hotspot.tools.compiler.LogEvent' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser$1' flags='8'/>
+<method id='1095' holder='1093' name='compare' return='975' arguments='1094 1094' flags='1' bytes='32' iicount='312'/>
+<parse method='1095'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<bc code='185' bci='1'/>
+<type id='972' name='double'/>
+<method id='1098' holder='1094' name='getStart' return='972' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='7'/>
+<call method='1098' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.550'/>
+</phase>
+<phase name='linearScan' stamp='0.550'>
+<phase_done name='linearScan' stamp='0.551'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.551'/>
+</phase>
+<phase name='codeemit' stamp='0.551'>
+<phase_done name='codeemit' stamp='0.551'/>
+</phase>
+<phase name='codeinstall' stamp='0.551'>
+<phase_done name='codeinstall' stamp='0.551'/>
+</phase>
+<code_cache total_blobs='1375' nmethods='792' adapters='264' free_code_cache='246437504'/>
+<task_done success='1' nmsize='984' count='880' stamp='0.551'/>
+</task>
+<task compile_id='800' method='java.nio.charset.CoderResult isOverflow ()Z' bytes='14' count='261' iicount='261' level='3' stamp='0.551'>
+<phase name='setup' stamp='0.551'>
+<phase_done name='setup' stamp='0.551'/>
+</phase>
+<phase name='buildIR' stamp='0.551'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.nio.charset.CoderResult' flags='1'/>
+<method id='1094' holder='1093' name='isOverflow' return='969' flags='1' bytes='14' iicount='262'/>
+<parse method='1094'  stamp='0.551'>
+<phase name='parse_hir' stamp='0.551'>
+<phase_done name='parse_hir' stamp='0.551'/>
+</phase>
+<parse_done stamp='0.551'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.551'>
+<phase_done name='optimize_blocks' stamp='0.551'/>
+</phase>
+<phase name='gvn' stamp='0.551'>
+<phase_done name='gvn' stamp='0.551'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.551'>
+<phase_done name='rangeCheckElimination' stamp='0.551'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.551'>
+<phase_done name='optimize_null_checks' stamp='0.551'/>
+</phase>
+<phase_done name='buildIR' stamp='0.551'/>
+</phase>
+<phase name='emit_lir' stamp='0.551'>
+<phase name='lirGeneration' stamp='0.551'>
+<phase_done name='lirGeneration' stamp='0.551'/>
+</phase>
+<phase name='linearScan' stamp='0.551'>
+<phase_done name='linearScan' stamp='0.551'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.551'/>
+</phase>
+<phase name='codeemit' stamp='0.551'>
+<phase_done name='codeemit' stamp='0.551'/>
+</phase>
+<phase name='codeinstall' stamp='0.551'>
+<phase_done name='codeinstall' stamp='0.551'/>
+</phase>
+<code_cache total_blobs='1381' nmethods='796' adapters='264' free_code_cache='246430208'/>
+<task_done success='1' nmsize='432' count='274' stamp='0.552'/>
+</task>
+<task compile_id='807' method='java.nio.ByteBuffer array ()[B' bytes='35' count='315' iicount='315' level='3' stamp='0.558'>
+<phase name='setup' stamp='0.558'>
+<phase_done name='setup' stamp='0.558'/>
+</phase>
+<phase name='buildIR' stamp='0.558'>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='array' return='1085' flags='17' bytes='35' iicount='317'/>
+<parse method='1094'  stamp='0.558'>
+<phase name='parse_hir' stamp='0.558'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1098' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.558'/>
+</phase>
+<parse_done stamp='0.558'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.558'>
+<phase_done name='optimize_blocks' stamp='0.558'/>
+</phase>
+<phase name='gvn' stamp='0.558'>
+<phase_done name='gvn' stamp='0.558'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.558'>
+<phase_done name='rangeCheckElimination' stamp='0.558'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.558'>
+<phase_done name='optimize_null_checks' stamp='0.558'/>
+</phase>
+<phase_done name='buildIR' stamp='0.558'/>
+</phase>
+<phase name='emit_lir' stamp='0.558'>
+<phase name='lirGeneration' stamp='0.558'>
+<phase_done name='lirGeneration' stamp='0.558'/>
+</phase>
+<phase name='linearScan' stamp='0.558'>
+<phase_done name='linearScan' stamp='0.558'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.558'/>
+</phase>
+<phase name='codeemit' stamp='0.558'>
+<phase_done name='codeemit' stamp='0.558'/>
+</phase>
+<phase name='codeinstall' stamp='0.558'>
+<phase_done name='codeinstall' stamp='0.558'/>
+</phase>
+<code_cache total_blobs='1395' nmethods='804' adapters='270' free_code_cache='246365824'/>
+<task_done success='1' nmsize='792' count='319' stamp='0.558'/>
+</task>
+<task compile_id='812' method='jdk.internal.math.FDBigInteger makeImmutable ()V' bytes='6' count='276' iicount='276' level='3' stamp='0.559'>
+<phase name='setup' stamp='0.559'>
+<phase_done name='setup' stamp='0.559'/>
+</phase>
+<phase name='buildIR' stamp='0.559'>
+<type id='977' name='void'/>
+<klass id='1093' name='jdk.internal.math.FDBigInteger' flags='1'/>
+<method id='1094' holder='1093' name='makeImmutable' return='977' flags='1' bytes='6' iicount='284'/>
+<parse method='1094'  stamp='0.559'>
+<phase name='parse_hir' stamp='0.559'>
+<phase_done name='parse_hir' stamp='0.559'/>
+</phase>
+<parse_done stamp='0.559'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.559'>
+<phase_done name='optimize_blocks' stamp='0.559'/>
+</phase>
+<phase name='gvn' stamp='0.559'>
+<phase_done name='gvn' stamp='0.559'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.559'>
+<phase_done name='rangeCheckElimination' stamp='0.559'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.559'>
+<phase_done name='optimize_null_checks' stamp='0.559'/>
+</phase>
+<phase_done name='buildIR' stamp='0.559'/>
+</phase>
+<phase name='emit_lir' stamp='0.559'>
+<phase name='lirGeneration' stamp='0.559'>
+<phase_done name='lirGeneration' stamp='0.559'/>
+</phase>
+<phase name='linearScan' stamp='0.559'>
+<phase_done name='linearScan' stamp='0.559'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.559'/>
+</phase>
+<phase name='codeemit' stamp='0.559'>
+<phase_done name='codeemit' stamp='0.559'/>
+</phase>
+<phase name='codeinstall' stamp='0.559'>
+<phase_done name='codeinstall' stamp='0.559'/>
+</phase>
+<code_cache total_blobs='1396' nmethods='805' adapters='270' free_code_cache='246364928'/>
+<task_done success='1' nmsize='336' count='341' stamp='0.559'/>
+</task>
+<task compile_id='813' method='jdk.internal.math.FDBigInteger mult (I)Ljdk/internal/math/FDBigInteger;' bytes='44' count='326' iicount='326' level='3' stamp='0.559'>
+<phase name='setup' stamp='0.559'>
+<phase_done name='setup' stamp='0.559'/>
+</phase>
+<phase name='buildIR' stamp='0.559'>
+<klass id='1093' name='jdk.internal.math.FDBigInteger' flags='1'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='mult' return='1093' arguments='975' flags='2' bytes='44' iicount='326'/>
+<parse method='1094'  stamp='0.559'>
+<phase name='parse_hir' stamp='0.559'>
+<bc code='184' bci='28'/>
+<type id='977' name='void'/>
+<klass id='1087' name='[I' flags='1041'/>
+<method id='1096' holder='1093' name='mult' return='977' arguments='1087 975 975 1087' flags='10' bytes='64' compile_id='809' compiler='c1' level='3' iicount='326'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='40'/>
+<method id='1098' holder='1093' name='&lt;init&gt;' return='977' arguments='1087 975' flags='2' bytes='30' compile_id='810' compiler='c1' level='3' iicount='341'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='46726'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.559'/>
+</parse>
+<bc code='183' bci='26'/>
+<method id='1102' holder='1093' name='trimLeadingZeros' return='977' flags='2' bytes='57' compile_id='811' compiler='c1' level='3' iicount='341'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.559'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.559'/>
+</phase>
+<parse_done stamp='0.559'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.559'>
+<phase_done name='optimize_blocks' stamp='0.559'/>
+</phase>
+<phase name='gvn' stamp='0.559'>
+<phase_done name='gvn' stamp='0.559'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.559'>
+<phase_done name='rangeCheckElimination' stamp='0.559'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.559'>
+<phase_done name='optimize_null_checks' stamp='0.559'/>
+</phase>
+<phase_done name='buildIR' stamp='0.559'/>
+</phase>
+<phase name='emit_lir' stamp='0.559'>
+<phase name='lirGeneration' stamp='0.559'>
+<phase_done name='lirGeneration' stamp='0.559'/>
+</phase>
+<phase name='linearScan' stamp='0.559'>
+<phase_done name='linearScan' stamp='0.559'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.559'/>
+</phase>
+<phase name='codeemit' stamp='0.559'>
+<phase_done name='codeemit' stamp='0.559'/>
+</phase>
+<phase name='codeinstall' stamp='0.559'>
+<phase_done name='codeinstall' stamp='0.560'/>
+</phase>
+<code_cache total_blobs='1400' nmethods='809' adapters='270' free_code_cache='246358400'/>
+<task_done success='1' nmsize='1112' count='326' inlined_bytes='31' stamp='0.560'/>
+</task>
+<task compile_id='818' method='java.nio.CharBuffer array ()[C' bytes='35' count='290' iicount='290' level='3' stamp='0.561'>
+<phase name='setup' stamp='0.561'>
+<phase_done name='setup' stamp='0.561'/>
+</phase>
+<phase name='buildIR' stamp='0.561'>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='array' return='1082' flags='17' bytes='35' iicount='291'/>
+<parse method='1094'  stamp='0.561'>
+<phase name='parse_hir' stamp='0.561'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1098' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.561'/>
+</phase>
+<parse_done stamp='0.561'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.561'>
+<phase_done name='optimize_blocks' stamp='0.561'/>
+</phase>
+<phase name='gvn' stamp='0.561'>
+<phase_done name='gvn' stamp='0.561'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.561'>
+<phase_done name='rangeCheckElimination' stamp='0.561'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.561'>
+<phase_done name='optimize_null_checks' stamp='0.561'/>
+</phase>
+<phase_done name='buildIR' stamp='0.561'/>
+</phase>
+<phase name='emit_lir' stamp='0.561'>
+<phase name='lirGeneration' stamp='0.561'>
+<phase_done name='lirGeneration' stamp='0.561'/>
+</phase>
+<phase name='linearScan' stamp='0.561'>
+<phase_done name='linearScan' stamp='0.561'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.561'/>
+</phase>
+<phase name='codeemit' stamp='0.561'>
+<phase_done name='codeemit' stamp='0.561'/>
+</phase>
+<phase name='codeinstall' stamp='0.561'>
+<phase_done name='codeinstall' stamp='0.561'/>
+</phase>
+<code_cache total_blobs='1405' nmethods='814' adapters='270' free_code_cache='246352896'/>
+<task_done success='1' nmsize='792' count='301' stamp='0.562'/>
+</task>
+<task compile_id='823' method='java.nio.CharBuffer &lt;init&gt; (IIII[CI)V' bytes='22' count='265' iicount='265' level='3' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975 975 975 975 1082 975' flags='0' bytes='22' iicount='265'/>
+<parse method='1094'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<bc code='183' bci='6'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='&lt;init&gt;' return='977' arguments='975 975 975 975' flags='0' bytes='99' compile_id='731' compiler='c1' level='3' iicount='452'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.562'/>
+</phase>
+<phase name='codeemit' stamp='0.562'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1414' nmethods='821' adapters='270' free_code_cache='246342144'/>
+<task_done success='1' nmsize='520' count='278' stamp='0.562'/>
+</task>
+<task compile_id='828' method='com.sun.hotspot.tools.compiler.CallSite getMethod ()Lcom/sun/hotspot/tools/compiler/Method;' bytes='5' count='128' iicount='128' level='1' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<klass id='1094' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1095' holder='1093' name='getMethod' return='1094' flags='1' bytes='5' iicount='130'/>
+<parse method='1095'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.563'/>
+</phase>
+<phase name='codeemit' stamp='0.563'>
+<phase_done name='codeemit' stamp='0.563'/>
+</phase>
+<phase name='codeinstall' stamp='0.563'>
+<phase_done name='codeinstall' stamp='0.563'/>
+</phase>
+<code_cache total_blobs='1418' nmethods='825' adapters='270' free_code_cache='246338048'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.563'/>
+</task>
+<task compile_id='832' method='java.nio.Buffer flip ()Ljava/nio/Buffer;' bytes='20' count='260' iicount='260' level='3' stamp='0.563'>
+<phase name='setup' stamp='0.563'>
+<phase_done name='setup' stamp='0.563'/>
+</phase>
+<phase name='buildIR' stamp='0.563'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='flip' return='1064' flags='1' bytes='20' iicount='261'/>
+<parse method='1093'  stamp='0.563'>
+<phase name='parse_hir' stamp='0.563'>
+<phase_done name='parse_hir' stamp='0.563'/>
+</phase>
+<parse_done stamp='0.563'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.563'>
+<phase_done name='optimize_blocks' stamp='0.563'/>
+</phase>
+<phase name='gvn' stamp='0.563'>
+<phase_done name='gvn' stamp='0.563'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.563'>
+<phase_done name='rangeCheckElimination' stamp='0.563'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.563'>
+<phase_done name='optimize_null_checks' stamp='0.563'/>
+</phase>
+<phase_done name='buildIR' stamp='0.563'/>
+</phase>
+<phase name='emit_lir' stamp='0.563'>
+<phase name='lirGeneration' stamp='0.563'>
+<phase_done name='lirGeneration' stamp='0.563'/>
+</phase>
+<phase name='linearScan' stamp='0.563'>
+<phase_done name='linearScan' stamp='0.563'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.563'/>
+</phase>
+<phase name='codeemit' stamp='0.563'>
+<phase_done name='codeemit' stamp='0.563'/>
+</phase>
+<phase name='codeinstall' stamp='0.563'>
+<phase_done name='codeinstall' stamp='0.563'/>
+</phase>
+<code_cache total_blobs='1424' nmethods='828' adapters='270' free_code_cache='246317952'/>
+<task_done success='1' nmsize='368' count='273' stamp='0.563'/>
+</task>
+<task compile_id='834' method='java.lang.StringLatin1 toBytes (C)[B' bytes='9' count='257' iicount='257' level='3' stamp='0.563'>
+<phase name='setup' stamp='0.564'>
+<phase_done name='setup' stamp='0.564'/>
+</phase>
+<phase name='buildIR' stamp='0.564'>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='toBytes' return='1085' arguments='970' flags='9' bytes='9' iicount='257'/>
+<parse method='1094'  stamp='0.564'>
+<phase name='parse_hir' stamp='0.564'>
+<phase_done name='parse_hir' stamp='0.564'/>
+</phase>
+<parse_done stamp='0.564'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.564'>
+<phase_done name='optimize_blocks' stamp='0.564'/>
+</phase>
+<phase name='gvn' stamp='0.564'>
+<phase_done name='gvn' stamp='0.564'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.564'>
+<phase_done name='rangeCheckElimination' stamp='0.564'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.564'>
+<phase_done name='optimize_null_checks' stamp='0.564'/>
+</phase>
+<phase_done name='buildIR' stamp='0.564'/>
+</phase>
+<phase name='emit_lir' stamp='0.564'>
+<phase name='lirGeneration' stamp='0.564'>
+<phase_done name='lirGeneration' stamp='0.564'/>
+</phase>
+<phase name='linearScan' stamp='0.564'>
+<phase_done name='linearScan' stamp='0.564'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.564'/>
+</phase>
+<phase name='codeemit' stamp='0.564'>
+<phase_done name='codeemit' stamp='0.564'/>
+</phase>
+<phase name='codeinstall' stamp='0.564'>
+<phase_done name='codeinstall' stamp='0.564'/>
+</phase>
+<code_cache total_blobs='1425' nmethods='830' adapters='270' free_code_cache='246316928'/>
+<task_done success='1' nmsize='464' count='259' stamp='0.564'/>
+</task>
+<task compile_id='837' method='java.io.BufferedOutputStream flushBuffer ()V' bytes='29' count='263' iicount='263' level='3' stamp='0.564'>
+<phase name='setup' stamp='0.564'>
+<phase_done name='setup' stamp='0.564'/>
+</phase>
+<phase name='buildIR' stamp='0.564'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.BufferedOutputStream' flags='1'/>
+<method id='1094' holder='1093' name='flushBuffer' return='977' flags='2' bytes='29' iicount='264'/>
+<parse method='1094'  stamp='0.564'>
+<phase name='parse_hir' stamp='0.564'>
+<bc code='182' bci='20'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1097' name='java.io.OutputStream' flags='1025'/>
+<method id='1099' holder='1097' name='write' return='977' arguments='1085 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.564'/>
+</phase>
+<parse_done stamp='0.564'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.564'>
+<phase_done name='optimize_blocks' stamp='0.564'/>
+</phase>
+<phase name='gvn' stamp='0.564'>
+<phase_done name='gvn' stamp='0.564'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.564'>
+<phase_done name='rangeCheckElimination' stamp='0.564'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.564'>
+<phase_done name='optimize_null_checks' stamp='0.564'/>
+</phase>
+<phase_done name='buildIR' stamp='0.564'/>
+</phase>
+<phase name='emit_lir' stamp='0.564'>
+<phase name='lirGeneration' stamp='0.564'>
+<phase_done name='lirGeneration' stamp='0.564'/>
+</phase>
+<phase name='linearScan' stamp='0.564'>
+<phase_done name='linearScan' stamp='0.564'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.565'/>
+</phase>
+<phase name='codeemit' stamp='0.565'>
+<phase_done name='codeemit' stamp='0.565'/>
+</phase>
+<phase name='codeinstall' stamp='0.565'>
+<phase_done name='codeinstall' stamp='0.565'/>
+</phase>
+<code_cache total_blobs='1428' nmethods='833' adapters='270' free_code_cache='246322176'/>
+<task_done success='1' nmsize='648' count='270' stamp='0.565'/>
+</task>
+<task compile_id='839' method='java.io.Writer write (Ljava/lang/String;)V' bytes='11' count='261' iicount='261' level='3' stamp='0.565'>
+<phase name='setup' stamp='0.565'>
+<phase_done name='setup' stamp='0.565'/>
+</phase>
+<phase name='buildIR' stamp='0.565'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.io.Writer' flags='1025'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='983' flags='1' bytes='11' iicount='262'/>
+<parse method='1094'  stamp='0.565'>
+<phase name='parse_hir' stamp='0.565'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='40185'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1098' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='65678'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.565'/>
+</parse>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1101' holder='1093' name='write' return='977' arguments='983 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.565'/>
+</phase>
+<parse_done stamp='0.565'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.565'>
+<phase_done name='optimize_blocks' stamp='0.565'/>
+</phase>
+<phase name='gvn' stamp='0.565'>
+<phase_done name='gvn' stamp='0.565'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.565'>
+<phase_done name='rangeCheckElimination' stamp='0.565'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.565'>
+<phase_done name='optimize_null_checks' stamp='0.565'/>
+</phase>
+<phase_done name='buildIR' stamp='0.565'/>
+</phase>
+<phase name='emit_lir' stamp='0.565'>
+<phase name='lirGeneration' stamp='0.565'>
+<phase_done name='lirGeneration' stamp='0.565'/>
+</phase>
+<phase name='linearScan' stamp='0.565'>
+<phase_done name='linearScan' stamp='0.565'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.565'/>
+</phase>
+<phase name='codeemit' stamp='0.565'>
+<phase_done name='codeemit' stamp='0.565'/>
+</phase>
+<phase name='codeinstall' stamp='0.565'>
+<phase_done name='codeinstall' stamp='0.565'/>
+</phase>
+<code_cache total_blobs='1431' nmethods='836' adapters='270' free_code_cache='246314496'/>
+<task_done success='1' nmsize='1064' count='284' inlined_bytes='26' stamp='0.565'/>
+</task>
+<task compile_id='842' method='java.io.OutputStreamWriter flushBuffer ()V' bytes='8' count='286' iicount='286' level='3' stamp='0.565'>
+<phase name='setup' stamp='0.565'>
+<phase_done name='setup' stamp='0.565'/>
+</phase>
+<phase name='buildIR' stamp='0.565'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.OutputStreamWriter' flags='1'/>
+<method id='1094' holder='1093' name='flushBuffer' return='977' flags='0' bytes='8' iicount='287'/>
+<parse method='1094'  stamp='0.565'>
+<phase name='parse_hir' stamp='0.565'>
+<bc code='182' bci='4'/>
+<klass id='1096' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1097' holder='1096' name='flushBuffer' return='977' flags='1' bytes='42' iicount='288'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='parse_hir' stamp='0.565'/>
+</phase>
+<parse_done stamp='0.566'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.566'>
+<phase_done name='optimize_blocks' stamp='0.566'/>
+</phase>
+<phase name='gvn' stamp='0.566'>
+<phase_done name='gvn' stamp='0.566'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.566'>
+<phase_done name='rangeCheckElimination' stamp='0.566'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.566'>
+<phase_done name='optimize_null_checks' stamp='0.566'/>
+</phase>
+<phase_done name='buildIR' stamp='0.566'/>
+</phase>
+<phase name='emit_lir' stamp='0.566'>
+<phase name='lirGeneration' stamp='0.566'>
+<phase_done name='lirGeneration' stamp='0.566'/>
+</phase>
+<phase name='linearScan' stamp='0.566'>
+<phase_done name='linearScan' stamp='0.566'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.566'/>
+</phase>
+<phase name='codeemit' stamp='0.566'>
+<phase_done name='codeemit' stamp='0.566'/>
+</phase>
+<phase name='codeinstall' stamp='0.566'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.566'/>
+</phase>
+<code_cache total_blobs='1434' nmethods='839' adapters='270' free_code_cache='246307584'/>
+<task_done success='1' nmsize='424' count='296' stamp='0.566'/>
+</task>
+<task compile_id='844' method='sun.nio.cs.StreamEncoder isOpen ()Z' bytes='13' count='296' iicount='296' level='3' stamp='0.566'>
+<phase name='setup' stamp='0.566'>
+<phase_done name='setup' stamp='0.566'/>
+</phase>
+<phase name='buildIR' stamp='0.566'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='isOpen' return='969' flags='2' bytes='13' iicount='297'/>
+<parse method='1094'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<phase_done name='parse_hir' stamp='0.566'/>
+</phase>
+<parse_done stamp='0.566'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.566'>
+<phase_done name='optimize_blocks' stamp='0.566'/>
+</phase>
+<phase name='gvn' stamp='0.566'>
+<phase_done name='gvn' stamp='0.566'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.566'>
+<phase_done name='rangeCheckElimination' stamp='0.566'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.566'>
+<phase_done name='optimize_null_checks' stamp='0.566'/>
+</phase>
+<phase_done name='buildIR' stamp='0.566'/>
+</phase>
+<phase name='emit_lir' stamp='0.566'>
+<phase name='lirGeneration' stamp='0.566'>
+<phase_done name='lirGeneration' stamp='0.566'/>
+</phase>
+<phase name='linearScan' stamp='0.566'>
+<phase_done name='linearScan' stamp='0.566'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.566'/>
+</phase>
+<phase name='codeemit' stamp='0.566'>
+<phase_done name='codeemit' stamp='0.566'/>
+</phase>
+<phase name='codeinstall' stamp='0.566'>
+<phase_done name='codeinstall' stamp='0.566'/>
+</phase>
+<code_cache total_blobs='1435' nmethods='840' adapters='270' free_code_cache='246306560'/>
+<task_done success='1' nmsize='432' count='307' stamp='0.566'/>
+</task>
+<task compile_id='848' method='java.util.regex.Matcher groupCount ()I' bytes='10' count='290' iicount='290' level='3' stamp='0.566'>
+<phase name='setup' stamp='0.566'>
+<phase_done name='setup' stamp='0.566'/>
+</phase>
+<phase name='buildIR' stamp='0.566'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='groupCount' return='975' flags='1' bytes='10' iicount='290'/>
+<parse method='1094'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<phase_done name='parse_hir' stamp='0.566'/>
+</phase>
+<parse_done stamp='0.566'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.566'>
+<phase_done name='optimize_blocks' stamp='0.566'/>
+</phase>
+<phase name='gvn' stamp='0.566'>
+<phase_done name='gvn' stamp='0.566'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.566'>
+<phase_done name='rangeCheckElimination' stamp='0.566'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.566'>
+<phase_done name='optimize_null_checks' stamp='0.566'/>
+</phase>
+<phase_done name='buildIR' stamp='0.566'/>
+</phase>
+<phase name='emit_lir' stamp='0.566'>
+<phase name='lirGeneration' stamp='0.566'>
+<phase_done name='lirGeneration' stamp='0.566'/>
+</phase>
+<phase name='linearScan' stamp='0.566'>
+<phase_done name='linearScan' stamp='0.566'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.566'/>
+</phase>
+<phase name='codeemit' stamp='0.566'>
+<phase_done name='codeemit' stamp='0.566'/>
+</phase>
+<phase name='codeinstall' stamp='0.566'>
+<phase_done name='codeinstall' stamp='0.566'/>
+</phase>
+<code_cache total_blobs='1438' nmethods='843' adapters='270' free_code_cache='246301568'/>
+<task_done success='1' nmsize='368' count='300' stamp='0.566'/>
+</task>
+<task compile_id='849' method='java.lang.AbstractStringBuilder length ()I' bytes='5' count='136' iicount='136' level='1' stamp='0.566'>
+<phase name='setup' stamp='0.566'>
+<phase_done name='setup' stamp='0.566'/>
+</phase>
+<phase name='buildIR' stamp='0.566'>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='length' return='975' flags='1' bytes='5' iicount='136'/>
+<parse method='1093'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<phase_done name='parse_hir' stamp='0.566'/>
+</phase>
+<parse_done stamp='0.567'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.567'>
+<phase_done name='optimize_blocks' stamp='0.567'/>
+</phase>
+<phase name='gvn' stamp='0.567'>
+<phase_done name='gvn' stamp='0.567'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.567'>
+<phase_done name='rangeCheckElimination' stamp='0.567'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.567'>
+<phase_done name='optimize_null_checks' stamp='0.567'/>
+</phase>
+<phase_done name='buildIR' stamp='0.567'/>
+</phase>
+<phase name='emit_lir' stamp='0.567'>
+<phase name='lirGeneration' stamp='0.567'>
+<phase_done name='lirGeneration' stamp='0.567'/>
+</phase>
+<phase name='linearScan' stamp='0.567'>
+<phase_done name='linearScan' stamp='0.567'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.567'/>
+</phase>
+<phase name='codeemit' stamp='0.567'>
+<phase_done name='codeemit' stamp='0.567'/>
+</phase>
+<phase name='codeinstall' stamp='0.567'>
+<phase_done name='codeinstall' stamp='0.567'/>
+</phase>
+<code_cache total_blobs='1440' nmethods='845' adapters='270' free_code_cache='246299648'/>
+<task_done success='1' nmsize='272' count='140' stamp='0.567'/>
+</task>
+<task compile_id='850' method='java.io.PrintStream write (Ljava/lang/String;)V' bytes='83' count='287' iicount='287' level='3' stamp='0.567'>
+<phase name='setup' stamp='0.567'>
+<phase_done name='setup' stamp='0.567'/>
+</phase>
+<phase name='buildIR' stamp='0.567'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' iicount='288'/>
+<parse method='1094'  stamp='0.567'>
+<phase name='parse_hir' stamp='0.567'>
+<bc code='183' bci='5'/>
+<method id='1098' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='821' compiler='c1' level='3' iicount='689'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='13'/>
+<klass id='1102' name='java.io.IOException' flags='1'/>
+<method id='1104' holder='1102' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='182' bci='13'/>
+<klass id='1106' name='java.io.Writer' flags='1025'/>
+<method id='1107' holder='1106' name='write' return='977' arguments='983' flags='1' bytes='11' compile_id='839' compiler='c1' level='3' iicount='352'/>
+<call method='1107' instr='invokevirtual'/>
+<klass id='1096' name='java.io.BufferedWriter' flags='1'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<method id='1109' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='40264'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1111' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='65760'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1114' holder='1106' name='write' return='977' arguments='983 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1117' holder='1096' name='flushBuffer' return='977' flags='0' bytes='53' compile_id='841' compiler='c1' level='3' iicount='363'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='27'/>
+<klass id='1097' name='java.io.OutputStreamWriter' flags='1'/>
+<method id='1119' holder='1097' name='flushBuffer' return='977' flags='0' bytes='8' compile_id='842' compiler='c1' level='3' iicount='363'/>
+<call method='1119' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1119'>
+<bc code='182' bci='4'/>
+<klass id='1121' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1122' holder='1121' name='flushBuffer' return='977' flags='1' bytes='42' compile_id='843' compiler='c1' level='3' iicount='366'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='182' bci='40'/>
+<method id='1124' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' compile_id='115' compiler='c1' level='3' iicount='1974'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='3'/>
+<method id='1126' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' compile_id='116' compiler='c1' level='3' iicount='2178'/>
+<call method='1126' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1128' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='112131'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1130' name='java.lang.StringLatin1' flags='16'/>
+<method id='1131' holder='1130' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' compile_id='326' compiler='c2' level='4' iicount='964'/>
+<call method='1131' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1133' name='java.lang.StringUTF16' flags='16'/>
+<method id='1134' holder='1133' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.568'/>
+</parse>
+<parse_done stamp='0.568'/>
+</parse>
+<bc code='182' bci='50'/>
+<klass id='1100' name='java.io.OutputStream' flags='1025'/>
+<method id='1136' holder='1100' name='flush' return='977' flags='1' bytes='1' compile_id='838' compiler='c1' level='3' iicount='409'/>
+<call method='1136' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='67'/>
+<klass id='1014' name='java.lang.Thread' flags='1'/>
+<method id='1137' holder='1014' name='currentThread' return='1014' flags='265' bytes='0' iicount='237'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='70'/>
+<method id='1139' holder='1014' name='interrupt' return='977' flags='1' bytes='56' iicount='1'/>
+<call method='1139' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1139'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.568'/>
+</phase>
+<parse_done stamp='0.568'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.568'>
+<phase_done name='optimize_blocks' stamp='0.568'/>
+</phase>
+<phase name='gvn' stamp='0.568'>
+<phase_done name='gvn' stamp='0.568'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.568'>
+<phase_done name='rangeCheckElimination' stamp='0.568'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.568'>
+<phase_done name='optimize_null_checks' stamp='0.568'/>
+</phase>
+<phase_done name='buildIR' stamp='0.568'/>
+</phase>
+<phase name='emit_lir' stamp='0.568'>
+<phase name='lirGeneration' stamp='0.568'>
+<phase_done name='lirGeneration' stamp='0.568'/>
+</phase>
+<phase name='linearScan' stamp='0.568'>
+<phase_done name='linearScan' stamp='0.568'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.568'/>
+</phase>
+<phase name='codeemit' stamp='0.568'>
+<phase_done name='codeemit' stamp='0.569'/>
+</phase>
+<phase name='codeinstall' stamp='0.569'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1121'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1139'/>
+<phase_done name='codeinstall' stamp='0.569'/>
+</phase>
+<code_cache total_blobs='1449' nmethods='854' adapters='270' free_code_cache='246281216'/>
+<task_done success='1' nmsize='3736' count='365' inlined_bytes='118' stamp='0.569'/>
+</task>
+<task compile_id='860' method='sun.nio.cs.UTF_8$Encoder encodeLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='28' count='402' iicount='402' level='3' stamp='0.569'>
+<phase name='setup' stamp='0.569'>
+<phase_done name='setup' stamp='0.569'/>
+</phase>
+<phase name='buildIR' stamp='0.569'>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1095' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Encoder' flags='26'/>
+<method id='1097' holder='1093' name='encodeLoop' return='1096' arguments='1094 1095' flags='20' bytes='28' iicount='404'/>
+<parse method='1097'  stamp='0.569'>
+<phase name='parse_hir' stamp='0.569'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='1094' name='hasArray' return='969' flags='17' bytes='20' compile_id='815' compiler='c1' level='3' iicount='570'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1101' holder='1095' name='hasArray' return='969' flags='17' bytes='20' compile_id='816' compiler='c1' level='3' iicount='572'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='183' bci='17'/>
+<method id='1103' holder='1093' name='encodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='489' iicount='412'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='24'/>
+<method id='1105' holder='1093' name='encodeBufferLoop' return='1096' arguments='1094 1095' flags='2' bytes='326' iicount='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.569'/>
+</phase>
+<parse_done stamp='0.569'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.569'>
+<phase_done name='optimize_blocks' stamp='0.569'/>
+</phase>
+<phase name='gvn' stamp='0.569'>
+<phase_done name='gvn' stamp='0.569'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.569'>
+<phase_done name='rangeCheckElimination' stamp='0.569'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.569'>
+<phase_done name='optimize_null_checks' stamp='0.569'/>
+</phase>
+<phase_done name='buildIR' stamp='0.569'/>
+</phase>
+<phase name='emit_lir' stamp='0.569'>
+<phase name='lirGeneration' stamp='0.569'>
+<phase_done name='lirGeneration' stamp='0.569'/>
+</phase>
+<phase name='linearScan' stamp='0.569'>
+<phase_done name='linearScan' stamp='0.569'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.569'/>
+</phase>
+<phase name='codeemit' stamp='0.569'>
+<phase_done name='codeemit' stamp='0.569'/>
+</phase>
+<phase name='codeinstall' stamp='0.569'>
+<phase_done name='codeinstall' stamp='0.569'/>
+</phase>
+<code_cache total_blobs='1451' nmethods='856' adapters='270' free_code_cache='246276480'/>
+<task_done success='1' nmsize='1336' count='445' inlined_bytes='40' stamp='0.569'/>
+</task>
+<task compile_id='861' method='java.io.FileDescriptor$1 getAppend (Ljava/io/FileDescriptor;)Z' bytes='5' count='435' iicount='435' level='3' stamp='0.569'>
+<phase name='setup' stamp='0.569'>
+<phase_done name='setup' stamp='0.569'/>
+</phase>
+<phase name='buildIR' stamp='0.570'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.io.FileDescriptor' flags='17'/>
+<klass id='1093' name='java.io.FileDescriptor$1' flags='0'/>
+<method id='1095' holder='1093' name='getAppend' return='969' arguments='1094' flags='1' bytes='5' iicount='438'/>
+<parse method='1095'  stamp='0.570'>
+<phase name='parse_hir' stamp='0.570'>
+<bc code='184' bci='1'/>
+<method id='1097' holder='1094' name='access$100' return='969' arguments='1094' flags='4104' bytes='5' compile_id='826' compiler='c1' level='1' iicount='153'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.570'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.570'/>
+</phase>
+<parse_done stamp='0.570'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.570'>
+<phase_done name='optimize_blocks' stamp='0.570'/>
+</phase>
+<phase name='gvn' stamp='0.570'>
+<phase_done name='gvn' stamp='0.570'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.570'>
+<phase_done name='rangeCheckElimination' stamp='0.570'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.570'>
+<phase_done name='optimize_null_checks' stamp='0.570'/>
+</phase>
+<phase_done name='buildIR' stamp='0.570'/>
+</phase>
+<phase name='emit_lir' stamp='0.570'>
+<phase name='lirGeneration' stamp='0.570'>
+<phase_done name='lirGeneration' stamp='0.570'/>
+</phase>
+<phase name='linearScan' stamp='0.570'>
+<phase_done name='linearScan' stamp='0.570'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.570'/>
+</phase>
+<phase name='codeemit' stamp='0.570'>
+<phase_done name='codeemit' stamp='0.570'/>
+</phase>
+<phase name='codeinstall' stamp='0.570'>
+<phase_done name='codeinstall' stamp='0.570'/>
+</phase>
+<code_cache total_blobs='1453' nmethods='858' adapters='270' free_code_cache='246253696'/>
+<task_done success='1' nmsize='368' count='455' inlined_bytes='5' stamp='0.570'/>
+</task>
+<task compile_id='863' method='java.io.OutputStreamWriter write ([CII)V' bytes='11' count='457' iicount='457' level='3' stamp='0.570'>
+<phase name='setup' stamp='0.570'>
+<phase_done name='setup' stamp='0.570'/>
+</phase>
+<phase name='buildIR' stamp='0.570'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.io.OutputStreamWriter' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='1082 975 975' flags='1' bytes='11' iicount='457'/>
+<parse method='1094'  stamp='0.570'>
+<phase name='parse_hir' stamp='0.570'>
+<bc code='182' bci='7'/>
+<klass id='1096' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1097' holder='1096' name='write' return='977' arguments='1082 975 975' flags='1' bytes='78' iicount='461'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='parse_hir' stamp='0.570'/>
+</phase>
+<parse_done stamp='0.570'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.570'>
+<phase_done name='optimize_blocks' stamp='0.570'/>
+</phase>
+<phase name='gvn' stamp='0.570'>
+<phase_done name='gvn' stamp='0.570'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.570'>
+<phase_done name='rangeCheckElimination' stamp='0.570'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.570'>
+<phase_done name='optimize_null_checks' stamp='0.570'/>
+</phase>
+<phase_done name='buildIR' stamp='0.570'/>
+</phase>
+<phase name='emit_lir' stamp='0.570'>
+<phase name='lirGeneration' stamp='0.570'>
+<phase_done name='lirGeneration' stamp='0.570'/>
+</phase>
+<phase name='linearScan' stamp='0.570'>
+<phase_done name='linearScan' stamp='0.570'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.570'/>
+</phase>
+<phase name='codeemit' stamp='0.570'>
+<phase_done name='codeemit' stamp='0.570'/>
+</phase>
+<phase name='codeinstall' stamp='0.570'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.570'/>
+</phase>
+<code_cache total_blobs='1456' nmethods='861' adapters='270' free_code_cache='246246784'/>
+<task_done success='1' nmsize='424' count='479' stamp='0.570'/>
+</task>
+<task compile_id='869' method='java.io.BufferedOutputStream write ([BII)V' bytes='67' count='480' iicount='480' level='3' stamp='0.570'>
+<phase name='setup' stamp='0.570'>
+<phase_done name='setup' stamp='0.570'/>
+</phase>
+<phase name='buildIR' stamp='0.570'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.io.BufferedOutputStream' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='1085 975 975' flags='33' bytes='67' iicount='483'/>
+<parse method='1094'  stamp='0.570'>
+<phase name='parse_hir' stamp='0.570'>
+<bc code='183' bci='10'/>
+<method id='1096' holder='1093' name='flushBuffer' return='977' flags='2' bytes='29' compile_id='837' compiler='c1' level='3' iicount='564'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='20'/>
+<klass id='1099' name='java.io.OutputStream' flags='1025'/>
+<method id='1101' holder='1099' name='write' return='977' arguments='1085 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.571'/>
+</parse>
+<bc code='182' bci='20'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='39'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='20'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.571'/>
+</parse>
+<bc code='184' bci='53'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1102' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.571'/>
+</phase>
+<parse_done stamp='0.571'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.571'>
+<phase_done name='optimize_blocks' stamp='0.571'/>
+</phase>
+<phase name='gvn' stamp='0.571'>
+<phase_done name='gvn' stamp='0.571'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.571'>
+<phase_done name='rangeCheckElimination' stamp='0.571'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.571'>
+<phase_done name='optimize_null_checks' stamp='0.571'/>
+</phase>
+<phase_done name='buildIR' stamp='0.571'/>
+</phase>
+<phase name='emit_lir' stamp='0.571'>
+<phase name='lirGeneration' stamp='0.571'>
+<phase_done name='lirGeneration' stamp='0.571'/>
+</phase>
+<phase name='linearScan' stamp='0.571'>
+<phase_done name='linearScan' stamp='0.571'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.571'/>
+</phase>
+<phase name='codeemit' stamp='0.571'>
+<phase_done name='codeemit' stamp='0.571'/>
+</phase>
+<phase name='codeinstall' stamp='0.571'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.571'/>
+</phase>
+<code_cache total_blobs='1459' nmethods='864' adapters='270' free_code_cache='246232064'/>
+<task_done success='1' nmsize='2136' count='541' inlined_bytes='58' stamp='0.571'/>
+</task>
+<task compile_id='867' method='sun.nio.cs.StreamEncoder implWrite (Ljava/nio/CharBuffer;)V' bytes='137' count='542' iicount='542' level='3' stamp='0.571'>
+<phase name='setup' stamp='0.571'>
+<phase_done name='setup' stamp='0.571'/>
+</phase>
+<phase name='buildIR' stamp='0.571'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1095' holder='1093' name='implWrite' return='977' arguments='1094' flags='0' bytes='137' iicount='552'/>
+<parse method='1095'  stamp='0.571'>
+<phase name='parse_hir' stamp='0.571'>
+<bc code='183' bci='10'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1093' name='flushLeftoverChar' return='977' arguments='1094 969' flags='2' bytes='243' iicount='1'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1100' holder='1064' name='hasRemaining' return='969' flags='17' bytes='17' compile_id='475' compiler='c1' level='3' iicount='3597'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='182' bci='30'/>
+<klass id='1097' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1103' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1102' name='java.nio.charset.CharsetEncoder' flags='1025'/>
+<method id='1104' holder='1102' name='encode' return='1097' arguments='1094 1103 969' flags='17' bytes='285' compile_id='859' compiler='c1' level='3' iicount='581'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='35'/>
+<method id='1107' holder='1097' name='isUnderflow' return='969' flags='1' bytes='13' compile_id='778' compiler='c1' level='3' iicount='1446'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1107'>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='182' bci='68'/>
+<type id='975' name='int'/>
+<method id='1110' holder='1064' name='remaining' return='975' flags='17' bytes='10' compile_id='772' compiler='c1' level='3' iicount='896'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='182' bci='82'/>
+<type id='970' name='char'/>
+<method id='1112' holder='1094' name='get' return='970' flags='1025' bytes='0' iicount='1'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='92'/>
+<method id='1113' holder='1097' name='isOverflow' return='969' flags='1' bytes='14' compile_id='800' compiler='c1' level='3' iicount='839'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1113'>
+<parse_done stamp='0.572'/>
+</parse>
+<bc code='183' bci='123'/>
+<method id='1115' holder='1093' name='writeBytes' return='977' flags='2' bytes='132' compile_id='873' compiler='c1' level='3' iicount='587'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='130'/>
+<method id='1119' holder='1097' name='throwException' return='977' flags='1' bytes='91' iicount='1'/>
+<call method='1119' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.572'>
+<phase_done name='lirGeneration' stamp='0.572'/>
+</phase>
+<phase name='linearScan' stamp='0.572'>
+<phase_done name='linearScan' stamp='0.572'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.572'/>
+</phase>
+<phase name='codeemit' stamp='0.572'>
+<phase_done name='codeemit' stamp='0.572'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1467' nmethods='872' adapters='270' free_code_cache='246215040'/>
+<task_done success='1' nmsize='2472' count='639' inlined_bytes='54' stamp='0.573'/>
+</task>
+<task compile_id='880' method='java.util.regex.ASCII isDigit (I)Z' bytes='18' count='399' iicount='400' level='3' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.ASCII' flags='16'/>
+<method id='1094' holder='1093' name='isDigit' return='969' arguments='975' flags='8' bytes='18' iicount='402'/>
+<parse method='1094'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<phase_done name='parse_hir' stamp='0.573'/>
+</phase>
+<parse_done stamp='0.573'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.573'>
+<phase_done name='optimize_blocks' stamp='0.573'/>
+</phase>
+<phase name='gvn' stamp='0.573'>
+<phase_done name='gvn' stamp='0.573'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.573'>
+<phase_done name='rangeCheckElimination' stamp='0.573'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.573'>
+<phase_done name='optimize_null_checks' stamp='0.573'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1471' nmethods='876' adapters='270' free_code_cache='246208512'/>
+<task_done success='1' nmsize='432' count='414' stamp='0.573'/>
+</task>
+<task compile_id='883' method='java.util.Formatter access$000 (Ljava/util/Formatter;)Ljava/lang/Appendable;' bytes='5' count='138' iicount='138' level='1' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<klass id='1094' name='java.lang.Appendable' flags='1537'/>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<method id='1095' holder='1093' name='access$000' return='1094' arguments='1093' flags='4104' bytes='5' iicount='138'/>
+<parse method='1095'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<phase_done name='parse_hir' stamp='0.573'/>
+</phase>
+<parse_done stamp='0.573'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.573'>
+<phase_done name='optimize_blocks' stamp='0.573'/>
+</phase>
+<phase name='gvn' stamp='0.573'>
+<phase_done name='gvn' stamp='0.573'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.573'>
+<phase_done name='rangeCheckElimination' stamp='0.573'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.573'>
+<phase_done name='optimize_null_checks' stamp='0.573'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1473' nmethods='878' adapters='270' free_code_cache='246206720'/>
+<task_done success='1' nmsize='240' count='142' stamp='0.573'/>
+</task>
+<task compile_id='886' method='java.io.PrintStream print (C)V' bytes='9' count='258' iicount='258' level='3' stamp='0.574'>
+<phase name='setup' stamp='0.574'>
+<phase_done name='setup' stamp='0.574'/>
+</phase>
+<phase name='buildIR' stamp='0.574'>
+<type id='977' name='void'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='print' return='977' arguments='970' flags='1' bytes='9' iicount='258'/>
+<parse method='1094'  stamp='0.574'>
+<phase name='parse_hir' stamp='0.574'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1096' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' compile_id='846' compiler='c1' level='3' iicount='457'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='5'/>
+<method id='1098' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='693'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.574'/>
+</phase>
+<parse_done stamp='0.574'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.574'>
+<phase_done name='optimize_blocks' stamp='0.574'/>
+</phase>
+<phase name='gvn' stamp='0.574'>
+<phase_done name='gvn' stamp='0.574'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.574'>
+<phase_done name='rangeCheckElimination' stamp='0.574'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.574'>
+<phase_done name='optimize_null_checks' stamp='0.574'/>
+</phase>
+<phase_done name='buildIR' stamp='0.574'/>
+</phase>
+<phase name='emit_lir' stamp='0.574'>
+<phase name='lirGeneration' stamp='0.574'>
+<phase_done name='lirGeneration' stamp='0.574'/>
+</phase>
+<phase name='linearScan' stamp='0.574'>
+<phase_done name='linearScan' stamp='0.574'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.574'/>
+</phase>
+<phase name='codeemit' stamp='0.574'>
+<phase_done name='codeemit' stamp='0.574'/>
+</phase>
+<phase name='codeinstall' stamp='0.574'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.574'/>
+</phase>
+<code_cache total_blobs='1477' nmethods='882' adapters='270' free_code_cache='246201600'/>
+<task_done success='1' nmsize='440' count='267' stamp='0.574'/>
+</task>
+<task compile_id='889' method='java.lang.ThreadLocal$ThreadLocalMap getEntry (Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;' bytes='42' count='258' iicount='258' level='3' stamp='0.574'>
+<phase name='setup' stamp='0.574'>
+<phase_done name='setup' stamp='0.574'/>
+</phase>
+<phase name='buildIR' stamp='0.574'>
+<klass id='1095' name='java.lang.ThreadLocal$ThreadLocalMap$Entry' flags='8'/>
+<klass id='1094' name='java.lang.ThreadLocal' flags='1'/>
+<klass id='1093' name='java.lang.ThreadLocal$ThreadLocalMap' flags='8'/>
+<method id='1096' holder='1093' name='getEntry' return='1095' arguments='1094' flags='2' bytes='42' iicount='258'/>
+<parse method='1096'  stamp='0.574'>
+<phase name='parse_hir' stamp='0.574'>
+<bc code='184' bci='1'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1094' name='access$400' return='975' arguments='1094' flags='4104' bytes='5' compile_id='473' compiler='c1' level='1' iicount='128'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.574'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1101' holder='1008' name='get' return='982' flags='1' bytes='5' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<inline_success reason='intrinsic'/>
+<bc code='183' bci='38'/>
+<method id='1103' holder='1093' name='getEntryAfterMiss' return='1095' arguments='1094 975 1095' flags='2' bytes='63' iicount='6'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.575'/>
+</phase>
+<parse_done stamp='0.575'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.575'>
+<phase_done name='optimize_blocks' stamp='0.575'/>
+</phase>
+<phase name='gvn' stamp='0.575'>
+<phase_done name='gvn' stamp='0.575'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.575'>
+<phase_done name='rangeCheckElimination' stamp='0.575'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.575'>
+<phase_done name='optimize_null_checks' stamp='0.575'/>
+</phase>
+<phase_done name='buildIR' stamp='0.575'/>
+</phase>
+<phase name='emit_lir' stamp='0.575'>
+<phase name='lirGeneration' stamp='0.575'>
+<phase_done name='lirGeneration' stamp='0.575'/>
+</phase>
+<phase name='linearScan' stamp='0.575'>
+<phase_done name='linearScan' stamp='0.575'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.575'/>
+</phase>
+<phase name='codeemit' stamp='0.575'>
+<phase_done name='codeemit' stamp='0.575'/>
+</phase>
+<phase name='codeinstall' stamp='0.575'>
+<dependency type='leaf_type' ctxk='1095'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.575'/>
+</phase>
+<code_cache total_blobs='1481' nmethods='886' adapters='270' free_code_cache='246192128'/>
+<task_done success='1' nmsize='808' count='264' inlined_bytes='5' stamp='0.575'/>
+</task>
+<task compile_id='893' method='com.sun.hotspot.tools.compiler.Method getName ()Ljava/lang/String;' bytes='5' count='129' iicount='129' level='1' stamp='0.576'>
+<phase name='setup' stamp='0.576'>
+<phase_done name='setup' stamp='0.576'/>
+</phase>
+<phase name='buildIR' stamp='0.576'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='getName' return='983' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.576'>
+<phase name='parse_hir' stamp='0.576'>
+<phase_done name='parse_hir' stamp='0.576'/>
+</phase>
+<parse_done stamp='0.576'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.576'>
+<phase_done name='optimize_blocks' stamp='0.576'/>
+</phase>
+<phase name='gvn' stamp='0.576'>
+<phase_done name='gvn' stamp='0.576'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.576'>
+<phase_done name='rangeCheckElimination' stamp='0.576'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.576'>
+<phase_done name='optimize_null_checks' stamp='0.576'/>
+</phase>
+<phase_done name='buildIR' stamp='0.576'/>
+</phase>
+<phase name='emit_lir' stamp='0.576'>
+<phase name='lirGeneration' stamp='0.576'>
+<phase_done name='lirGeneration' stamp='0.577'/>
+</phase>
+<phase name='linearScan' stamp='0.577'>
+<phase_done name='linearScan' stamp='0.577'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.577'/>
+</phase>
+<phase name='codeemit' stamp='0.577'>
+<phase_done name='codeemit' stamp='0.577'/>
+</phase>
+<phase name='codeinstall' stamp='0.577'>
+<phase_done name='codeinstall' stamp='0.577'/>
+</phase>
+<code_cache total_blobs='1487' nmethods='890' adapters='270' free_code_cache='246175104'/>
+<task_done success='1' nmsize='272' count='131' stamp='0.577'/>
+</task>
+<task compile_id='898' method='java.util.Locale getDefault (Ljava/util/Locale$Category;)Ljava/util/Locale;' bytes='132' count='256' iicount='256' level='3' stamp='0.580'>
+<phase name='setup' stamp='0.580'>
+<phase_done name='setup' stamp='0.580'/>
+</phase>
+<phase name='buildIR' stamp='0.580'>
+<klass id='1093' name='java.util.Locale' flags='17'/>
+<klass id='1094' name='java.util.Locale$Category' flags='16409'/>
+<method id='1095' holder='1093' name='getDefault' return='1093' arguments='1094' flags='9' bytes='132' iicount='258'/>
+<parse method='1095'  stamp='0.580'>
+<phase name='parse_hir' stamp='0.580'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<klass id='1100' name='java.lang.Enum' flags='1025'/>
+<method id='1101' holder='1100' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.580'/>
+</parse>
+<bc code='184' bci='54'/>
+<method id='1104' holder='1093' name='initDefault' return='1093' arguments='1094' flags='10' bytes='65' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='92'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='128'/>
+<method id='1106' holder='1093' name='getDefault' return='1093' flags='9' bytes='4' iicount='35'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.580'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.580'/>
+</phase>
+<parse_done stamp='0.580'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.580'>
+<phase_done name='optimize_blocks' stamp='0.580'/>
+</phase>
+<phase name='gvn' stamp='0.580'>
+<phase_done name='gvn' stamp='0.580'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.580'>
+<phase_done name='rangeCheckElimination' stamp='0.580'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.580'>
+<phase_done name='optimize_null_checks' stamp='0.580'/>
+</phase>
+<phase_done name='buildIR' stamp='0.580'/>
+</phase>
+<phase name='emit_lir' stamp='0.580'>
+<phase name='lirGeneration' stamp='0.580'>
+<phase_done name='lirGeneration' stamp='0.580'/>
+</phase>
+<phase name='linearScan' stamp='0.580'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1497' nmethods='898' adapters='270' free_code_cache='246170112'/>
+<task_done success='1' nmsize='2264' count='262' inlined_bytes='9' stamp='0.581'/>
+</task>
+<task compile_id='904' method='java.util.Formatter$FixedString index ()I' bytes='3' count='131' iicount='131' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter$FixedString' flags='2'/>
+<method id='1094' holder='1093' name='index' return='975' flags='1' bytes='3' iicount='131'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1501' nmethods='902' adapters='270' free_code_cache='246164992'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.581'/>
+</task>
+<task compile_id='908' method='java.lang.Double doubleValue ()D' bytes='5' count='131' iicount='131' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='doubleValue' return='972' flags='1' bytes='5' iicount='131'/>
+<parse method='1093'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1504' nmethods='905' adapters='270' free_code_cache='246162560'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.581'/>
+</task>
+<task compile_id='911' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer isNegative ()Z' bytes='5' count='133' iicount='133' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer' flags='8'/>
+<method id='1094' holder='1093' name='isNegative' return='969' flags='1' bytes='5' iicount='134'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1508' nmethods='909' adapters='270' free_code_cache='246159360'/>
+<task_done success='1' nmsize='272' count='135' stamp='0.581'/>
+</task>
+<task compile_id='915' method='com.sun.hotspot.tools.compiler.CallSite getReceiver ()Ljava/lang/String;' bytes='5' count='136' iicount='136' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='getReceiver' return='983' flags='1' bytes='5' iicount='136'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.582'/>
+</phase>
+<parse_done stamp='0.582'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.582'>
+<phase_done name='optimize_blocks' stamp='0.582'/>
+</phase>
+<phase name='gvn' stamp='0.582'>
+<phase_done name='gvn' stamp='0.582'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.582'>
+<phase_done name='rangeCheckElimination' stamp='0.582'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.582'>
+<phase_done name='optimize_null_checks' stamp='0.582'/>
+</phase>
+<phase_done name='buildIR' stamp='0.582'/>
+</phase>
+<phase name='emit_lir' stamp='0.582'>
+<phase name='lirGeneration' stamp='0.582'>
+<phase_done name='lirGeneration' stamp='0.582'/>
+</phase>
+<phase name='linearScan' stamp='0.582'>
+<phase_done name='linearScan' stamp='0.582'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.582'/>
+</phase>
+<phase name='codeemit' stamp='0.582'>
+<phase_done name='codeemit' stamp='0.582'/>
+</phase>
+<phase name='codeinstall' stamp='0.582'>
+<phase_done name='codeinstall' stamp='0.582'/>
+</phase>
+<code_cache total_blobs='1512' nmethods='913' adapters='270' free_code_cache='246155904'/>
+<task_done success='1' nmsize='272' count='139' stamp='0.582'/>
+</task>
+<task compile_id='922' method='java.lang.System lineSeparator ()Ljava/lang/String;' bytes='4' count='257' iicount='257' level='3' stamp='0.586'>
+<phase name='setup' stamp='0.586'>
+<phase_done name='setup' stamp='0.586'/>
+</phase>
+<phase name='buildIR' stamp='0.586'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1093' holder='988' name='lineSeparator' return='983' flags='9' bytes='4' iicount='257'/>
+<parse method='1093'  stamp='0.586'>
+<phase name='parse_hir' stamp='0.586'>
+<phase_done name='parse_hir' stamp='0.586'/>
+</phase>
+<parse_done stamp='0.586'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.586'>
+<phase_done name='optimize_blocks' stamp='0.586'/>
+</phase>
+<phase name='gvn' stamp='0.586'>
+<phase_done name='gvn' stamp='0.586'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.586'>
+<phase_done name='rangeCheckElimination' stamp='0.586'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.586'>
+<phase_done name='optimize_null_checks' stamp='0.586'/>
+</phase>
+<phase_done name='buildIR' stamp='0.586'/>
+</phase>
+<phase name='emit_lir' stamp='0.586'>
+<phase name='lirGeneration' stamp='0.586'>
+<phase_done name='lirGeneration' stamp='0.586'/>
+</phase>
+<phase name='linearScan' stamp='0.586'>
+<phase_done name='linearScan' stamp='0.586'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.586'/>
+</phase>
+<phase name='codeemit' stamp='0.586'>
+<phase_done name='codeemit' stamp='0.586'/>
+</phase>
+<phase name='codeinstall' stamp='0.586'>
+<phase_done name='codeinstall' stamp='0.586'/>
+</phase>
+<code_cache total_blobs='1522' nmethods='919' adapters='270' free_code_cache='246145408'/>
+<task_done success='1' nmsize='336' count='259' stamp='0.586'/>
+</task>
+<task compile_id='927' method='java.lang.Integer parseInt (Ljava/lang/CharSequence;III)I' bytes='302' count='385' backedge_count='385' iicount='385' level='3' stamp='0.586'>
+<phase name='setup' stamp='0.587'>
+<phase_done name='setup' stamp='0.587'/>
+</phase>
+<phase name='buildIR' stamp='0.587'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1094' holder='1076' name='parseInt' return='975' arguments='1093 975 975 975' flags='9' bytes='302' iicount='385'/>
+<parse method='1094'  stamp='0.587'>
+<phase name='parse_hir' stamp='0.587'>
+<bc code='184' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1096' name='java.util.Objects' flags='17'/>
+<method id='1097' holder='1096' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='372' compiler='c2' level='4' iicount='6424'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1099' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='185' bci='19'/>
+<method id='1101' holder='1093' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='183' bci='48'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1103' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='4044'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1105' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='4491'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='53'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1108' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6227'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<method id='1110' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='57'/>
+<method id='1112' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='774'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<method id='1114' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='774'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='62'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='65'/>
+<method id='1117' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='4306'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1119' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='11542'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1122' name='java.lang.StringLatin1' flags='16'/>
+<method id='1123' holder='1122' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='7156'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='9'/>
+<klass id='1125' name='java.util.Arrays' flags='1'/>
+<method id='1126' holder='1125' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1128' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='9123'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='1'/>
+<method id='1130' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='51888'/>
+<call method='1130' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.587'/>
+</parse>
+<parse_done stamp='0.587'/>
+</parse>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1132' name='java.lang.StringUTF16' flags='16'/>
+<method id='1133' holder='1132' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='183' bci='68'/>
+<klass id='1102' name='java.lang.NumberFormatException' flags='1'/>
+<method id='1135' holder='1102' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1135' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='86'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='3'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='91'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='95'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='100'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='182' bci='103'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='1'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.587'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='184' bci='9'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1128' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='1'/>
+<call method='1130' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.587'/>
+</parse>
+<parse_done stamp='0.588'/>
+</parse>
+<parse_done stamp='0.588'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1133' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.588'/>
+</parse>
+<bc code='183' bci='106'/>
+<call method='1135' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='129'/>
+<type id='970' name='char'/>
+<method id='1137' holder='1093' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1137' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='172'/>
+<method id='1138' holder='1102' name='forCharSequence' return='1102' arguments='1093 975 975 975' unloaded='1'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='190'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='212'/>
+<call method='1137' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='218'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1139' holder='1070' name='digit' return='975' arguments='970 975' flags='9' bytes='6' compile_id='557' compiler='c1' level='3' iicount='11625'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='184' bci='2'/>
+<method id='1141' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' compile_id='558' compiler='c1' level='3' iicount='11625'/>
+<call method='1141' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='184' bci='1'/>
+<klass id='1144' name='java.lang.CharacterData' flags='1024'/>
+<method id='1145' holder='1144' name='of' return='1144' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1145' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='6'/>
+<method id='1147' holder='1144' name='digit' return='975' arguments='975 975' flags='1024' bytes='0' iicount='1'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.588'/>
+</parse>
+<parse_done stamp='0.588'/>
+</parse>
+<bc code='184' bci='265'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='240'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='298'/>
+<method id='1149' holder='1102' name='forInputString' return='1102' arguments='983' unloaded='1'/>
+<call method='1149' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='31'/>
+<klass id='1150' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1151' holder='1150' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1151' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.588'/>
+</phase>
+<parse_done stamp='0.588'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.588'>
+<phase_done name='optimize_blocks' stamp='0.588'/>
+</phase>
+<phase name='gvn' stamp='0.588'>
+<phase_done name='gvn' stamp='0.588'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.588'>
+<phase_done name='rangeCheckElimination' stamp='0.588'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.588'>
+<phase_done name='optimize_null_checks' stamp='0.588'/>
+</phase>
+<phase_done name='buildIR' stamp='0.588'/>
+</phase>
+<phase name='emit_lir' stamp='0.588'>
+<phase name='lirGeneration' stamp='0.588'>
+<phase_done name='lirGeneration' stamp='0.588'/>
+</phase>
+<phase name='linearScan' stamp='0.588'>
+<phase_done name='linearScan' stamp='0.589'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.589'/>
+</phase>
+<phase name='codeemit' stamp='0.589'>
+<phase_done name='codeemit' stamp='0.589'/>
+</phase>
+<phase name='codeinstall' stamp='0.589'>
+<phase_done name='codeinstall' stamp='0.589'/>
+</phase>
+<code_cache total_blobs='1531' nmethods='927' adapters='270' free_code_cache='246115712'/>
+<task_done success='1' nmsize='8600' count='439' backedge_count='439' inlined_bytes='266' stamp='0.589'/>
+</task>
+<task compile_id='935' method='java.lang.CharacterDataLatin1 getType (I)I' bytes='11' count='256' iicount='256' level='3' stamp='0.591'>
+<phase name='setup' stamp='0.591'>
+<phase_done name='setup' stamp='0.591'/>
+</phase>
+<phase name='buildIR' stamp='0.591'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='getType' return='975' arguments='975' flags='0' bytes='11' iicount='256'/>
+<parse method='1094'  stamp='0.591'>
+<phase name='parse_hir' stamp='0.591'>
+<bc code='182' bci='2'/>
+<method id='1096' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='555' compiler='c1' level='1' iicount='10366'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.592'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.592'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.592'/>
+</phase>
+<code_cache total_blobs='1542' nmethods='933' adapters='270' free_code_cache='246076160'/>
+<task_done success='1' nmsize='496' count='259' inlined_bytes='11' stamp='0.592'/>
+</task>
+<task compile_id='940' method='java.util.Formatter$FixedString &lt;init&gt; (Ljava/util/Formatter;Ljava/lang/String;II)V' bytes='26' count='256' iicount='256' level='3' stamp='0.592'>
+<phase name='setup' stamp='0.592'>
+<phase_done name='setup' stamp='0.592'/>
+</phase>
+<phase name='buildIR' stamp='0.592'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Formatter' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Formatter$FixedString' flags='2'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 975 975' flags='0' bytes='26' iicount='256'/>
+<parse method='1095'  stamp='0.592'>
+<phase name='parse_hir' stamp='0.592'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='53377'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.592'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.592'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.593'/>
+</phase>
+<code_cache total_blobs='1548' nmethods='939' adapters='270' free_code_cache='246079744'/>
+<task_done success='1' nmsize='656' count='259' inlined_bytes='1' stamp='0.593'/>
+</task>
+<task compile_id='944' method='java.util.Formatter$Flags parse (Ljava/lang/String;II)Ljava/util/Formatter$Flags;' bytes='70' count='259' iicount='259' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<klass id='1093' name='java.util.Formatter$Flags' flags='10'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='parse' return='1093' arguments='983 975 975' flags='9' bytes='70' iicount='259'/>
+<parse method='1094'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='975' flags='2' bytes='10' compile_id='931' compiler='c1' level='3' iicount='270'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='53509'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='21'/>
+<type id='970' name='char'/>
+<method id='1100' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='95036'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1102' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='117216'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1105' name='java.lang.StringLatin1' flags='16'/>
+<method id='1106' holder='1105' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='93710'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='15'/>
+<klass id='1108' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1109' holder='1108' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1110' name='java.lang.StringUTF16' flags='16'/>
+<method id='1111' holder='1110' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='184' bci='2'/>
+<method id='1113' holder='1110' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1113' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='184' bci='2'/>
+<method id='1115' holder='1110' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1117' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' compile_id='833' compiler='c1' level='3' iicount='2390'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1119' holder='1110' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1119' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='28'/>
+<method id='1120' holder='1093' name='parse' return='1093' arguments='970' flags='10' bytes='176' iicount='1'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='36'/>
+<method id='1122' holder='1093' name='contains' return='969' arguments='1093' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='2376'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1122'>
+<bc code='182' bci='5'/>
+<method id='1124' holder='1093' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1124'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1124'>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='48'/>
+<method id='1127' holder='1093' name='toString' return='983' flags='1' bytes='166' iicount='1'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='51'/>
+<klass id='1126' name='java.util.DuplicateFormatFlagsException' unloaded='1'/>
+<method id='1129' holder='1126' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1129' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='58'/>
+<method id='1130' holder='1093' name='add' return='1093' arguments='1093' flags='2' bytes='15' iicount='1'/>
+<call method='1130' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='182' bci='6'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1124'>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.593'/>
+</phase>
+<parse_done stamp='0.593'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.593'>
+<phase_done name='optimize_blocks' stamp='0.593'/>
+</phase>
+<phase name='gvn' stamp='0.593'>
+<phase_done name='gvn' stamp='0.593'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.593'>
+<phase_done name='rangeCheckElimination' stamp='0.593'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.593'>
+<phase_done name='optimize_null_checks' stamp='0.593'/>
+</phase>
+<phase_done name='buildIR' stamp='0.593'/>
+</phase>
+<phase name='emit_lir' stamp='0.593'>
+<phase name='lirGeneration' stamp='0.593'>
+<phase_done name='lirGeneration' stamp='0.593'/>
+</phase>
+<phase name='linearScan' stamp='0.593'>
+<phase_done name='linearScan' stamp='0.594'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.594'/>
+</phase>
+<phase name='codeemit' stamp='0.594'>
+<phase_done name='codeemit' stamp='0.594'/>
+</phase>
+<phase name='codeinstall' stamp='0.594'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.594'/>
+</phase>
+<code_cache total_blobs='1556' nmethods='945' adapters='270' free_code_cache='246068096'/>
+<task_done success='1' nmsize='2824' count='273' inlined_bytes='160' stamp='0.594'/>
+</task>
+<task compile_id='947' method='java.lang.Double valueOf (D)Ljava/lang/Double;' bytes='9' count='267' iicount='267' level='3' stamp='0.594'>
+<phase name='setup' stamp='0.594'>
+<phase_done name='setup' stamp='0.594'/>
+</phase>
+<phase name='buildIR' stamp='0.594'>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<type id='972' name='double'/>
+<method id='1093' holder='1073' name='valueOf' return='1073' arguments='972' flags='9' bytes='9' iicount='267'/>
+<parse method='1093'  stamp='0.594'>
+<phase name='parse_hir' stamp='0.594'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1095' holder='1073' name='&lt;init&gt;' return='977' arguments='972' flags='1' bytes='10' iicount='268'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1097' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1436'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='53931'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.594'/>
+</parse>
+<parse_done stamp='0.594'/>
+</parse>
+<parse_done stamp='0.594'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.594'/>
+</phase>
+<parse_done stamp='0.594'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.594'>
+<phase_done name='optimize_blocks' stamp='0.594'/>
+</phase>
+<phase name='gvn' stamp='0.594'>
+<phase_done name='gvn' stamp='0.594'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.594'>
+<phase_done name='rangeCheckElimination' stamp='0.594'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.594'>
+<phase_done name='optimize_null_checks' stamp='0.594'/>
+</phase>
+<phase_done name='buildIR' stamp='0.594'/>
+</phase>
+<phase name='emit_lir' stamp='0.594'>
+<phase name='lirGeneration' stamp='0.594'>
+<phase_done name='lirGeneration' stamp='0.594'/>
+</phase>
+<phase name='linearScan' stamp='0.594'>
+<phase_done name='linearScan' stamp='0.594'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.594'/>
+</phase>
+<phase name='codeemit' stamp='0.594'>
+<phase_done name='codeemit' stamp='0.594'/>
+</phase>
+<phase name='codeinstall' stamp='0.594'>
+<phase_done name='codeinstall' stamp='0.594'/>
+</phase>
+<code_cache total_blobs='1557' nmethods='946' adapters='270' free_code_cache='246066688'/>
+<task_done success='1' nmsize='688' count='272' inlined_bytes='16' stamp='0.594'/>
+</task>
+<task compile_id='948' method='java.lang.Double &lt;init&gt; (D)V' bytes='10' count='272' iicount='272' level='3' stamp='0.595'>
+<phase name='setup' stamp='0.595'>
+<phase_done name='setup' stamp='0.595'/>
+</phase>
+<phase name='buildIR' stamp='0.595'>
+<type id='977' name='void'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='&lt;init&gt;' return='977' arguments='972' flags='1' bytes='10' iicount='272'/>
+<parse method='1093'  stamp='0.595'>
+<phase name='parse_hir' stamp='0.595'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1095' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1441'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='54118'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.595'/>
+</parse>
+<parse_done stamp='0.595'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.595'/>
+</phase>
+<parse_done stamp='0.595'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.595'>
+<phase_done name='optimize_blocks' stamp='0.595'/>
+</phase>
+<phase name='gvn' stamp='0.595'>
+<phase_done name='gvn' stamp='0.595'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.595'>
+<phase_done name='rangeCheckElimination' stamp='0.595'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.595'>
+<phase_done name='optimize_null_checks' stamp='0.595'/>
+</phase>
+<phase_done name='buildIR' stamp='0.595'/>
+</phase>
+<phase name='emit_lir' stamp='0.595'>
+<phase name='lirGeneration' stamp='0.595'>
+<phase_done name='lirGeneration' stamp='0.595'/>
+</phase>
+<phase name='linearScan' stamp='0.595'>
+<phase_done name='linearScan' stamp='0.595'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.595'/>
+</phase>
+<phase name='codeemit' stamp='0.595'>
+<phase_done name='codeemit' stamp='0.595'/>
+</phase>
+<phase name='codeinstall' stamp='0.595'>
+<phase_done name='codeinstall' stamp='0.595'/>
+</phase>
+<code_cache total_blobs='1559' nmethods='948' adapters='270' free_code_cache='246063872'/>
+<task_done success='1' nmsize='528' count='277' inlined_bytes='6' stamp='0.595'/>
+</task>
+<task compile_id='955' method='com.sun.hotspot.tools.compiler.Compilation isOsr ()Z' bytes='5' count='129' iicount='129' level='1' stamp='0.596'>
+<phase name='setup' stamp='0.596'>
+<phase_done name='setup' stamp='0.596'/>
+</phase>
+<phase name='buildIR' stamp='0.596'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1094' holder='1093' name='isOsr' return='969' flags='1' bytes='5' iicount='130'/>
+<parse method='1094'  stamp='0.596'>
+<phase name='parse_hir' stamp='0.596'>
+<phase_done name='parse_hir' stamp='0.596'/>
+</phase>
+<parse_done stamp='0.596'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.596'>
+<phase_done name='optimize_blocks' stamp='0.596'/>
+</phase>
+<phase name='gvn' stamp='0.596'>
+<phase_done name='gvn' stamp='0.596'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.596'>
+<phase_done name='rangeCheckElimination' stamp='0.596'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.596'>
+<phase_done name='optimize_null_checks' stamp='0.597'/>
+</phase>
+<phase_done name='buildIR' stamp='0.597'/>
+</phase>
+<phase name='emit_lir' stamp='0.597'>
+<phase name='lirGeneration' stamp='0.597'>
+<phase_done name='lirGeneration' stamp='0.597'/>
+</phase>
+<phase name='linearScan' stamp='0.597'>
+<phase_done name='linearScan' stamp='0.597'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.597'/>
+</phase>
+<phase name='codeemit' stamp='0.597'>
+<phase_done name='codeemit' stamp='0.597'/>
+</phase>
+<phase name='codeinstall' stamp='0.597'>
+<phase_done name='codeinstall' stamp='0.597'/>
+</phase>
+<code_cache total_blobs='1565' nmethods='952' adapters='270' free_code_cache='246049408'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.597'/>
+</task>
+<task compile_id='959' method='java.util.Formatter$FormatSpecifier localizedMagnitude (Ljava/lang/StringBuilder;Ljava/lang/CharSequence;ILjava/util/Formatter$Flags;ILjava/util/Locale;)Ljava/lang/StringBuilder;' bytes='335' count='294' backedge_count='2052' iicount='294' level='3' stamp='0.597'>
+<phase name='setup' stamp='0.597'>
+<phase_done name='setup' stamp='0.597'/>
+</phase>
+<phase name='buildIR' stamp='0.597'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.util.Formatter$Flags' flags='10'/>
+<klass id='1096' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1097' holder='1093' name='localizedMagnitude' return='1050' arguments='1050 1094 975 1095 975 1096' flags='2' bytes='335' iicount='296'/>
+<parse method='1097'  stamp='0.597'>
+<phase name='parse_hir' stamp='0.597'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<method id='1099' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='4563'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1101' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='5013'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='13'/>
+<method id='1103' holder='1050' name='length' return='975' flags='4161' bytes='5' compile_id='875' compiler='c1' level='3' iicount='1192'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<method id='1105' holder='1048' name='length' return='975' flags='1' bytes='5' compile_id='849' compiler='c1' level='1' iicount='140'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='183' bci='21'/>
+<type id='970' name='char'/>
+<method id='1107' holder='1093' name='getZero' return='970' arguments='1096' flags='2' bytes='36' iicount='298'/>
+<call method='1107' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='36'/>
+<method id='1109' holder='1094' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1109' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='60'/>
+<method id='1110' holder='1094' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='100'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1113' holder='1096' name='equals' return='969' arguments='982' flags='1' bytes='75' compile_id='930' compiler='c1' level='3' iicount='595'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='115'/>
+<klass id='1115' name='java.text.DecimalFormatSymbols' unloaded='1'/>
+<method id='1116' holder='1115' name='getInstance' return='1115' arguments='1096' unloaded='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='122'/>
+<method id='1117' holder='1115' name='getDecimalSeparator' return='970' unloaded='1'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='132'/>
+<method id='1120' holder='1095' name='contains' return='969' arguments='1095' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='2757'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<parse method='1120'>
+<bc code='182' bci='5'/>
+<method id='1122' holder='1095' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<parse method='1122'>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<parse method='1122'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='148'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='166'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='173'/>
+<method id='1124' holder='1115' name='getGroupingSeparator' return='970' unloaded='1'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='180'/>
+<klass id='1125' name='java.text.NumberFormat' unloaded='1'/>
+<method id='1126' holder='1125' name='getIntegerInstance' return='1125' arguments='1096' unloaded='1'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='190'/>
+<klass id='1127' name='java.text.DecimalFormat' unloaded='1'/>
+<method id='1128' holder='1127' name='getGroupingSize' return='975' unloaded='1'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='215'/>
+<method id='1129' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='5010'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='2'/>
+<method id='1131' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='5010'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='185' bci='228'/>
+<call method='1110' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='245'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='2'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='278'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='2'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='299'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<parse method='1120'>
+<bc code='182' bci='5'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<parse method='1122'>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<parse method='1122'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='306'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.597'/>
+</parse>
+<parse_done stamp='0.597'/>
+</parse>
+<bc code='182' bci='323'/>
+<method id='1134' holder='1050' name='insert' return='1050' arguments='975 970' flags='1' bytes='9' iicount='1'/>
+<call method='1134' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='183' bci='3'/>
+<method id='1136' holder='1048' name='insert' return='1048' arguments='975 970' flags='1' bytes='81' iicount='1'/>
+<call method='1136' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.598'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.598'/>
+</phase>
+<parse_done stamp='0.598'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.598'>
+<phase_done name='optimize_blocks' stamp='0.598'/>
+</phase>
+<phase name='gvn' stamp='0.598'>
+<phase_done name='gvn' stamp='0.598'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.598'>
+<phase_done name='rangeCheckElimination' stamp='0.598'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.598'>
+<phase_done name='optimize_null_checks' stamp='0.598'/>
+</phase>
+<phase_done name='buildIR' stamp='0.598'/>
+</phase>
+<phase name='emit_lir' stamp='0.598'>
+<phase name='lirGeneration' stamp='0.598'>
+<phase_done name='lirGeneration' stamp='0.598'/>
+</phase>
+<phase name='linearScan' stamp='0.598'>
+<phase_done name='linearScan' stamp='0.598'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.598'/>
+</phase>
+<phase name='codeemit' stamp='0.598'>
+<phase_done name='codeemit' stamp='0.599'/>
+</phase>
+<phase name='codeinstall' stamp='0.599'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1095'/>
+<phase_done name='codeinstall' stamp='0.599'/>
+</phase>
+<code_cache total_blobs='1572' nmethods='957' adapters='270' free_code_cache='246036480'/>
+<task_done success='1' nmsize='6152' count='319' backedge_count='2227' inlined_bytes='124' stamp='0.599'/>
+</task>
+<task compile_id='963' method='java.util.Formatter$Conversion isValid (C)Z' bytes='47' count='384' iicount='384' level='3' stamp='0.603'>
+<phase name='setup' stamp='0.603'>
+<phase_done name='setup' stamp='0.603'/>
+</phase>
+<phase name='buildIR' stamp='0.603'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1094' holder='1093' name='isValid' return='969' arguments='970' flags='8' bytes='47' iicount='384'/>
+<parse method='1094'  stamp='0.603'>
+<phase name='parse_hir' stamp='0.603'>
+<bc code='184' bci='1'/>
+<method id='1096' holder='1093' name='isGeneral' return='969' arguments='970' flags='8' bytes='64' compile_id='903' compiler='c1' level='3' iicount='767'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='8'/>
+<method id='1098' holder='1093' name='isInteger' return='969' arguments='970' flags='8' bytes='48' compile_id='928' compiler='c1' level='3' iicount='753'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<method id='1100' holder='1093' name='isFloat' return='969' arguments='970' flags='8' bytes='72' compile_id='929' compiler='c1' level='3' iicount='745'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='22'/>
+<method id='1102' holder='1093' name='isText' return='969' arguments='970' flags='8' bytes='32' iicount='383'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.603'/>
+</parse>
+<bc code='184' bci='35'/>
+<method id='1104' holder='1093' name='isCharacter' return='969' arguments='970' flags='8' bytes='32' iicount='376'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.603'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.603'/>
+</phase>
+<parse_done stamp='0.603'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.603'>
+<phase_done name='optimize_blocks' stamp='0.603'/>
+</phase>
+<phase name='gvn' stamp='0.603'>
+<phase_done name='gvn' stamp='0.603'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.603'>
+<phase_done name='rangeCheckElimination' stamp='0.603'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.603'>
+<phase_done name='optimize_null_checks' stamp='0.603'/>
+</phase>
+<phase_done name='buildIR' stamp='0.603'/>
+</phase>
+<phase name='emit_lir' stamp='0.603'>
+<phase name='lirGeneration' stamp='0.603'>
+<phase_done name='lirGeneration' stamp='0.603'/>
+</phase>
+<phase name='linearScan' stamp='0.603'>
+<phase_done name='linearScan' stamp='0.603'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.603'/>
+</phase>
+<phase name='codeemit' stamp='0.603'>
+<phase_done name='codeemit' stamp='0.604'/>
+</phase>
+<phase name='codeinstall' stamp='0.604'>
+<phase_done name='codeinstall' stamp='0.604'/>
+</phase>
+<code_cache total_blobs='1580' nmethods='961' adapters='270' free_code_cache='246028928'/>
+<task_done success='1' nmsize='1096' count='388' inlined_bytes='64' stamp='0.604'/>
+</task>
+<task compile_id='975' method='java.util.Formatter parse (Ljava/lang/String;)Ljava/util/List;' bytes='137' count='387' backedge_count='388' iicount='387' level='3' stamp='0.604'>
+<phase name='setup' stamp='0.604'>
+<phase_done name='setup' stamp='0.604'/>
+</phase>
+<phase name='buildIR' stamp='0.604'>
+<klass id='1094' name='java.util.List' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.util.Formatter' flags='17'/>
+<method id='1095' holder='1093' name='parse' return='1094' arguments='983' flags='2' bytes='137' iicount='387'/>
+<parse method='1095'  stamp='0.604'>
+<phase name='parse_hir' stamp='0.604'>
+<bc code='183' bci='4'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.ArrayList' flags='1'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' flags='1' bytes='12' compile_id='687' compiler='c1' level='3' iicount='1314'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='1100' name='java.util.AbstractList' flags='1025'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='2063'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='1103' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='3400'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1106' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='57274'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.604'/>
+</parse>
+<parse_done stamp='0.604'/>
+</parse>
+<parse_done stamp='0.604'/>
+</parse>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='182' bci='12'/>
+<klass id='1114' name='java.util.regex.Matcher' flags='17'/>
+<klass id='1113' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1111' name='java.util.regex.Pattern' flags='17'/>
+<method id='1115' holder='1111' name='matcher' return='1114' arguments='1113' flags='1' bytes='44' compile_id='735' compiler='c1' level='3' iicount='931'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='20'/>
+<type id='975' name='int'/>
+<method id='1117' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='47559'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1119' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='73056'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.604'/>
+</parse>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='182' bci='35'/>
+<type id='969' name='boolean'/>
+<method id='1122' holder='1114' name='find' return='969' arguments='975' flags='1' bytes='35' compile_id='936' compiler='c1' level='3' iicount='401'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='182' bci='1'/>
+<method id='1124' holder='1114' name='getTextLength' return='975' flags='0' bytes='10' compile_id='855' compiler='c1' level='3' iicount='1320'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='185' bci='4'/>
+<method id='1126' holder='1113' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1126' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='182' bci='25'/>
+<method id='1127' holder='1114' name='reset' return='1114' flags='1' bytes='128' compile_id='917' compiler='c2' level='4' iicount='919'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='31'/>
+<method id='1129' holder='1114' name='search' return='969' arguments='975' flags='0' bytes='154' compile_id='847' compiler='c2' level='4' iicount='1199'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='20'/>
+<klass id='1132' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1134' holder='1132' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1134' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='182' bci='42'/>
+<method id='1135' holder='1114' name='start' return='975' flags='1' bytes='22' compile_id='691' compiler='c1' level='3' iicount='2271'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='13'/>
+<klass id='1137' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1139' holder='1137' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='182' bci='54'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='13'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='184' bci='57'/>
+<method id='1140' holder='1093' name='checkText' return='977' arguments='983 975 975' flags='10' bytes='58' compile_id='921' compiler='c1' level='3' iicount='396'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='70'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='13'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='183' bci='73'/>
+<klass id='1142' name='java.util.Formatter$FixedString' flags='2'/>
+<method id='1143' holder='1142' name='&lt;init&gt;' return='977' arguments='1093 983 975 975' flags='0' bytes='26' compile_id='940' compiler='c1' level='3' iicount='397'/>
+<call method='1143' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='183' bci='6'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='182' bci='76'/>
+<method id='1145' holder='1097' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='954' compiler='c2' level='4' iicount='5510'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1145'>
+<bc code='183' bci='20'/>
+<klass id='1108' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1147' holder='1097' name='add' return='977' arguments='982 1108 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='5510'/>
+<call method='1147' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='7'/>
+<method id='1151' holder='1097' name='grow' return='1108' flags='2' bytes='11' iicount='1703'/>
+<call method='1151' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='183' bci='7'/>
+<method id='1153' holder='1097' name='grow' return='1108' arguments='975' flags='2' bytes='18' iicount='1703'/>
+<call method='1153' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='183' bci='7'/>
+<method id='1155' holder='1097' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' compile_id='668' compiler='c1' level='3' iicount='1703'/>
+<call method='1155' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1157' name='java.util.Arrays' flags='1'/>
+<method id='1158' holder='1157' name='copyOf' return='1108' arguments='1108 975' flags='9' bytes='10' iicount='1965'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1161' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1163' holder='1157' name='copyOf' return='1108' arguments='1108 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='2705'/>
+<call method='1163' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='183' bci='88'/>
+<klass id='1166' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1167' holder='1166' name='&lt;init&gt;' return='977' arguments='1093 983 1114' flags='0' bytes='259' compile_id='941' compiler='c1' level='3' iicount='401'/>
+<call method='1167' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='91'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1145'>
+<bc code='183' bci='20'/>
+<call method='1147' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='7'/>
+<call method='1151' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='183' bci='7'/>
+<call method='1153' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='183' bci='7'/>
+<call method='1155' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='3'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1163' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='96'/>
+<method id='1169' holder='1114' name='end' return='975' flags='1' bytes='22' compile_id='723' compiler='c1' level='3' iicount='1128'/>
+<call method='1169' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1169'>
+<bc code='183' bci='13'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='184' bci='109'/>
+<call method='1140' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='122'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='6'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='183' bci='125'/>
+<call method='1143' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='183' bci='6'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='128'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1145'>
+<bc code='183' bci='20'/>
+<call method='1147' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='183' bci='7'/>
+<call method='1151' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='183' bci='7'/>
+<call method='1153' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='183' bci='7'/>
+<call method='1155' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='182' bci='3'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1163' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.606'/>
+</phase>
+<parse_done stamp='0.606'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.606'>
+<phase_done name='optimize_blocks' stamp='0.606'/>
+</phase>
+<phase name='gvn' stamp='0.606'>
+<phase_done name='gvn' stamp='0.606'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.606'>
+<phase_done name='rangeCheckElimination' stamp='0.606'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.606'>
+<phase_done name='optimize_null_checks' stamp='0.606'/>
+</phase>
+<phase_done name='buildIR' stamp='0.606'/>
+</phase>
+<phase name='emit_lir' stamp='0.606'>
+<phase name='lirGeneration' stamp='0.606'>
+<phase_done name='lirGeneration' stamp='0.607'/>
+</phase>
+<phase name='linearScan' stamp='0.607'>
+<phase_done name='linearScan' stamp='0.607'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.607'/>
+</phase>
+<phase name='codeemit' stamp='0.607'>
+<phase_done name='codeemit' stamp='0.608'/>
+</phase>
+<phase name='codeinstall' stamp='0.608'>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='codeinstall' stamp='0.608'/>
+</phase>
+<code_cache total_blobs='1598' nmethods='977' adapters='270' free_code_cache='245938048'/>
+<task_done success='1' nmsize='11192' count='430' backedge_count='434' inlined_bytes='528' stamp='0.608'/>
+</task>
+<task compile_id='991' method='java.util.Formatter$Conversion isText (C)Z' bytes='32' count='434' iicount='434' level='3' stamp='0.608'>
+<phase name='setup' stamp='0.608'>
+<phase_done name='setup' stamp='0.608'/>
+</phase>
+<phase name='buildIR' stamp='0.608'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1094' holder='1093' name='isText' return='969' arguments='970' flags='8' bytes='32' iicount='434'/>
+<parse method='1094'  stamp='0.608'>
+<phase name='parse_hir' stamp='0.608'>
+<phase_done name='parse_hir' stamp='0.608'/>
+</phase>
+<parse_done stamp='0.608'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.608'>
+<phase_done name='optimize_blocks' stamp='0.608'/>
+</phase>
+<phase name='gvn' stamp='0.608'>
+<phase_done name='gvn' stamp='0.608'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.608'>
+<phase_done name='rangeCheckElimination' stamp='0.608'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.608'>
+<phase_done name='optimize_null_checks' stamp='0.608'/>
+</phase>
+<phase_done name='buildIR' stamp='0.608'/>
+</phase>
+<phase name='emit_lir' stamp='0.608'>
+<phase name='lirGeneration' stamp='0.608'>
+<phase_done name='lirGeneration' stamp='0.608'/>
+</phase>
+<phase name='linearScan' stamp='0.608'>
+<phase_done name='linearScan' stamp='0.608'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.608'/>
+</phase>
+<phase name='codeemit' stamp='0.608'>
+<phase_done name='codeemit' stamp='0.608'/>
+</phase>
+<phase name='codeinstall' stamp='0.608'>
+<phase_done name='codeinstall' stamp='0.608'/>
+</phase>
+<code_cache total_blobs='1599' nmethods='978' adapters='270' free_code_cache='245937152'/>
+<task_done success='1' nmsize='336' count='437' stamp='0.608'/>
+</task>
+<task compile_id='994' method='com.sun.hotspot.tools.compiler.CallSite getIntrinsicOrEmptyString ()Ljava/lang/String;' bytes='38' count='421' iicount='421' level='3' stamp='0.608'>
+<phase name='setup' stamp='0.608'>
+<phase_done name='setup' stamp='0.608'/>
+</phase>
+<phase name='buildIR' stamp='0.608'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='getIntrinsicOrEmptyString' return='983' flags='1' bytes='38' iicount='421'/>
+<parse method='1094'  stamp='0.608'>
+<phase name='parse_hir' stamp='0.608'>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1096' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='5205'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1098' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='961' compiler='c2' level='4' iicount='5250'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='16'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6507'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1105' holder='1093' name='getIntrinsicName' return='983' flags='1' bytes='5' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1105'>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='23'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='28'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='31'/>
+<method id='1108' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='5237'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1110' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='16730'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1113' name='java.lang.StringLatin1' flags='16'/>
+<method id='1114' holder='1113' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='8329'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='184' bci='9'/>
+<klass id='1116' name='java.util.Arrays' flags='1'/>
+<method id='1117' holder='1116' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1119' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='11138'/>
+<call method='1119' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1121' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='58509'/>
+<call method='1121' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<parse_done stamp='0.609'/>
+</parse>
+<parse_done stamp='0.609'/>
+</parse>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1123' name='java.lang.StringUTF16' flags='16'/>
+<method id='1124' holder='1123' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1124' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.609'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.609'/>
+</phase>
+<parse_done stamp='0.609'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.609'>
+<phase_done name='optimize_blocks' stamp='0.609'/>
+</phase>
+<phase name='gvn' stamp='0.609'>
+<phase_done name='gvn' stamp='0.609'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.609'>
+<phase_done name='rangeCheckElimination' stamp='0.609'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.609'>
+<phase_done name='optimize_null_checks' stamp='0.609'/>
+</phase>
+<phase_done name='buildIR' stamp='0.609'/>
+</phase>
+<phase name='emit_lir' stamp='0.609'>
+<phase name='lirGeneration' stamp='0.609'>
+<phase_done name='lirGeneration' stamp='0.609'/>
+</phase>
+<phase name='linearScan' stamp='0.609'>
+<phase_done name='linearScan' stamp='0.609'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.609'/>
+</phase>
+<phase name='codeemit' stamp='0.609'>
+<phase_done name='codeemit' stamp='0.609'/>
+</phase>
+<phase name='codeinstall' stamp='0.609'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.609'/>
+</phase>
+<code_cache total_blobs='1603' nmethods='982' adapters='270' free_code_cache='245920000'/>
+<task_done success='1' nmsize='2840' count='436' inlined_bytes='123' stamp='0.609'/>
+</task>
+<task compile_id='983' method='java.lang.Double compare (DD)I' bytes='54' count='436' iicount='436' level='3' stamp='0.609'>
+<phase name='setup' stamp='0.609'>
+<phase_done name='setup' stamp='0.609'/>
+</phase>
+<phase name='buildIR' stamp='0.609'>
+<type id='975' name='int'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='compare' return='975' arguments='972 972' flags='9' bytes='54' iicount='436'/>
+<parse method='1093'  stamp='0.609'>
+<phase name='parse_hir' stamp='0.609'>
+<bc code='184' bci='17'/>
+<type id='976' name='long'/>
+<method id='1095' holder='1073' name='doubleToLongBits' return='976' arguments='972' flags='9' bytes='16' compile_id='952' compiler='c1' level='3' iicount='420'/>
+<call method='1095' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1073' name='isNaN' return='969' arguments='972' flags='9' bytes='12' compile_id='916' compiler='c1' level='3' iicount='857'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='8'/>
+<method id='1099' holder='1073' name='doubleToRawLongBits' return='976' arguments='972' flags='265' bytes='0' iicount='929'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='23'/>
+<call method='1095' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='184' bci='1'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='8'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.609'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.609'/>
+</phase>
+<parse_done stamp='0.609'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.609'>
+<phase_done name='optimize_blocks' stamp='0.609'/>
+</phase>
+<phase name='gvn' stamp='0.609'>
+<phase_done name='gvn' stamp='0.609'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.609'>
+<phase_done name='rangeCheckElimination' stamp='0.609'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.609'>
+<phase_done name='optimize_null_checks' stamp='0.609'/>
+</phase>
+<phase_done name='buildIR' stamp='0.609'/>
+</phase>
+<phase name='emit_lir' stamp='0.609'>
+<phase name='lirGeneration' stamp='0.609'>
+<phase_done name='lirGeneration' stamp='0.609'/>
+</phase>
+<phase name='linearScan' stamp='0.609'>
+<phase_done name='linearScan' stamp='0.609'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.609'/>
+</phase>
+<phase name='codeemit' stamp='0.609'>
+<phase_done name='codeemit' stamp='0.609'/>
+</phase>
+<phase name='codeinstall' stamp='0.609'>
+<phase_done name='codeinstall' stamp='0.609'/>
+</phase>
+<code_cache total_blobs='1607' nmethods='984' adapters='270' free_code_cache='245916544'/>
+<task_done success='1' nmsize='1584' count='444' inlined_bytes='56' stamp='0.609'/>
+</task>
+<task compile_id='996' method='java.util.Formatter$FormatSpecifier getZero (Ljava/util/Locale;)C' bytes='36' count='452' iicount='452' level='3' stamp='0.610'>
+<phase name='setup' stamp='0.610'>
+<phase_done name='setup' stamp='0.610'/>
+</phase>
+<phase name='buildIR' stamp='0.610'>
+<type id='970' name='char'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1095' holder='1093' name='getZero' return='970' arguments='1094' flags='2' bytes='36' iicount='452'/>
+<parse method='1095'  stamp='0.610'>
+<phase name='parse_hir' stamp='0.610'>
+<bc code='182' bci='9'/>
+<klass id='1097' name='java.util.Formatter' flags='17'/>
+<method id='1098' holder='1097' name='locale' return='1094' flags='1' bytes='9' compile_id='926' compiler='c1' level='3' iicount='907'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<type id='977' name='void'/>
+<method id='1100' holder='1097' name='ensureOpen' return='977' flags='2' bytes='16' compile_id='890' compiler='c1' level='3' iicount='1363'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='11'/>
+<klass id='1103' name='java.util.FormatterClosedException' unloaded='1'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.610'/>
+</parse>
+<parse_done stamp='0.610'/>
+</parse>
+<bc code='182' bci='12'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1105' holder='1094' name='equals' return='969' arguments='982' flags='1' bytes='75' compile_id='930' compiler='c1' level='3' iicount='897'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='19'/>
+<klass id='1107' name='java.text.DecimalFormatSymbols' unloaded='1'/>
+<method id='1108' holder='1107' name='getInstance' return='1107' arguments='1094' unloaded='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='24'/>
+<method id='1109' holder='1107' name='getZeroDigit' return='970' unloaded='1'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='32'/>
+<method id='1110' holder='1097' name='access$400' return='970' arguments='1097' flags='4104' bytes='5' compile_id='913' compiler='c1' level='1' iicount='139'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.610'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.610'/>
+</phase>
+<parse_done stamp='0.610'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.610'>
+<phase_done name='optimize_blocks' stamp='0.610'/>
+</phase>
+<phase name='gvn' stamp='0.610'>
+<phase_done name='gvn' stamp='0.610'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.610'>
+<phase_done name='rangeCheckElimination' stamp='0.610'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.610'>
+<phase_done name='optimize_null_checks' stamp='0.610'/>
+</phase>
+<phase_done name='buildIR' stamp='0.610'/>
+</phase>
+<phase name='emit_lir' stamp='0.610'>
+<phase name='lirGeneration' stamp='0.610'>
+<phase_done name='lirGeneration' stamp='0.610'/>
+</phase>
+<phase name='linearScan' stamp='0.610'>
+<phase_done name='linearScan' stamp='0.610'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.610'/>
+</phase>
+<phase name='codeemit' stamp='0.610'>
+<phase_done name='codeemit' stamp='0.610'/>
+</phase>
+<phase name='codeinstall' stamp='0.610'>
+<phase_done name='codeinstall' stamp='0.610'/>
+</phase>
+<code_cache total_blobs='1609' nmethods='986' adapters='270' free_code_cache='245909632'/>
+<task_done success='1' nmsize='1336' count='452' inlined_bytes='30' stamp='0.610'/>
+</task>
+<task compile_id='989' method='jdk.internal.math.FormattedFloatingDecimal getBuffer ()[C' bytes='10' count='444' iicount='444' level='3' stamp='0.610'>
+<phase name='setup' stamp='0.610'>
+<phase_done name='setup' stamp='0.610'/>
+</phase>
+<phase name='buildIR' stamp='0.610'>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='jdk.internal.math.FormattedFloatingDecimal' flags='1'/>
+<method id='1094' holder='1093' name='getBuffer' return='1082' flags='10' bytes='10' iicount='444'/>
+<parse method='1094'  stamp='0.610'>
+<phase name='parse_hir' stamp='0.610'>
+<bc code='182' bci='3'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1096' name='java.lang.ThreadLocal' flags='1'/>
+<method id='1100' holder='1096' name='get' return='982' flags='1' bytes='38' compile_id='887' compiler='c1' level='3' iicount='801'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.610'/>
+</phase>
+<parse_done stamp='0.610'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.610'>
+<phase_done name='optimize_blocks' stamp='0.610'/>
+</phase>
+<phase name='gvn' stamp='0.610'>
+<phase_done name='gvn' stamp='0.610'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.610'>
+<phase_done name='rangeCheckElimination' stamp='0.610'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.610'>
+<phase_done name='optimize_null_checks' stamp='0.610'/>
+</phase>
+<phase_done name='buildIR' stamp='0.610'/>
+</phase>
+<phase name='emit_lir' stamp='0.610'>
+<phase name='lirGeneration' stamp='0.610'>
+<phase_done name='lirGeneration' stamp='0.610'/>
+</phase>
+<phase name='linearScan' stamp='0.610'>
+<phase_done name='linearScan' stamp='0.610'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.610'/>
+</phase>
+<phase name='codeemit' stamp='0.610'>
+<phase_done name='codeemit' stamp='0.610'/>
+</phase>
+<phase name='codeinstall' stamp='0.610'>
+<phase_done name='codeinstall' stamp='0.610'/>
+</phase>
+<code_cache total_blobs='1611' nmethods='988' adapters='270' free_code_cache='245901952'/>
+<task_done success='1' nmsize='712' count='444' stamp='0.610'/>
+</task>
+<fragment>
+<![CDATA[
+<task compile_id='985' method='java.util.Formatter$FormatSpecifier print (Ljava/lang/StringBuilder;DLjava/util/Locale;Ljava/util/Formatter$Flags;CIZ)V' bytes='889' count='444' iicount='444' level='3' stamp='0.610'>
+<phase name='setup' stamp='0.610'>
+<phase_done name='setup' stamp='0.610'/>
+</phase>
+<phase name='buildIR' stamp='0.610'>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<type id='972' name='double'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1095' name='java.util.Formatter$Flags' flags='10'/>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1096' holder='1093' name='print' return='977' arguments='1050 972 1094 1095 970 975 969' flags='2' bytes='889' iicount='444'/>
+<parse method='1096'  stamp='0.610'>
+<phase name='parse_hir' stamp='0.610'>
+]]>
+</fragment>
+</compilation_log>
+<compilation_log thread='25166'>
+<start_compile_thread name='C1 CompilerThread8' thread='25166' process='25109' stamp='0.107'/>
+<task compile_id='1' method='java.lang.String isLatin1 ()Z' bytes='19' count='768' iicount='768' level='3' stamp='0.109'>
+<phase name='setup' stamp='0.109'>
+<phase_done name='setup' stamp='0.109'/>
+</phase>
+<phase name='buildIR' stamp='0.109'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='isLatin1' return='969' flags='2' bytes='19' iicount='770'/>
+<parse method='1093'  stamp='0.109'>
+<phase name='parse_hir' stamp='0.109'>
+<phase_done name='parse_hir' stamp='0.109'/>
+</phase>
+<parse_done stamp='0.109'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.109'>
+<phase_done name='optimize_blocks' stamp='0.109'/>
+</phase>
+<phase name='gvn' stamp='0.109'>
+<phase_done name='gvn' stamp='0.109'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.109'>
+<phase_done name='rangeCheckElimination' stamp='0.109'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.109'>
+<phase_done name='optimize_null_checks' stamp='0.109'/>
+</phase>
+<phase_done name='buildIR' stamp='0.109'/>
+</phase>
+<phase name='emit_lir' stamp='0.109'>
+<phase name='lirGeneration' stamp='0.109'>
+<phase_done name='lirGeneration' stamp='0.109'/>
+</phase>
+<phase name='linearScan' stamp='0.109'>
+<phase_done name='linearScan' stamp='0.109'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.109'/>
+</phase>
+<phase name='codeemit' stamp='0.109'>
+<phase_done name='codeemit' stamp='0.109'/>
+</phase>
+<phase name='codeinstall' stamp='0.109'>
+<phase_done name='codeinstall' stamp='0.109'/>
+</phase>
+<code_cache total_blobs='232' nmethods='1' adapters='129' free_code_cache='248788096'/>
+<task_done success='1' nmsize='464' count='771' stamp='0.109'/>
+</task>
+<task compile_id='5' method='java.lang.String charAt (I)C' bytes='25' count='537' iicount='539' level='3' stamp='0.116'>
+<phase name='setup' stamp='0.116'>
+<phase_done name='setup' stamp='0.116'/>
+</phase>
+<phase name='buildIR' stamp='0.116'>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' iicount='562'/>
+<parse method='1093'  stamp='0.116'>
+<phase name='parse_hir' stamp='0.116'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='1' compiler='c1' level='3' iicount='1032'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.116'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' iicount='622'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.117'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='184' bci='2'/>
+<method id='1106' holder='1103' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='2'/>
+<method id='1108' holder='1103' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.117'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1110' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.117'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1112' holder='1103' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.117'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.117'/>
+</phase>
+<parse_done stamp='0.117'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.117'>
+<phase_done name='optimize_blocks' stamp='0.117'/>
+</phase>
+<phase name='gvn' stamp='0.117'>
+<phase_done name='gvn' stamp='0.117'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.117'>
+<phase_done name='rangeCheckElimination' stamp='0.117'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.117'>
+<phase_done name='optimize_null_checks' stamp='0.117'/>
+</phase>
+<phase_done name='buildIR' stamp='0.117'/>
+</phase>
+<phase name='emit_lir' stamp='0.117'>
+<phase name='lirGeneration' stamp='0.117'>
+<phase_done name='lirGeneration' stamp='0.117'/>
+</phase>
+<phase name='linearScan' stamp='0.117'>
+<phase_done name='linearScan' stamp='0.117'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.117'/>
+</phase>
+<phase name='codeemit' stamp='0.117'>
+<phase_done name='codeemit' stamp='0.117'/>
+</phase>
+<phase name='codeinstall' stamp='0.117'>
+<phase_done name='codeinstall' stamp='0.117'/>
+</phase>
+<code_cache total_blobs='299' nmethods='6' adapters='153' free_code_cache='248768000'/>
+<task_done success='1' nmsize='1400' count='660' inlined_bytes='72' stamp='0.117'/>
+</task>
+<task compile_id='10' method='java.lang.String hashCode ()I' bytes='49' count='292' iicount='292' level='3' stamp='0.127'>
+<phase name='setup' stamp='0.127'>
+<phase_done name='setup' stamp='0.127'/>
+</phase>
+<phase name='buildIR' stamp='0.127'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='hashCode' return='975' flags='1' bytes='49' iicount='310'/>
+<parse method='1093'  stamp='0.127'>
+<phase name='parse_hir' stamp='0.127'>
+<bc code='183' bci='19'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='1' compiler='c1' level='3' iicount='1251'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.127'/>
+</parse>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='3' compiler='c1' level='3' iicount='190'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='39'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='hashCode' return='975' arguments='1085' flags='9' bytes='33' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='20'/>
+<type id='970' name='char'/>
+<method id='1104' holder='1101' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.128'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.128'/>
+</phase>
+<parse_done stamp='0.128'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.128'>
+<phase_done name='optimize_blocks' stamp='0.128'/>
+</phase>
+<phase name='gvn' stamp='0.128'>
+<phase_done name='gvn' stamp='0.128'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.128'>
+<phase_done name='rangeCheckElimination' stamp='0.128'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.128'>
+<phase_done name='optimize_null_checks' stamp='0.128'/>
+</phase>
+<phase_done name='buildIR' stamp='0.128'/>
+</phase>
+<phase name='emit_lir' stamp='0.128'>
+<phase name='lirGeneration' stamp='0.128'>
+<phase_done name='lirGeneration' stamp='0.128'/>
+</phase>
+<phase name='linearScan' stamp='0.128'>
+<phase_done name='linearScan' stamp='0.128'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.128'/>
+</phase>
+<phase name='codeemit' stamp='0.128'>
+<phase_done name='codeemit' stamp='0.128'/>
+</phase>
+<phase name='codeinstall' stamp='0.128'>
+<phase_done name='codeinstall' stamp='0.128'/>
+</phase>
+<code_cache total_blobs='308' nmethods='10' adapters='158' free_code_cache='248758144'/>
+<task_done success='1' nmsize='1128' count='624' inlined_bytes='52' stamp='0.128'/>
+</task>
+<task compile_id='13' method='java.util.ImmutableCollections$SetN probe (Ljava/lang/Object;)I' bytes='60' count='256' backedge_count='81' iicount='256' level='3' stamp='0.128'>
+<phase name='setup' stamp='0.128'>
+<phase_done name='setup' stamp='0.128'/>
+</phase>
+<phase name='buildIR' stamp='0.128'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1094' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='60' iicount='262'/>
+<parse method='1094'  stamp='0.128'>
+<phase name='parse_hir' stamp='0.128'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='982' name='hashCode' return='975' flags='257' bytes='0' iicount='12'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='13'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='floorMod' return='975' arguments='975 975' flags='9' bytes='10' compile_id='11' compiler='c1' level='3' iicount='317'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='3'/>
+<method id='1103' holder='1100' name='floorDiv' return='975' arguments='975 975' flags='9' bytes='22' compile_id='12' compiler='c1' level='3' iicount='317'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.128'/>
+</parse>
+<parse_done stamp='0.128'/>
+</parse>
+<bc code='182' bci='35'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.128'/>
+</phase>
+<parse_done stamp='0.128'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.128'>
+<phase_done name='optimize_blocks' stamp='0.128'/>
+</phase>
+<phase name='gvn' stamp='0.128'>
+<phase_done name='gvn' stamp='0.128'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.128'>
+<phase_done name='rangeCheckElimination' stamp='0.128'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.128'>
+<phase_done name='optimize_null_checks' stamp='0.128'/>
+</phase>
+<phase_done name='buildIR' stamp='0.128'/>
+</phase>
+<phase name='emit_lir' stamp='0.128'>
+<phase name='lirGeneration' stamp='0.128'>
+<phase_done name='lirGeneration' stamp='0.128'/>
+</phase>
+<phase name='linearScan' stamp='0.128'>
+<phase_done name='linearScan' stamp='0.129'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.129'/>
+</phase>
+<phase name='codeemit' stamp='0.129'>
+<phase_done name='codeemit' stamp='0.129'/>
+</phase>
+<phase name='codeinstall' stamp='0.129'>
+<phase_done name='codeinstall' stamp='0.129'/>
+</phase>
+<code_cache total_blobs='311' nmethods='13' adapters='158' free_code_cache='248753152'/>
+<task_done success='1' nmsize='1528' count='426' backedge_count='175' inlined_bytes='32' stamp='0.129'/>
+</task>
+<task compile_id='18' method='java.lang.module.ModuleDescriptor$Exports &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/util/Set;Z)V' bytes='20' count='290' iicount='290' level='3' stamp='0.131'>
+<phase name='setup' stamp='0.131'>
+<phase_done name='setup' stamp='0.131'/>
+</phase>
+<phase name='buildIR' stamp='0.131'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1094 969' flags='2' bytes='20' iicount='291'/>
+<parse method='1095'  stamp='0.131'>
+<phase name='parse_hir' stamp='0.132'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1401'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.132'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.132'/>
+</phase>
+<parse_done stamp='0.132'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.132'>
+<phase_done name='optimize_blocks' stamp='0.132'/>
+</phase>
+<phase name='gvn' stamp='0.132'>
+<phase_done name='gvn' stamp='0.132'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.132'>
+<phase_done name='rangeCheckElimination' stamp='0.132'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.132'>
+<phase_done name='optimize_null_checks' stamp='0.132'/>
+</phase>
+<phase_done name='buildIR' stamp='0.132'/>
+</phase>
+<phase name='emit_lir' stamp='0.132'>
+<phase name='lirGeneration' stamp='0.132'>
+<phase_done name='lirGeneration' stamp='0.132'/>
+</phase>
+<phase name='linearScan' stamp='0.132'>
+<phase_done name='linearScan' stamp='0.132'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.132'/>
+</phase>
+<phase name='codeemit' stamp='0.132'>
+<phase_done name='codeemit' stamp='0.132'/>
+</phase>
+<phase name='codeinstall' stamp='0.132'>
+<phase_done name='codeinstall' stamp='0.132'/>
+</phase>
+<code_cache total_blobs='317' nmethods='18' adapters='158' free_code_cache='248745728'/>
+<task_done success='1' nmsize='752' count='331' inlined_bytes='1' stamp='0.132'/>
+</task>
+<task compile_id='23' method='java.util.AbstractCollection &lt;init&gt; ()V' bytes='5' count='266' iicount='266' level='3' stamp='0.132'>
+<phase name='setup' stamp='0.132'>
+<phase_done name='setup' stamp='0.132'/>
+</phase>
+<phase name='buildIR' stamp='0.132'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='4' bytes='5' iicount='270'/>
+<parse method='1094'  stamp='0.132'>
+<phase name='parse_hir' stamp='0.132'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='1631'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.132'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.132'/>
+</phase>
+<parse_done stamp='0.132'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.132'>
+<phase_done name='optimize_blocks' stamp='0.132'/>
+</phase>
+<phase name='gvn' stamp='0.132'>
+<phase_done name='gvn' stamp='0.133'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.133'>
+<phase_done name='rangeCheckElimination' stamp='0.133'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.133'>
+<phase_done name='optimize_null_checks' stamp='0.133'/>
+</phase>
+<phase_done name='buildIR' stamp='0.133'/>
+</phase>
+<phase name='emit_lir' stamp='0.133'>
+<phase name='lirGeneration' stamp='0.133'>
+<phase_done name='lirGeneration' stamp='0.133'/>
+</phase>
+<phase name='linearScan' stamp='0.133'>
+<phase_done name='linearScan' stamp='0.133'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.133'/>
+</phase>
+<phase name='codeemit' stamp='0.133'>
+<phase_done name='codeemit' stamp='0.133'/>
+</phase>
+<phase name='codeinstall' stamp='0.133'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.133'/>
+</phase>
+<code_cache total_blobs='321' nmethods='22' adapters='158' free_code_cache='248740352'/>
+<task_done success='1' nmsize='432' count='285' inlined_bytes='1' stamp='0.133'/>
+</task>
+<task compile_id='29' method='java.util.Collections$EmptySet contains (Ljava/lang/Object;)Z' bytes='2' count='128' iicount='128' level='1' stamp='0.134'>
+<phase name='setup' stamp='0.134'>
+<phase_done name='setup' stamp='0.134'/>
+</phase>
+<phase name='buildIR' stamp='0.134'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$EmptySet' flags='10'/>
+<method id='1094' holder='1093' name='contains' return='969' arguments='982' flags='1' bytes='2' iicount='128'/>
+<parse method='1094'  stamp='0.134'>
+<phase name='parse_hir' stamp='0.134'>
+<phase_done name='parse_hir' stamp='0.134'/>
+</phase>
+<parse_done stamp='0.134'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.134'>
+<phase_done name='optimize_blocks' stamp='0.134'/>
+</phase>
+<phase name='gvn' stamp='0.134'>
+<phase_done name='gvn' stamp='0.134'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.134'>
+<phase_done name='rangeCheckElimination' stamp='0.134'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.134'>
+<phase_done name='optimize_null_checks' stamp='0.134'/>
+</phase>
+<phase_done name='buildIR' stamp='0.134'/>
+</phase>
+<phase name='emit_lir' stamp='0.134'>
+<phase name='lirGeneration' stamp='0.134'>
+<phase_done name='lirGeneration' stamp='0.134'/>
+</phase>
+<phase name='linearScan' stamp='0.134'>
+<phase_done name='linearScan' stamp='0.134'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.134'/>
+</phase>
+<phase name='codeemit' stamp='0.134'>
+<phase_done name='codeemit' stamp='0.134'/>
+</phase>
+<phase name='codeinstall' stamp='0.134'>
+<phase_done name='codeinstall' stamp='0.134'/>
+</phase>
+<code_cache total_blobs='326' nmethods='25' adapters='158' free_code_cache='248725504'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.134'/>
+</task>
+<task compile_id='30' method='java.util.ImmutableCollections$SetN &lt;init&gt; ([Ljava/lang/Object;)V' bytes='90' count='170' backedge_count='2295' iicount='170' level='3' stamp='0.134'>
+<phase name='setup' stamp='0.134'>
+<phase_done name='setup' stamp='0.134'/>
+</phase>
+<phase name='buildIR' stamp='0.134'>
+<type id='977' name='void'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='128' bytes='90' iicount='170'/>
+<parse method='1095'  stamp='0.134'>
+<phase name='parse_hir' stamp='0.134'>
+<bc code='183' bci='1'/>
+<klass id='1098' name='java.util.ImmutableCollections$AbstractImmutableSet' flags='1032'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' flags='0' bytes='5' compile_id='25' compiler='c1' level='3' iicount='392'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<klass id='1101' name='java.util.AbstractSet' flags='1025'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='24' compiler='c1' level='3' iicount='394'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='1'/>
+<klass id='1104' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='463'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1107' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2262'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='183' bci='35'/>
+<type id='975' name='int'/>
+<method id='1109' holder='1093' name='probe' return='975' arguments='982' flags='2' bytes='60' compile_id='13' compiler='c1' level='3' iicount='2370'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='53'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1113' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='9'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1115' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' iicount='9'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='182' bci='58'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1118' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' iicount='15'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='2'/>
+<method id='1120' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' iicount='15'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.134'/>
+</parse>
+<bc code='182' bci='62'/>
+<method id='1122' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='184' bci='2'/>
+<method id='1124' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='1'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='10'/>
+<method id='1127' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='2'/>
+<call method='1120' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.135'/>
+</parse>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='182' bci='65'/>
+<method id='1128' holder='1050' name='toString' return='983' flags='1' bytes='35' iicount='9'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1130' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' iicount='21'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1133' name='java.lang.StringLatin1' flags='16'/>
+<method id='1134' holder='1133' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' iicount='27'/>
+<call method='1134' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='9'/>
+<klass id='1136' name='java.util.Arrays' flags='1'/>
+<method id='1137' holder='1136' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' iicount='27'/>
+<call method='1137' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1139' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' iicount='28'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='183' bci='1'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.135'/>
+</parse>
+<parse_done stamp='0.135'/>
+</parse>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1141' name='java.lang.StringUTF16' flags='16'/>
+<method id='1142' holder='1141' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1142' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.135'/>
+</parse>
+<bc code='183' bci='68'/>
+<klass id='1112' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1144' holder='1112' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1144' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.135'/>
+</phase>
+<parse_done stamp='0.135'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.135'>
+<phase_done name='optimize_blocks' stamp='0.135'/>
+</phase>
+<phase name='gvn' stamp='0.135'>
+<phase_done name='gvn' stamp='0.135'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.135'>
+<phase_done name='rangeCheckElimination' stamp='0.135'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.135'>
+<phase_done name='optimize_null_checks' stamp='0.135'/>
+</phase>
+<phase_done name='buildIR' stamp='0.135'/>
+</phase>
+<phase name='emit_lir' stamp='0.135'>
+<phase name='lirGeneration' stamp='0.135'>
+<phase_done name='lirGeneration' stamp='0.135'/>
+</phase>
+<phase name='linearScan' stamp='0.135'>
+<phase_done name='linearScan' stamp='0.135'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.135'/>
+</phase>
+<phase name='codeemit' stamp='0.136'>
+<phase_done name='codeemit' stamp='0.136'/>
+</phase>
+<phase name='codeinstall' stamp='0.136'>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='336' nmethods='35' adapters='158' free_code_cache='248712448'/>
+<task_done success='1' nmsize='4696' count='219' backedge_count='3037' inlined_bytes='149' stamp='0.136'/>
+</task>
+<task compile_id='39' method='java.lang.module.ModuleDescriptor$Requires &lt;init&gt; (Ljava/util/Set;Ljava/lang/String;Ljava/lang/module/ModuleDescriptor$Version;Z)V' bytes='25' count='349' iicount='349' level='3' stamp='0.136'>
+<phase name='setup' stamp='0.136'>
+<phase_done name='setup' stamp='0.136'/>
+</phase>
+<phase name='buildIR' stamp='0.136'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Requires' flags='25'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095 969' flags='2' bytes='25' iicount='349'/>
+<parse method='1096'  stamp='0.136'>
+<phase name='parse_hir' stamp='0.136'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='9' compiler='c1' level='3' iicount='2681'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.136'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.136'/>
+</phase>
+<parse_done stamp='0.136'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.136'>
+<phase_done name='optimize_blocks' stamp='0.136'/>
+</phase>
+<phase name='gvn' stamp='0.136'>
+<phase_done name='gvn' stamp='0.136'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.136'>
+<phase_done name='rangeCheckElimination' stamp='0.136'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.136'>
+<phase_done name='optimize_null_checks' stamp='0.136'/>
+</phase>
+<phase_done name='buildIR' stamp='0.136'/>
+</phase>
+<phase name='emit_lir' stamp='0.136'>
+<phase name='lirGeneration' stamp='0.136'>
+<phase_done name='lirGeneration' stamp='0.136'/>
+</phase>
+<phase name='linearScan' stamp='0.136'>
+<phase_done name='linearScan' stamp='0.136'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.136'/>
+</phase>
+<phase name='codeemit' stamp='0.136'>
+<phase_done name='codeemit' stamp='0.136'/>
+</phase>
+<phase name='codeinstall' stamp='0.136'>
+<phase_done name='codeinstall' stamp='0.136'/>
+</phase>
+<code_cache total_blobs='340' nmethods='39' adapters='158' free_code_cache='248704256'/>
+<task_done success='1' nmsize='784' count='349' inlined_bytes='1' stamp='0.136'/>
+</task>
+<task compile_id='41' method='java.lang.module.ModuleDescriptor name ()Ljava/lang/String;' bytes='5' count='150' iicount='150' level='1' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.138'/>
+</phase>
+<phase name='buildIR' stamp='0.138'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1094' holder='1093' name='name' return='983' flags='1' bytes='5' iicount='152'/>
+<parse method='1094'  stamp='0.138'>
+<phase name='parse_hir' stamp='0.138'>
+<phase_done name='parse_hir' stamp='0.138'/>
+</phase>
+<parse_done stamp='0.138'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.138'>
+<phase_done name='optimize_blocks' stamp='0.138'/>
+</phase>
+<phase name='gvn' stamp='0.138'>
+<phase_done name='gvn' stamp='0.138'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.138'>
+<phase_done name='rangeCheckElimination' stamp='0.138'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.138'>
+<phase_done name='optimize_null_checks' stamp='0.138'/>
+</phase>
+<phase_done name='buildIR' stamp='0.138'/>
+</phase>
+<phase name='emit_lir' stamp='0.138'>
+<phase name='lirGeneration' stamp='0.138'>
+<phase_done name='lirGeneration' stamp='0.138'/>
+</phase>
+<phase name='linearScan' stamp='0.138'>
+<phase_done name='linearScan' stamp='0.138'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.138'/>
+</phase>
+<phase name='codeemit' stamp='0.138'>
+<phase_done name='codeemit' stamp='0.138'/>
+</phase>
+<phase name='codeinstall' stamp='0.138'>
+<phase_done name='codeinstall' stamp='0.138'/>
+</phase>
+<code_cache total_blobs='342' nmethods='41' adapters='158' free_code_cache='248700928'/>
+<task_done success='1' nmsize='272' count='177' stamp='0.138'/>
+</task>
+<task compile_id='46' method='java.lang.module.ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='161' iicount='161' level='1' stamp='0.138'>
+<phase name='setup' stamp='0.138'>
+<phase_done name='setup' stamp='0.138'/>
+</phase>
+<phase name='buildIR' stamp='0.138'>
+<klass id='1094' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<klass id='1093' name='java.lang.module.ModuleReference' flags='1025'/>
+<method id='1095' holder='1093' name='descriptor' return='1094' flags='17' bytes='5' iicount='168'/>
+<parse method='1095'  stamp='0.138'>
+<phase name='parse_hir' stamp='0.138'>
+<phase_done name='parse_hir' stamp='0.138'/>
+</phase>
+<parse_done stamp='0.138'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.138'>
+<phase_done name='optimize_blocks' stamp='0.138'/>
+</phase>
+<phase name='gvn' stamp='0.138'>
+<phase_done name='gvn' stamp='0.138'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.138'>
+<phase_done name='rangeCheckElimination' stamp='0.138'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.138'>
+<phase_done name='optimize_null_checks' stamp='0.138'/>
+</phase>
+<phase_done name='buildIR' stamp='0.138'/>
+</phase>
+<phase name='emit_lir' stamp='0.138'>
+<phase name='lirGeneration' stamp='0.138'>
+<phase_done name='lirGeneration' stamp='0.138'/>
+</phase>
+<phase name='linearScan' stamp='0.138'>
+<phase_done name='linearScan' stamp='0.138'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.138'/>
+</phase>
+<phase name='codeemit' stamp='0.138'>
+<phase_done name='codeemit' stamp='0.138'/>
+</phase>
+<phase name='codeinstall' stamp='0.138'>
+<phase_done name='codeinstall' stamp='0.138'/>
+</phase>
+<code_cache total_blobs='347' nmethods='46' adapters='158' free_code_cache='248695680'/>
+<task_done success='1' nmsize='272' count='227' stamp='0.138'/>
+</task>
+<task compile_id='50' method='java.lang.StringLatin1 canEncode (I)Z' bytes='13' count='283' iicount='283' level='3' stamp='0.140'>
+<phase name='setup' stamp='0.140'>
+<phase_done name='setup' stamp='0.140'/>
+</phase>
+<phase name='buildIR' stamp='0.140'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' iicount='283'/>
+<parse method='1094'  stamp='0.140'>
+<phase name='parse_hir' stamp='0.140'>
+<phase_done name='parse_hir' stamp='0.141'/>
+</phase>
+<parse_done stamp='0.141'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.141'>
+<phase_done name='optimize_blocks' stamp='0.141'/>
+</phase>
+<phase name='gvn' stamp='0.141'>
+<phase_done name='gvn' stamp='0.141'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.141'>
+<phase_done name='rangeCheckElimination' stamp='0.141'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.141'>
+<phase_done name='optimize_null_checks' stamp='0.141'/>
+</phase>
+<phase_done name='buildIR' stamp='0.141'/>
+</phase>
+<phase name='emit_lir' stamp='0.141'>
+<phase name='lirGeneration' stamp='0.141'>
+<phase_done name='lirGeneration' stamp='0.141'/>
+</phase>
+<phase name='linearScan' stamp='0.141'>
+<phase_done name='linearScan' stamp='0.141'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.141'/>
+</phase>
+<phase name='codeemit' stamp='0.141'>
+<phase_done name='codeemit' stamp='0.141'/>
+</phase>
+<phase name='codeinstall' stamp='0.141'>
+<phase_done name='codeinstall' stamp='0.141'/>
+</phase>
+<code_cache total_blobs='353' nmethods='49' adapters='160' free_code_cache='248684416'/>
+<task_done success='1' nmsize='400' count='283' stamp='0.141'/>
+</task>
+<task compile_id='56' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='262' backedge_count='126' iicount='262' level='3' stamp='0.144'>
+<phase name='setup' stamp='0.144'>
+<phase_done name='setup' stamp='0.144'/>
+</phase>
+<phase name='buildIR' stamp='0.144'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='47' iicount='262'/>
+<parse method='1094'  stamp='0.144'>
+<phase name='parse_hir' stamp='0.144'>
+<phase_done name='parse_hir' stamp='0.145'/>
+</phase>
+<parse_done stamp='0.145'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.145'>
+<phase_done name='optimize_blocks' stamp='0.145'/>
+</phase>
+<phase name='gvn' stamp='0.145'>
+<phase_done name='gvn' stamp='0.145'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.145'>
+<phase_done name='rangeCheckElimination' stamp='0.145'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.145'>
+<phase_done name='optimize_null_checks' stamp='0.145'/>
+</phase>
+<phase_done name='buildIR' stamp='0.145'/>
+</phase>
+<phase name='emit_lir' stamp='0.145'>
+<phase name='lirGeneration' stamp='0.145'>
+<phase_done name='lirGeneration' stamp='0.145'/>
+</phase>
+<phase name='linearScan' stamp='0.145'>
+<phase_done name='linearScan' stamp='0.145'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.145'/>
+</phase>
+<phase name='codeemit' stamp='0.145'>
+<phase_done name='codeemit' stamp='0.145'/>
+</phase>
+<phase name='codeinstall' stamp='0.145'>
+<phase_done name='codeinstall' stamp='0.145'/>
+</phase>
+<code_cache total_blobs='365' nmethods='58' adapters='162' free_code_cache='248678912'/>
+<task_done success='1' nmsize='656' count='492' backedge_count='242' stamp='0.145'/>
+</task>
+<task compile_id='63' method='java.util.ImmutableCollections$SetN$1 next ()Ljava/lang/Object;' bytes='35' count='320' iicount='320' level='3' stamp='0.145'>
+<phase name='setup' stamp='0.145'>
+<phase_done name='setup' stamp='0.145'/>
+</phase>
+<phase name='buildIR' stamp='0.145'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='35' iicount='320'/>
+<parse method='1094'  stamp='0.145'>
+<phase name='parse_hir' stamp='0.145'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='hasNext' return='969' flags='1' bytes='47' compile_id='56' compiler='c1' level='3' iicount='642'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='11'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.145'/>
+</phase>
+<parse_done stamp='0.145'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.145'>
+<phase_done name='optimize_blocks' stamp='0.145'/>
+</phase>
+<phase name='gvn' stamp='0.145'>
+<phase_done name='gvn' stamp='0.145'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.145'>
+<phase_done name='rangeCheckElimination' stamp='0.145'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.145'>
+<phase_done name='optimize_null_checks' stamp='0.145'/>
+</phase>
+<phase_done name='buildIR' stamp='0.145'/>
+</phase>
+<phase name='emit_lir' stamp='0.145'>
+<phase name='lirGeneration' stamp='0.145'>
+<phase_done name='lirGeneration' stamp='0.145'/>
+</phase>
+<phase name='linearScan' stamp='0.145'>
+<phase_done name='linearScan' stamp='0.145'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.145'/>
+</phase>
+<phase name='codeemit' stamp='0.145'>
+<phase_done name='codeemit' stamp='0.145'/>
+</phase>
+<phase name='codeinstall' stamp='0.145'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.145'/>
+</phase>
+<code_cache total_blobs='368' nmethods='61' adapters='162' free_code_cache='248675200'/>
+<task_done success='1' nmsize='664' count='320' stamp='0.145'/>
+</task>
+<task compile_id='65' method='java.util.ImmutableCollections$SetN size ()I' bytes='5' count='137' iicount='137' level='1' stamp='0.146'>
+<phase name='setup' stamp='0.146'>
+<phase_done name='setup' stamp='0.146'/>
+</phase>
+<phase name='buildIR' stamp='0.146'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='5' iicount='137'/>
+<parse method='1094'  stamp='0.146'>
+<phase name='parse_hir' stamp='0.146'>
+<phase_done name='parse_hir' stamp='0.146'/>
+</phase>
+<parse_done stamp='0.146'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.146'>
+<phase_done name='optimize_blocks' stamp='0.146'/>
+</phase>
+<phase name='gvn' stamp='0.146'>
+<phase_done name='gvn' stamp='0.146'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.146'>
+<phase_done name='rangeCheckElimination' stamp='0.146'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.146'>
+<phase_done name='optimize_null_checks' stamp='0.146'/>
+</phase>
+<phase_done name='buildIR' stamp='0.146'/>
+</phase>
+<phase name='emit_lir' stamp='0.146'>
+<phase name='lirGeneration' stamp='0.146'>
+<phase_done name='lirGeneration' stamp='0.146'/>
+</phase>
+<phase name='linearScan' stamp='0.146'>
+<phase_done name='linearScan' stamp='0.146'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.146'/>
+</phase>
+<phase name='codeemit' stamp='0.146'>
+<phase_done name='codeemit' stamp='0.146'/>
+</phase>
+<phase name='codeinstall' stamp='0.146'>
+<phase_done name='codeinstall' stamp='0.146'/>
+</phase>
+<code_cache total_blobs='371' nmethods='64' adapters='162' free_code_cache='248669568'/>
+<task_done success='1' nmsize='272' count='137' stamp='0.146'/>
+</task>
+<task compile_id='70' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='260' backedge_count='14' iicount='260' level='3' stamp='0.148'>
+<phase name='setup' stamp='0.148'>
+<phase_done name='setup' stamp='0.148'/>
+</phase>
+<phase name='buildIR' stamp='0.148'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='getNode' return='1094' arguments='975 982' flags='16' bytes='148' iicount='265'/>
+<parse method='1095'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<bc code='182' bci='59'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='94'/>
+<klass id='1099' name='java.util.HashMap$TreeNode' flags='24'/>
+<method id='1100' holder='1099' name='getTreeNode' return='1099' arguments='975 982' flags='16' bytes='22' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='126'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.149'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.149'/>
+</phase>
+<phase name='codeemit' stamp='0.149'>
+<phase_done name='codeemit' stamp='0.149'/>
+</phase>
+<phase name='codeinstall' stamp='0.149'>
+<phase_done name='codeinstall' stamp='0.149'/>
+</phase>
+<code_cache total_blobs='378' nmethods='71' adapters='162' free_code_cache='248646144'/>
+<task_done success='1' nmsize='2472' count='373' backedge_count='14' stamp='0.149'/>
+</task>
+<task compile_id='76' method='java.util.HashMap newNode (ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;' bytes='13' count='378' iicount='378' level='3' stamp='0.149'>
+<phase name='setup' stamp='0.149'>
+<phase_done name='setup' stamp='0.149'/>
+</phase>
+<phase name='buildIR' stamp='0.149'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='newNode' return='1094' arguments='975 982 982 1094' flags='0' bytes='13' iicount='378'/>
+<parse method='1095'  stamp='0.149'>
+<phase name='parse_hir' stamp='0.149'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1094' name='&lt;init&gt;' return='977' arguments='975 982 982 1094' flags='0' bytes='26' compile_id='75' compiler='c1' level='3' iicount='381'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3762'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.149'/>
+</parse>
+<parse_done stamp='0.149'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.149'/>
+</phase>
+<parse_done stamp='0.149'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.149'>
+<phase_done name='optimize_blocks' stamp='0.149'/>
+</phase>
+<phase name='gvn' stamp='0.149'>
+<phase_done name='gvn' stamp='0.149'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.149'>
+<phase_done name='rangeCheckElimination' stamp='0.149'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.149'>
+<phase_done name='optimize_null_checks' stamp='0.149'/>
+</phase>
+<phase_done name='buildIR' stamp='0.149'/>
+</phase>
+<phase name='emit_lir' stamp='0.149'>
+<phase name='lirGeneration' stamp='0.149'>
+<phase_done name='lirGeneration' stamp='0.149'/>
+</phase>
+<phase name='linearScan' stamp='0.149'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='383' nmethods='76' adapters='162' free_code_cache='248639616'/>
+<task_done success='1' nmsize='944' count='378' inlined_bytes='27' stamp='0.150'/>
+</task>
+<task compile_id='80' method='java.util.AbstractCollection isEmpty ()Z' bytes='13' count='283' iicount='283' level='3' stamp='0.150'>
+<phase name='setup' stamp='0.150'>
+<phase_done name='setup' stamp='0.150'/>
+</phase>
+<phase name='buildIR' stamp='0.150'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1094' holder='1093' name='isEmpty' return='969' flags='1' bytes='13' iicount='283'/>
+<parse method='1094'  stamp='0.150'>
+<phase name='parse_hir' stamp='0.150'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.150'/>
+</phase>
+<parse_done stamp='0.150'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.150'>
+<phase_done name='optimize_blocks' stamp='0.150'/>
+</phase>
+<phase name='gvn' stamp='0.150'>
+<phase_done name='gvn' stamp='0.150'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.150'>
+<phase_done name='rangeCheckElimination' stamp='0.150'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.150'>
+<phase_done name='optimize_null_checks' stamp='0.150'/>
+</phase>
+<phase_done name='buildIR' stamp='0.150'/>
+</phase>
+<phase name='emit_lir' stamp='0.150'>
+<phase name='lirGeneration' stamp='0.150'>
+<phase_done name='lirGeneration' stamp='0.150'/>
+</phase>
+<phase name='linearScan' stamp='0.150'>
+<phase_done name='linearScan' stamp='0.150'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.150'/>
+</phase>
+<phase name='codeemit' stamp='0.150'>
+<phase_done name='codeemit' stamp='0.150'/>
+</phase>
+<phase name='codeinstall' stamp='0.150'>
+<phase_done name='codeinstall' stamp='0.150'/>
+</phase>
+<code_cache total_blobs='387' nmethods='80' adapters='162' free_code_cache='248629888'/>
+<task_done success='1' nmsize='616' count='300' stamp='0.150'/>
+</task>
+<task compile_id='85' method='java.util.Optional of (Ljava/lang/Object;)Ljava/util/Optional;' bytes='9' count='257' iicount='257' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<klass id='1093' name='java.util.Optional' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1094' holder='1093' name='of' return='1093' arguments='982' flags='9' bytes='9' iicount='258'/>
+<parse method='1094'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' iicount='259'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='3896'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1100' name='java.util.Objects' flags='17'/>
+<method id='1101' holder='1100' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='1898'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1103' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.151'/>
+</parse>
+<parse_done stamp='0.151'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.151'/>
+</phase>
+<phase_done name='buildIR' stamp='0.151'/>
+</phase>
+<phase name='emit_lir' stamp='0.151'>
+<phase name='lirGeneration' stamp='0.151'>
+<phase_done name='lirGeneration' stamp='0.151'/>
+</phase>
+<phase name='linearScan' stamp='0.151'>
+<phase_done name='linearScan' stamp='0.151'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.151'/>
+</phase>
+<phase name='codeemit' stamp='0.151'>
+<phase_done name='codeemit' stamp='0.151'/>
+</phase>
+<phase name='codeinstall' stamp='0.151'>
+<phase_done name='codeinstall' stamp='0.151'/>
+</phase>
+<code_cache total_blobs='390' nmethods='83' adapters='162' free_code_cache='248625920'/>
+<task_done success='1' nmsize='1032' count='277' inlined_bytes='28' stamp='0.151'/>
+</task>
+<task compile_id='89' method='jdk.internal.module.SystemModuleFinder find (Ljava/lang/String;)Ljava/util/Optional;' bytes='22' count='273' iicount='273' level='3' stamp='0.151'>
+<phase name='setup' stamp='0.151'>
+<phase_done name='setup' stamp='0.151'/>
+</phase>
+<phase name='buildIR' stamp='0.151'>
+<klass id='1094' name='java.util.Optional' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.module.SystemModuleFinder' flags='1'/>
+<method id='1095' holder='1093' name='find' return='1094' arguments='983' flags='1' bytes='22' iicount='273'/>
+<parse method='1095'  stamp='0.151'>
+<phase name='parse_hir' stamp='0.151'>
+<bc code='184' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1097' name='java.util.Objects' flags='17'/>
+<method id='1098' holder='1097' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='1968'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1100' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='185' bci='10'/>
+<klass id='1102' name='java.util.Map' flags='1537'/>
+<method id='1103' holder='1102' name='get' return='982' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='18'/>
+<method id='1105' holder='1094' name='ofNullable' return='1094' arguments='982' flags='9' bytes='15' compile_id='84' compiler='c1' level='3' iicount='277'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='184' bci='4'/>
+<method id='1107' holder='1094' name='empty' return='1094' flags='9' bytes='6' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='184' bci='11'/>
+<method id='1111' holder='1094' name='of' return='1094' arguments='982' flags='9' bytes='9' compile_id='85' compiler='c1' level='3' iicount='277'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='5'/>
+<method id='1113' holder='1094' name='&lt;init&gt;' return='977' arguments='982' flags='2' bytes='13' compile_id='86' compiler='c1' level='3' iicount='277'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='1'/>
+<method id='1115' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='4040'/>
+<call method='1115' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.151'/>
+</parse>
+<bc code='184' bci='6'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='8'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.151'/>
+</parse>
+<parse_done stamp='0.151'/>
+</parse>
+<parse_done stamp='0.151'/>
+</parse>
+<parse_done stamp='0.151'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.151'/>
+</phase>
+<parse_done stamp='0.151'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.151'>
+<phase_done name='optimize_blocks' stamp='0.151'/>
+</phase>
+<phase name='gvn' stamp='0.151'>
+<phase_done name='gvn' stamp='0.151'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.151'>
+<phase_done name='rangeCheckElimination' stamp='0.151'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.151'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='399' nmethods='92' adapters='162' free_code_cache='248609536'/>
+<task_done success='1' nmsize='2184' count='273' inlined_bytes='72' stamp='0.152'/>
+</task>
+<task compile_id='97' method='java.lang.module.ResolvedModule hashCode ()I' bytes='16' count='329' iicount='329' level='3' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.152'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.module.ResolvedModule' flags='17'/>
+<method id='1094' holder='1093' name='hashCode' return='975' flags='1' bytes='16' iicount='329'/>
+<parse method='1094'  stamp='0.152'>
+<phase name='parse_hir' stamp='0.152'>
+<bc code='182' bci='4'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='11'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.152'/>
+</phase>
+<parse_done stamp='0.152'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.152'>
+<phase_done name='optimize_blocks' stamp='0.152'/>
+</phase>
+<phase name='gvn' stamp='0.152'>
+<phase_done name='gvn' stamp='0.152'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.152'>
+<phase_done name='rangeCheckElimination' stamp='0.152'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.152'>
+<phase_done name='optimize_null_checks' stamp='0.152'/>
+</phase>
+<phase_done name='buildIR' stamp='0.152'/>
+</phase>
+<phase name='emit_lir' stamp='0.152'>
+<phase name='lirGeneration' stamp='0.152'>
+<phase_done name='lirGeneration' stamp='0.152'/>
+</phase>
+<phase name='linearScan' stamp='0.152'>
+<phase_done name='linearScan' stamp='0.152'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.152'/>
+</phase>
+<phase name='codeemit' stamp='0.152'>
+<phase_done name='codeemit' stamp='0.152'/>
+</phase>
+<phase name='codeinstall' stamp='0.152'>
+<phase_done name='codeinstall' stamp='0.152'/>
+</phase>
+<code_cache total_blobs='402' nmethods='95' adapters='162' free_code_cache='248604800'/>
+<task_done success='1' nmsize='760' count='388' stamp='0.152'/>
+</task>
+<task compile_id='102' method='java.lang.Enum equals (Ljava/lang/Object;)Z' bytes='11' count='272' iicount='272' level='3' stamp='0.152'>
+<phase name='setup' stamp='0.152'>
+<phase_done name='setup' stamp='0.152'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.Enum' flags='1025'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982' flags='17' bytes='11' iicount='272'/>
+<parse method='1094'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<phase_done name='codeinstall' stamp='0.153'/>
+</phase>
+<code_cache total_blobs='406' nmethods='99' adapters='162' free_code_cache='248599936'/>
+<task_done success='1' nmsize='432' count='274' stamp='0.153'/>
+</task>
+<task compile_id='104' method='java.util.HashMap$KeyIterator next ()Ljava/lang/Object;' bytes='8' count='336' iicount='337' level='3' stamp='0.153'>
+<phase name='setup' stamp='0.153'>
+<phase_done name='setup' stamp='0.153'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap$KeyIterator' flags='16'/>
+<method id='1094' holder='1093' name='next' return='982' flags='17' bytes='8' iicount='352'/>
+<parse method='1094'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='182' bci='1'/>
+<klass id='1097' name='java.util.HashMap$Node' flags='8'/>
+<klass id='1096' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1098' holder='1096' name='nextNode' return='1097' flags='16' bytes='100' compile_id='96' compiler='c1' level='3' iicount='565'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.153'/>
+</phase>
+<phase name='codeemit' stamp='0.153'>
+<phase_done name='codeemit' stamp='0.153'/>
+</phase>
+<phase name='codeinstall' stamp='0.153'>
+<phase_done name='codeinstall' stamp='0.153'/>
+</phase>
+<code_cache total_blobs='413' nmethods='104' adapters='162' free_code_cache='248592000'/>
+<task_done success='1' nmsize='520' count='441' stamp='0.153'/>
+</task>
+<task compile_id='105' method='java.util.HashMap$HashIterator &lt;init&gt; (Ljava/util/HashMap;)V' bytes='79' count='342' backedge_count='716' iicount='342' level='3' stamp='0.153'>
+<phase name='setup' stamp='0.153'>
+<phase_done name='setup' stamp='0.153'/>
+</phase>
+<phase name='buildIR' stamp='0.153'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.HashMap' flags='1'/>
+<klass id='1093' name='java.util.HashMap$HashIterator' flags='1024'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='79' iicount='354'/>
+<parse method='1095'  stamp='0.153'>
+<phase name='parse_hir' stamp='0.153'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='4728'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.153'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.153'/>
+</phase>
+<parse_done stamp='0.153'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.153'>
+<phase_done name='optimize_blocks' stamp='0.153'/>
+</phase>
+<phase name='gvn' stamp='0.153'>
+<phase_done name='gvn' stamp='0.153'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.153'>
+<phase_done name='rangeCheckElimination' stamp='0.153'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.153'>
+<phase_done name='optimize_null_checks' stamp='0.153'/>
+</phase>
+<phase_done name='buildIR' stamp='0.153'/>
+</phase>
+<phase name='emit_lir' stamp='0.153'>
+<phase name='lirGeneration' stamp='0.153'>
+<phase_done name='lirGeneration' stamp='0.153'/>
+</phase>
+<phase name='linearScan' stamp='0.153'>
+<phase_done name='linearScan' stamp='0.153'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.154'/>
+</phase>
+<phase name='codeemit' stamp='0.154'>
+<phase_done name='codeemit' stamp='0.154'/>
+</phase>
+<phase name='codeinstall' stamp='0.154'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='417' nmethods='108' adapters='162' free_code_cache='248585344'/>
+<task_done success='1' nmsize='1136' count='695' backedge_count='1150' inlined_bytes='1' stamp='0.154'/>
+</task>
+<task compile_id='112' method='java.util.KeyValueHolder getValue ()Ljava/lang/Object;' bytes='5' count='176' iicount='176' level='1' stamp='0.154'>
+<phase name='setup' stamp='0.154'>
+<phase_done name='setup' stamp='0.154'/>
+</phase>
+<phase name='buildIR' stamp='0.154'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.KeyValueHolder' flags='16'/>
+<method id='1094' holder='1093' name='getValue' return='982' flags='1' bytes='5' iicount='176'/>
+<parse method='1094'  stamp='0.154'>
+<phase name='parse_hir' stamp='0.154'>
+<phase_done name='parse_hir' stamp='0.154'/>
+</phase>
+<parse_done stamp='0.154'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.154'>
+<phase_done name='optimize_blocks' stamp='0.154'/>
+</phase>
+<phase name='gvn' stamp='0.154'>
+<phase_done name='gvn' stamp='0.154'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.154'>
+<phase_done name='rangeCheckElimination' stamp='0.154'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.154'>
+<phase_done name='optimize_null_checks' stamp='0.154'/>
+</phase>
+<phase_done name='buildIR' stamp='0.154'/>
+</phase>
+<phase name='emit_lir' stamp='0.154'>
+<phase name='lirGeneration' stamp='0.154'>
+<phase_done name='lirGeneration' stamp='0.154'/>
+</phase>
+<phase name='linearScan' stamp='0.154'>
+<phase_done name='linearScan' stamp='0.154'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.154'/>
+</phase>
+<phase name='codeemit' stamp='0.154'>
+<phase_done name='codeemit' stamp='0.154'/>
+</phase>
+<phase name='codeinstall' stamp='0.154'>
+<phase_done name='codeinstall' stamp='0.154'/>
+</phase>
+<code_cache total_blobs='421' nmethods='112' adapters='162' free_code_cache='248581504'/>
+<task_done success='1' nmsize='272' count='176' stamp='0.154'/>
+</task>
+<task compile_id='115' method='java.lang.String indexOf (I)I' bytes='7' count='254' iicount='254' level='3' stamp='0.155'>
+<phase name='setup' stamp='0.155'>
+<phase_done name='setup' stamp='0.155'/>
+</phase>
+<phase name='buildIR' stamp='0.155'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' iicount='256'/>
+<parse method='1093'  stamp='0.155'>
+<phase name='parse_hir' stamp='0.155'>
+<bc code='182' bci='3'/>
+<method id='1095' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='265'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='6219'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.155'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' iicount='279'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1103' name='java.lang.StringUTF16' flags='16'/>
+<method id='1104' holder='1103' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.155'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.155'/>
+</phase>
+<parse_done stamp='0.155'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.155'>
+<phase_done name='optimize_blocks' stamp='0.155'/>
+</phase>
+<phase name='gvn' stamp='0.155'>
+<phase_done name='gvn' stamp='0.155'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.155'>
+<phase_done name='rangeCheckElimination' stamp='0.155'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.155'>
+<phase_done name='optimize_null_checks' stamp='0.155'/>
+</phase>
+<phase_done name='buildIR' stamp='0.155'/>
+</phase>
+<phase name='emit_lir' stamp='0.155'>
+<phase name='lirGeneration' stamp='0.155'>
+<phase_done name='lirGeneration' stamp='0.155'/>
+</phase>
+<phase name='linearScan' stamp='0.155'>
+<phase_done name='linearScan' stamp='0.155'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.155'/>
+</phase>
+<phase name='codeemit' stamp='0.155'>
+<phase_done name='codeemit' stamp='0.155'/>
+</phase>
+<phase name='codeinstall' stamp='0.155'>
+<phase_done name='codeinstall' stamp='0.155'/>
+</phase>
+<code_cache total_blobs='427' nmethods='118' adapters='162' free_code_cache='248572544'/>
+<task_done success='1' nmsize='952' count='310' inlined_bytes='48' stamp='0.155'/>
+</task>
+<task compile_id='123' method='java.util.concurrent.ConcurrentHashMap setTabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V' bytes='20' count='297' iicount='297' level='3' stamp='0.156'>
+<phase name='setup' stamp='0.156'>
+<phase_done name='setup' stamp='0.156'/>
+</phase>
+<phase name='buildIR' stamp='0.156'>
+<type id='977' name='void'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='setTabAt' return='977' arguments='1095 975 1094' flags='24' bytes='20' iicount='297'/>
+<parse method='1096'  stamp='0.156'>
+<phase name='parse_hir' stamp='0.156'>
+<bc code='182' bci='16'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1100' holder='1051' name='putObjectRelease' return='977' arguments='982 976 982' flags='17' bytes='9' iicount='299'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='5'/>
+<method id='1102' holder='1051' name='putObjectVolatile' return='977' arguments='982 976 982' flags='257' bytes='0' compile_id='122' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.156'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.156'/>
+</phase>
+<parse_done stamp='0.156'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.156'>
+<phase_done name='optimize_blocks' stamp='0.156'/>
+</phase>
+<phase name='gvn' stamp='0.156'>
+<phase_done name='gvn' stamp='0.156'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.156'>
+<phase_done name='rangeCheckElimination' stamp='0.156'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.156'>
+<phase_done name='optimize_null_checks' stamp='0.156'/>
+</phase>
+<phase_done name='buildIR' stamp='0.156'/>
+</phase>
+<phase name='emit_lir' stamp='0.156'>
+<phase name='lirGeneration' stamp='0.156'>
+<phase_done name='lirGeneration' stamp='0.156'/>
+</phase>
+<phase name='linearScan' stamp='0.156'>
+<phase_done name='linearScan' stamp='0.156'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.156'/>
+</phase>
+<phase name='codeemit' stamp='0.156'>
+<phase_done name='codeemit' stamp='0.156'/>
+</phase>
+<phase name='codeinstall' stamp='0.156'>
+<phase_done name='codeinstall' stamp='0.156'/>
+</phase>
+<code_cache total_blobs='432' nmethods='123' adapters='162' free_code_cache='248567424'/>
+<task_done success='1' nmsize='656' count='345' inlined_bytes='9' stamp='0.156'/>
+</task>
+<task compile_id='127' method='java.lang.module.ModuleDescriptor$Version toString ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.157'>
+<phase name='setup' stamp='0.157'>
+<phase_done name='setup' stamp='0.157'/>
+</phase>
+<phase name='buildIR' stamp='0.157'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Version' flags='25'/>
+<method id='1094' holder='1093' name='toString' return='983' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.157'>
+<phase name='parse_hir' stamp='0.157'>
+<phase_done name='parse_hir' stamp='0.157'/>
+</phase>
+<parse_done stamp='0.157'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.157'>
+<phase_done name='optimize_blocks' stamp='0.157'/>
+</phase>
+<phase name='gvn' stamp='0.157'>
+<phase_done name='gvn' stamp='0.157'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.157'>
+<phase_done name='rangeCheckElimination' stamp='0.157'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.157'>
+<phase_done name='optimize_null_checks' stamp='0.157'/>
+</phase>
+<phase_done name='buildIR' stamp='0.157'/>
+</phase>
+<phase name='emit_lir' stamp='0.157'>
+<phase name='lirGeneration' stamp='0.157'>
+<phase_done name='lirGeneration' stamp='0.157'/>
+</phase>
+<phase name='linearScan' stamp='0.157'>
+<phase_done name='linearScan' stamp='0.157'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.157'/>
+</phase>
+<phase name='codeemit' stamp='0.157'>
+<phase_done name='codeemit' stamp='0.157'/>
+</phase>
+<phase name='codeinstall' stamp='0.157'>
+<phase_done name='codeinstall' stamp='0.157'/>
+</phase>
+<code_cache total_blobs='436' nmethods='127' adapters='162' free_code_cache='248561664'/>
+<task_done success='1' nmsize='272' count='134' stamp='0.157'/>
+</task>
+<task compile_id='134' method='java.util.HashMap afterNodeInsertion (Z)V' bytes='1' count='1437' iicount='1437' level='1' stamp='0.160'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='77' compiler='c1' level='3' iicount='1450'/>
+<parse method='1094'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<phase_done name='parse_hir' stamp='0.160'/>
+</phase>
+<parse_done stamp='0.160'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.160'>
+<phase_done name='optimize_blocks' stamp='0.160'/>
+</phase>
+<phase name='gvn' stamp='0.160'>
+<phase_done name='gvn' stamp='0.160'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.160'>
+<phase_done name='rangeCheckElimination' stamp='0.160'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.160'>
+<phase_done name='optimize_null_checks' stamp='0.160'/>
+</phase>
+<phase_done name='buildIR' stamp='0.160'/>
+</phase>
+<phase name='emit_lir' stamp='0.160'>
+<phase name='lirGeneration' stamp='0.160'>
+<phase_done name='lirGeneration' stamp='0.160'/>
+</phase>
+<phase name='linearScan' stamp='0.160'>
+<phase_done name='linearScan' stamp='0.160'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.160'/>
+</phase>
+<phase name='codeemit' stamp='0.160'>
+<phase_done name='codeemit' stamp='0.160'/>
+</phase>
+<phase name='codeinstall' stamp='0.160'>
+<phase_done name='codeinstall' stamp='0.160'/>
+</phase>
+<code_cache total_blobs='447' nmethods='134' adapters='162' free_code_cache='248554240'/>
+<task_done success='1' nmsize='272' count='1527' stamp='0.160'/>
+</task>
+<task compile_id='136' method='java.lang.module.ModuleDescriptor$Exports isQualified ()Z' bytes='18' count='256' iicount='256' level='3' stamp='0.160'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='isQualified' return='969' flags='1' bytes='18' iicount='256'/>
+<parse method='1094'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='java.util.Set' flags='1537'/>
+<method id='1097' holder='1096' name='isEmpty' return='969' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.160'/>
+</phase>
+<parse_done stamp='0.160'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.160'>
+<phase_done name='optimize_blocks' stamp='0.160'/>
+</phase>
+<phase name='gvn' stamp='0.160'>
+<phase_done name='gvn' stamp='0.160'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.160'>
+<phase_done name='rangeCheckElimination' stamp='0.160'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.160'>
+<phase_done name='optimize_null_checks' stamp='0.160'/>
+</phase>
+<phase_done name='buildIR' stamp='0.160'/>
+</phase>
+<phase name='emit_lir' stamp='0.160'>
+<phase name='lirGeneration' stamp='0.160'>
+<phase_done name='lirGeneration' stamp='0.160'/>
+</phase>
+<phase name='linearScan' stamp='0.160'>
+<phase_done name='linearScan' stamp='0.160'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.160'/>
+</phase>
+<phase name='codeemit' stamp='0.160'>
+<phase_done name='codeemit' stamp='0.160'/>
+</phase>
+<phase name='codeinstall' stamp='0.160'>
+<phase_done name='codeinstall' stamp='0.160'/>
+</phase>
+<code_cache total_blobs='448' nmethods='135' adapters='162' free_code_cache='248552960'/>
+<task_done success='1' nmsize='648' count='300' stamp='0.160'/>
+</task>
+<task compile_id='137' method='java.lang.module.ModuleDescriptor$Exports source ()Ljava/lang/String;' bytes='5' count='128' iicount='128' level='1' stamp='0.160'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1094' holder='1093' name='source' return='983' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<phase_done name='parse_hir' stamp='0.160'/>
+</phase>
+<parse_done stamp='0.160'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.160'>
+<phase_done name='optimize_blocks' stamp='0.160'/>
+</phase>
+<phase name='gvn' stamp='0.160'>
+<phase_done name='gvn' stamp='0.160'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.160'>
+<phase_done name='rangeCheckElimination' stamp='0.160'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.160'>
+<phase_done name='optimize_null_checks' stamp='0.160'/>
+</phase>
+<phase_done name='buildIR' stamp='0.160'/>
+</phase>
+<phase name='emit_lir' stamp='0.160'>
+<phase name='lirGeneration' stamp='0.160'>
+<phase_done name='lirGeneration' stamp='0.160'/>
+</phase>
+<phase name='linearScan' stamp='0.160'>
+<phase_done name='linearScan' stamp='0.160'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.160'/>
+</phase>
+<phase name='codeemit' stamp='0.160'>
+<phase_done name='codeemit' stamp='0.160'/>
+</phase>
+<phase name='codeinstall' stamp='0.160'>
+<phase_done name='codeinstall' stamp='0.160'/>
+</phase>
+<code_cache total_blobs='449' nmethods='136' adapters='162' free_code_cache='248552192'/>
+<task_done success='1' nmsize='272' count='151' stamp='0.160'/>
+</task>
+<task compile_id='138' method='java.util.HashMap resize ()[Ljava/util/HashMap$Node;' bytes='356' count='310' backedge_count='1490' iicount='310' level='3' stamp='0.160'>
+<phase name='setup' stamp='0.160'>
+<phase_done name='setup' stamp='0.160'/>
+</phase>
+<phase name='buildIR' stamp='0.160'>
+<klass id='1095' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1096' holder='1093' name='resize' return='1095' flags='16' bytes='356' iicount='312'/>
+<parse method='1096'  stamp='0.160'>
+<phase name='parse_hir' stamp='0.160'>
+<bc code='182' bci='217'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1098' name='java.util.HashMap$TreeNode' flags='24'/>
+<method id='1099' holder='1098' name='split' return='977' arguments='1093 1095 975 975' flags='16' bytes='218' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.161'/>
+</phase>
+<parse_done stamp='0.161'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.161'>
+<phase_done name='optimize_blocks' stamp='0.161'/>
+</phase>
+<phase name='gvn' stamp='0.161'>
+<phase_done name='gvn' stamp='0.161'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.161'>
+<phase_done name='rangeCheckElimination' stamp='0.161'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.161'>
+<phase_done name='optimize_null_checks' stamp='0.161'/>
+</phase>
+<phase_done name='buildIR' stamp='0.161'/>
+</phase>
+<phase name='emit_lir' stamp='0.161'>
+<phase name='lirGeneration' stamp='0.161'>
+<phase_done name='lirGeneration' stamp='0.161'/>
+</phase>
+<phase name='linearScan' stamp='0.161'>
+<phase_done name='linearScan' stamp='0.161'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.161'/>
+</phase>
+<phase name='codeemit' stamp='0.161'>
+<phase_done name='codeemit' stamp='0.161'/>
+</phase>
+<phase name='codeinstall' stamp='0.161'>
+<phase_done name='codeinstall' stamp='0.161'/>
+</phase>
+<code_cache total_blobs='454' nmethods='141' adapters='162' free_code_cache='248540416'/>
+<task_done success='1' nmsize='5352' count='424' backedge_count='1607' stamp='0.161'/>
+</task>
+<task compile_id='144' method='java.lang.module.ModuleDescriptor$Exports targets ()Ljava/util/Set;' bytes='5' count='143' iicount='143' level='1' stamp='0.161'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<klass id='1094' name='java.util.Set' flags='1537'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Exports' flags='25'/>
+<method id='1095' holder='1093' name='targets' return='1094' flags='1' bytes='5' iicount='149'/>
+<parse method='1095'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='457' nmethods='144' adapters='162' free_code_cache='248537088'/>
+<task_done success='1' nmsize='272' count='153' stamp='0.162'/>
+</task>
+<task compile_id='147' method='java.util.ImmutableCollections$Set2$1 next ()Ljava/lang/Object;' bytes='49' count='260' iicount='260' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set2$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='49' iicount='260'/>
+<parse method='1094'  stamp='0.162'>
+<phase name='parse_hir' stamp='0.162'>
+<bc code='183' bci='45'/>
+<type id='977' name='void'/>
+<klass id='1097' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.162'/>
+</phase>
+<parse_done stamp='0.162'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.162'>
+<phase_done name='optimize_blocks' stamp='0.162'/>
+</phase>
+<phase name='gvn' stamp='0.162'>
+<phase_done name='gvn' stamp='0.162'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.162'>
+<phase_done name='rangeCheckElimination' stamp='0.162'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.162'>
+<phase_done name='optimize_null_checks' stamp='0.162'/>
+</phase>
+<phase_done name='buildIR' stamp='0.162'/>
+</phase>
+<phase name='emit_lir' stamp='0.162'>
+<phase name='lirGeneration' stamp='0.162'>
+<phase_done name='lirGeneration' stamp='0.162'/>
+</phase>
+<phase name='linearScan' stamp='0.162'>
+<phase_done name='linearScan' stamp='0.162'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.162'/>
+</phase>
+<phase name='codeemit' stamp='0.162'>
+<phase_done name='codeemit' stamp='0.162'/>
+</phase>
+<phase name='codeinstall' stamp='0.162'>
+<phase_done name='codeinstall' stamp='0.162'/>
+</phase>
+<code_cache total_blobs='459' nmethods='146' adapters='162' free_code_cache='248534912'/>
+<task_done success='1' nmsize='648' count='267' stamp='0.162'/>
+</task>
+<task compile_id='153' method='java.util.Collections$1 &lt;init&gt; (Ljava/lang/Object;)V' bytes='15' count='258' iicount='258' level='3' stamp='0.162'>
+<phase name='setup' stamp='0.162'>
+<phase_done name='setup' stamp='0.162'/>
+</phase>
+<phase name='buildIR' stamp='0.162'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Collections$1' flags='0'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='15' iicount='260'/>
+<parse method='1094'  stamp='0.163'>
+<phase name='parse_hir' stamp='0.163'>
+<bc code='183' bci='6'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='8223'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.163'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.163'/>
+</phase>
+<parse_done stamp='0.163'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.163'>
+<phase_done name='optimize_blocks' stamp='0.163'/>
+</phase>
+<phase name='gvn' stamp='0.163'>
+<phase_done name='gvn' stamp='0.163'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.163'>
+<phase_done name='rangeCheckElimination' stamp='0.163'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.163'>
+<phase_done name='optimize_null_checks' stamp='0.163'/>
+</phase>
+<phase_done name='buildIR' stamp='0.163'/>
+</phase>
+<phase name='emit_lir' stamp='0.163'>
+<phase name='lirGeneration' stamp='0.163'>
+<phase_done name='lirGeneration' stamp='0.163'/>
+</phase>
+<phase name='linearScan' stamp='0.163'>
+<phase_done name='linearScan' stamp='0.163'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.163'/>
+</phase>
+<phase name='codeemit' stamp='0.163'>
+<phase_done name='codeemit' stamp='0.163'/>
+</phase>
+<phase name='codeinstall' stamp='0.163'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.163'/>
+</phase>
+<code_cache total_blobs='465' nmethods='152' adapters='162' free_code_cache='248525312'/>
+<task_done success='1' nmsize='528' count='279' inlined_bytes='1' stamp='0.163'/>
+</task>
+<task compile_id='158' method='java.util.ImmutableCollections$Set2 size ()I' bytes='2' count='128' iicount='128' level='1' stamp='0.164'>
+<phase name='setup' stamp='0.164'>
+<phase_done name='setup' stamp='0.164'/>
+</phase>
+<phase name='buildIR' stamp='0.164'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ImmutableCollections$Set2' flags='24'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='2' iicount='128'/>
+<parse method='1094'  stamp='0.164'>
+<phase name='parse_hir' stamp='0.164'>
+<phase_done name='parse_hir' stamp='0.164'/>
+</phase>
+<parse_done stamp='0.164'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.164'>
+<phase_done name='optimize_blocks' stamp='0.164'/>
+</phase>
+<phase name='gvn' stamp='0.164'>
+<phase_done name='gvn' stamp='0.164'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.164'>
+<phase_done name='rangeCheckElimination' stamp='0.164'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.164'>
+<phase_done name='optimize_null_checks' stamp='0.164'/>
+</phase>
+<phase_done name='buildIR' stamp='0.164'/>
+</phase>
+<phase name='emit_lir' stamp='0.164'>
+<phase name='lirGeneration' stamp='0.164'>
+<phase_done name='lirGeneration' stamp='0.164'/>
+</phase>
+<phase name='linearScan' stamp='0.164'>
+<phase_done name='linearScan' stamp='0.164'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.164'/>
+</phase>
+<phase name='codeemit' stamp='0.164'>
+<phase_done name='codeemit' stamp='0.164'/>
+</phase>
+<phase name='codeinstall' stamp='0.164'>
+<phase_done name='codeinstall' stamp='0.164'/>
+</phase>
+<code_cache total_blobs='471' nmethods='158' adapters='162' free_code_cache='248518272'/>
+<task_done success='1' nmsize='272' count='128' stamp='0.164'/>
+</task>
+<task compile_id='166' method='java.lang.Module getDescriptor ()Ljava/lang/module/ModuleDescriptor;' bytes='5' count='129' iicount='129' level='1' stamp='0.166'>
+<phase name='setup' stamp='0.166'>
+<phase_done name='setup' stamp='0.166'/>
+</phase>
+<phase name='buildIR' stamp='0.166'>
+<klass id='1093' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<klass id='1019' name='java.lang.Module' flags='17'/>
+<method id='1094' holder='1019' name='getDescriptor' return='1093' flags='1' bytes='5' iicount='129'/>
+<parse method='1094'  stamp='0.166'>
+<phase name='parse_hir' stamp='0.166'>
+<phase_done name='parse_hir' stamp='0.166'/>
+</phase>
+<parse_done stamp='0.166'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.166'>
+<phase_done name='optimize_blocks' stamp='0.166'/>
+</phase>
+<phase name='gvn' stamp='0.166'>
+<phase_done name='gvn' stamp='0.166'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.166'>
+<phase_done name='rangeCheckElimination' stamp='0.166'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.166'>
+<phase_done name='optimize_null_checks' stamp='0.166'/>
+</phase>
+<phase_done name='buildIR' stamp='0.166'/>
+</phase>
+<phase name='emit_lir' stamp='0.166'>
+<phase name='lirGeneration' stamp='0.166'>
+<phase_done name='lirGeneration' stamp='0.166'/>
+</phase>
+<phase name='linearScan' stamp='0.166'>
+<phase_done name='linearScan' stamp='0.166'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.166'/>
+</phase>
+<phase name='codeemit' stamp='0.166'>
+<phase_done name='codeemit' stamp='0.166'/>
+</phase>
+<phase name='codeinstall' stamp='0.166'>
+<phase_done name='codeinstall' stamp='0.166'/>
+</phase>
+<code_cache total_blobs='478' nmethods='165' adapters='162' free_code_cache='248509440'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.166'/>
+</task>
+<task compile_id='171' method='java.lang.Character toLowerCase (I)I' bytes='9' count='256' iicount='256' level='3' stamp='0.170'>
+<phase name='setup' stamp='0.170'>
+<phase_done name='setup' stamp='0.170'/>
+</phase>
+<phase name='buildIR' stamp='0.170'>
+<type id='975' name='int'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='toLowerCase' return='975' arguments='975' flags='9' bytes='9' iicount='256'/>
+<parse method='1093'  stamp='0.171'>
+<phase name='parse_hir' stamp='0.171'>
+<bc code='184' bci='1'/>
+<klass id='1095' name='java.lang.CharacterData' flags='1024'/>
+<method id='1096' holder='1095' name='of' return='1095' arguments='975' flags='24' bytes='120' compile_id='124' compiler='c1' level='3' iicount='272'/>
+<call method='1096' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1098' holder='1095' name='toLowerCase' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.171'/>
+</phase>
+<parse_done stamp='0.171'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.171'>
+<phase_done name='optimize_blocks' stamp='0.171'/>
+</phase>
+<phase name='gvn' stamp='0.171'>
+<phase_done name='gvn' stamp='0.171'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.171'>
+<phase_done name='rangeCheckElimination' stamp='0.171'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.171'>
+<phase_done name='optimize_null_checks' stamp='0.171'/>
+</phase>
+<phase_done name='buildIR' stamp='0.171'/>
+</phase>
+<phase name='emit_lir' stamp='0.171'>
+<phase name='lirGeneration' stamp='0.171'>
+<phase_done name='lirGeneration' stamp='0.171'/>
+</phase>
+<phase name='linearScan' stamp='0.171'>
+<phase_done name='linearScan' stamp='0.171'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.171'/>
+</phase>
+<phase name='codeemit' stamp='0.171'>
+<phase_done name='codeemit' stamp='0.171'/>
+</phase>
+<phase name='codeinstall' stamp='0.171'>
+<phase_done name='codeinstall' stamp='0.171'/>
+</phase>
+<code_cache total_blobs='487' nmethods='171' adapters='163' free_code_cache='248500224'/>
+<task_done success='1' nmsize='568' count='256' stamp='0.171'/>
+</task>
+<task compile_id='175' method='java.util.jar.Attributes$Name isAlpha (C)Z' bytes='30' count='368' iicount='368' level='3' stamp='0.183'>
+<phase name='setup' stamp='0.183'>
+<phase_done name='setup' stamp='0.183'/>
+</phase>
+<phase name='buildIR' stamp='0.183'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.jar.Attributes$Name' flags='9'/>
+<method id='1094' holder='1093' name='isAlpha' return='969' arguments='970' flags='10' bytes='30' iicount='368'/>
+<parse method='1094'  stamp='0.183'>
+<phase name='parse_hir' stamp='0.183'>
+<phase_done name='parse_hir' stamp='0.183'/>
+</phase>
+<parse_done stamp='0.183'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.183'>
+<phase_done name='optimize_blocks' stamp='0.183'/>
+</phase>
+<phase name='gvn' stamp='0.183'>
+<phase_done name='gvn' stamp='0.183'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.183'>
+<phase_done name='rangeCheckElimination' stamp='0.183'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.183'>
+<phase_done name='optimize_null_checks' stamp='0.183'/>
+</phase>
+<phase_done name='buildIR' stamp='0.183'/>
+</phase>
+<phase name='emit_lir' stamp='0.183'>
+<phase name='lirGeneration' stamp='0.183'>
+<phase_done name='lirGeneration' stamp='0.183'/>
+</phase>
+<phase name='linearScan' stamp='0.183'>
+<phase_done name='linearScan' stamp='0.183'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.183'/>
+</phase>
+<phase name='codeemit' stamp='0.183'>
+<phase_done name='codeemit' stamp='0.183'/>
+</phase>
+<phase name='codeinstall' stamp='0.183'>
+<phase_done name='codeinstall' stamp='0.183'/>
+</phase>
+<code_cache total_blobs='522' nmethods='174' adapters='195' free_code_cache='248478464'/>
+<task_done success='1' nmsize='560' count='368' stamp='0.183'/>
+</task>
+<task compile_id='179' method='java.lang.System getSecurityManager ()Ljava/lang/SecurityManager;' bytes='4' count='259' iicount='259' level='3' stamp='0.195'>
+<phase name='setup' stamp='0.195'>
+<phase_done name='setup' stamp='0.195'/>
+</phase>
+<phase name='buildIR' stamp='0.195'>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1093' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' iicount='259'/>
+<parse method='1093'  stamp='0.195'>
+<phase name='parse_hir' stamp='0.195'>
+<phase_done name='parse_hir' stamp='0.195'/>
+</phase>
+<parse_done stamp='0.195'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.195'>
+<phase_done name='optimize_blocks' stamp='0.195'/>
+</phase>
+<phase name='gvn' stamp='0.195'>
+<phase_done name='gvn' stamp='0.195'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.195'>
+<phase_done name='rangeCheckElimination' stamp='0.195'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.195'>
+<phase_done name='optimize_null_checks' stamp='0.195'/>
+</phase>
+<phase_done name='buildIR' stamp='0.195'/>
+</phase>
+<phase name='emit_lir' stamp='0.195'>
+<phase name='lirGeneration' stamp='0.195'>
+<phase_done name='lirGeneration' stamp='0.195'/>
+</phase>
+<phase name='linearScan' stamp='0.195'>
+<phase_done name='linearScan' stamp='0.195'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.195'/>
+</phase>
+<phase name='codeemit' stamp='0.195'>
+<phase_done name='codeemit' stamp='0.196'/>
+</phase>
+<phase name='codeinstall' stamp='0.196'>
+<phase_done name='codeinstall' stamp='0.196'/>
+</phase>
+<code_cache total_blobs='530' nmethods='179' adapters='198' free_code_cache='248470656'/>
+<task_done success='1' nmsize='336' count='261' stamp='0.196'/>
+</task>
+<task compile_id='183' method='java.lang.StringLatin1 lastIndexOf ([BII)I' bytes='40' count='133' backedge_count='1972' iicount='133' level='3' stamp='0.198'>
+<phase name='setup' stamp='0.198'>
+<phase_done name='setup' stamp='0.198'/>
+</phase>
+<phase name='buildIR' stamp='0.198'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='lastIndexOf' return='975' arguments='1085 975 975' flags='9' bytes='40' iicount='133'/>
+<parse method='1094'  stamp='0.198'>
+<phase name='parse_hir' stamp='0.198'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='1282'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.198'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='1098' name='java.lang.Math' flags='17'/>
+<method id='1099' holder='1098' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='120' compiler='c1' level='3' iicount='742'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.198'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.198'/>
+</phase>
+<parse_done stamp='0.198'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.198'>
+<phase_done name='optimize_blocks' stamp='0.198'/>
+</phase>
+<phase name='gvn' stamp='0.198'>
+<phase_done name='gvn' stamp='0.198'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.198'>
+<phase_done name='rangeCheckElimination' stamp='0.198'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.198'>
+<phase_done name='optimize_null_checks' stamp='0.198'/>
+</phase>
+<phase_done name='buildIR' stamp='0.198'/>
+</phase>
+<phase name='emit_lir' stamp='0.198'>
+<phase name='lirGeneration' stamp='0.198'>
+<phase_done name='lirGeneration' stamp='0.198'/>
+</phase>
+<phase name='linearScan' stamp='0.198'>
+<phase_done name='linearScan' stamp='0.198'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.198'/>
+</phase>
+<phase name='codeemit' stamp='0.198'>
+<phase_done name='codeemit' stamp='0.198'/>
+</phase>
+<phase name='codeinstall' stamp='0.198'>
+<phase_done name='codeinstall' stamp='0.198'/>
+</phase>
+<code_cache total_blobs='534' nmethods='183' adapters='198' free_code_cache='248463872'/>
+<task_done success='1' nmsize='1040' count='136' backedge_count='1998' inlined_bytes='24' stamp='0.198'/>
+</task>
+<task compile_id='188' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='284' iicount='284' level='3' stamp='0.205'>
+<phase name='setup' stamp='0.205'>
+<phase_done name='setup' stamp='0.205'/>
+</phase>
+<phase name='buildIR' stamp='0.205'>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1094' holder='1093' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' iicount='284'/>
+<parse method='1094'  stamp='0.205'>
+<phase name='parse_hir' stamp='0.205'>
+<bc code='183' bci='16'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1097' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' iicount='135'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1099' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' iicount='140'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='6'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='6'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1106' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='284'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='2'/>
+<method id='1108' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='284'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='182' bci='29'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='182' bci='32'/>
+<method id='1110' holder='1050' name='toString' return='983' flags='1' bytes='35' iicount='139'/>
+<call method='1110' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1112' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' iicount='276'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' iicount='267'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='9'/>
+<call method='1094' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1118' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='426'/>
+<call method='1118' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1120' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10225'/>
+<call method='1120' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.205'/>
+</parse>
+<parse_done stamp='0.205'/>
+</parse>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1122' name='java.lang.StringUTF16' flags='16'/>
+<method id='1123' holder='1122' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='183' bci='35'/>
+<klass id='1096' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1125' holder='1096' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1125' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='184' bci='54'/>
+<klass id='1127' name='java.lang.Math' flags='17'/>
+<method id='1128' holder='1127' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='120' compiler='c1' level='3' iicount='870'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.205'/>
+</parse>
+<bc code='184' bci='57'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1130' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.205'/>
+</phase>
+<parse_done stamp='0.205'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.205'>
+<phase_done name='optimize_blocks' stamp='0.205'/>
+</phase>
+<phase name='gvn' stamp='0.205'>
+<phase_done name='gvn' stamp='0.205'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.205'>
+<phase_done name='rangeCheckElimination' stamp='0.205'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.205'>
+<phase_done name='optimize_null_checks' stamp='0.205'/>
+</phase>
+<phase_done name='buildIR' stamp='0.205'/>
+</phase>
+<phase name='emit_lir' stamp='0.205'>
+<phase name='lirGeneration' stamp='0.205'>
+<phase_done name='lirGeneration' stamp='0.205'/>
+</phase>
+<phase name='linearScan' stamp='0.205'>
+<phase_done name='linearScan' stamp='0.206'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.206'/>
+</phase>
+<phase name='codeemit' stamp='0.206'>
+<phase_done name='codeemit' stamp='0.206'/>
+</phase>
+<phase name='codeinstall' stamp='0.206'>
+<phase_done name='codeinstall' stamp='0.206'/>
+</phase>
+<code_cache total_blobs='562' nmethods='189' adapters='220' free_code_cache='248437760'/>
+<task_done success='1' nmsize='3512' count='286' inlined_bytes='129' stamp='0.206'/>
+</task>
+<task compile_id='200' method='java.lang.StringLatin1 newString ([BII)Ljava/lang/String;' bytes='17' count='284' iicount='284' level='3' stamp='0.211'>
+<phase name='setup' stamp='0.211'>
+<phase_done name='setup' stamp='0.211'/>
+</phase>
+<phase name='buildIR' stamp='0.211'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' iicount='284'/>
+<parse method='1094'  stamp='0.212'>
+<phase name='parse_hir' stamp='0.212'>
+<bc code='184' bci='9'/>
+<klass id='1096' name='java.util.Arrays' flags='1'/>
+<method id='1097' holder='1096' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='301'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1099' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='450'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1101' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='10389'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.212'/>
+</parse>
+<parse_done stamp='0.212'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.212'/>
+</phase>
+<parse_done stamp='0.212'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.212'>
+<phase_done name='optimize_blocks' stamp='0.212'/>
+</phase>
+<phase name='gvn' stamp='0.212'>
+<phase_done name='gvn' stamp='0.212'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.212'>
+<phase_done name='rangeCheckElimination' stamp='0.212'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.212'>
+<phase_done name='optimize_null_checks' stamp='0.212'/>
+</phase>
+<phase_done name='buildIR' stamp='0.212'/>
+</phase>
+<phase name='emit_lir' stamp='0.212'>
+<phase name='lirGeneration' stamp='0.212'>
+<phase_done name='lirGeneration' stamp='0.212'/>
+</phase>
+<phase name='linearScan' stamp='0.212'>
+<phase_done name='linearScan' stamp='0.212'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.212'/>
+</phase>
+<phase name='codeemit' stamp='0.212'>
+<phase_done name='codeemit' stamp='0.212'/>
+</phase>
+<phase name='codeinstall' stamp='0.212'>
+<phase_done name='codeinstall' stamp='0.212'/>
+</phase>
+<code_cache total_blobs='583' nmethods='205' adapters='225' free_code_cache='248418176'/>
+<task_done success='1' nmsize='776' count='287' inlined_bytes='16' stamp='0.212'/>
+</task>
+<task compile_id='219' method='java.lang.invoke.MethodType hashCode ()I' bytes='53' count='258' backedge_count='832' iicount='258' level='3' stamp='0.220'>
+<phase name='setup' stamp='0.220'>
+<phase_done name='setup' stamp='0.220'/>
+</phase>
+<phase name='buildIR' stamp='0.220'>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='hashCode' return='975' flags='1' bytes='53' iicount='259'/>
+<parse method='1093'  stamp='0.220'>
+<phase name='parse_hir' stamp='0.220'>
+<bc code='182' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='40'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.220'/>
+</phase>
+<parse_done stamp='0.220'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.220'>
+<phase_done name='optimize_blocks' stamp='0.220'/>
+</phase>
+<phase name='gvn' stamp='0.220'>
+<phase_done name='gvn' stamp='0.220'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.220'>
+<phase_done name='rangeCheckElimination' stamp='0.220'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.220'>
+<phase_done name='optimize_null_checks' stamp='0.220'/>
+</phase>
+<phase_done name='buildIR' stamp='0.220'/>
+</phase>
+<phase name='emit_lir' stamp='0.220'>
+<phase name='lirGeneration' stamp='0.220'>
+<phase_done name='lirGeneration' stamp='0.220'/>
+</phase>
+<phase name='linearScan' stamp='0.220'>
+<phase_done name='linearScan' stamp='0.220'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.220'/>
+</phase>
+<phase name='codeemit' stamp='0.220'>
+<phase_done name='codeemit' stamp='0.221'/>
+</phase>
+<phase name='codeinstall' stamp='0.221'>
+<phase_done name='codeinstall' stamp='0.221'/>
+</phase>
+<code_cache total_blobs='608' nmethods='221' adapters='232' free_code_cache='248393856'/>
+<task_done success='1' nmsize='952' count='270' backedge_count='852' stamp='0.221'/>
+</task>
+<task compile_id='226' method='jdk.internal.org.objectweb.asm.ClassWriter get (Ljdk/internal/org/objectweb/asm/Item;)Ljdk/internal/org/objectweb/asm/Item;' bytes='49' count='276' backedge_count='3' iicount='276' level='3' stamp='0.223'>
+<phase name='setup' stamp='0.223'>
+<phase_done name='setup' stamp='0.223'/>
+</phase>
+<phase name='buildIR' stamp='0.223'>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='get' return='1094' arguments='1094' flags='2' bytes='49' iicount='276'/>
+<parse method='1095'  stamp='0.223'>
+<phase name='parse_hir' stamp='0.223'>
+<bc code='182' bci='33'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1094' name='isEqualTo' return='969' arguments='1094' flags='0' bytes='354' iicount='106'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.223'/>
+</phase>
+<parse_done stamp='0.223'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.223'>
+<phase_done name='optimize_blocks' stamp='0.223'/>
+</phase>
+<phase name='gvn' stamp='0.223'>
+<phase_done name='gvn' stamp='0.223'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.223'>
+<phase_done name='rangeCheckElimination' stamp='0.223'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.223'>
+<phase_done name='optimize_null_checks' stamp='0.223'/>
+</phase>
+<phase_done name='buildIR' stamp='0.223'/>
+</phase>
+<phase name='emit_lir' stamp='0.223'>
+<phase name='lirGeneration' stamp='0.223'>
+<phase_done name='lirGeneration' stamp='0.223'/>
+</phase>
+<phase name='linearScan' stamp='0.223'>
+<phase_done name='linearScan' stamp='0.223'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.223'/>
+</phase>
+<phase name='codeemit' stamp='0.223'>
+<phase_done name='codeemit' stamp='0.223'/>
+</phase>
+<phase name='codeinstall' stamp='0.223'>
+<phase_done name='codeinstall' stamp='0.223'/>
+</phase>
+<code_cache total_blobs='614' nmethods='225' adapters='234' free_code_cache='248384128'/>
+<task_done success='1' nmsize='936' count='291' backedge_count='6' stamp='0.223'/>
+</task>
+<task compile_id='235' method='jdk.internal.org.objectweb.asm.ByteVector putUTF8 (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='142' count='119' backedge_count='3171' iicount='119' level='3' stamp='0.227'>
+<phase name='setup' stamp='0.227'>
+<phase_done name='setup' stamp='0.227'/>
+</phase>
+<phase name='buildIR' stamp='0.227'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1094' holder='1093' name='putUTF8' return='1093' arguments='983' flags='1' bytes='142' iicount='122'/>
+<parse method='1094'  stamp='0.227'>
+<phase name='parse_hir' stamp='0.227'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='2483'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1098' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='12032'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.227'/>
+</parse>
+<parse_done stamp='0.227'/>
+</parse>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<bc code='183' bci='41'/>
+<method id='1104' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='26'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='83'/>
+<type id='970' name='char'/>
+<method id='1106' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='6837'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1108' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='14199'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1110' name='java.lang.StringLatin1' flags='16'/>
+<method id='1111' holder='1110' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='6' compiler='c1' level='3' iicount='6837'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='15'/>
+<klass id='1113' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1114' holder='1113' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1115' name='java.lang.StringUTF16' flags='16'/>
+<method id='1116' holder='1115' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='2'/>
+<method id='1118' holder='1115' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='2'/>
+<method id='1120' holder='1115' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1120' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1122' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1122' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1124' holder='1115' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.228'/>
+</parse>
+<parse_done stamp='0.228'/>
+</parse>
+<bc code='182' bci='125'/>
+<method id='1125' holder='1093' name='encodeUTF8' return='1093' arguments='983 975 975' flags='0' bytes='335' iicount='1'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.228'/>
+</phase>
+<parse_done stamp='0.228'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.228'>
+<phase_done name='optimize_blocks' stamp='0.228'/>
+</phase>
+<phase name='gvn' stamp='0.228'>
+<phase_done name='gvn' stamp='0.228'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.228'>
+<phase_done name='rangeCheckElimination' stamp='0.228'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.228'>
+<phase_done name='optimize_null_checks' stamp='0.228'/>
+</phase>
+<phase_done name='buildIR' stamp='0.228'/>
+</phase>
+<phase name='emit_lir' stamp='0.228'>
+<phase name='lirGeneration' stamp='0.228'>
+<phase_done name='lirGeneration' stamp='0.228'/>
+</phase>
+<phase name='linearScan' stamp='0.228'>
+<phase_done name='linearScan' stamp='0.228'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.228'/>
+</phase>
+<phase name='codeemit' stamp='0.228'>
+<phase_done name='codeemit' stamp='0.229'/>
+</phase>
+<phase name='codeinstall' stamp='0.229'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.229'/>
+</phase>
+<code_cache total_blobs='627' nmethods='238' adapters='234' free_code_cache='248357376'/>
+<task_done success='1' nmsize='3240' count='147' backedge_count='3816' inlined_bytes='123' stamp='0.229'/>
+</task>
+<task compile_id='240' method='java.lang.Class getClassLoader ()Ljava/lang/ClassLoader;' bytes='28' count='259' iicount='259' level='3' stamp='0.229'>
+<phase name='setup' stamp='0.229'>
+<phase_done name='setup' stamp='0.229'/>
+</phase>
+<phase name='buildIR' stamp='0.229'>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' iicount='261'/>
+<parse method='1093'  stamp='0.229'>
+<phase name='parse_hir' stamp='0.229'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.229'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1097' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='401'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.229'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1100' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1101' holder='1100' name='getCallerClass' return='984' flags='265' bytes='0' iicount='26'/>
+<call method='1101' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<type id='977' name='void'/>
+<method id='1102' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='0'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.229'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1104' holder='986' name='getClassLoader' return='986' arguments='984' flags='8' bytes='11' iicount='3'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='7'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.229'/>
+</parse>
+<parse_done stamp='0.229'/>
+</parse>
+<bc code='184' bci='15'/>
+<type id='969' name='boolean'/>
+<method id='1106' holder='986' name='needsClassLoaderPermissionCheck' return='969' arguments='986 986' flags='10' bytes='27' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='15'/>
+<method id='1108' holder='986' name='isAncestor' return='969' arguments='986' flags='0' bytes='20' iicount='1'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1108'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.229'/>
+</parse>
+<parse_done stamp='0.229'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='1113' name='java.security.Permission' flags='1025'/>
+<method id='1114' holder='994' name='checkPermission' return='977' arguments='1113' flags='1' bytes='5' iicount='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.229'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.229'/>
+</phase>
+<parse_done stamp='0.229'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.229'>
+<phase_done name='optimize_blocks' stamp='0.229'/>
+</phase>
+<phase name='gvn' stamp='0.229'>
+<phase_done name='gvn' stamp='0.229'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.229'>
+<phase_done name='rangeCheckElimination' stamp='0.229'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.229'>
+<phase_done name='optimize_null_checks' stamp='0.229'/>
+</phase>
+<phase_done name='buildIR' stamp='0.229'/>
+</phase>
+<phase name='emit_lir' stamp='0.229'>
+<phase name='lirGeneration' stamp='0.229'>
+<phase_done name='lirGeneration' stamp='0.229'/>
+</phase>
+<phase name='linearScan' stamp='0.229'>
+<phase_done name='linearScan' stamp='0.229'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.229'/>
+</phase>
+<phase name='codeemit' stamp='0.229'>
+<phase_done name='codeemit' stamp='0.229'/>
+</phase>
+<phase name='codeinstall' stamp='0.229'>
+<dependency type='unique_concrete_method' ctxk='986' x='1108'/>
+<phase_done name='codeinstall' stamp='0.229'/>
+</phase>
+<code_cache total_blobs='631' nmethods='242' adapters='234' free_code_cache='248350080'/>
+<task_done success='1' nmsize='2584' count='263' inlined_bytes='105' stamp='0.229'/>
+</task>
+<task compile_id='244' method='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry &lt;init&gt; (Ljava/lang/Object;)V' bytes='14' count='271' iicount='271' level='3' stamp='0.229'>
+<phase name='setup' stamp='0.230'>
+<phase_done name='setup' stamp='0.230'/>
+</phase>
+<phase name='buildIR' stamp='0.230'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.invoke.MethodType$ConcurrentWeakInternSet$WeakEntry' flags='10'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='982' flags='1' bytes='14' iicount='273'/>
+<parse method='1094'  stamp='0.230'>
+<phase name='parse_hir' stamp='0.230'>
+<bc code='183' bci='2'/>
+<klass id='1010' name='java.lang.ref.WeakReference' flags='1'/>
+<method id='1096' holder='1010' name='&lt;init&gt;' return='977' arguments='982' flags='1' bytes='6' compile_id='239' compiler='c1' level='3' iicount='279'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='2'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1098' holder='1008' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='7' compile_id='208' compiler='c1' level='3' iicount='426'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<klass id='1100' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1101' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1100' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='606'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='11058'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.230'/>
+</parse>
+<parse_done stamp='0.230'/>
+</parse>
+<parse_done stamp='0.230'/>
+</parse>
+<parse_done stamp='0.230'/>
+</parse>
+<bc code='182' bci='7'/>
+<type id='975' name='int'/>
+<method id='1106' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.230'/>
+</phase>
+<parse_done stamp='0.230'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.230'>
+<phase_done name='optimize_blocks' stamp='0.230'/>
+</phase>
+<phase name='gvn' stamp='0.230'>
+<phase_done name='gvn' stamp='0.230'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.230'>
+<phase_done name='rangeCheckElimination' stamp='0.230'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.230'>
+<phase_done name='optimize_null_checks' stamp='0.230'/>
+</phase>
+<phase_done name='buildIR' stamp='0.230'/>
+</phase>
+<phase name='emit_lir' stamp='0.230'>
+<phase name='lirGeneration' stamp='0.230'>
+<phase_done name='lirGeneration' stamp='0.230'/>
+</phase>
+<phase name='linearScan' stamp='0.230'>
+<phase_done name='linearScan' stamp='0.230'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.230'/>
+</phase>
+<phase name='codeemit' stamp='0.230'>
+<phase_done name='codeemit' stamp='0.230'/>
+</phase>
+<phase name='codeinstall' stamp='0.230'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.230'/>
+</phase>
+<code_cache total_blobs='635' nmethods='246' adapters='234' free_code_cache='248344704'/>
+<task_done success='1' nmsize='1192' count='283' inlined_bytes='39' stamp='0.230'/>
+</task>
+<task compile_id='253' method='jdk.internal.org.objectweb.asm.Item &lt;init&gt; (ILjdk/internal/org/objectweb/asm/Item;)V' bytes='66' count='265' iicount='265' level='3' stamp='0.231'>
+<phase name='setup' stamp='0.231'>
+<phase_done name='setup' stamp='0.231'/>
+</phase>
+<phase name='buildIR' stamp='0.231'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1093' flags='0' bytes='66' iicount='267'/>
+<parse method='1094'  stamp='0.231'>
+<phase name='parse_hir' stamp='0.231'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='11127'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.231'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.231'/>
+</phase>
+<parse_done stamp='0.231'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.231'>
+<phase_done name='optimize_blocks' stamp='0.231'/>
+</phase>
+<phase name='gvn' stamp='0.231'>
+<phase_done name='gvn' stamp='0.231'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.231'>
+<phase_done name='rangeCheckElimination' stamp='0.231'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.231'>
+<phase_done name='optimize_null_checks' stamp='0.231'/>
+</phase>
+<phase_done name='buildIR' stamp='0.231'/>
+</phase>
+<phase name='emit_lir' stamp='0.231'>
+<phase name='lirGeneration' stamp='0.231'>
+<phase_done name='lirGeneration' stamp='0.231'/>
+</phase>
+<phase name='linearScan' stamp='0.231'>
+<phase_done name='linearScan' stamp='0.231'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.231'/>
+</phase>
+<phase name='codeemit' stamp='0.231'>
+<phase_done name='codeemit' stamp='0.231'/>
+</phase>
+<phase name='codeinstall' stamp='0.231'>
+<phase_done name='codeinstall' stamp='0.231'/>
+</phase>
+<code_cache total_blobs='642' nmethods='253' adapters='234' free_code_cache='248331776'/>
+<task_done success='1' nmsize='784' count='270' inlined_bytes='1' stamp='0.231'/>
+</task>
+<task compile_id='258' method='java.lang.invoke.LambdaForm parameterType (I)Ljava/lang/invoke/LambdaForm$BasicType;' bytes='9' count='278' iicount='278' level='3' stamp='0.232'>
+<phase name='setup' stamp='0.232'>
+<phase_done name='setup' stamp='0.232'/>
+</phase>
+<phase name='buildIR' stamp='0.232'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<type id='975' name='int'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1094' holder='1040' name='parameterType' return='1093' arguments='975' flags='0' bytes='9' iicount='278'/>
+<parse method='1094'  stamp='0.232'>
+<phase name='parse_hir' stamp='0.232'>
+<bc code='182' bci='2'/>
+<klass id='1096' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1097' holder='1040' name='parameter' return='1096' arguments='975' flags='0' bytes='52' compile_id='255' compiler='c1' level='3' iicount='284'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.232'>
+<phase_done name='lirGeneration' stamp='0.232'/>
+</phase>
+<phase name='linearScan' stamp='0.232'>
+<phase_done name='linearScan' stamp='0.232'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.232'/>
+</phase>
+<phase name='codeemit' stamp='0.232'>
+<phase_done name='codeemit' stamp='0.232'/>
+</phase>
+<phase name='codeinstall' stamp='0.232'>
+<dependency type='leaf_type' ctxk='1040'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1097'/>
+<phase_done name='codeinstall' stamp='0.232'/>
+</phase>
+<code_cache total_blobs='647' nmethods='258' adapters='234' free_code_cache='248324352'/>
+<task_done success='1' nmsize='424' count='289' stamp='0.232'/>
+</task>
+<task compile_id='260' method='java.lang.invoke.MethodHandle type ()Ljava/lang/invoke/MethodType;' bytes='5' count='128' iicount='128' level='1' stamp='0.232'>
+<phase name='setup' stamp='0.232'>
+<phase_done name='setup' stamp='0.232'/>
+</phase>
+<phase name='buildIR' stamp='0.232'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1093' holder='1035' name='type' return='1041' flags='1' bytes='5' iicount='128'/>
+<parse method='1093'  stamp='0.232'>
+<phase name='parse_hir' stamp='0.232'>
+<phase_done name='parse_hir' stamp='0.232'/>
+</phase>
+<parse_done stamp='0.232'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.232'>
+<phase_done name='optimize_blocks' stamp='0.232'/>
+</phase>
+<phase name='gvn' stamp='0.232'>
+<phase_done name='gvn' stamp='0.232'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.232'>
+<phase_done name='rangeCheckElimination' stamp='0.232'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.232'>
+<phase_done name='optimize_null_checks' stamp='0.232'/>
+</phase>
+<phase_done name='buildIR' stamp='0.232'/>
+</phase>
+<phase name='emit_lir' stamp='0.232'>
+<phase name='lirGeneration' stamp='0.232'>
+<phase_done name='lirGeneration' stamp='0.232'/>
+</phase>
+<phase name='linearScan' stamp='0.232'>
+<phase_done name='linearScan' stamp='0.232'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.232'/>
+</phase>
+<phase name='codeemit' stamp='0.232'>
+<phase_done name='codeemit' stamp='0.232'/>
+</phase>
+<phase name='codeinstall' stamp='0.232'>
+<phase_done name='codeinstall' stamp='0.232'/>
+</phase>
+<code_cache total_blobs='648' nmethods='259' adapters='234' free_code_cache='248323584'/>
+<task_done success='1' nmsize='272' count='129' stamp='0.232'/>
+</task>
+<task compile_id='264' method='java.lang.invoke.MemberName testAllFlags (I)Z' bytes='7' count='258' iicount='258' level='3' stamp='0.234'>
+<phase name='setup' stamp='0.234'>
+<phase_done name='setup' stamp='0.234'/>
+</phase>
+<phase name='buildIR' stamp='0.234'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='testAllFlags' return='969' arguments='975' flags='2' bytes='7' iicount='258'/>
+<parse method='1093'  stamp='0.234'>
+<phase name='parse_hir' stamp='0.234'>
+<bc code='183' bci='3'/>
+<method id='1095' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='748'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.234'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.234'/>
+</phase>
+<parse_done stamp='0.234'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.234'>
+<phase_done name='optimize_blocks' stamp='0.234'/>
+</phase>
+<phase name='gvn' stamp='0.234'>
+<phase_done name='gvn' stamp='0.234'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.234'>
+<phase_done name='rangeCheckElimination' stamp='0.234'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.234'>
+<phase_done name='optimize_null_checks' stamp='0.234'/>
+</phase>
+<phase_done name='buildIR' stamp='0.234'/>
+</phase>
+<phase name='emit_lir' stamp='0.234'>
+<phase name='lirGeneration' stamp='0.234'>
+<phase_done name='lirGeneration' stamp='0.234'/>
+</phase>
+<phase name='linearScan' stamp='0.234'>
+<phase_done name='linearScan' stamp='0.234'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.234'/>
+</phase>
+<phase name='codeemit' stamp='0.234'>
+<phase_done name='codeemit' stamp='0.234'/>
+</phase>
+<phase name='codeinstall' stamp='0.234'>
+<phase_done name='codeinstall' stamp='0.234'/>
+</phase>
+<code_cache total_blobs='656' nmethods='266' adapters='235' free_code_cache='248316288'/>
+<task_done success='1' nmsize='528' count='267' inlined_bytes='16' stamp='0.234'/>
+</task>
+<task compile_id='274' method='java.lang.invoke.LambdaForm$Name initIndex (I)Z' bytes='26' count='256' iicount='256' level='3' stamp='0.235'>
+<phase name='setup' stamp='0.235'>
+<phase_done name='setup' stamp='0.235'/>
+</phase>
+<phase name='buildIR' stamp='0.235'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1094' holder='1093' name='initIndex' return='969' arguments='975' flags='0' bytes='26' iicount='256'/>
+<parse method='1094'  stamp='0.235'>
+<phase name='parse_hir' stamp='0.235'>
+<phase_done name='parse_hir' stamp='0.235'/>
+</phase>
+<parse_done stamp='0.235'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.235'>
+<phase_done name='optimize_blocks' stamp='0.235'/>
+</phase>
+<phase name='gvn' stamp='0.235'>
+<phase_done name='gvn' stamp='0.235'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.235'>
+<phase_done name='rangeCheckElimination' stamp='0.235'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.235'>
+<phase_done name='optimize_null_checks' stamp='0.235'/>
+</phase>
+<phase_done name='buildIR' stamp='0.235'/>
+</phase>
+<phase name='emit_lir' stamp='0.235'>
+<phase name='lirGeneration' stamp='0.235'>
+<phase_done name='lirGeneration' stamp='0.235'/>
+</phase>
+<phase name='linearScan' stamp='0.235'>
+<phase_done name='linearScan' stamp='0.235'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.235'/>
+</phase>
+<phase name='codeemit' stamp='0.235'>
+<phase_done name='codeemit' stamp='0.235'/>
+</phase>
+<phase name='codeinstall' stamp='0.235'>
+<phase_done name='codeinstall' stamp='0.235'/>
+</phase>
+<code_cache total_blobs='663' nmethods='273' adapters='235' free_code_cache='248307968'/>
+<task_done success='1' nmsize='496' count='256' stamp='0.235'/>
+</task>
+<task compile_id='280' method='java.lang.invoke.MethodType checkPtypes ([Ljava/lang/Class;)I' bytes='61' count='257' backedge_count='541' iicount='257' level='3' stamp='0.237'>
+<phase name='setup' stamp='0.237'>
+<phase_done name='setup' stamp='0.237'/>
+</phase>
+<phase name='buildIR' stamp='0.237'>
+<type id='975' name='int'/>
+<klass id='1093' name='[Ljava.lang.Class;' flags='1041'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1094' holder='1041' name='checkPtypes' return='975' arguments='1093' flags='10' bytes='61' iicount='257'/>
+<parse method='1094'  stamp='0.237'>
+<phase name='parse_hir' stamp='0.237'>
+<bc code='184' bci='24'/>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1096' holder='1041' name='checkPtype' return='977' arguments='984' flags='10' bytes='19' compile_id='215' compiler='c1' level='3' iicount='541'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1098' name='java.util.Objects' flags='17'/>
+<method id='1099' holder='1098' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='4405'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1101' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.237'/>
+</parse>
+<bc code='184' bci='14'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1107' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1108' holder='1107' name='newIllegalArgumentException' return='993' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='5'/>
+<klass id='1110' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1111' holder='1110' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.237'/>
+</parse>
+<parse_done stamp='0.237'/>
+</parse>
+<bc code='184' bci='56'/>
+<method id='1117' holder='1041' name='checkSlotCount' return='977' arguments='975' flags='8' bytes='33' compile_id='233' compiler='c1' level='3' iicount='436'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='13'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1119' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='322'/>
+<call method='1119' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1121' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='335'/>
+<call method='1121' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.237'/>
+</parse>
+<bc code='182' bci='18'/>
+<method id='1124' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='556'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='183' bci='2'/>
+<method id='1126' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='556'/>
+<call method='1126' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.237'/>
+</parse>
+<bc code='182' bci='22'/>
+<method id='1128' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='41'/>
+<call method='1128' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='2'/>
+<method id='1130' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='41'/>
+<call method='1130' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.238'/>
+</parse>
+<bc code='182' bci='25'/>
+<method id='1132' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='335'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='28'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='5'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.238'/>
+</parse>
+<parse_done stamp='0.238'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.238'/>
+</phase>
+<parse_done stamp='0.238'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.238'>
+<phase_done name='optimize_blocks' stamp='0.238'/>
+</phase>
+<phase name='gvn' stamp='0.238'>
+<phase_done name='gvn' stamp='0.238'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.238'>
+<phase_done name='rangeCheckElimination' stamp='0.238'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.238'>
+<phase_done name='optimize_null_checks' stamp='0.238'/>
+</phase>
+<phase_done name='buildIR' stamp='0.238'/>
+</phase>
+<phase name='emit_lir' stamp='0.238'>
+<phase name='lirGeneration' stamp='0.238'>
+<phase_done name='lirGeneration' stamp='0.238'/>
+</phase>
+<phase name='linearScan' stamp='0.238'>
+<phase_done name='linearScan' stamp='0.238'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.238'/>
+</phase>
+<phase name='codeemit' stamp='0.238'>
+<phase_done name='codeemit' stamp='0.238'/>
+</phase>
+<phase name='codeinstall' stamp='0.238'>
+<phase_done name='codeinstall' stamp='0.238'/>
+</phase>
+<code_cache total_blobs='677' nmethods='283' adapters='239' free_code_cache='248291584'/>
+<task_done success='1' nmsize='2920' count='276' backedge_count='605' inlined_bytes='107' stamp='0.238'/>
+</task>
+<task compile_id='287' method='java.lang.String checkBoundsBeginEnd (III)V' bytes='60' count='261' iicount='261' level='3' stamp='0.239'>
+<phase name='setup' stamp='0.239'>
+<phase_done name='setup' stamp='0.239'/>
+</phase>
+<phase name='buildIR' stamp='0.239'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='checkBoundsBeginEnd' return='977' arguments='975 975 975' flags='8' bytes='60' iicount='261'/>
+<parse method='1093'  stamp='0.239'>
+<phase name='parse_hir' stamp='0.239'>
+<bc code='183' bci='22'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1096' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='350'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1098' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='363'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='182' bci='27'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='578'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='578'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.239'/>
+</parse>
+<bc code='182' bci='31'/>
+<method id='1105' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='43'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<method id='1107' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='43'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='36'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='40'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='182' bci='52'/>
+<method id='1111' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='366'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1113' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1004'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1116' name='java.lang.StringLatin1' flags='16'/>
+<method id='1117' holder='1116' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='682'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='9'/>
+<klass id='1119' name='java.util.Arrays' flags='1'/>
+<method id='1120' holder='1119' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='699'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1122' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='991'/>
+<call method='1122' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1124' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='12094'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1126' name='java.lang.StringUTF16' flags='16'/>
+<method id='1127' holder='1126' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.240'/>
+</parse>
+<bc code='183' bci='55'/>
+<klass id='1095' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1129' holder='1095' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1129' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.240'/>
+</phase>
+<parse_done stamp='0.240'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.240'>
+<phase_done name='optimize_blocks' stamp='0.240'/>
+</phase>
+<phase name='gvn' stamp='0.240'>
+<phase_done name='gvn' stamp='0.240'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.240'>
+<phase_done name='rangeCheckElimination' stamp='0.240'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.240'>
+<phase_done name='optimize_null_checks' stamp='0.240'/>
+</phase>
+<phase_done name='buildIR' stamp='0.240'/>
+</phase>
+<phase name='emit_lir' stamp='0.240'>
+<phase name='lirGeneration' stamp='0.240'>
+<phase_done name='lirGeneration' stamp='0.240'/>
+</phase>
+<phase name='linearScan' stamp='0.240'>
+<phase_done name='linearScan' stamp='0.240'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.240'/>
+</phase>
+<phase name='codeemit' stamp='0.240'>
+<phase_done name='codeemit' stamp='0.240'/>
+</phase>
+<phase name='codeinstall' stamp='0.240'>
+<phase_done name='codeinstall' stamp='0.240'/>
+</phase>
+<code_cache total_blobs='683' nmethods='289' adapters='239' free_code_cache='248275200'/>
+<task_done success='1' nmsize='3896' count='271' inlined_bytes='142' stamp='0.240'/>
+</task>
+<task compile_id='295' method='java.lang.AbstractStringBuilder newCapacity (I)I' bytes='55' count='324' iicount='324' level='3' stamp='0.241'>
+<phase name='setup' stamp='0.241'>
+<phase_done name='setup' stamp='0.241'/>
+</phase>
+<phase name='buildIR' stamp='0.241'>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' iicount='324'/>
+<parse method='1093'  stamp='0.241'>
+<phase name='parse_hir' stamp='0.241'>
+<bc code='183' bci='47'/>
+<method id='1095' holder='1048' name='hugeCapacity' return='975' arguments='975' flags='2' bytes='41' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.241'/>
+</phase>
+<parse_done stamp='0.241'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.241'>
+<phase_done name='optimize_blocks' stamp='0.241'/>
+</phase>
+<phase name='gvn' stamp='0.241'>
+<phase_done name='gvn' stamp='0.241'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.241'>
+<phase_done name='rangeCheckElimination' stamp='0.241'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.241'>
+<phase_done name='optimize_null_checks' stamp='0.241'/>
+</phase>
+<phase_done name='buildIR' stamp='0.241'/>
+</phase>
+<phase name='emit_lir' stamp='0.241'>
+<phase name='lirGeneration' stamp='0.241'>
+<phase_done name='lirGeneration' stamp='0.241'/>
+</phase>
+<phase name='linearScan' stamp='0.241'>
+<phase_done name='linearScan' stamp='0.241'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.241'/>
+</phase>
+<phase name='codeemit' stamp='0.241'>
+<phase_done name='codeemit' stamp='0.241'/>
+</phase>
+<phase name='codeinstall' stamp='0.241'>
+<phase_done name='codeinstall' stamp='0.241'/>
+</phase>
+<code_cache total_blobs='688' nmethods='294' adapters='239' free_code_cache='248266368'/>
+<task_done success='1' nmsize='648' count='327' stamp='0.241'/>
+</task>
+<task compile_id='300' method='java.lang.invoke.MemberName isConstructor ()Z' bytes='7' count='256' iicount='256' level='3' stamp='0.242'>
+<phase name='setup' stamp='0.242'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='isConstructor' return='969' flags='1' bytes='7' iicount='256'/>
+<parse method='1093'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1038' name='testAllFlags' return='969' arguments='975' flags='2' bytes='7' compile_id='264' compiler='c1' level='3' iicount='413'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<method id='1097' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='1159'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.243'/>
+</parse>
+<parse_done stamp='0.243'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.243'/>
+</phase>
+<code_cache total_blobs='691' nmethods='297' adapters='239' free_code_cache='248264064'/>
+<task_done success='1' nmsize='624' count='258' inlined_bytes='23' stamp='0.243'/>
+</task>
+<task compile_id='301' method='java.lang.invoke.LambdaForm$Name &lt;init&gt; (ILjava/lang/invoke/LambdaForm$BasicType;Ljava/lang/invoke/LambdaForm$NamedFunction;[Ljava/lang/Object;)V' bytes='54' count='287' iicount='287' level='3' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='1095' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<klass id='1096' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1097' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1094 1095 1096' flags='2' bytes='54' iicount='287'/>
+<parse method='1097'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='12593'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.243'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.243'/>
+</phase>
+<code_cache total_blobs='692' nmethods='298' adapters='239' free_code_cache='248262656'/>
+<task_done success='1' nmsize='816' count='287' inlined_bytes='1' stamp='0.243'/>
+</task>
+<task compile_id='302' method='java.lang.invoke.LambdaForm$Name isParam ()Z' bytes='13' count='263' iicount='263' level='3' stamp='0.243'>
+<phase name='setup' stamp='0.243'>
+<phase_done name='setup' stamp='0.243'/>
+</phase>
+<phase name='buildIR' stamp='0.243'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<method id='1094' holder='1093' name='isParam' return='969' flags='0' bytes='13' iicount='263'/>
+<parse method='1094'  stamp='0.243'>
+<phase name='parse_hir' stamp='0.243'>
+<phase_done name='parse_hir' stamp='0.243'/>
+</phase>
+<parse_done stamp='0.243'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.243'>
+<phase_done name='optimize_blocks' stamp='0.243'/>
+</phase>
+<phase name='gvn' stamp='0.243'>
+<phase_done name='gvn' stamp='0.243'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.243'>
+<phase_done name='rangeCheckElimination' stamp='0.243'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.243'>
+<phase_done name='optimize_null_checks' stamp='0.243'/>
+</phase>
+<phase_done name='buildIR' stamp='0.243'/>
+</phase>
+<phase name='emit_lir' stamp='0.243'>
+<phase name='lirGeneration' stamp='0.243'>
+<phase_done name='lirGeneration' stamp='0.243'/>
+</phase>
+<phase name='linearScan' stamp='0.243'>
+<phase_done name='linearScan' stamp='0.243'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.243'/>
+</phase>
+<phase name='codeemit' stamp='0.243'>
+<phase_done name='codeemit' stamp='0.243'/>
+</phase>
+<phase name='codeinstall' stamp='0.243'>
+<phase_done name='codeinstall' stamp='0.244'/>
+</phase>
+<code_cache total_blobs='694' nmethods='300' adapters='239' free_code_cache='248255872'/>
+<task_done success='1' nmsize='432' count='263' stamp='0.244'/>
+</task>
+<task compile_id='304' method='java.lang.invoke.MemberName getMethodOrFieldType ()Ljava/lang/invoke/MethodType;' bytes='72' count='259' iicount='259' level='3' stamp='0.244'>
+<phase name='setup' stamp='0.244'>
+<phase_done name='setup' stamp='0.244'/>
+</phase>
+<phase name='buildIR' stamp='0.244'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getMethodOrFieldType' return='1041' flags='1' bytes='72' iicount='259'/>
+<parse method='1093'  stamp='0.244'>
+<phase name='parse_hir' stamp='0.244'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='1038' name='isInvocable' return='969' flags='1' bytes='7' compile_id='223' compiler='c1' level='3' iicount='781'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1038' name='testAnyFlags' return='969' arguments='975' flags='2' bytes='15' compile_id='224' compiler='c1' level='3' iicount='781'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<method id='1099' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='1215'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.244'/>
+</parse>
+<parse_done stamp='0.244'/>
+</parse>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1101' holder='1038' name='getMethodType' return='1041' flags='1' bytes='202' iicount='228'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='13'/>
+<method id='1103' holder='1038' name='isGetter' return='969' flags='1' bytes='8' iicount='83'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='1'/>
+<type id='973' name='byte'/>
+<method id='1105' holder='1038' name='getReferenceKind' return='973' flags='1' bytes='12' iicount='254'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='184' bci='4'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1107' holder='1039' name='refKindIsGetter' return='969' arguments='973' flags='8' bytes='32' iicount='83'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='20'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1109' holder='1038' name='getFieldType' return='984' flags='1' bytes='177' iicount='140'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='23'/>
+<method id='1111' holder='1041' name='methodType' return='1041' arguments='984' flags='9' bytes='9' iicount='84'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='184' bci='5'/>
+<klass id='1113' name='[Ljava.lang.Class;' flags='1041'/>
+<method id='1116' holder='1041' name='makeImpl' return='1041' arguments='984 1113 969' flags='8' bytes='66' compile_id='241' compiler='c1' level='3' iicount='528'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='28'/>
+<method id='1119' holder='1038' name='isSetter' return='969' flags='1' bytes='8' iicount='1'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='182' bci='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='184' bci='4'/>
+<method id='1121' holder='1039' name='refKindIsSetter' return='969' arguments='973' flags='8' bytes='20' iicount='1'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='184' bci='1'/>
+<method id='1123' holder='1039' name='refKindIsField' return='969' arguments='973' flags='8' bytes='32' iicount='20'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='8'/>
+<call method='1107' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='41'/>
+<method id='1128' holder='1041' name='methodType' return='1041' arguments='984 984' flags='9' bytes='14' iicount='5'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='184' bci='10'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='183' bci='53'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1131' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='427'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1133' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='442'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='58'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1136' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='646'/>
+<call method='1136' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='2'/>
+<method id='1138' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='646'/>
+<call method='1138' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='62'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1140' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1140' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<bc code='184' bci='2'/>
+<method id='1142' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='1'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='182' bci='10'/>
+<method id='1144' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1136' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='2'/>
+<call method='1138' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.244'/>
+</parse>
+<parse_done stamp='0.244'/>
+</parse>
+<bc code='182' bci='65'/>
+<method id='1147' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='443'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<bc code='182' bci='1'/>
+<method id='1149' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1230'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1152' name='java.lang.StringLatin1' flags='16'/>
+<method id='1153' holder='1152' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='820'/>
+<call method='1153' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='184' bci='9'/>
+<klass id='1155' name='java.util.Arrays' flags='1'/>
+<method id='1156' holder='1155' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='838'/>
+<call method='1156' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<method id='1158' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1176'/>
+<call method='1158' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='183' bci='1'/>
+<method id='1160' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='12811'/>
+<call method='1160' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1160'>
+<parse_done stamp='0.245'/>
+</parse>
+<parse_done stamp='0.245'/>
+</parse>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1162' name='java.lang.StringUTF16' flags='16'/>
+<method id='1163' holder='1162' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1163' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.245'/>
+</parse>
+<bc code='183' bci='68'/>
+<klass id='1130' name='java.lang.InternalError' flags='1'/>
+<method id='1165' holder='1130' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1165' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.245'/>
+</phase>
+<parse_done stamp='0.245'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.245'>
+<phase_done name='optimize_blocks' stamp='0.245'/>
+</phase>
+<phase name='gvn' stamp='0.245'>
+<phase_done name='gvn' stamp='0.245'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.245'>
+<phase_done name='rangeCheckElimination' stamp='0.245'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.245'>
+<phase_done name='optimize_null_checks' stamp='0.245'/>
+</phase>
+<phase_done name='buildIR' stamp='0.245'/>
+</phase>
+<phase name='emit_lir' stamp='0.245'>
+<phase name='lirGeneration' stamp='0.245'>
+<phase_done name='lirGeneration' stamp='0.245'/>
+</phase>
+<phase name='linearScan' stamp='0.245'>
+<phase_done name='linearScan' stamp='0.245'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.245'/>
+</phase>
+<phase name='codeemit' stamp='0.245'>
+<phase_done name='codeemit' stamp='0.246'/>
+</phase>
+<phase name='codeinstall' stamp='0.246'>
+<phase_done name='codeinstall' stamp='0.246'/>
+</phase>
+<code_cache total_blobs='702' nmethods='308' adapters='239' free_code_cache='248232832'/>
+<task_done success='1' nmsize='6536' count='284' inlined_bytes='254' stamp='0.246'/>
+</task>
+<task compile_id='312' method='java.lang.invoke.MemberName initResolved (Z)V' bytes='53' count='257' iicount='257' level='3' stamp='0.246'>
+<phase name='setup' stamp='0.246'>
+<phase_done name='setup' stamp='0.246'/>
+</phase>
+<phase name='buildIR' stamp='0.246'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='initResolved' return='977' arguments='969' flags='0' bytes='53' iicount='257'/>
+<parse method='1093'  stamp='0.246'>
+<phase name='parse_hir' stamp='0.246'>
+<phase_done name='parse_hir' stamp='0.246'/>
+</phase>
+<parse_done stamp='0.246'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.246'>
+<phase_done name='optimize_blocks' stamp='0.246'/>
+</phase>
+<phase name='gvn' stamp='0.246'>
+<phase_done name='gvn' stamp='0.246'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.246'>
+<phase_done name='rangeCheckElimination' stamp='0.246'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.246'>
+<phase_done name='optimize_null_checks' stamp='0.246'/>
+</phase>
+<phase_done name='buildIR' stamp='0.246'/>
+</phase>
+<phase name='emit_lir' stamp='0.246'>
+<phase name='lirGeneration' stamp='0.246'>
+<phase_done name='lirGeneration' stamp='0.246'/>
+</phase>
+<phase name='linearScan' stamp='0.246'>
+<phase_done name='linearScan' stamp='0.246'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.246'/>
+</phase>
+<phase name='codeemit' stamp='0.246'>
+<phase_done name='codeemit' stamp='0.246'/>
+</phase>
+<phase name='codeinstall' stamp='0.246'>
+<phase_done name='codeinstall' stamp='0.246'/>
+</phase>
+<code_cache total_blobs='703' nmethods='309' adapters='239' free_code_cache='248231680'/>
+<task_done success='1' nmsize='528' count='257' stamp='0.246'/>
+</task>
+<task compile_id='316' method='java.lang.invoke.InvokerBytecodeGenerator emitImplicitConversion (Ljava/lang/invoke/LambdaForm$BasicType;Ljava/lang/Class;Ljava/lang/Object;)V' bytes='159' count='260' iicount='260' level='3' stamp='0.247'>
+<phase name='setup' stamp='0.247'>
+<phase_done name='setup' stamp='0.247'/>
+</phase>
+<phase name='buildIR' stamp='0.247'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1095' holder='1093' name='emitImplicitConversion' return='977' arguments='1094 984 982' flags='2' bytes='159' iicount='260'/>
+<parse method='1095'  stamp='0.247'>
+<phase name='parse_hir' stamp='0.247'>
+<bc code='182' bci='24'/>
+<method id='1098' holder='1094' name='basicTypeClass' return='984' flags='0' bytes='5' compile_id='290' compiler='c1' level='1' iicount='139'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.247'/>
+</parse>
+<bc code='182' bci='42'/>
+<type id='975' name='int'/>
+<klass id='1105' name='java.lang.Enum' flags='1025'/>
+<method id='1106' holder='1105' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.247'/>
+</parse>
+<bc code='184' bci='108'/>
+<type id='969' name='boolean'/>
+<klass id='1110' name='sun.invoke.util.VerifyType' flags='1'/>
+<method id='1111' holder='1110' name='isNullConversion' return='969' arguments='984 984 969' flags='9' bytes='157' iicount='209'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='116'/>
+<klass id='1113' name='sun.invoke.util.Wrapper' flags='16401'/>
+<method id='1114' holder='1094' name='basicTypeWrapper' return='1113' flags='0' bytes='5' iicount='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.247'/>
+</parse>
+<bc code='184' bci='120'/>
+<method id='1116' holder='1113' name='forPrimitiveType' return='1113' arguments='984' flags='9' bytes='49' iicount='301'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='123'/>
+<method id='1118' holder='1093' name='emitPrimCast' return='977' arguments='1113 1113' flags='2' bytes='328' iicount='1'/>
+<call method='1118' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='76'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='99'/>
+<method id='1123' holder='1093' name='emitReferenceCast' return='977' arguments='984 982' flags='2' bytes='184' iicount='94'/>
+<call method='1123' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='131'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1125' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='467'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1127' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='483'/>
+<call method='1127' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='136'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1130' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='686'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='2'/>
+<method id='1132' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='686'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='140'/>
+<method id='1134' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1134' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='2'/>
+<method id='1136' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='1'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='182' bci='10'/>
+<method id='1139' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1140' holder='1105' name='toString' return='983' flags='1' bytes='5' iicount='1'/>
+<parse method='1140'>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='2'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='145'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='2'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='149'/>
+<call method='1134' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='184' bci='2'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='182' bci='10'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1130' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='2'/>
+<call method='1132' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='182' bci='152'/>
+<method id='1145' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='486'/>
+<call method='1145' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='182' bci='1'/>
+<method id='1147' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1354'/>
+<call method='1147' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1150' name='java.lang.StringLatin1' flags='16'/>
+<method id='1151' holder='1150' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='900'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1151'>
+<bc code='184' bci='9'/>
+<klass id='1153' name='java.util.Arrays' flags='1'/>
+<method id='1154' holder='1153' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='917'/>
+<call method='1154' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1156' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1286'/>
+<call method='1156' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<bc code='183' bci='1'/>
+<method id='1158' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='13259'/>
+<call method='1158' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.248'/>
+</parse>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1160' name='java.lang.StringUTF16' flags='16'/>
+<method id='1161' holder='1160' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1161' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.248'/>
+</parse>
+<bc code='184' bci='155'/>
+<klass id='1163' name='java.lang.InternalError' flags='1'/>
+<klass id='1121' name='java.lang.invoke.MethodHandleStatics' flags='0'/>
+<method id='1164' holder='1121' name='newInternalError' return='1163' arguments='983' flags='8' bytes='9' iicount='1'/>
+<call method='1164' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1164'>
+<bc code='183' bci='5'/>
+<method id='1166' holder='1163' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1166' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.248'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.248'/>
+</phase>
+<parse_done stamp='0.248'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.249'/>
+</phase>
+<phase name='linearScan' stamp='0.249'>
+<phase_done name='linearScan' stamp='0.249'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.249'/>
+</phase>
+<phase name='codeemit' stamp='0.249'>
+<phase_done name='codeemit' stamp='0.249'/>
+</phase>
+<phase name='codeinstall' stamp='0.249'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.249'/>
+</phase>
+<code_cache total_blobs='715' nmethods='319' adapters='239' free_code_cache='248168704'/>
+<task_done success='1' nmsize='5560' count='282' inlined_bytes='201' stamp='0.249'/>
+</task>
+<task compile_id='325' method='jdk.internal.org.objectweb.asm.Frame get (I)I' bytes='46' count='275' iicount='275' level='3' stamp='0.249'>
+<phase name='setup' stamp='0.249'>
+<phase_done name='setup' stamp='0.249'/>
+</phase>
+<phase name='buildIR' stamp='0.249'>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1094' holder='1093' name='get' return='975' arguments='975' flags='2' bytes='46' iicount='275'/>
+<parse method='1094'  stamp='0.249'>
+<phase name='parse_hir' stamp='0.249'>
+<phase_done name='parse_hir' stamp='0.249'/>
+</phase>
+<parse_done stamp='0.249'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.249'>
+<phase_done name='optimize_blocks' stamp='0.249'/>
+</phase>
+<phase name='gvn' stamp='0.249'>
+<phase_done name='gvn' stamp='0.249'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.249'>
+<phase_done name='rangeCheckElimination' stamp='0.249'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.249'>
+<phase_done name='optimize_null_checks' stamp='0.249'/>
+</phase>
+<phase_done name='buildIR' stamp='0.249'/>
+</phase>
+<phase name='emit_lir' stamp='0.249'>
+<phase name='lirGeneration' stamp='0.249'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.250'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.250'/>
+</phase>
+<phase name='codeemit' stamp='0.250'>
+<phase_done name='codeemit' stamp='0.250'/>
+</phase>
+<phase name='codeinstall' stamp='0.250'>
+<phase_done name='codeinstall' stamp='0.250'/>
+</phase>
+<code_cache total_blobs='716' nmethods='320' adapters='239' free_code_cache='248167424'/>
+<task_done success='1' nmsize='592' count='283' stamp='0.250'/>
+</task>
+<task compile_id='324' method='java.lang.invoke.InvokerBytecodeGenerator loadInsnOpcode (Ljava/lang/invoke/LambdaForm$BasicType;)I' bytes='86' count='271' iicount='271' level='3' stamp='0.250'>
+<phase name='setup' stamp='0.250'>
+<phase_done name='setup' stamp='0.250'/>
+</phase>
+<phase name='buildIR' stamp='0.250'>
+<type id='975' name='int'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1095' holder='1093' name='loadInsnOpcode' return='975' arguments='1094' flags='2' bytes='86' iicount='274'/>
+<parse method='1095'  stamp='0.250'>
+<phase name='parse_hir' stamp='0.250'>
+<bc code='182' bci='4'/>
+<klass id='1100' name='java.lang.Enum' flags='1025'/>
+<method id='1101' holder='1100' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='183' bci='67'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1104' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='482'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1106' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='502'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='72'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1109' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='697'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='2'/>
+<method id='1111' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='697'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='76'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1113' holder='1050' name='append' return='1050' arguments='982' flags='1' bytes='9' iicount='1'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='184' bci='2'/>
+<method id='1115' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='182' bci='10'/>
+<method id='1118' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<method id='1119' holder='1100' name='toString' return='983' flags='1' bytes='5' iicount='1'/>
+<parse method='1119'>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='2'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='182' bci='79'/>
+<method id='1121' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='505'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1123' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='1405'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1126' name='java.lang.StringLatin1' flags='16'/>
+<method id='1127' holder='1126' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='928'/>
+<call method='1127' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='184' bci='9'/>
+<klass id='1129' name='java.util.Arrays' flags='1'/>
+<method id='1130' holder='1129' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='946'/>
+<call method='1130' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1132' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='1329'/>
+<call method='1132' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='1'/>
+<method id='1134' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='13400'/>
+<call method='1134' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1136' name='java.lang.StringUTF16' flags='16'/>
+<method id='1137' holder='1136' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1137' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.250'/>
+</parse>
+<bc code='183' bci='82'/>
+<klass id='1103' name='java.lang.InternalError' flags='1'/>
+<method id='1139' holder='1103' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1139' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.250'/>
+</phase>
+<parse_done stamp='0.250'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.250'>
+<phase_done name='optimize_blocks' stamp='0.250'/>
+</phase>
+<phase name='gvn' stamp='0.250'>
+<phase_done name='gvn' stamp='0.250'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.250'>
+<phase_done name='rangeCheckElimination' stamp='0.250'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.250'>
+<phase_done name='optimize_null_checks' stamp='0.250'/>
+</phase>
+<phase_done name='buildIR' stamp='0.250'/>
+</phase>
+<phase name='emit_lir' stamp='0.250'>
+<phase name='lirGeneration' stamp='0.250'>
+<phase_done name='lirGeneration' stamp='0.250'/>
+</phase>
+<phase name='linearScan' stamp='0.250'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='724' nmethods='326' adapters='239' free_code_cache='248151424'/>
+<task_done success='1' nmsize='3544' count='274' inlined_bytes='143' stamp='0.251'/>
+</task>
+<task compile_id='329' method='java.lang.invoke.MethodTypeForm erasedType ()Ljava/lang/invoke/MethodType;' bytes='5' count='130' iicount='130' level='1' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1094' holder='1093' name='erasedType' return='1041' flags='1' bytes='5' iicount='130'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='725' nmethods='327' adapters='239' free_code_cache='248150656'/>
+<task_done success='1' nmsize='272' count='130' stamp='0.251'/>
+</task>
+<task compile_id='332' method='java.lang.invoke.MethodType parameterSlotCount ()I' bytes='8' count='257' iicount='257' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<type id='975' name='int'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1093' holder='1041' name='parameterSlotCount' return='975' flags='0' bytes='8' iicount='258'/>
+<parse method='1093'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='182' bci='4'/>
+<klass id='1095' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1096' holder='1095' name='parameterSlotCount' return='975' flags='1' bytes='9' iicount='259'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='5'/>
+<type id='970' name='char'/>
+<type id='976' name='long'/>
+<method id='1098' holder='1095' name='unpack' return='970' arguments='976 975' flags='10' bytes='30' iicount='259'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.251'/>
+</parse>
+<parse_done stamp='0.251'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.251'/>
+</phase>
+<phase name='linearScan' stamp='0.251'>
+<phase_done name='linearScan' stamp='0.251'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.251'/>
+</phase>
+<phase name='codeemit' stamp='0.251'>
+<phase_done name='codeemit' stamp='0.251'/>
+</phase>
+<phase name='codeinstall' stamp='0.251'>
+<phase_done name='codeinstall' stamp='0.251'/>
+</phase>
+<code_cache total_blobs='728' nmethods='330' adapters='239' free_code_cache='248148224'/>
+<task_done success='1' nmsize='720' count='260' inlined_bytes='39' stamp='0.251'/>
+</task>
+<task compile_id='333' method='java.lang.invoke.MethodTypeForm parameterSlotCount ()I' bytes='9' count='260' iicount='260' level='3' stamp='0.251'>
+<phase name='setup' stamp='0.251'>
+<phase_done name='setup' stamp='0.251'/>
+</phase>
+<phase name='buildIR' stamp='0.251'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1094' holder='1093' name='parameterSlotCount' return='975' flags='1' bytes='9' iicount='260'/>
+<parse method='1094'  stamp='0.251'>
+<phase name='parse_hir' stamp='0.251'>
+<bc code='184' bci='5'/>
+<type id='970' name='char'/>
+<type id='976' name='long'/>
+<method id='1096' holder='1093' name='unpack' return='970' arguments='976 975' flags='10' bytes='30' iicount='260'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.251'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.251'/>
+</phase>
+<parse_done stamp='0.251'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.251'>
+<phase_done name='optimize_blocks' stamp='0.251'/>
+</phase>
+<phase name='gvn' stamp='0.251'>
+<phase_done name='gvn' stamp='0.251'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.251'>
+<phase_done name='rangeCheckElimination' stamp='0.251'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.251'>
+<phase_done name='optimize_null_checks' stamp='0.251'/>
+</phase>
+<phase_done name='buildIR' stamp='0.251'/>
+</phase>
+<phase name='emit_lir' stamp='0.251'>
+<phase name='lirGeneration' stamp='0.251'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.252'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.252'/>
+</phase>
+<phase name='codeemit' stamp='0.252'>
+<phase_done name='codeemit' stamp='0.252'/>
+</phase>
+<phase name='codeinstall' stamp='0.252'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='731' nmethods='333' adapters='239' free_code_cache='248136576'/>
+<task_done success='1' nmsize='464' count='260' inlined_bytes='30' stamp='0.252'/>
+</task>
+<task compile_id='334' method='java.lang.invoke.MethodTypeForm unpack (JI)C' bytes='30' count='260' iicount='260' level='3' stamp='0.252'>
+<phase name='setup' stamp='0.252'>
+<phase_done name='setup' stamp='0.252'/>
+</phase>
+<phase name='buildIR' stamp='0.252'>
+<type id='970' name='char'/>
+<type id='976' name='long'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.MethodTypeForm' flags='16'/>
+<method id='1094' holder='1093' name='unpack' return='970' arguments='976 975' flags='10' bytes='30' iicount='260'/>
+<parse method='1094'  stamp='0.252'>
+<phase name='parse_hir' stamp='0.252'>
+<phase_done name='parse_hir' stamp='0.252'/>
+</phase>
+<parse_done stamp='0.252'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.252'>
+<phase_done name='optimize_blocks' stamp='0.252'/>
+</phase>
+<phase name='gvn' stamp='0.252'>
+<phase_done name='gvn' stamp='0.252'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.252'>
+<phase_done name='rangeCheckElimination' stamp='0.252'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.252'>
+<phase_done name='optimize_null_checks' stamp='0.252'/>
+</phase>
+<phase_done name='buildIR' stamp='0.252'/>
+</phase>
+<phase name='emit_lir' stamp='0.252'>
+<phase name='lirGeneration' stamp='0.252'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.252'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.252'/>
+</phase>
+<phase name='codeemit' stamp='0.252'>
+<phase_done name='codeemit' stamp='0.252'/>
+</phase>
+<phase name='codeinstall' stamp='0.252'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='732' nmethods='334' adapters='239' free_code_cache='248135680'/>
+<task_done success='1' nmsize='368' count='260' stamp='0.252'/>
+</task>
+<task compile_id='339' method='jdk.internal.org.objectweb.asm.Frame pop ()I' bytes='43' count='256' iicount='256' level='3' stamp='0.252'>
+<phase name='setup' stamp='0.252'>
+<phase_done name='setup' stamp='0.252'/>
+</phase>
+<phase name='buildIR' stamp='0.252'>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1094' holder='1093' name='pop' return='975' flags='2' bytes='43' iicount='256'/>
+<parse method='1094'  stamp='0.252'>
+<phase name='parse_hir' stamp='0.252'>
+<phase_done name='parse_hir' stamp='0.252'/>
+</phase>
+<parse_done stamp='0.252'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.252'>
+<phase_done name='optimize_blocks' stamp='0.252'/>
+</phase>
+<phase name='gvn' stamp='0.252'>
+<phase_done name='gvn' stamp='0.252'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.252'>
+<phase_done name='rangeCheckElimination' stamp='0.252'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.252'>
+<phase_done name='optimize_null_checks' stamp='0.252'/>
+</phase>
+<phase_done name='buildIR' stamp='0.252'/>
+</phase>
+<phase name='emit_lir' stamp='0.252'>
+<phase name='lirGeneration' stamp='0.252'>
+<phase_done name='lirGeneration' stamp='0.252'/>
+</phase>
+<phase name='linearScan' stamp='0.252'>
+<phase_done name='linearScan' stamp='0.252'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.252'/>
+</phase>
+<phase name='codeemit' stamp='0.252'>
+<phase_done name='codeemit' stamp='0.252'/>
+</phase>
+<phase name='codeinstall' stamp='0.252'>
+<phase_done name='codeinstall' stamp='0.252'/>
+</phase>
+<code_cache total_blobs='734' nmethods='336' adapters='239' free_code_cache='248127744'/>
+<task_done success='1' nmsize='496' count='263' stamp='0.252'/>
+</task>
+<task compile_id='344' method='java.lang.Class getPackageName ()Ljava/lang/String;' bytes='81' count='258' iicount='258' level='3' stamp='0.253'>
+<phase name='setup' stamp='0.253'>
+<phase_done name='setup' stamp='0.253'/>
+</phase>
+<phase name='buildIR' stamp='0.253'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='getPackageName' return='983' flags='1' bytes='81' iicount='258'/>
+<parse method='1093'  stamp='0.253'>
+<phase name='parse_hir' stamp='0.253'>
+<bc code='182' bci='12'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='19'/>
+<method id='1096' holder='984' name='getComponentType' return='984' flags='1' bytes='14' compile_id='266' compiler='c1' level='3' iicount='463'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='1'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='27'/>
+<method id='1098' holder='984' name='isPrimitive' return='969' flags='257' bytes='0' compile_id='197' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='40'/>
+<method id='1101' holder='984' name='getName' return='983' flags='1' bytes='21' compile_id='234' compiler='c1' level='3' iicount='896'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='11'/>
+<method id='1103' holder='984' name='getName0' return='983' flags='258' bytes='0' iicount='60'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='47'/>
+<type id='975' name='int'/>
+<method id='1104' holder='983' name='lastIndexOf' return='975' arguments='975' flags='1' bytes='12' iicount='197'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='3'/>
+<method id='1106' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='3951'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1108' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='14670'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.254'/>
+</parse>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1111' holder='983' name='lastIndexOf' return='975' arguments='975 975' flags='1' bytes='29' iicount='203'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='1'/>
+<method id='1113' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='23876'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='184' bci='13'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='lastIndexOf' return='975' arguments='1085 975 975' flags='9' bytes='40' compile_id='183' compiler='c1' level='3' iicount='203'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<klass id='1118' name='java.lang.StringUTF16' flags='16'/>
+<method id='1119' holder='1118' name='lastIndexOf' return='975' arguments='1085 975 975' flags='9' bytes='47' iicount='1'/>
+<call method='1119' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.254'/>
+</parse>
+<parse_done stamp='0.254'/>
+</parse>
+<bc code='182' bci='62'/>
+<method id='1121' holder='983' name='substring' return='983' arguments='975 975' flags='1' bytes='58' compile_id='286' compiler='c1' level='3' iicount='394'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='65'/>
+<method id='1123' holder='983' name='intern' return='983' flags='257' bytes='0' iicount='93'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.254'/>
+</phase>
+<parse_done stamp='0.254'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.254'>
+<phase_done name='optimize_blocks' stamp='0.254'/>
+</phase>
+<phase name='gvn' stamp='0.254'>
+<phase_done name='gvn' stamp='0.254'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.254'>
+<phase_done name='rangeCheckElimination' stamp='0.254'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.254'>
+<phase_done name='optimize_null_checks' stamp='0.254'/>
+</phase>
+<phase_done name='buildIR' stamp='0.254'/>
+</phase>
+<phase name='emit_lir' stamp='0.254'>
+<phase name='lirGeneration' stamp='0.254'>
+<phase_done name='lirGeneration' stamp='0.254'/>
+</phase>
+<phase name='linearScan' stamp='0.254'>
+<phase_done name='linearScan' stamp='0.254'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.254'/>
+</phase>
+<phase name='codeemit' stamp='0.254'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='747' nmethods='347' adapters='239' free_code_cache='248096000'/>
+<task_done success='1' nmsize='3848' count='274' inlined_bytes='121' stamp='0.255'/>
+</task>
+<task compile_id='351' method='jdk.internal.org.objectweb.asm.ClassWriter newClassItem (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/Item;' bytes='70' count='260' iicount='260' level='3' stamp='0.255'>
+<phase name='setup' stamp='0.255'>
+<phase_done name='setup' stamp='0.255'/>
+</phase>
+<phase name='buildIR' stamp='0.255'>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1095' holder='1093' name='newClassItem' return='1094' arguments='983' flags='0' bytes='70' iicount='260'/>
+<parse method='1095'  stamp='0.255'>
+<phase name='parse_hir' stamp='0.255'>
+<bc code='182' bci='9'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1094' name='set' return='977' arguments='975 983 983 983' flags='0' bytes='219' compile_id='225' compiler='c1' level='3' iicount='1493'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='17'/>
+<method id='1099' holder='1093' name='get' return='1094' arguments='1094' flags='2' bytes='49' compile_id='226' compiler='c1' level='3' iicount='1493'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='33'/>
+<method id='1102' holder='1093' name='newUTF8' return='975' arguments='983' flags='1' bytes='70' compile_id='279' compiler='c1' level='3' iicount='658'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='36'/>
+<klass id='1101' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1104' holder='1101' name='put12' return='1101' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='592'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<bc code='183' bci='59'/>
+<method id='1106' holder='1094' name='&lt;init&gt;' return='977' arguments='975 1094' flags='0' bytes='66' compile_id='253' compiler='c1' level='3' iicount='923'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='65'/>
+<method id='1108' holder='1093' name='put' return='977' arguments='1094' flags='2' bytes='152' compile_id='254' compiler='c1' level='3' iicount='923'/>
+<call method='1108' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.255'/>
+</phase>
+<parse_done stamp='0.255'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.255'>
+<phase_done name='optimize_blocks' stamp='0.255'/>
+</phase>
+<phase name='gvn' stamp='0.255'>
+<phase_done name='gvn' stamp='0.255'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.255'>
+<phase_done name='rangeCheckElimination' stamp='0.255'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.255'>
+<phase_done name='optimize_null_checks' stamp='0.255'/>
+</phase>
+<phase_done name='buildIR' stamp='0.255'/>
+</phase>
+<phase name='emit_lir' stamp='0.255'>
+<phase name='lirGeneration' stamp='0.255'>
+<phase_done name='lirGeneration' stamp='0.255'/>
+</phase>
+<phase name='linearScan' stamp='0.255'>
+<phase_done name='linearScan' stamp='0.255'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.255'/>
+</phase>
+<phase name='codeemit' stamp='0.255'>
+<phase_done name='codeemit' stamp='0.255'/>
+</phase>
+<phase name='codeinstall' stamp='0.255'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1101'/>
+<phase_done name='codeinstall' stamp='0.255'/>
+</phase>
+<code_cache total_blobs='751' nmethods='350' adapters='240' free_code_cache='248090368'/>
+<task_done success='1' nmsize='1112' count='260' stamp='0.255'/>
+</task>
+<task compile_id='358' method='jdk.internal.org.objectweb.asm.Frame type (Ljdk/internal/org/objectweb/asm/ClassWriter;Ljava/lang/String;)I' bytes='416' count='273' iicount='273' level='3' stamp='0.257'>
+<phase name='setup' stamp='0.257'>
+<phase_done name='setup' stamp='0.257'/>
+</phase>
+<phase name='buildIR' stamp='0.257'>
+<type id='975' name='int'/>
+<klass id='1094' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1095' holder='1093' name='type' return='975' arguments='1094 983' flags='10' bytes='416' iicount='273'/>
+<parse method='1095'  stamp='0.257'>
+<phase name='parse_hir' stamp='0.257'>
+<bc code='182' bci='2'/>
+<type id='970' name='char'/>
+<method id='1097' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='16527'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1099' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='24718'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1102' name='java.lang.StringLatin1' flags='16'/>
+<method id='1103' holder='1102' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='16240'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='15'/>
+<type id='977' name='void'/>
+<klass id='1105' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1106' holder='1105' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1107' name='java.lang.StringUTF16' flags='16'/>
+<method id='1108' holder='1107' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='2'/>
+<method id='1110' holder='1107' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='184' bci='2'/>
+<method id='1112' holder='1107' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1114' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1114' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1116' holder='1107' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='13'/>
+<method id='1117' holder='983' name='indexOf' return='975' arguments='975' flags='1' bytes='7' compile_id='115' compiler='c1' level='3' iicount='932'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='3'/>
+<method id='1119' holder='983' name='indexOf' return='975' arguments='975 975' flags='1' bytes='29' compile_id='116' compiler='c1' level='3' iicount='1021'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='13'/>
+<method id='1121' holder='1102' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' compile_id='326' compiler='c2' level='4' iicount='964'/>
+<call method='1121' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='25'/>
+<method id='1123' holder='1107' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='43' iicount='1'/>
+<call method='1123' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='15'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='2'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='184' bci='2'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1114' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.257'/>
+</parse>
+<parse_done stamp='0.257'/>
+</parse>
+<bc code='182' bci='163'/>
+<method id='1125' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='4181'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1127' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='14998'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='168'/>
+<method id='1129' holder='983' name='substring' return='983' arguments='975 975' flags='1' bytes='58' compile_id='286' compiler='c1' level='3' iicount='425'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='176'/>
+<method id='1131' holder='1094' name='addType' return='975' arguments='983' flags='0' bytes='39' compile_id='349' compiler='c1' level='3' iicount='306'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='182' bci='189'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='15'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='2'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='184' bci='2'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1114' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='206'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='15'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='184' bci='2'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='184' bci='2'/>
+<call method='1112' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1114' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='386'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='182' bci='6'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<parse_done stamp='0.258'/>
+</parse>
+<parse_done stamp='0.258'/>
+</parse>
+<bc code='182' bci='391'/>
+<call method='1129' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='399'/>
+<call method='1131' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='parse_hir' stamp='0.258'/>
+</phase>
+<parse_done stamp='0.258'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.258'>
+<phase_done name='optimize_blocks' stamp='0.258'/>
+</phase>
+<phase name='gvn' stamp='0.258'>
+<phase_done name='gvn' stamp='0.258'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.258'>
+<phase_done name='rangeCheckElimination' stamp='0.258'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.258'>
+<phase_done name='optimize_null_checks' stamp='0.258'/>
+</phase>
+<phase_done name='buildIR' stamp='0.258'/>
+</phase>
+<phase name='emit_lir' stamp='0.258'>
+<phase name='lirGeneration' stamp='0.258'>
+<phase_done name='lirGeneration' stamp='0.258'/>
+</phase>
+<phase name='linearScan' stamp='0.258'>
+<phase_done name='linearScan' stamp='0.259'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.259'/>
+</phase>
+<phase name='codeemit' stamp='0.259'>
+<phase_done name='codeemit' stamp='0.259'/>
+</phase>
+<phase name='codeinstall' stamp='0.259'>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='codeinstall' stamp='0.259'/>
+</phase>
+<code_cache total_blobs='766' nmethods='364' adapters='241' free_code_cache='248048384'/>
+<task_done success='1' nmsize='8632' count='312' inlined_bytes='495' stamp='0.259'/>
+</task>
+<task compile_id='368' method='sun.invoke.util.VerifyAccess isSamePackage (Ljava/lang/Class;Ljava/lang/Class;)Z' bytes='60' count='315' iicount='315' level='3' stamp='0.259'>
+<phase name='setup' stamp='0.259'>
+<phase_done name='setup' stamp='0.259'/>
+</phase>
+<phase name='buildIR' stamp='0.259'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='1093' name='sun.invoke.util.VerifyAccess' flags='1'/>
+<method id='1094' holder='1093' name='isSamePackage' return='969' arguments='984 984' flags='9' bytes='60' iicount='315'/>
+<parse method='1094'  stamp='0.260'>
+<phase name='parse_hir' stamp='0.260'>
+<bc code='182' bci='36'/>
+<klass id='986' name='java.lang.ClassLoader' flags='1025'/>
+<method id='1097' holder='984' name='getClassLoader' return='986' flags='1' bytes='28' compile_id='240' compiler='c1' level='3' iicount='1045'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1097'>
+<bc code='182' bci='1'/>
+<method id='1099' holder='984' name='getClassLoader0' return='986' flags='0' bytes='5' compile_id='194' compiler='c1' level='1' iicount='128'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='994' name='java.lang.SecurityManager' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1101' holder='988' name='getSecurityManager' return='994' flags='9' bytes='4' compile_id='179' compiler='c1' level='3' iicount='504'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='20'/>
+<klass id='1104' name='jdk.internal.reflect.Reflection' flags='1'/>
+<method id='1105' holder='1104' name='getCallerClass' return='984' flags='265' bytes='0' iicount='32'/>
+<call method='1105' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<type id='977' name='void'/>
+<method id='1106' holder='986' name='checkClassLoaderPermission' return='977' arguments='986 984' flags='8' bytes='29' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='0'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='9'/>
+<method id='1108' holder='986' name='getClassLoader' return='986' arguments='984' flags='8' bytes='11' iicount='4'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='7'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='15'/>
+<method id='1110' holder='986' name='needsClassLoaderPermissionCheck' return='969' arguments='986 986' flags='10' bytes='27' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='15'/>
+<method id='1112' holder='986' name='isAncestor' return='969' arguments='986' flags='0' bytes='20' iicount='1'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1112'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='25'/>
+<klass id='1117' name='java.security.Permission' flags='1025'/>
+<method id='1118' holder='994' name='checkPermission' return='977' arguments='1117' flags='1' bytes='5' iicount='1'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='40'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1097'>
+<bc code='182' bci='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='11'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='20'/>
+<call method='1105' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='23'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='0'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='182' bci='7'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='184' bci='15'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='15'/>
+<call method='1112' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='986' x='1112'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='25'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.260'/>
+</parse>
+<parse_done stamp='0.260'/>
+</parse>
+<bc code='182' bci='49'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1119' holder='984' name='getPackageName' return='983' flags='1' bytes='81' compile_id='344' compiler='c1' level='3' iicount='326'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='53'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='56'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1121' name='java.util.Objects' flags='17'/>
+<method id='1122' holder='1121' name='equals' return='969' arguments='982 982' flags='9' bytes='23' compile_id='22' compiler='c1' level='3' iicount='2412'/>
+<call method='1122' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='182' bci='11'/>
+<method id='1125' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='37'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.260'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.260'/>
+</phase>
+<parse_done stamp='0.260'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.260'>
+<phase_done name='optimize_blocks' stamp='0.260'/>
+</phase>
+<phase name='gvn' stamp='0.260'>
+<phase_done name='gvn' stamp='0.260'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.260'>
+<phase_done name='rangeCheckElimination' stamp='0.260'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.260'>
+<phase_done name='optimize_null_checks' stamp='0.260'/>
+</phase>
+<phase_done name='buildIR' stamp='0.260'/>
+</phase>
+<phase name='emit_lir' stamp='0.260'>
+<phase name='lirGeneration' stamp='0.260'>
+<phase_done name='lirGeneration' stamp='0.261'/>
+</phase>
+<phase name='linearScan' stamp='0.261'>
+<phase_done name='linearScan' stamp='0.261'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.261'/>
+</phase>
+<phase name='codeemit' stamp='0.261'>
+<phase_done name='codeemit' stamp='0.261'/>
+</phase>
+<phase name='codeinstall' stamp='0.261'>
+<dependency type='unique_concrete_method' ctxk='986' x='1112'/>
+<phase_done name='codeinstall' stamp='0.261'/>
+</phase>
+<code_cache total_blobs='770' nmethods='368' adapters='241' free_code_cache='248026880'/>
+<task_done success='1' nmsize='6152' count='343' inlined_bytes='235' stamp='0.261'/>
+</task>
+<task compile_id='380' method='java.lang.invoke.MemberName getName ()Ljava/lang/String;' bytes='25' count='258' iicount='258' level='3' stamp='0.264'>
+<phase name='setup' stamp='0.264'>
+<phase_done name='setup' stamp='0.264'/>
+</phase>
+<phase name='buildIR' stamp='0.265'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getName' return='983' flags='1' bytes='25' iicount='259'/>
+<parse method='1093'  stamp='0.265'>
+<phase name='parse_hir' stamp='0.265'>
+<bc code='183' bci='8'/>
+<type id='977' name='void'/>
+<method id='1095' holder='1038' name='expandFromVM' return='977' flags='2' bytes='21' iicount='1'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1038' name='isResolved' return='969' flags='1' bytes='13' iicount='322'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.265'/>
+</parse>
+<bc code='184' bci='17'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1099' holder='1039' name='expand' return='977' arguments='1038' flags='264' bytes='0' iicount='1'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.265'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.265'/>
+</phase>
+<parse_done stamp='0.265'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.265'>
+<phase_done name='optimize_blocks' stamp='0.265'/>
+</phase>
+<phase name='gvn' stamp='0.265'>
+<phase_done name='gvn' stamp='0.265'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.265'>
+<phase_done name='rangeCheckElimination' stamp='0.265'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.265'>
+<phase_done name='optimize_null_checks' stamp='0.265'/>
+</phase>
+<phase_done name='buildIR' stamp='0.265'/>
+</phase>
+<phase name='emit_lir' stamp='0.265'>
+<phase name='lirGeneration' stamp='0.265'>
+<phase_done name='lirGeneration' stamp='0.265'/>
+</phase>
+<phase name='linearScan' stamp='0.265'>
+<phase_done name='linearScan' stamp='0.265'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.265'/>
+</phase>
+<phase name='codeemit' stamp='0.265'>
+<phase_done name='codeemit' stamp='0.265'/>
+</phase>
+<phase name='codeinstall' stamp='0.265'>
+<phase_done name='codeinstall' stamp='0.265'/>
+</phase>
+<code_cache total_blobs='783' nmethods='379' adapters='241' free_code_cache='247996672'/>
+<task_done success='1' nmsize='1096' count='261' inlined_bytes='34' stamp='0.265'/>
+</task>
+<task compile_id='381' method='java.lang.invoke.LambdaForm$Name withConstraint (Ljava/lang/Object;)Ljava/lang/invoke/LambdaForm$Name;' bytes='20' count='260' iicount='260' level='3' stamp='0.265'>
+<phase name='setup' stamp='0.265'>
+<phase_done name='setup' stamp='0.265'/>
+</phase>
+<phase name='buildIR' stamp='0.265'>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1094' holder='1093' name='withConstraint' return='1093' arguments='982' flags='0' bytes='20' iicount='260'/>
+<parse method='1094'  stamp='0.265'>
+<phase name='parse_hir' stamp='0.265'>
+<bc code='183' bci='16'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1093 982' flags='2' bytes='99' iicount='24'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.265'/>
+</phase>
+<parse_done stamp='0.265'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.265'>
+<phase_done name='optimize_blocks' stamp='0.265'/>
+</phase>
+<phase name='gvn' stamp='0.265'>
+<phase_done name='gvn' stamp='0.265'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.265'>
+<phase_done name='rangeCheckElimination' stamp='0.265'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.265'>
+<phase_done name='optimize_null_checks' stamp='0.265'/>
+</phase>
+<phase_done name='buildIR' stamp='0.265'/>
+</phase>
+<phase name='emit_lir' stamp='0.265'>
+<phase name='lirGeneration' stamp='0.265'>
+<phase_done name='lirGeneration' stamp='0.265'/>
+</phase>
+<phase name='linearScan' stamp='0.265'>
+<phase_done name='linearScan' stamp='0.265'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.265'/>
+</phase>
+<phase name='codeemit' stamp='0.265'>
+<phase_done name='codeemit' stamp='0.265'/>
+</phase>
+<phase name='codeinstall' stamp='0.265'>
+<phase_done name='codeinstall' stamp='0.265'/>
+</phase>
+<code_cache total_blobs='784' nmethods='380' adapters='241' free_code_cache='247995392'/>
+<task_done success='1' nmsize='584' count='260' stamp='0.265'/>
+</task>
+<task compile_id='383' method='jdk.internal.org.objectweb.asm.ClassWriter newClass (Ljava/lang/String;)I' bytes='9' count='257' iicount='257' level='3' stamp='0.265'>
+<phase name='setup' stamp='0.265'>
+<phase_done name='setup' stamp='0.265'/>
+</phase>
+<phase name='buildIR' stamp='0.265'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1094' holder='1093' name='newClass' return='975' arguments='983' flags='1' bytes='9' iicount='257'/>
+<parse method='1094'  stamp='0.265'>
+<phase name='parse_hir' stamp='0.265'>
+<bc code='182' bci='2'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<method id='1097' holder='1093' name='newClassItem' return='1096' arguments='983' flags='0' bytes='70' compile_id='351' compiler='c1' level='3' iicount='402'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.265'/>
+</phase>
+<parse_done stamp='0.265'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.265'>
+<phase_done name='optimize_blocks' stamp='0.265'/>
+</phase>
+<phase name='gvn' stamp='0.265'>
+<phase_done name='gvn' stamp='0.265'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.265'>
+<phase_done name='rangeCheckElimination' stamp='0.265'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.265'>
+<phase_done name='optimize_null_checks' stamp='0.265'/>
+</phase>
+<phase_done name='buildIR' stamp='0.265'/>
+</phase>
+<phase name='emit_lir' stamp='0.265'>
+<phase name='lirGeneration' stamp='0.265'>
+<phase_done name='lirGeneration' stamp='0.265'/>
+</phase>
+<phase name='linearScan' stamp='0.265'>
+<phase_done name='linearScan' stamp='0.265'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.265'/>
+</phase>
+<phase name='codeemit' stamp='0.265'>
+<phase_done name='codeemit' stamp='0.265'/>
+</phase>
+<phase name='codeinstall' stamp='0.265'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.265'/>
+</phase>
+<code_cache total_blobs='786' nmethods='382' adapters='241' free_code_cache='247988480'/>
+<task_done success='1' nmsize='424' count='260' stamp='0.265'/>
+</task>
+<task compile_id='385' method='java.lang.invoke.MemberName getInvocationType ()Ljava/lang/invoke/MethodType;' bytes='56' count='279' iicount='279' level='3' stamp='0.265'>
+<phase name='setup' stamp='0.265'>
+<phase_done name='setup' stamp='0.265'/>
+</phase>
+<phase name='buildIR' stamp='0.265'>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='getInvocationType' return='1041' flags='1' bytes='56' iicount='279'/>
+<parse method='1093'  stamp='0.265'>
+<phase name='parse_hir' stamp='0.265'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='1038' name='getMethodOrFieldType' return='1041' flags='1' bytes='72' compile_id='304' compiler='c1' level='3' iicount='623'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='6'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1038' name='isConstructor' return='969' flags='1' bytes='7' compile_id='300' compiler='c1' level='3' iicount='636'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1038' name='testAllFlags' return='969' arguments='975' flags='2' bytes='7' compile_id='264' compiler='c1' level='3' iicount='1060'/>
+<call method='1099' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='183' bci='3'/>
+<method id='1101' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='2958'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.266'/>
+</parse>
+<parse_done stamp='0.266'/>
+</parse>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='182' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1103' holder='1038' name='getReferenceKind' return='973' flags='1' bytes='12' compile_id='361' compiler='c1' level='3' iicount='832'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='182' bci='26'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1105' holder='1041' name='changeReturnType' return='1041' arguments='984' flags='1' bytes='20' iicount='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='182' bci='1'/>
+<method id='1107' holder='1041' name='returnType' return='984' flags='1' bytes='5' compile_id='204' compiler='c1' level='1' iicount='128'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1109' name='[Ljava.lang.Class;' flags='1041'/>
+<method id='1110' holder='1041' name='makeImpl' return='1041' arguments='984 1109 969' flags='8' bytes='66' compile_id='241' compiler='c1' level='3' iicount='1044'/>
+<call method='1110' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='182' bci='31'/>
+<method id='1113' holder='1038' name='isStatic' return='969' flags='1' bytes='8' compile_id='315' compiler='c1' level='3' iicount='550'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='184' bci='4'/>
+<klass id='1115' name='java.lang.reflect.Modifier' flags='1'/>
+<method id='1116' holder='1115' name='isStatic' return='969' arguments='975' flags='9' bytes='13' compile_id='294' compiler='c1' level='3' iicount='618'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<parse_done stamp='0.266'/>
+</parse>
+<parse_done stamp='0.266'/>
+</parse>
+<bc code='182' bci='50'/>
+<method id='1118' holder='1041' name='insertParameterTypes' return='1041' arguments='975 1109' flags='129' bytes='106' compile_id='359' compiler='c1' level='3' iicount='362'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.266'/>
+</phase>
+<parse_done stamp='0.266'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.266'>
+<phase_done name='optimize_blocks' stamp='0.266'/>
+</phase>
+<phase name='gvn' stamp='0.266'>
+<phase_done name='gvn' stamp='0.266'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.266'>
+<phase_done name='rangeCheckElimination' stamp='0.266'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.266'>
+<phase_done name='optimize_null_checks' stamp='0.266'/>
+</phase>
+<phase_done name='buildIR' stamp='0.266'/>
+</phase>
+<phase name='emit_lir' stamp='0.266'>
+<phase name='lirGeneration' stamp='0.266'>
+<phase_done name='lirGeneration' stamp='0.266'/>
+</phase>
+<phase name='linearScan' stamp='0.266'>
+<phase_done name='linearScan' stamp='0.266'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.266'/>
+</phase>
+<phase name='codeemit' stamp='0.266'>
+<phase_done name='codeemit' stamp='0.266'/>
+</phase>
+<phase name='codeinstall' stamp='0.266'>
+<phase_done name='codeinstall' stamp='0.266'/>
+</phase>
+<code_cache total_blobs='790' nmethods='386' adapters='241' free_code_cache='247980160'/>
+<task_done success='1' nmsize='3144' count='287' inlined_bytes='88' stamp='0.266'/>
+</task>
+<task compile_id='391' method='jdk.internal.org.objectweb.asm.Type getType ([CI)Ljdk/internal/org/objectweb/asm/Type;' bytes='269' count='194' backedge_count='2240' iicount='194' level='3' stamp='0.267'>
+<phase name='setup' stamp='0.267'>
+<phase_done name='setup' stamp='0.267'/>
+</phase>
+<phase name='buildIR' stamp='0.267'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Type' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='getType' return='1093' arguments='1082 975' flags='10' bytes='269' iicount='194'/>
+<parse method='1094'  stamp='0.267'>
+<phase name='parse_hir' stamp='0.267'>
+<bc code='183' bci='249'/>
+<type id='977' name='void'/>
+<method id='1103' holder='1093' name='&lt;init&gt;' return='977' arguments='975 1082 975 975' flags='2' bytes='26' iicount='149'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1105' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='16473'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.267'/>
+</parse>
+<parse_done stamp='0.267'/>
+</parse>
+<bc code='183' bci='214'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.268'/>
+</parse>
+<parse_done stamp='0.268'/>
+</parse>
+<bc code='183' bci='265'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.268'/>
+</parse>
+<parse_done stamp='0.268'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.268'/>
+</phase>
+<parse_done stamp='0.268'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.268'>
+<phase_done name='optimize_blocks' stamp='0.268'/>
+</phase>
+<phase name='gvn' stamp='0.268'>
+<phase_done name='gvn' stamp='0.268'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.268'>
+<phase_done name='rangeCheckElimination' stamp='0.268'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.268'>
+<phase_done name='optimize_null_checks' stamp='0.268'/>
+</phase>
+<phase_done name='buildIR' stamp='0.268'/>
+</phase>
+<phase name='emit_lir' stamp='0.268'>
+<phase name='lirGeneration' stamp='0.268'>
+<phase_done name='lirGeneration' stamp='0.268'/>
+</phase>
+<phase name='linearScan' stamp='0.268'>
+<phase_done name='linearScan' stamp='0.268'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.268'/>
+</phase>
+<phase name='codeemit' stamp='0.268'>
+<phase_done name='codeemit' stamp='0.268'/>
+</phase>
+<phase name='codeinstall' stamp='0.268'>
+<phase_done name='codeinstall' stamp='0.268'/>
+</phase>
+<code_cache total_blobs='795' nmethods='390' adapters='242' free_code_cache='247971072'/>
+<task_done success='1' nmsize='2512' count='194' backedge_count='2240' inlined_bytes='81' stamp='0.268'/>
+</task>
+<task compile_id='395' method='java.lang.invoke.InvokerBytecodeGenerator emitStoreResult (Ljava/lang/invoke/LambdaForm$Name;)V' bytes='27' count='257' iicount='257' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1095' holder='1093' name='emitStoreResult' return='977' arguments='1094' flags='2' bytes='27' iicount='258'/>
+<parse method='1095'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='182' bci='20'/>
+<type id='975' name='int'/>
+<method id='1100' holder='1094' name='index' return='975' flags='0' bytes='5' compile_id='261' compiler='c1' level='1' iicount='138'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='183' bci='23'/>
+<klass id='1097' name='java.lang.invoke.LambdaForm$BasicType' flags='16408'/>
+<method id='1102' holder='1093' name='emitStoreInsn' return='977' arguments='1097 975' flags='2' bytes='21' iicount='252'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='2'/>
+<method id='1105' holder='1093' name='storeInsnOpcode' return='975' arguments='1097' flags='2' bytes='86' iicount='252'/>
+<call method='1105' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='17'/>
+<klass id='1107' name='jdk.internal.org.objectweb.asm.MethodVisitor' flags='1025'/>
+<method id='1108' holder='1107' name='visitVarInsn' return='977' arguments='975 975' flags='1' bytes='17' iicount='3'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.269'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.269'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.269'/>
+</phase>
+<phase name='codeemit' stamp='0.269'>
+<phase_done name='codeemit' stamp='0.269'/>
+</phase>
+<phase name='codeinstall' stamp='0.269'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.269'/>
+</phase>
+<code_cache total_blobs='801' nmethods='396' adapters='242' free_code_cache='247956608'/>
+<task_done success='1' nmsize='1048' count='264' inlined_bytes='26' stamp='0.269'/>
+</task>
+<task compile_id='398' method='java.lang.invoke.LambdaForm$NamedFunction member ()Ljava/lang/invoke/MemberName;' bytes='26' count='263' iicount='263' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$NamedFunction' flags='8'/>
+<method id='1094' holder='1093' name='member' return='1038' flags='0' bytes='26' iicount='263'/>
+<parse method='1094'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.269'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.269'/>
+</phase>
+<phase name='codeemit' stamp='0.269'>
+<phase_done name='codeemit' stamp='0.269'/>
+</phase>
+<phase name='codeinstall' stamp='0.269'>
+<phase_done name='codeinstall' stamp='0.269'/>
+</phase>
+<code_cache total_blobs='803' nmethods='398' adapters='242' free_code_cache='247954176'/>
+<task_done success='1' nmsize='368' count='267' stamp='0.269'/>
+</task>
+<task compile_id='401' method='java.lang.Class isLocalClass ()Z' bytes='27' count='267' iicount='267' level='3' stamp='0.269'>
+<phase name='setup' stamp='0.269'>
+<phase_done name='setup' stamp='0.269'/>
+</phase>
+<phase name='buildIR' stamp='0.269'>
+<type id='969' name='boolean'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1093' holder='984' name='isLocalClass' return='969' flags='1' bytes='27' iicount='268'/>
+<parse method='1093'  stamp='0.269'>
+<phase name='parse_hir' stamp='0.269'>
+<bc code='183' bci='1'/>
+<method id='1095' holder='984' name='isLocalOrAnonymousClass' return='969' flags='2' bytes='5' compile_id='340' compiler='c1' level='3' iicount='558'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<method id='1097' holder='984' name='hasEnclosingMethodInfo' return='969' flags='2' bytes='17' compile_id='341' compiler='c1' level='3' iicount='558'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='1099' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1100' holder='984' name='getEnclosingMethod0' return='1099' flags='258' bytes='0' compile_id='342' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<bc code='184' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1101' name='java.lang.Class$EnclosingMethodInfo' unloaded='1'/>
+<method id='1102' holder='1101' name='validate' return='977' arguments='1099' unloaded='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.269'/>
+</parse>
+<parse_done stamp='0.269'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1103' holder='984' name='isArray' return='969' flags='257' bytes='0' compile_id='205' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='183' bci='15'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1104' holder='984' name='getSimpleBinaryName0' return='983' flags='258' bytes='0' iicount='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='native method'/>
+<phase_done name='parse_hir' stamp='0.269'/>
+</phase>
+<parse_done stamp='0.269'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.269'>
+<phase_done name='optimize_blocks' stamp='0.269'/>
+</phase>
+<phase name='gvn' stamp='0.269'>
+<phase_done name='gvn' stamp='0.269'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.269'>
+<phase_done name='rangeCheckElimination' stamp='0.269'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.269'>
+<phase_done name='optimize_null_checks' stamp='0.269'/>
+</phase>
+<phase_done name='buildIR' stamp='0.269'/>
+</phase>
+<phase name='emit_lir' stamp='0.269'>
+<phase name='lirGeneration' stamp='0.269'>
+<phase_done name='lirGeneration' stamp='0.269'/>
+</phase>
+<phase name='linearScan' stamp='0.269'>
+<phase_done name='linearScan' stamp='0.270'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.270'/>
+</phase>
+<phase name='codeemit' stamp='0.270'>
+<phase_done name='codeemit' stamp='0.270'/>
+</phase>
+<phase name='codeinstall' stamp='0.270'>
+<phase_done name='codeinstall' stamp='0.270'/>
+</phase>
+<code_cache total_blobs='805' nmethods='400' adapters='242' free_code_cache='247949568'/>
+<task_done success='1' nmsize='1112' count='274' inlined_bytes='22' stamp='0.270'/>
+</task>
+<task compile_id='403' method='java.lang.invoke.InvokerBytecodeGenerator emitStaticInvoke (Ljava/lang/invoke/MemberName;Ljava/lang/invoke/LambdaForm$Name;)V' bytes='257' count='274' iicount='274' level='3' stamp='0.270'>
+<phase name='setup' stamp='0.270'>
+<phase_done name='setup' stamp='0.270'/>
+</phase>
+<phase name='buildIR' stamp='0.270'>
+<type id='977' name='void'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<klass id='1094' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1093' name='java.lang.invoke.InvokerBytecodeGenerator' flags='0'/>
+<method id='1095' holder='1093' name='emitStaticInvoke' return='977' arguments='1038 1094' flags='0' bytes='257' iicount='274'/>
+<parse method='1095'  stamp='0.270'>
+<phase name='parse_hir' stamp='0.270'>
+<bc code='182' bci='29'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1098' holder='1038' name='getDeclaringClass' return='984' flags='1' bytes='5' compile_id='218' compiler='c1' level='1' iicount='141'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='34'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1100' holder='1093' name='getInternalName' return='983' arguments='984' flags='10' bytes='75' compile_id='366' compiler='c1' level='3' iicount='440'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='40'/>
+<method id='1102' holder='1038' name='getName' return='983' flags='1' bytes='25' compile_id='380' compiler='c1' level='3' iicount='310'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='183' bci='8'/>
+<method id='1104' holder='1038' name='expandFromVM' return='977' flags='2' bytes='21' iicount='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1106' holder='1038' name='isResolved' return='969' flags='1' bytes='13' compile_id='393' compiler='c1' level='3' iicount='355'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='17'/>
+<klass id='1039' name='java.lang.invoke.MethodHandleNatives' flags='0'/>
+<method id='1108' holder='1039' name='expand' return='977' arguments='1038' flags='264' bytes='0' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='native method'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='46'/>
+<type id='973' name='byte'/>
+<method id='1109' holder='1038' name='getReferenceKind' return='973' flags='1' bytes='12' compile_id='361' compiler='c1' level='3' iicount='954'/>
+<call method='1109' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='183' bci='116'/>
+<type id='975' name='int'/>
+<method id='1111' holder='1093' name='emitPushArguments' return='977' arguments='1094 975' flags='2' bytes='45' compile_id='404' compiler='c1' level='3' iicount='274'/>
+<call method='1111' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='120'/>
+<method id='1114' holder='1038' name='isMethod' return='969' flags='1' bytes='7' compile_id='384' compiler='c1' level='3' iicount='302'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='3'/>
+<method id='1116' holder='1038' name='testAllFlags' return='969' arguments='975' flags='2' bytes='7' compile_id='264' compiler='c1' level='3' iicount='1196'/>
+<call method='1116' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='183' bci='3'/>
+<method id='1118' holder='1038' name='testFlags' return='969' arguments='975 975' flags='2' bytes='16' compile_id='212' compiler='c1' level='3' iicount='3333'/>
+<call method='1118' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='127'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<method id='1120' holder='1038' name='getMethodType' return='1041' flags='1' bytes='202' compile_id='367' compiler='c1' level='3' iicount='509'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='130'/>
+<method id='1122' holder='1041' name='toMethodDescriptorString' return='983' flags='1' bytes='28' iicount='178'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='184' bci='17'/>
+<klass id='1124' name='[Ljava.lang.Class;' flags='1041'/>
+<klass id='1125' name='sun.invoke.util.BytecodeDescriptor' flags='1'/>
+<method id='1126' holder='1125' name='unparseMethod' return='983' arguments='984 1124' flags='9' bytes='66' iicount='29'/>
+<call method='1126' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='142'/>
+<method id='1129' holder='1093' name='refKindOpcode' return='975' arguments='973' flags='0' bytes='112' iicount='274'/>
+<call method='1129' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='152'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='155'/>
+<method id='1131' holder='984' name='isInterface' return='969' flags='257' bytes='0' compile_id='309' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='182' bci='158'/>
+<klass id='1128' name='jdk.internal.org.objectweb.asm.MethodVisitor' flags='1025'/>
+<method id='1132' holder='1128' name='visitMethodInsn' return='977' arguments='975 983 983 983 969' flags='1' bytes='68' iicount='2'/>
+<call method='1132' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='165'/>
+<method id='1133' holder='1038' name='getFieldType' return='984' flags='1' bytes='177' compile_id='348' compiler='c1' level='3' iicount='644'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='168'/>
+<method id='1135' holder='1041' name='toFieldDescriptorString' return='983' arguments='984' flags='8' bytes='5' iicount='136'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='1'/>
+<method id='1137' holder='1125' name='unparse' return='983' arguments='984' flags='9' bytes='18' iicount='141'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<bc code='183' bci='4'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1139' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='785'/>
+<call method='1139' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1141' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='808'/>
+<call method='1141' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='184' bci='10'/>
+<method id='1143' holder='1125' name='unparseSig' return='977' arguments='984 1050' flags='10' bytes='75' compile_id='390' compiler='c1' level='3' iicount='319'/>
+<call method='1143' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<method id='1146' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='808'/>
+<call method='1146' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.270'/>
+</parse>
+<parse_done stamp='0.270'/>
+</parse>
+<bc code='182' bci='180'/>
+<call method='1129' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='189'/>
+<method id='1148' holder='1128' name='visitFieldInsn' return='977' arguments='975 983 983 983' flags='1' bytes='20' iicount='2'/>
+<call method='1148' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='203'/>
+<method id='1152' holder='1038' name='getInvocationType' return='1041' flags='1' bytes='56' compile_id='385' compiler='c1' level='3' iicount='315'/>
+<call method='1152' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='206'/>
+<method id='1154' holder='1041' name='returnType' return='984' flags='1' bytes='5' compile_id='204' compiler='c1' level='1' iicount='128'/>
+<call method='1154' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1154'>
+<parse_done stamp='0.271'/>
+</parse>
+<bc code='182' bci='242'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_fail reason='native method'/>
+<bc code='183' bci='252'/>
+<method id='1157' holder='1093' name='assertStaticType' return='969' arguments='984 1094' flags='2' bytes='58' iicount='133'/>
+<call method='1157' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.271'/>
+</phase>
+<parse_done stamp='0.271'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.271'>
+<phase_done name='optimize_blocks' stamp='0.271'/>
+</phase>
+<phase name='gvn' stamp='0.271'>
+<phase_done name='gvn' stamp='0.271'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.271'>
+<phase_done name='rangeCheckElimination' stamp='0.271'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.271'>
+<phase_done name='optimize_null_checks' stamp='0.271'/>
+</phase>
+<phase_done name='buildIR' stamp='0.271'/>
+</phase>
+<phase name='emit_lir' stamp='0.271'>
+<phase name='lirGeneration' stamp='0.271'>
+<phase_done name='lirGeneration' stamp='0.271'/>
+</phase>
+<phase name='linearScan' stamp='0.271'>
+<phase_done name='linearScan' stamp='0.271'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.271'/>
+</phase>
+<phase name='codeemit' stamp='0.271'>
+<phase_done name='codeemit' stamp='0.271'/>
+</phase>
+<phase name='codeinstall' stamp='0.271'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.271'/>
+</phase>
+<code_cache total_blobs='813' nmethods='407' adapters='242' free_code_cache='247930496'/>
+<task_done success='1' nmsize='5928' count='276' inlined_bytes='174' stamp='0.272'/>
+</task>
+<task compile_id='409' method='java.lang.invoke.LambdaFormBuffer ownedCount ()I' bytes='7' count='259' iicount='259' level='3' stamp='0.272'>
+<phase name='setup' stamp='0.272'>
+<phase_done name='setup' stamp='0.272'/>
+</phase>
+<phase name='buildIR' stamp='0.272'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaFormBuffer' flags='16'/>
+<method id='1094' holder='1093' name='ownedCount' return='975' flags='0' bytes='7' iicount='259'/>
+<parse method='1094'  stamp='0.272'>
+<phase name='parse_hir' stamp='0.272'>
+<phase_done name='parse_hir' stamp='0.272'/>
+</phase>
+<parse_done stamp='0.272'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.272'>
+<phase_done name='optimize_blocks' stamp='0.272'/>
+</phase>
+<phase name='gvn' stamp='0.272'>
+<phase_done name='gvn' stamp='0.272'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.272'>
+<phase_done name='rangeCheckElimination' stamp='0.272'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.272'>
+<phase_done name='optimize_null_checks' stamp='0.272'/>
+</phase>
+<phase_done name='buildIR' stamp='0.272'/>
+</phase>
+<phase name='emit_lir' stamp='0.272'>
+<phase name='lirGeneration' stamp='0.272'>
+<phase_done name='lirGeneration' stamp='0.272'/>
+</phase>
+<phase name='linearScan' stamp='0.272'>
+<phase_done name='linearScan' stamp='0.272'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.272'/>
+</phase>
+<phase name='codeemit' stamp='0.272'>
+<phase_done name='codeemit' stamp='0.272'/>
+</phase>
+<phase name='codeinstall' stamp='0.272'>
+<phase_done name='codeinstall' stamp='0.272'/>
+</phase>
+<code_cache total_blobs='814' nmethods='409' adapters='242' free_code_cache='247929600'/>
+<task_done success='1' nmsize='336' count='259' stamp='0.272'/>
+</task>
+<task compile_id='413' method='java.lang.invoke.LambdaForm lastUseIndex (Ljava/lang/invoke/LambdaForm$Name;)I' bytes='76' count='279' backedge_count='1044' iicount='279' level='3' stamp='0.272'>
+<phase name='setup' stamp='0.272'>
+<phase_done name='setup' stamp='0.272'/>
+</phase>
+<phase name='buildIR' stamp='0.272'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.invoke.LambdaForm$Name' flags='24'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1094' holder='1040' name='lastUseIndex' return='975' arguments='1093' flags='0' bytes='76' iicount='287'/>
+<parse method='1094'  stamp='0.272'>
+<phase name='parse_hir' stamp='0.272'>
+<bc code='182' bci='65'/>
+<method id='1098' holder='1093' name='lastUseIndex' return='975' arguments='1093' flags='0' bytes='36' compile_id='321' compiler='c1' level='3' iicount='1416'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.272'/>
+</phase>
+<parse_done stamp='0.272'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.272'>
+<phase_done name='optimize_blocks' stamp='0.272'/>
+</phase>
+<phase name='gvn' stamp='0.272'>
+<phase_done name='gvn' stamp='0.272'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.272'>
+<phase_done name='rangeCheckElimination' stamp='0.272'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.272'>
+<phase_done name='optimize_null_checks' stamp='0.272'/>
+</phase>
+<phase_done name='buildIR' stamp='0.272'/>
+</phase>
+<phase name='emit_lir' stamp='0.272'>
+<phase name='lirGeneration' stamp='0.272'>
+<phase_done name='lirGeneration' stamp='0.272'/>
+</phase>
+<phase name='linearScan' stamp='0.272'>
+<phase_done name='linearScan' stamp='0.272'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.272'/>
+</phase>
+<phase name='codeemit' stamp='0.272'>
+<phase_done name='codeemit' stamp='0.272'/>
+</phase>
+<phase name='codeinstall' stamp='0.272'>
+<phase_done name='codeinstall' stamp='0.272'/>
+</phase>
+<code_cache total_blobs='817' nmethods='412' adapters='242' free_code_cache='247910144'/>
+<task_done success='1' nmsize='936' count='298' backedge_count='1163' stamp='0.272'/>
+</task>
+<task compile_id='417' method='java.lang.Byte &lt;init&gt; (B)V' bytes='10' count='262' iicount='262' level='3' stamp='0.273'>
+<phase name='setup' stamp='0.273'>
+<phase_done name='setup' stamp='0.273'/>
+</phase>
+<phase name='buildIR' stamp='0.273'>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<klass id='1074' name='java.lang.Byte' flags='17'/>
+<method id='1093' holder='1074' name='&lt;init&gt;' return='977' arguments='973' flags='1' bytes='10' iicount='262'/>
+<parse method='1093'  stamp='0.273'>
+<phase name='parse_hir' stamp='0.273'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1095' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='532'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='17498'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.273'/>
+</parse>
+<parse_done stamp='0.273'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.273'/>
+</phase>
+<parse_done stamp='0.273'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.273'>
+<phase_done name='optimize_blocks' stamp='0.273'/>
+</phase>
+<phase name='gvn' stamp='0.273'>
+<phase_done name='gvn' stamp='0.273'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.273'>
+<phase_done name='rangeCheckElimination' stamp='0.273'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.273'>
+<phase_done name='optimize_null_checks' stamp='0.273'/>
+</phase>
+<phase_done name='buildIR' stamp='0.273'/>
+</phase>
+<phase name='emit_lir' stamp='0.273'>
+<phase name='lirGeneration' stamp='0.273'>
+<phase_done name='lirGeneration' stamp='0.273'/>
+</phase>
+<phase name='linearScan' stamp='0.273'>
+<phase_done name='linearScan' stamp='0.273'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.273'/>
+</phase>
+<phase name='codeemit' stamp='0.273'>
+<phase_done name='codeemit' stamp='0.273'/>
+</phase>
+<phase name='codeinstall' stamp='0.273'>
+<phase_done name='codeinstall' stamp='0.273'/>
+</phase>
+<code_cache total_blobs='823' nmethods='418' adapters='242' free_code_cache='247903488'/>
+<task_done success='1' nmsize='528' count='262' inlined_bytes='6' stamp='0.273'/>
+</task>
+<task compile_id='422' method='java.lang.invoke.MemberName init (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Object;I)V' bytes='66' count='257' iicount='257' level='3' stamp='0.274'>
+<phase name='setup' stamp='0.274'>
+<phase_done name='setup' stamp='0.274'/>
+</phase>
+<phase name='buildIR' stamp='0.274'>
+<type id='977' name='void'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<klass id='1038' name='java.lang.invoke.MemberName' flags='16'/>
+<method id='1093' holder='1038' name='init' return='977' arguments='984 983 982 975' flags='2' bytes='66' iicount='257'/>
+<parse method='1093'  stamp='0.274'>
+<phase name='parse_hir' stamp='0.274'>
+<phase_done name='parse_hir' stamp='0.274'/>
+</phase>
+<parse_done stamp='0.274'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.274'>
+<phase_done name='optimize_blocks' stamp='0.274'/>
+</phase>
+<phase name='gvn' stamp='0.274'>
+<phase_done name='gvn' stamp='0.274'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.274'>
+<phase_done name='rangeCheckElimination' stamp='0.274'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.274'>
+<phase_done name='optimize_null_checks' stamp='0.274'/>
+</phase>
+<phase_done name='buildIR' stamp='0.274'/>
+</phase>
+<phase name='emit_lir' stamp='0.274'>
+<phase name='lirGeneration' stamp='0.274'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='827' nmethods='422' adapters='242' free_code_cache='247897472'/>
+<task_done success='1' nmsize='688' count='257' stamp='0.274'/>
+</task>
+<task compile_id='427' method='java.lang.ref.SoftReference &lt;init&gt; (Ljava/lang/Object;)V' bytes='13' count='257' iicount='257' level='3' stamp='0.274'>
+<phase name='setup' stamp='0.274'>
+<phase_done name='setup' stamp='0.274'/>
+</phase>
+<phase name='buildIR' stamp='0.274'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1009' name='java.lang.ref.SoftReference' flags='1'/>
+<method id='1093' holder='1009' name='&lt;init&gt;' return='977' arguments='982' flags='1' bytes='13' iicount='257'/>
+<parse method='1093'  stamp='0.274'>
+<phase name='parse_hir' stamp='0.274'>
+<bc code='183' bci='2'/>
+<klass id='1008' name='java.lang.ref.Reference' flags='1025'/>
+<method id='1095' holder='1008' name='&lt;init&gt;' return='977' arguments='982' flags='0' bytes='7' compile_id='208' compiler='c1' level='3' iicount='1484'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='183' bci='3'/>
+<klass id='1097' name='java.lang.ref.ReferenceQueue' flags='1'/>
+<method id='1098' holder='1008' name='&lt;init&gt;' return='977' arguments='982 1097' flags='0' bytes='25' compile_id='190' compiler='c1' level='3' iicount='1794'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<method id='1100' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='17651'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1009'/>
+<parse_done stamp='0.274'/>
+</parse>
+<parse_done stamp='0.274'/>
+</parse>
+<parse_done stamp='0.274'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.274'/>
+</phase>
+<parse_done stamp='0.274'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.274'>
+<phase_done name='optimize_blocks' stamp='0.274'/>
+</phase>
+<phase name='gvn' stamp='0.274'>
+<phase_done name='gvn' stamp='0.274'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.274'>
+<phase_done name='rangeCheckElimination' stamp='0.274'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.274'>
+<phase_done name='optimize_null_checks' stamp='0.274'/>
+</phase>
+<phase_done name='buildIR' stamp='0.274'/>
+</phase>
+<phase name='emit_lir' stamp='0.274'>
+<phase name='lirGeneration' stamp='0.274'>
+<phase_done name='lirGeneration' stamp='0.274'/>
+</phase>
+<phase name='linearScan' stamp='0.274'>
+<phase_done name='linearScan' stamp='0.274'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.274'/>
+</phase>
+<phase name='codeemit' stamp='0.274'>
+<phase_done name='codeemit' stamp='0.274'/>
+</phase>
+<phase name='codeinstall' stamp='0.274'>
+<dependency type='no_finalizable_subclasses' ctxk='1009'/>
+<phase_done name='codeinstall' stamp='0.274'/>
+</phase>
+<code_cache total_blobs='831' nmethods='426' adapters='242' free_code_cache='247887744'/>
+<task_done success='1' nmsize='912' count='257' inlined_bytes='33' stamp='0.274'/>
+</task>
+<task compile_id='435' method='jdk.internal.org.objectweb.asm.Type getDescriptor (Ljava/lang/StringBuilder;)V' bytes='87' count='259' iicount='259' level='3' stamp='0.277'>
+<phase name='setup' stamp='0.277'>
+<phase_done name='setup' stamp='0.277'/>
+</phase>
+<phase name='buildIR' stamp='0.277'>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.Type' flags='1'/>
+<method id='1094' holder='1093' name='getDescriptor' return='977' arguments='1050' flags='2' bytes='87' iicount='259'/>
+<parse method='1094'  stamp='0.277'>
+<phase name='parse_hir' stamp='0.277'>
+<bc code='182' bci='19'/>
+<type id='970' name='char'/>
+<method id='1096' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='1565'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1098' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='1570'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='2'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='182' bci='55'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1100' holder='1050' name='append' return='1050' arguments='1082 975 975' flags='1' bytes='10' iicount='194'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='4'/>
+<method id='1102' holder='1048' name='append' return='1048' arguments='1082 975 975' flags='1' bytes='33' iicount='194'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='182' bci='62'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='2'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<bc code='182' bci='82'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='4'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.277'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.277'/>
+</phase>
+<parse_done stamp='0.277'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.277'>
+<phase_done name='optimize_blocks' stamp='0.277'/>
+</phase>
+<phase name='gvn' stamp='0.277'>
+<phase_done name='gvn' stamp='0.277'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.277'>
+<phase_done name='rangeCheckElimination' stamp='0.277'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.277'>
+<phase_done name='optimize_null_checks' stamp='0.277'/>
+</phase>
+<phase_done name='buildIR' stamp='0.277'/>
+</phase>
+<phase name='emit_lir' stamp='0.277'>
+<phase name='lirGeneration' stamp='0.277'>
+<phase_done name='lirGeneration' stamp='0.277'/>
+</phase>
+<phase name='linearScan' stamp='0.277'>
+<phase_done name='linearScan' stamp='0.277'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.277'/>
+</phase>
+<phase name='codeemit' stamp='0.277'>
+<phase_done name='codeemit' stamp='0.277'/>
+</phase>
+<phase name='codeinstall' stamp='0.277'>
+<phase_done name='codeinstall' stamp='0.277'/>
+</phase>
+<code_cache total_blobs='839' nmethods='434' adapters='242' free_code_cache='247878144'/>
+<task_done success='1' nmsize='1960' count='274' inlined_bytes='44' stamp='0.277'/>
+</task>
+<task compile_id='437' method='jdk.internal.org.objectweb.asm.ByteVector putInt (I)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='74' count='263' iicount='263' level='3' stamp='0.277'>
+<phase name='setup' stamp='0.277'>
+<phase_done name='setup' stamp='0.277'/>
+</phase>
+<phase name='buildIR' stamp='0.277'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='putInt' return='1093' arguments='975' flags='1' bytes='74' iicount='263'/>
+<parse method='1094'  stamp='0.277'>
+<phase name='parse_hir' stamp='0.277'>
+<bc code='183' bci='18'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='185'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.277'/>
+</phase>
+<parse_done stamp='0.277'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.277'>
+<phase_done name='optimize_blocks' stamp='0.277'/>
+</phase>
+<phase name='gvn' stamp='0.277'>
+<phase_done name='gvn' stamp='0.277'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.277'>
+<phase_done name='rangeCheckElimination' stamp='0.277'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.277'>
+<phase_done name='optimize_null_checks' stamp='0.277'/>
+</phase>
+<phase_done name='buildIR' stamp='0.277'/>
+</phase>
+<phase name='emit_lir' stamp='0.277'>
+<phase name='lirGeneration' stamp='0.277'>
+<phase_done name='lirGeneration' stamp='0.278'/>
+</phase>
+<phase name='linearScan' stamp='0.278'>
+<phase_done name='linearScan' stamp='0.278'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.278'/>
+</phase>
+<phase name='codeemit' stamp='0.278'>
+<phase_done name='codeemit' stamp='0.278'/>
+</phase>
+<phase name='codeinstall' stamp='0.278'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.278'/>
+</phase>
+<code_cache total_blobs='843' nmethods='437' adapters='243' free_code_cache='247872384'/>
+<task_done success='1' nmsize='648' count='263' stamp='0.278'/>
+</task>
+<task compile_id='443' method='java.lang.AbstractStringBuilder checkRange (III)V' bytes='60' count='260' iicount='260' level='3' stamp='0.280'>
+<phase name='setup' stamp='0.280'>
+<phase_done name='setup' stamp='0.280'/>
+</phase>
+<phase name='buildIR' stamp='0.280'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='checkRange' return='977' arguments='975 975 975' flags='10' bytes='60' iicount='260'/>
+<parse method='1093'  stamp='0.280'>
+<phase name='parse_hir' stamp='0.280'>
+<bc code='183' bci='22'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1096' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1058'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='3'/>
+<method id='1098' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1116'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='27'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1101' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='1495'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<method id='1103' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='1495'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='31'/>
+<method id='1105' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='232'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<method id='1107' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='232'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='36'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='40'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='2'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='2'/>
+<call method='1107' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='182' bci='52'/>
+<method id='1111' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1116'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1113' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='3406'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1116' name='java.lang.StringLatin1' flags='16'/>
+<method id='1117' holder='1116' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='2027'/>
+<call method='1117' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='184' bci='9'/>
+<klass id='1119' name='java.util.Arrays' flags='1'/>
+<method id='1120' holder='1119' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='2045'/>
+<call method='1120' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1122' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='2986'/>
+<call method='1122' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1124' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='19193'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.280'/>
+</parse>
+<parse_done stamp='0.280'/>
+</parse>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1126' name='java.lang.StringUTF16' flags='16'/>
+<method id='1127' holder='1126' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.280'/>
+</parse>
+<bc code='183' bci='55'/>
+<klass id='1095' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1129' holder='1095' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1129' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.280'/>
+</phase>
+<parse_done stamp='0.280'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.280'>
+<phase_done name='optimize_blocks' stamp='0.280'/>
+</phase>
+<phase name='gvn' stamp='0.280'>
+<phase_done name='gvn' stamp='0.280'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.280'>
+<phase_done name='rangeCheckElimination' stamp='0.280'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.280'>
+<phase_done name='optimize_null_checks' stamp='0.280'/>
+</phase>
+<phase_done name='buildIR' stamp='0.280'/>
+</phase>
+<phase name='emit_lir' stamp='0.280'>
+<phase name='lirGeneration' stamp='0.280'>
+<phase_done name='lirGeneration' stamp='0.280'/>
+</phase>
+<phase name='linearScan' stamp='0.280'>
+<phase_done name='linearScan' stamp='0.280'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.280'/>
+</phase>
+<phase name='codeemit' stamp='0.280'>
+<phase_done name='codeemit' stamp='0.281'/>
+</phase>
+<phase name='codeinstall' stamp='0.281'>
+<phase_done name='codeinstall' stamp='0.281'/>
+</phase>
+<code_cache total_blobs='854' nmethods='445' adapters='244' free_code_cache='247858688'/>
+<task_done success='1' nmsize='3896' count='270' inlined_bytes='142' stamp='0.281'/>
+</task>
+<task compile_id='449' method='java.lang.StringBuilder append (I)Ljava/lang/StringBuilder;' bytes='8' count='269' iicount='269' level='3' stamp='0.281'>
+<phase name='setup' stamp='0.281'>
+<phase_done name='setup' stamp='0.281'/>
+</phase>
+<phase name='buildIR' stamp='0.281'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<type id='975' name='int'/>
+<method id='1093' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' iicount='270'/>
+<parse method='1093'  stamp='0.281'>
+<phase name='parse_hir' stamp='0.281'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' iicount='271'/>
+<call method='1095' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.281'/>
+</phase>
+<parse_done stamp='0.281'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.281'>
+<phase_done name='optimize_blocks' stamp='0.281'/>
+</phase>
+<phase name='gvn' stamp='0.281'>
+<phase_done name='gvn' stamp='0.281'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.281'>
+<phase_done name='rangeCheckElimination' stamp='0.281'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.281'>
+<phase_done name='optimize_null_checks' stamp='0.281'/>
+</phase>
+<phase_done name='buildIR' stamp='0.281'/>
+</phase>
+<phase name='emit_lir' stamp='0.281'>
+<phase name='lirGeneration' stamp='0.281'>
+<phase_done name='lirGeneration' stamp='0.281'/>
+</phase>
+<phase name='linearScan' stamp='0.281'>
+<phase_done name='linearScan' stamp='0.281'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.281'/>
+</phase>
+<phase name='codeemit' stamp='0.281'>
+<phase_done name='codeemit' stamp='0.281'/>
+</phase>
+<phase name='codeinstall' stamp='0.281'>
+<phase_done name='codeinstall' stamp='0.281'/>
+</phase>
+<code_cache total_blobs='856' nmethods='447' adapters='244' free_code_cache='247856384'/>
+<task_done success='1' nmsize='392' count='279' stamp='0.282'/>
+</task>
+<task compile_id='451' method='jdk.internal.org.objectweb.asm.MethodWriter visitFieldInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='248' count='265' iicount='265' level='3' stamp='0.282'>
+<phase name='setup' stamp='0.282'>
+<phase_done name='setup' stamp='0.282'/>
+</phase>
+<phase name='buildIR' stamp='0.282'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.MethodWriter' flags='0'/>
+<method id='1094' holder='1093' name='visitFieldInsn' return='977' arguments='975 983 983 983' flags='1' bytes='248' iicount='265'/>
+<parse method='1094'  stamp='0.282'>
+<phase name='parse_hir' stamp='0.282'>
+<bc code='182' bci='19'/>
+<klass id='1098' name='jdk.internal.org.objectweb.asm.Item' flags='16'/>
+<klass id='1097' name='jdk.internal.org.objectweb.asm.ClassWriter' flags='1'/>
+<method id='1099' holder='1097' name='newFieldItem' return='1098' arguments='983 983 983' flags='0' bytes='77' iicount='265'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='53'/>
+<klass id='1102' name='jdk.internal.org.objectweb.asm.Frame' flags='16'/>
+<method id='1103' holder='1102' name='execute' return='977' arguments='975 975 1097 1098' flags='0' bytes='2252' compile_id='292' compiler='c1' level='3' iicount='2144'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='62'/>
+<type id='970' name='char'/>
+<method id='1105' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='38921'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1107' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='48606'/>
+<call method='1107' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1110' name='java.lang.StringLatin1' flags='16'/>
+<method id='1111' holder='1110' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='37899'/>
+<call method='1111' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='183' bci='15'/>
+<klass id='1113' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1114' holder='1113' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1115' name='java.lang.StringUTF16' flags='16'/>
+<method id='1116' holder='1115' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='184' bci='2'/>
+<method id='1118' holder='1115' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='2'/>
+<method id='1120' holder='1115' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1120' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1122' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1122' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1124' holder='1115' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1124' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.282'/>
+</parse>
+<parse_done stamp='0.282'/>
+</parse>
+<bc code='182' bci='243'/>
+<klass id='1096' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1125' holder='1096' name='put12' return='1096' arguments='975 975' flags='0' bytes='64' compile_id='289' compiler='c1' level='3' iicount='1561'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='parse_hir' stamp='0.282'/>
+</phase>
+<parse_done stamp='0.282'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.282'>
+<phase_done name='optimize_blocks' stamp='0.282'/>
+</phase>
+<phase name='gvn' stamp='0.282'>
+<phase_done name='gvn' stamp='0.282'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.282'>
+<phase_done name='rangeCheckElimination' stamp='0.282'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.282'>
+<phase_done name='optimize_null_checks' stamp='0.282'/>
+</phase>
+<phase_done name='buildIR' stamp='0.282'/>
+</phase>
+<phase name='emit_lir' stamp='0.282'>
+<phase name='lirGeneration' stamp='0.282'>
+<phase_done name='lirGeneration' stamp='0.282'/>
+</phase>
+<phase name='linearScan' stamp='0.282'>
+<phase_done name='linearScan' stamp='0.283'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.283'/>
+</phase>
+<phase name='codeemit' stamp='0.283'>
+<phase_done name='codeemit' stamp='0.283'/>
+</phase>
+<phase name='codeinstall' stamp='0.283'>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.283'/>
+</phase>
+<code_cache total_blobs='864' nmethods='454' adapters='245' free_code_cache='247842048'/>
+<task_done success='1' nmsize='3016' count='265' inlined_bytes='97' stamp='0.283'/>
+</task>
+<task compile_id='456' method='jdk.internal.org.objectweb.asm.ByteVector &lt;init&gt; ()V' bytes='13' count='256' iicount='256' level='3' stamp='0.283'>
+<phase name='setup' stamp='0.283'>
+<phase_done name='setup' stamp='0.283'/>
+</phase>
+<phase name='buildIR' stamp='0.283'>
+<type id='977' name='void'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='13' iicount='256'/>
+<parse method='1094'  stamp='0.283'>
+<phase name='parse_hir' stamp='0.283'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='20067'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.283'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.283'/>
+</phase>
+<parse_done stamp='0.283'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.283'>
+<phase_done name='optimize_blocks' stamp='0.283'/>
+</phase>
+<phase name='gvn' stamp='0.283'>
+<phase_done name='gvn' stamp='0.283'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.283'>
+<phase_done name='rangeCheckElimination' stamp='0.283'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.283'>
+<phase_done name='optimize_null_checks' stamp='0.283'/>
+</phase>
+<phase_done name='buildIR' stamp='0.283'/>
+</phase>
+<phase name='emit_lir' stamp='0.283'>
+<phase name='lirGeneration' stamp='0.283'>
+<phase_done name='lirGeneration' stamp='0.283'/>
+</phase>
+<phase name='linearScan' stamp='0.283'>
+<phase_done name='linearScan' stamp='0.283'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.283'/>
+</phase>
+<phase name='codeemit' stamp='0.283'>
+<phase_done name='codeemit' stamp='0.283'/>
+</phase>
+<phase name='codeinstall' stamp='0.283'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.283'/>
+</phase>
+<code_cache total_blobs='866' nmethods='456' adapters='245' free_code_cache='247838848'/>
+<task_done success='1' nmsize='688' count='256' inlined_bytes='1' stamp='0.283'/>
+</task>
+<task compile_id='457' method='jdk.internal.org.objectweb.asm.ByteVector putByteArray ([BII)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='49' count='256' iicount='256' level='3' stamp='0.283'>
+<phase name='setup' stamp='0.283'>
+<phase_done name='setup' stamp='0.283'/>
+</phase>
+<phase name='buildIR' stamp='0.283'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='putByteArray' return='1093' arguments='1085 975 975' flags='1' bytes='49' iicount='256'/>
+<parse method='1094'  stamp='0.283'>
+<phase name='parse_hir' stamp='0.283'>
+<bc code='183' bci='16'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='224'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='34'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1098' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.283'/>
+</phase>
+<parse_done stamp='0.283'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.283'>
+<phase_done name='optimize_blocks' stamp='0.283'/>
+</phase>
+<phase name='gvn' stamp='0.283'>
+<phase_done name='gvn' stamp='0.283'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.283'>
+<phase_done name='rangeCheckElimination' stamp='0.283'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.283'>
+<phase_done name='optimize_null_checks' stamp='0.283'/>
+</phase>
+<phase_done name='buildIR' stamp='0.283'/>
+</phase>
+<phase name='emit_lir' stamp='0.283'>
+<phase name='lirGeneration' stamp='0.283'>
+<phase_done name='lirGeneration' stamp='0.283'/>
+</phase>
+<phase name='linearScan' stamp='0.283'>
+<phase_done name='linearScan' stamp='0.283'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.283'/>
+</phase>
+<phase name='codeemit' stamp='0.283'>
+<phase_done name='codeemit' stamp='0.284'/>
+</phase>
+<phase name='codeinstall' stamp='0.284'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.284'/>
+</phase>
+<code_cache total_blobs='867' nmethods='457' adapters='245' free_code_cache='247837312'/>
+<task_done success='1' nmsize='792' count='256' stamp='0.284'/>
+</task>
+<task compile_id='465' method='java.lang.invoke.LambdaForm uncustomize ()Ljava/lang/invoke/LambdaForm;' bytes='57' count='256' iicount='256' level='3' stamp='0.285'>
+<phase name='setup' stamp='0.285'>
+<phase_done name='setup' stamp='0.285'/>
+</phase>
+<phase name='buildIR' stamp='0.286'>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<method id='1093' holder='1040' name='uncustomize' return='1040' flags='0' bytes='57' iicount='256'/>
+<parse method='1093'  stamp='0.286'>
+<phase name='parse_hir' stamp='0.286'>
+<bc code='192' bci='34'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='182' bci='52'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1040' name='compileToBytecode' return='977' flags='0' bytes='162' iicount='96'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<phase_done name='parse_hir' stamp='0.286'/>
+</phase>
+<parse_done stamp='0.286'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.286'>
+<phase_done name='optimize_blocks' stamp='0.286'/>
+</phase>
+<phase name='gvn' stamp='0.286'>
+<phase_done name='gvn' stamp='0.286'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.286'>
+<phase_done name='rangeCheckElimination' stamp='0.286'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.286'>
+<phase_done name='optimize_null_checks' stamp='0.286'/>
+</phase>
+<phase_done name='buildIR' stamp='0.286'/>
+</phase>
+<phase name='emit_lir' stamp='0.286'>
+<phase name='lirGeneration' stamp='0.286'>
+<phase_done name='lirGeneration' stamp='0.286'/>
+</phase>
+<phase name='linearScan' stamp='0.286'>
+<phase_done name='linearScan' stamp='0.286'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.286'/>
+</phase>
+<phase name='codeemit' stamp='0.286'>
+<phase_done name='codeemit' stamp='0.286'/>
+</phase>
+<phase name='codeinstall' stamp='0.286'>
+<dependency type='leaf_type' ctxk='1040'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1096'/>
+<phase_done name='codeinstall' stamp='0.286'/>
+</phase>
+<code_cache total_blobs='876' nmethods='465' adapters='246' free_code_cache='247827840'/>
+<task_done success='1' nmsize='840' count='256' stamp='0.286'/>
+</task>
+<task compile_id='470' method='java.lang.module.ModuleDescriptor$Provides service ()Ljava/lang/String;' bytes='5' count='147' iicount='147' level='1' stamp='0.291'>
+<phase name='setup' stamp='0.291'>
+<phase_done name='setup' stamp='0.291'/>
+</phase>
+<phase name='buildIR' stamp='0.291'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='java.lang.module.ModuleDescriptor$Provides' flags='25'/>
+<method id='1094' holder='1093' name='service' return='983' flags='1' bytes='5' iicount='149'/>
+<parse method='1094'  stamp='0.291'>
+<phase name='parse_hir' stamp='0.291'>
+<phase_done name='parse_hir' stamp='0.291'/>
+</phase>
+<parse_done stamp='0.291'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.291'>
+<phase_done name='optimize_blocks' stamp='0.291'/>
+</phase>
+<phase name='gvn' stamp='0.291'>
+<phase_done name='gvn' stamp='0.291'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.291'>
+<phase_done name='rangeCheckElimination' stamp='0.291'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.291'>
+<phase_done name='optimize_null_checks' stamp='0.291'/>
+</phase>
+<phase_done name='buildIR' stamp='0.291'/>
+</phase>
+<phase name='emit_lir' stamp='0.291'>
+<phase name='lirGeneration' stamp='0.291'>
+<phase_done name='lirGeneration' stamp='0.291'/>
+</phase>
+<phase name='linearScan' stamp='0.291'>
+<phase_done name='linearScan' stamp='0.291'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.291'/>
+</phase>
+<phase name='codeemit' stamp='0.291'>
+<phase_done name='codeemit' stamp='0.292'/>
+</phase>
+<phase name='codeinstall' stamp='0.292'>
+<phase_done name='codeinstall' stamp='0.292'/>
+</phase>
+<code_cache total_blobs='882' nmethods='470' adapters='247' free_code_cache='247816320'/>
+<task_done success='1' nmsize='272' count='174' stamp='0.292'/>
+</task>
+<task compile_id='474' method='java.lang.StringUTF16 compress ([CI[BII)I' bytes='50' count='130' backedge_count='2349' iicount='130' level='3' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringUTF16' flags='16'/>
+<method id='1094' holder='1093' name='compress' return='975' arguments='1082 975 1085 975 975' flags='9' bytes='50' iicount='130'/>
+<parse method='1094'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.297'/>
+</phase>
+<phase_done name='buildIR' stamp='0.297'/>
+</phase>
+<phase name='emit_lir' stamp='0.297'>
+<phase name='lirGeneration' stamp='0.297'>
+<phase_done name='lirGeneration' stamp='0.297'/>
+</phase>
+<phase name='linearScan' stamp='0.297'>
+<phase_done name='linearScan' stamp='0.297'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.297'/>
+</phase>
+<phase name='codeemit' stamp='0.297'>
+<phase_done name='codeemit' stamp='0.297'/>
+</phase>
+<phase name='codeinstall' stamp='0.297'>
+<phase_done name='codeinstall' stamp='0.297'/>
+</phase>
+<code_cache total_blobs='888' nmethods='475' adapters='248' free_code_cache='247810304'/>
+<task_done success='1' nmsize='656' count='133' backedge_count='2385' stamp='0.297'/>
+</task>
+<task compile_id='475' method='java.nio.Buffer hasRemaining ()Z' bytes='17' count='312' iicount='313' level='3' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='969' name='boolean'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='hasRemaining' return='969' flags='17' bytes='17' iicount='336'/>
+<parse method='1093'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.297'/>
+</phase>
+<phase_done name='buildIR' stamp='0.297'/>
+</phase>
+<phase name='emit_lir' stamp='0.297'>
+<phase name='lirGeneration' stamp='0.297'>
+<phase_done name='lirGeneration' stamp='0.297'/>
+</phase>
+<phase name='linearScan' stamp='0.297'>
+<phase_done name='linearScan' stamp='0.297'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.297'/>
+</phase>
+<phase name='codeemit' stamp='0.297'>
+<phase_done name='codeemit' stamp='0.297'/>
+</phase>
+<phase name='codeinstall' stamp='0.297'>
+<phase_done name='codeinstall' stamp='0.297'/>
+</phase>
+<code_cache total_blobs='889' nmethods='476' adapters='248' free_code_cache='247809280'/>
+<task_done success='1' nmsize='432' count='422' stamp='0.297'/>
+</task>
+<task compile_id='479' method='jdk.internal.misc.Unsafe getByte (J)B' bytes='7' count='428' iicount='428' level='3' stamp='0.297'>
+<phase name='setup' stamp='0.297'>
+<phase_done name='setup' stamp='0.297'/>
+</phase>
+<phase name='buildIR' stamp='0.297'>
+<type id='973' name='byte'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1093' holder='1051' name='getByte' return='973' arguments='976' flags='1' bytes='7' iicount='428'/>
+<parse method='1093'  stamp='0.297'>
+<phase name='parse_hir' stamp='0.297'>
+<bc code='182' bci='3'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='1051' name='getByte' return='973' arguments='982 976' flags='257' bytes='0' compile_id='480' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.297'/>
+</phase>
+<parse_done stamp='0.297'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.297'>
+<phase_done name='optimize_blocks' stamp='0.297'/>
+</phase>
+<phase name='gvn' stamp='0.297'>
+<phase_done name='gvn' stamp='0.297'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.297'>
+<phase_done name='rangeCheckElimination' stamp='0.297'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.297'>
+<phase_done name='optimize_null_checks' stamp='0.297'/>
+</phase>
+<phase_done name='buildIR' stamp='0.297'/>
+</phase>
+<phase name='emit_lir' stamp='0.297'>
+<phase name='lirGeneration' stamp='0.297'>
+<phase_done name='lirGeneration' stamp='0.297'/>
+</phase>
+<phase name='linearScan' stamp='0.297'>
+<phase_done name='linearScan' stamp='0.297'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.297'/>
+</phase>
+<phase name='codeemit' stamp='0.297'>
+<phase_done name='codeemit' stamp='0.297'/>
+</phase>
+<phase name='codeinstall' stamp='0.297'>
+<phase_done name='codeinstall' stamp='0.297'/>
+</phase>
+<code_cache total_blobs='892' nmethods='479' adapters='248' free_code_cache='247806336'/>
+<task_done success='1' nmsize='368' count='541' stamp='0.297'/>
+</task>
+<task compile_id='485' method='java.nio.Buffer limit (I)Ljava/nio/Buffer;' bytes='74' count='262' iicount='262' level='3' stamp='0.299'>
+<phase name='setup' stamp='0.299'>
+<phase_done name='setup' stamp='0.299'/>
+</phase>
+<phase name='buildIR' stamp='0.299'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1093' holder='1064' name='limit' return='1064' arguments='975' flags='1' bytes='74' iicount='262'/>
+<parse method='1093'  stamp='0.299'>
+<phase name='parse_hir' stamp='0.299'>
+<bc code='183' bci='28'/>
+<klass id='1095' name='java.lang.IllegalArgumentException' flags='1'/>
+<method id='1096' holder='1064' name='createLimitException' return='1095' arguments='975' flags='2' bytes='104' iicount='1'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.299'/>
+</phase>
+<parse_done stamp='0.299'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.299'>
+<phase_done name='optimize_blocks' stamp='0.299'/>
+</phase>
+<phase name='gvn' stamp='0.299'>
+<phase_done name='gvn' stamp='0.299'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.299'>
+<phase_done name='rangeCheckElimination' stamp='0.299'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.299'>
+<phase_done name='optimize_null_checks' stamp='0.299'/>
+</phase>
+<phase_done name='buildIR' stamp='0.299'/>
+</phase>
+<phase name='emit_lir' stamp='0.299'>
+<phase name='lirGeneration' stamp='0.299'>
+<phase_done name='lirGeneration' stamp='0.299'/>
+</phase>
+<phase name='linearScan' stamp='0.299'>
+<phase_done name='linearScan' stamp='0.300'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.300'/>
+</phase>
+<phase name='codeemit' stamp='0.300'>
+<phase_done name='codeemit' stamp='0.300'/>
+</phase>
+<phase name='codeinstall' stamp='0.300'>
+<phase_done name='codeinstall' stamp='0.300'/>
+</phase>
+<code_cache total_blobs='898' nmethods='485' adapters='248' free_code_cache='247794816'/>
+<task_done success='1' nmsize='776' count='288' stamp='0.300'/>
+</task>
+<task compile_id='488' method='java.nio.ByteBuffer limit (I)Ljava/nio/ByteBuffer;' bytes='8' count='257' iicount='257' level='3' stamp='0.300'>
+<phase name='setup' stamp='0.300'>
+<phase_done name='setup' stamp='0.300'/>
+</phase>
+<phase name='buildIR' stamp='0.300'>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='limit' return='1093' arguments='975' flags='1' bytes='8' iicount='260'/>
+<parse method='1094'  stamp='0.300'>
+<phase name='parse_hir' stamp='0.300'>
+<bc code='183' bci='2'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='limit' return='1064' arguments='975' flags='1' bytes='74' compile_id='485' compiler='c1' level='3' iicount='298'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.300'/>
+</phase>
+<parse_done stamp='0.300'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.300'>
+<phase_done name='optimize_blocks' stamp='0.300'/>
+</phase>
+<phase name='gvn' stamp='0.300'>
+<phase_done name='gvn' stamp='0.300'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.300'>
+<phase_done name='rangeCheckElimination' stamp='0.300'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.300'>
+<phase_done name='optimize_null_checks' stamp='0.300'/>
+</phase>
+<phase_done name='buildIR' stamp='0.300'/>
+</phase>
+<phase name='emit_lir' stamp='0.300'>
+<phase name='lirGeneration' stamp='0.300'>
+<phase_done name='lirGeneration' stamp='0.300'/>
+</phase>
+<phase name='linearScan' stamp='0.300'>
+<phase_done name='linearScan' stamp='0.300'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.300'/>
+</phase>
+<phase name='codeemit' stamp='0.300'>
+<phase_done name='codeemit' stamp='0.300'/>
+</phase>
+<phase name='codeinstall' stamp='0.300'>
+<phase_done name='codeinstall' stamp='0.300'/>
+</phase>
+<code_cache total_blobs='900' nmethods='487' adapters='248' free_code_cache='247793024'/>
+<task_done success='1' nmsize='392' count='285' stamp='0.300'/>
+</task>
+<task compile_id='491' method='java.nio.MappedByteBuffer position (I)Ljava/nio/MappedByteBuffer;' bytes='8' count='271' iicount='271' level='3' stamp='0.300'>
+<phase name='setup' stamp='0.300'>
+<phase_done name='setup' stamp='0.300'/>
+</phase>
+<phase name='buildIR' stamp='0.300'>
+<klass id='1093' name='java.nio.MappedByteBuffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='position' return='1093' arguments='975' flags='17' bytes='8' iicount='274'/>
+<parse method='1094'  stamp='0.300'>
+<phase name='parse_hir' stamp='0.300'>
+<bc code='183' bci='2'/>
+<klass id='1096' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1097' holder='1096' name='position' return='1096' arguments='975' flags='1' bytes='8' iicount='301'/>
+<call method='1097' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='2'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1099' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='346'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.300'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.300'/>
+</phase>
+<parse_done stamp='0.300'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.300'>
+<phase_done name='optimize_blocks' stamp='0.300'/>
+</phase>
+<phase name='gvn' stamp='0.300'>
+<phase_done name='gvn' stamp='0.300'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.300'>
+<phase_done name='rangeCheckElimination' stamp='0.300'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.300'>
+<phase_done name='optimize_null_checks' stamp='0.300'/>
+</phase>
+<phase_done name='buildIR' stamp='0.300'/>
+</phase>
+<phase name='emit_lir' stamp='0.300'>
+<phase name='lirGeneration' stamp='0.300'>
+<phase_done name='lirGeneration' stamp='0.300'/>
+</phase>
+<phase name='linearScan' stamp='0.300'>
+<phase_done name='linearScan' stamp='0.300'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.300'/>
+</phase>
+<phase name='codeemit' stamp='0.300'>
+<phase_done name='codeemit' stamp='0.300'/>
+</phase>
+<phase name='codeinstall' stamp='0.300'>
+<phase_done name='codeinstall' stamp='0.300'/>
+</phase>
+<code_cache total_blobs='903' nmethods='490' adapters='248' free_code_cache='247789696'/>
+<task_done success='1' nmsize='520' count='274' inlined_bytes='8' stamp='0.300'/>
+</task>
+<task compile_id='496' method='java.lang.invoke.MethodHandle &lt;init&gt; (Ljava/lang/invoke/MethodType;Ljava/lang/invoke/LambdaForm;)V' bytes='37' count='258' iicount='258' level='3' stamp='0.303'>
+<phase name='setup' stamp='0.303'>
+<phase_done name='setup' stamp='0.303'/>
+</phase>
+<phase name='buildIR' stamp='0.303'>
+<type id='977' name='void'/>
+<klass id='1041' name='java.lang.invoke.MethodType' flags='17'/>
+<klass id='1040' name='java.lang.invoke.LambdaForm' flags='0'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1093' holder='1035' name='&lt;init&gt;' return='977' arguments='1041 1040' flags='0' bytes='37' iicount='260'/>
+<parse method='1093'  stamp='0.303'>
+<phase name='parse_hir' stamp='0.303'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='22213'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1035'/>
+<parse_done stamp='0.303'/>
+</parse>
+<bc code='184' bci='6'/>
+<klass id='1097' name='java.util.Objects' flags='17'/>
+<method id='1098' holder='1097' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='372' compiler='c2' level='4' iicount='6161'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='8'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<method id='1100' holder='1089' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.303'/>
+</parse>
+<bc code='184' bci='17'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='8'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.303'/>
+</parse>
+<bc code='192' bci='20'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='182' bci='23'/>
+<method id='1102' holder='1040' name='uncustomize' return='1040' flags='0' bytes='57' compile_id='465' compiler='c1' level='3' iicount='351'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1102'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<bc code='182' bci='33'/>
+<method id='1104' holder='1040' name='prepare' return='977' flags='1' bytes='112' iicount='272'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1104'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1040'/>
+<phase_done name='parse_hir' stamp='0.303'/>
+</phase>
+<parse_done stamp='0.303'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.303'>
+<phase_done name='optimize_blocks' stamp='0.303'/>
+</phase>
+<phase name='gvn' stamp='0.303'>
+<phase_done name='gvn' stamp='0.303'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.303'>
+<phase_done name='rangeCheckElimination' stamp='0.303'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.303'>
+<phase_done name='optimize_null_checks' stamp='0.303'/>
+</phase>
+<phase_done name='buildIR' stamp='0.303'/>
+</phase>
+<phase name='emit_lir' stamp='0.303'>
+<phase name='lirGeneration' stamp='0.303'>
+<phase_done name='lirGeneration' stamp='0.303'/>
+</phase>
+<phase name='linearScan' stamp='0.303'>
+<phase_done name='linearScan' stamp='0.303'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.303'/>
+</phase>
+<phase name='codeemit' stamp='0.303'>
+<phase_done name='codeemit' stamp='0.303'/>
+</phase>
+<phase name='codeinstall' stamp='0.304'>
+<dependency type='leaf_type' ctxk='1040'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1040' x='1104'/>
+<dependency type='no_finalizable_subclasses' ctxk='1035'/>
+<phase_done name='codeinstall' stamp='0.304'/>
+</phase>
+<code_cache total_blobs='913' nmethods='497' adapters='249' free_code_cache='247781504'/>
+<task_done success='1' nmsize='1464' count='274' inlined_bytes='29' stamp='0.304'/>
+</task>
+<task compile_id='501' method='java.lang.String startsWith (Ljava/lang/String;I)Z' bytes='138' count='335' backedge_count='1832' iicount='335' level='3' stamp='0.317'>
+<phase name='setup' stamp='0.317'>
+<phase_done name='setup' stamp='0.317'/>
+</phase>
+<phase name='buildIR' stamp='0.317'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<method id='1093' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' iicount='335'/>
+<parse method='1093'  stamp='0.317'>
+<phase name='parse_hir' stamp='0.317'>
+<bc code='182' bci='6'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='8976'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1097' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='22324'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.317'/>
+</parse>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.317'/>
+</parse>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='182' bci='39'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='182' bci='43'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='183' bci='50'/>
+<method id='1100' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='55674'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='183' bci='96'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.317'/>
+</parse>
+<bc code='184' bci='116'/>
+<type id='970' name='char'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1102' name='java.lang.StringUTF16' flags='16'/>
+<method id='1103' holder='1102' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.317'/>
+</phase>
+<parse_done stamp='0.317'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.317'>
+<phase_done name='optimize_blocks' stamp='0.317'/>
+</phase>
+<phase name='gvn' stamp='0.317'>
+<phase_done name='gvn' stamp='0.317'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.317'>
+<phase_done name='rangeCheckElimination' stamp='0.317'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.317'>
+<phase_done name='optimize_null_checks' stamp='0.317'/>
+</phase>
+<phase_done name='buildIR' stamp='0.317'/>
+</phase>
+<phase name='emit_lir' stamp='0.317'>
+<phase name='lirGeneration' stamp='0.317'>
+<phase_done name='lirGeneration' stamp='0.317'/>
+</phase>
+<phase name='linearScan' stamp='0.317'>
+<phase_done name='linearScan' stamp='0.318'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.318'/>
+</phase>
+<phase name='codeemit' stamp='0.318'>
+<phase_done name='codeemit' stamp='0.318'/>
+</phase>
+<phase name='codeinstall' stamp='0.318'>
+<phase_done name='codeinstall' stamp='0.318'/>
+</phase>
+<code_cache total_blobs='922' nmethods='502' adapters='253' free_code_cache='247764224'/>
+<task_done success='1' nmsize='3248' count='378' backedge_count='2566' inlined_bytes='120' stamp='0.318'/>
+</task>
+<task compile_id='508' method='com.sun.org.apache.xerces.internal.util.Status isExceptional ()Z' bytes='5' count='157' iicount='157' level='1' stamp='0.320'>
+<phase name='setup' stamp='0.320'>
+<phase_done name='setup' stamp='0.320'/>
+</phase>
+<phase name='buildIR' stamp='0.320'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.Status' flags='16401'/>
+<method id='1094' holder='1093' name='isExceptional' return='969' flags='1' bytes='5' iicount='157'/>
+<parse method='1094'  stamp='0.320'>
+<phase name='parse_hir' stamp='0.320'>
+<phase_done name='parse_hir' stamp='0.320'/>
+</phase>
+<parse_done stamp='0.320'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.320'>
+<phase_done name='optimize_blocks' stamp='0.320'/>
+</phase>
+<phase name='gvn' stamp='0.320'>
+<phase_done name='gvn' stamp='0.320'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.320'>
+<phase_done name='rangeCheckElimination' stamp='0.320'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.320'>
+<phase_done name='optimize_null_checks' stamp='0.320'/>
+</phase>
+<phase_done name='buildIR' stamp='0.320'/>
+</phase>
+<phase name='emit_lir' stamp='0.320'>
+<phase name='lirGeneration' stamp='0.320'>
+<phase_done name='lirGeneration' stamp='0.320'/>
+</phase>
+<phase name='linearScan' stamp='0.320'>
+<phase_done name='linearScan' stamp='0.320'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.320'/>
+</phase>
+<phase name='codeemit' stamp='0.320'>
+<phase_done name='codeemit' stamp='0.320'/>
+</phase>
+<phase name='codeinstall' stamp='0.320'>
+<phase_done name='codeinstall' stamp='0.320'/>
+</phase>
+<code_cache total_blobs='927' nmethods='506' adapters='254' free_code_cache='247754368'/>
+<task_done success='1' nmsize='272' count='157' stamp='0.320'/>
+</task>
+<task compile_id='513' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getLength ()I' bytes='5' count='135' iicount='135' level='1' stamp='0.323'>
+<phase name='setup' stamp='0.323'>
+<phase_done name='setup' stamp='0.323'/>
+</phase>
+<phase name='buildIR' stamp='0.323'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getLength' return='975' flags='1' bytes='5' iicount='136'/>
+<parse method='1094'  stamp='0.323'>
+<phase name='parse_hir' stamp='0.323'>
+<phase_done name='parse_hir' stamp='0.323'/>
+</phase>
+<parse_done stamp='0.323'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.323'>
+<phase_done name='optimize_blocks' stamp='0.323'/>
+</phase>
+<phase name='gvn' stamp='0.323'>
+<phase_done name='gvn' stamp='0.323'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.323'>
+<phase_done name='rangeCheckElimination' stamp='0.323'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.323'>
+<phase_done name='optimize_null_checks' stamp='0.323'/>
+</phase>
+<phase_done name='buildIR' stamp='0.323'/>
+</phase>
+<phase name='emit_lir' stamp='0.323'>
+<phase name='lirGeneration' stamp='0.323'>
+<phase_done name='lirGeneration' stamp='0.323'/>
+</phase>
+<phase name='linearScan' stamp='0.323'>
+<phase_done name='linearScan' stamp='0.323'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.323'/>
+</phase>
+<phase name='codeemit' stamp='0.323'>
+<phase_done name='codeemit' stamp='0.323'/>
+</phase>
+<phase name='codeinstall' stamp='0.323'>
+<phase_done name='codeinstall' stamp='0.323'/>
+</phase>
+<code_cache total_blobs='935' nmethods='512' adapters='254' free_code_cache='247746560'/>
+<task_done success='1' nmsize='272' count='153' stamp='0.323'/>
+</task>
+<task compile_id='514' method='com.sun.org.apache.xerces.internal.util.XMLChar isSpace (I)Z' bytes='22' count='278' iicount='278' level='3' stamp='0.323'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isSpace' return='969' arguments='975' flags='9' bytes='22' iicount='279'/>
+<parse method='1094'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='937' nmethods='513' adapters='254' free_code_cache='247740032'/>
+<task_done success='1' nmsize='496' count='320' stamp='0.324'/>
+</task>
+<task compile_id='518' method='java.util.ArrayList size ()I' bytes='5' count='128' iicount='128' level='1' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='5' iicount='128'/>
+<parse method='1094'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='942' nmethods='517' adapters='254' free_code_cache='247740544'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.324'/>
+</task>
+<task compile_id='521' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer getTotalValue (I)I' bytes='7' count='264' iicount='264' level='3' stamp='0.324'>
+<phase name='setup' stamp='0.324'>
+<phase_done name='setup' stamp='0.324'/>
+</phase>
+<phase name='buildIR' stamp='0.324'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1094' holder='1093' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' iicount='266'/>
+<parse method='1094'  stamp='0.324'>
+<phase name='parse_hir' stamp='0.324'>
+<phase_done name='parse_hir' stamp='0.324'/>
+</phase>
+<parse_done stamp='0.324'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.324'>
+<phase_done name='optimize_blocks' stamp='0.324'/>
+</phase>
+<phase name='gvn' stamp='0.324'>
+<phase_done name='gvn' stamp='0.324'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.324'>
+<phase_done name='rangeCheckElimination' stamp='0.324'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.324'>
+<phase_done name='optimize_null_checks' stamp='0.324'/>
+</phase>
+<phase_done name='buildIR' stamp='0.324'/>
+</phase>
+<phase name='emit_lir' stamp='0.324'>
+<phase name='lirGeneration' stamp='0.324'>
+<phase_done name='lirGeneration' stamp='0.324'/>
+</phase>
+<phase name='linearScan' stamp='0.324'>
+<phase_done name='linearScan' stamp='0.324'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.324'/>
+</phase>
+<phase name='codeemit' stamp='0.324'>
+<phase_done name='codeemit' stamp='0.324'/>
+</phase>
+<phase name='codeinstall' stamp='0.324'>
+<phase_done name='codeinstall' stamp='0.324'/>
+</phase>
+<code_cache total_blobs='944' nmethods='519' adapters='254' free_code_cache='247738368'/>
+<task_done success='1' nmsize='368' count='282' stamp='0.324'/>
+</task>
+<task compile_id='524' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanChar (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)I' bytes='236' count='272' iicount='272' level='3' stamp='0.327'>
+<phase name='setup' stamp='0.327'>
+<phase_done name='setup' stamp='0.327'/>
+</phase>
+<phase name='buildIR' stamp='0.327'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanChar' return='975' arguments='1094' flags='4' bytes='236' iicount='272'/>
+<parse method='1095'  stamp='0.327'>
+<phase name='parse_hir' stamp='0.327'>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='2'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='115'/>
+<type id='977' name='void'/>
+<method id='1100' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='2'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='133'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='231'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1102' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='510' compiler='c1' level='3' iicount='1058'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.327'/>
+</phase>
+<parse_done stamp='0.327'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.327'>
+<phase_done name='optimize_blocks' stamp='0.327'/>
+</phase>
+<phase name='gvn' stamp='0.327'>
+<phase_done name='gvn' stamp='0.327'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.327'>
+<phase_done name='rangeCheckElimination' stamp='0.327'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.327'>
+<phase_done name='optimize_null_checks' stamp='0.327'/>
+</phase>
+<phase_done name='buildIR' stamp='0.327'/>
+</phase>
+<phase name='emit_lir' stamp='0.327'>
+<phase name='lirGeneration' stamp='0.327'>
+<phase_done name='lirGeneration' stamp='0.327'/>
+</phase>
+<phase name='linearScan' stamp='0.327'>
+<phase_done name='linearScan' stamp='0.327'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.327'/>
+</phase>
+<phase name='codeemit' stamp='0.327'>
+<phase_done name='codeemit' stamp='0.327'/>
+</phase>
+<phase name='codeinstall' stamp='0.327'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.327'/>
+</phase>
+<code_cache total_blobs='956' nmethods='525' adapters='260' free_code_cache='247718272'/>
+<task_done success='1' nmsize='1752' count='362' stamp='0.327'/>
+</task>
+<task compile_id='527' method='java.lang.String &lt;init&gt; ([CIILjava/lang/Void;)V' bytes='74' count='258' iicount='258' level='3' stamp='0.327'>
+<phase name='setup' stamp='0.327'>
+<phase_done name='setup' stamp='0.327'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Void' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1094' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1093' flags='0' bytes='74' iicount='258'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='22974'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='184' bci='36'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='compress' return='1085' arguments='1082 975 975' flags='9' bytes='20' iicount='257'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='184' bci='9'/>
+<method id='1104' holder='1101' name='compress' return='975' arguments='1082 975 1085 975 975' flags='9' bytes='50' compile_id='474' compiler='c1' level='3' iicount='257'/>
+<call method='1104' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.328'/>
+</parse>
+<bc code='184' bci='67'/>
+<method id='1106' holder='1101' name='toBytes' return='1085' arguments='1082 975 975' flags='9' bytes='34' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='1'/>
+<method id='1108' holder='1101' name='newBytesFor' return='1085' arguments='975' flags='9' bytes='61' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='20'/>
+<method id='1110' holder='1101' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.328'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.328'/>
+</phase>
+<parse_done stamp='0.328'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.328'>
+<phase_done name='optimize_blocks' stamp='0.328'/>
+</phase>
+<phase name='gvn' stamp='0.328'>
+<phase_done name='gvn' stamp='0.328'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.328'>
+<phase_done name='rangeCheckElimination' stamp='0.328'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.328'>
+<phase_done name='optimize_null_checks' stamp='0.328'/>
+</phase>
+<phase_done name='buildIR' stamp='0.328'/>
+</phase>
+<phase name='emit_lir' stamp='0.328'>
+<phase name='lirGeneration' stamp='0.328'>
+<phase_done name='lirGeneration' stamp='0.328'/>
+</phase>
+<phase name='linearScan' stamp='0.328'>
+<phase_done name='linearScan' stamp='0.328'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.328'/>
+</phase>
+<phase name='codeemit' stamp='0.328'>
+<phase_done name='codeemit' stamp='0.328'/>
+</phase>
+<phase name='codeinstall' stamp='0.328'>
+<phase_done name='codeinstall' stamp='0.328'/>
+</phase>
+<code_cache total_blobs='963' nmethods='530' adapters='260' free_code_cache='247708800'/>
+<task_done success='1' nmsize='1720' count='262' inlined_bytes='55' stamp='0.328'/>
+</task>
+<task compile_id='535' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='266' backedge_count='1777' iicount='266' level='3' stamp='0.328'>
+<phase name='setup' stamp='0.328'>
+<phase_done name='setup' stamp='0.328'/>
+</phase>
+<phase name='buildIR' stamp='0.328'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1094' holder='1093' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' iicount='267'/>
+<parse method='1094'  stamp='0.328'>
+<phase name='parse_hir' stamp='0.328'>
+<bc code='182' bci='7'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' iicount='273'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='106'/>
+<method id='1100' holder='1093' name='addSymbol0' return='983' arguments='1082 975 975 975 975' flags='2' bytes='103' iicount='54'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.329'/>
+</phase>
+<parse_done stamp='0.329'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.329'>
+<phase_done name='optimize_blocks' stamp='0.329'/>
+</phase>
+<phase name='gvn' stamp='0.329'>
+<phase_done name='gvn' stamp='0.329'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.329'>
+<phase_done name='rangeCheckElimination' stamp='0.329'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.329'>
+<phase_done name='optimize_null_checks' stamp='0.329'/>
+</phase>
+<phase_done name='buildIR' stamp='0.329'/>
+</phase>
+<phase name='emit_lir' stamp='0.329'>
+<phase name='lirGeneration' stamp='0.329'>
+<phase_done name='lirGeneration' stamp='0.329'/>
+</phase>
+<phase name='linearScan' stamp='0.329'>
+<phase_done name='linearScan' stamp='0.329'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.329'/>
+</phase>
+<phase name='codeemit' stamp='0.329'>
+<phase_done name='codeemit' stamp='0.329'/>
+</phase>
+<phase name='codeinstall' stamp='0.329'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.329'/>
+</phase>
+<code_cache total_blobs='967' nmethods='534' adapters='260' free_code_cache='247702400'/>
+<task_done success='1' nmsize='1240' count='316' backedge_count='2192' stamp='0.329'/>
+</task>
+<task compile_id='537' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='314' iicount='314' level='3' stamp='0.329'>
+<phase name='setup' stamp='0.329'>
+<phase_done name='setup' stamp='0.329'/>
+</phase>
+<phase name='buildIR' stamp='0.329'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' iicount='315'/>
+<parse method='1094'  stamp='0.329'>
+<phase name='parse_hir' stamp='0.329'>
+<bc code='182' bci='4'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1099' holder='1096' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='519' compiler='c1' level='3' iicount='845'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='12'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='515' compiler='c1' level='3' iicount='747'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='27'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1104' holder='1096' name='scanChar' return='975' arguments='1103' flags='4' bytes='236' compile_id='524' compiler='c1' level='3' iicount='591'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='44'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='57'/>
+<method id='1108' holder='1096' name='skipChar' return='969' arguments='975 1103' flags='4' bytes='285' compile_id='522' compiler='c1' level='3' iicount='490'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='80'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1112' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1113' holder='1098' name='reportFatalError' return='977' arguments='983 1112' flags='4' bytes='18' iicount='1'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1113'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='13'/>
+<klass id='1117' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1115' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1118' holder='1115' name='reportError' return='983' arguments='1117 983 983 1112 974' flags='1' bytes='13' iicount='1'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse method='1118'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1120' holder='1115' name='reportError' return='983' arguments='1117 983 983 1112 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse_done stamp='0.329'/>
+</parse>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='92'/>
+<method id='1122' holder='1098' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' iicount='280'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1122'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='184' bci='1'/>
+<klass id='1124' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1125' holder='1124' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='708'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.329'/>
+</parse>
+<parse_done stamp='0.329'/>
+</parse>
+<bc code='182' bci='104'/>
+<method id='1129' holder='1098' name='isValidNameStartHighSurrogate' return='969' arguments='975' flags='4' bytes='2' iicount='6'/>
+<call method='1129' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='131'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1113'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='13'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse method='1118'>
+<bc code='182' bci='9'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse_done stamp='0.330'/>
+</parse>
+<parse_done stamp='0.330'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.330'/>
+</phase>
+<parse_done stamp='0.330'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.330'>
+<phase_done name='optimize_blocks' stamp='0.330'/>
+</phase>
+<phase name='gvn' stamp='0.330'>
+<phase_done name='gvn' stamp='0.330'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.330'>
+<phase_done name='rangeCheckElimination' stamp='0.330'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.330'>
+<phase_done name='optimize_null_checks' stamp='0.330'/>
+</phase>
+<phase_done name='buildIR' stamp='0.330'/>
+</phase>
+<phase name='emit_lir' stamp='0.330'>
+<phase name='lirGeneration' stamp='0.330'>
+<phase_done name='lirGeneration' stamp='0.330'/>
+</phase>
+<phase name='linearScan' stamp='0.330'>
+<phase_done name='linearScan' stamp='0.330'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.330'/>
+</phase>
+<phase name='codeemit' stamp='0.330'>
+<phase_done name='codeemit' stamp='0.330'/>
+</phase>
+<phase name='codeinstall' stamp='0.330'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1122'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<phase_done name='codeinstall' stamp='0.330'/>
+</phase>
+<code_cache total_blobs='971' nmethods='538' adapters='260' free_code_cache='247680256'/>
+<task_done success='1' nmsize='3944' count='400' inlined_bytes='91' stamp='0.330'/>
+</task>
+<task compile_id='541' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='325' iicount='325' level='3' stamp='0.330'>
+<phase name='setup' stamp='0.330'>
+<phase_done name='setup' stamp='0.330'/>
+</phase>
+<phase name='buildIR' stamp='0.330'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='scanAttribute' return='977' arguments='1094' flags='4' bytes='248' iicount='325'/>
+<parse method='1095'  stamp='0.330'>
+<phase name='parse_hir' stamp='0.330'>
+<bc code='182' bci='18'/>
+<type id='969' name='boolean'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1103' holder='1098' name='scanQName' return='969' arguments='1099 1100' flags='4' bytes='502' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='32'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1105' holder='1098' name='scanName' return='983' arguments='1100' flags='4' bytes='305' compile_id='534' compiler='c1' level='3' iicount='426'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='44'/>
+<method id='1108' holder='1099' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='536' compiler='c1' level='3' iicount='424'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1108'>
+<parse_done stamp='0.330'/>
+</parse>
+<bc code='182' bci='51'/>
+<method id='1110' holder='1098' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='519' compiler='c1' level='3' iicount='1149'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='64'/>
+<type id='975' name='int'/>
+<method id='1113' holder='1098' name='skipChar' return='969' arguments='975 1100' flags='4' bytes='285' compile_id='522' compiler='c1' level='3' iicount='639'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='97'/>
+<klass id='1116' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1117' holder='1097' name='reportFatalError' return='977' arguments='983 1116' flags='4' bytes='18' iicount='1'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1117'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='13'/>
+<klass id='1121' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1119' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1122' holder='1119' name='reportError' return='983' arguments='1121 983 983 1116 974' flags='1' bytes='13' iicount='1'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1124' holder='1119' name='reportError' return='983' arguments='1121 983 983 1116 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='104'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<bc code='182' bci='131'/>
+<klass id='1126' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1127' holder='1093' name='getString' return='1126' flags='4' bytes='76' iicount='374'/>
+<call method='1127' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1127'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='161'/>
+<method id='1129' holder='1097' name='scanAttributeValue' return='977' arguments='1126 1126 983 1094 975 969 983 969' flags='4' bytes='991' iicount='380'/>
+<call method='1129' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='165'/>
+<method id='1133' holder='1094' name='getLength' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1133' instr='invokeinterface'/>
+<klass id='1134' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1135' holder='1134' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1135'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='185' bci='181'/>
+<method id='1140' holder='1094' name='addAttribute' return='975' arguments='1099 983 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1140' instr='invokeinterface'/>
+<method id='1141' holder='1134' name='addAttribute' return='975' arguments='1099 983 983' flags='1' bytes='9' iicount='383'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1141'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='182' bci='5'/>
+<method id='1143' holder='1134' name='addAttribute' return='975' arguments='1099 983 983 1126' flags='1' bytes='679' iicount='384'/>
+<call method='1143' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1134' x='1143'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='185' bci='190'/>
+<call method='1133' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1135'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='182' bci='226'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1117'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='182' bci='13'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse method='1122'>
+<bc code='182' bci='9'/>
+<call method='1124' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<parse_done stamp='0.331'/>
+</parse>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='185' bci='234'/>
+<method id='1146' holder='1094' name='setValue' return='977' arguments='975 983 1126' flags='1025' bytes='0' iicount='1'/>
+<call method='1146' instr='invokeinterface'/>
+<method id='1147' holder='1134' name='setValue' return='977' arguments='975 983 1126' flags='1' bytes='27' iicount='400'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1147'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.331'/>
+</parse>
+<bc code='185' bci='242'/>
+<method id='1151' holder='1094' name='setSpecified' return='977' arguments='975 969' flags='1025' bytes='0' iicount='1'/>
+<call method='1151' instr='invokeinterface'/>
+<method id='1152' holder='1134' name='setSpecified' return='977' arguments='975 969' flags='1' bytes='11' iicount='406'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1152'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<parse_done stamp='0.331'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.331'/>
+</phase>
+<parse_done stamp='0.331'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.331'>
+<phase_done name='optimize_blocks' stamp='0.331'/>
+</phase>
+<phase name='gvn' stamp='0.331'>
+<phase_done name='gvn' stamp='0.331'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.331'>
+<phase_done name='rangeCheckElimination' stamp='0.331'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.331'>
+<phase_done name='optimize_null_checks' stamp='0.331'/>
+</phase>
+<phase_done name='buildIR' stamp='0.331'/>
+</phase>
+<phase name='emit_lir' stamp='0.331'>
+<phase name='lirGeneration' stamp='0.331'>
+<phase_done name='lirGeneration' stamp='0.331'/>
+</phase>
+<phase name='linearScan' stamp='0.331'>
+<phase_done name='linearScan' stamp='0.332'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.332'/>
+</phase>
+<phase name='codeemit' stamp='0.332'>
+<phase_done name='codeemit' stamp='0.332'/>
+</phase>
+<phase name='codeinstall' stamp='0.332'>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='leaf_type' ctxk='1119'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1117'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1127'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1135'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1141'/>
+<dependency type='unique_concrete_method' ctxk='1134' x='1143'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1147'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1152'/>
+<phase_done name='codeinstall' stamp='0.332'/>
+</phase>
+<code_cache total_blobs='974' nmethods='541' adapters='260' free_code_cache='247660672'/>
+<task_done success='1' nmsize='6776' count='508' inlined_bytes='141' stamp='0.332'/>
+</task>
+<task compile_id='555' method='java.lang.CharacterDataLatin1 getProperties (I)I' bytes='11' count='1299' iicount='1299' level='1' stamp='0.332'>
+<phase name='setup' stamp='0.332'>
+<phase_done name='setup' stamp='0.332'/>
+</phase>
+<phase name='buildIR' stamp='0.332'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='125' compiler='c1' level='3' iicount='1299'/>
+<parse method='1094'  stamp='0.332'>
+<phase name='parse_hir' stamp='0.332'>
+<phase_done name='parse_hir' stamp='0.332'/>
+</phase>
+<parse_done stamp='0.332'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.332'>
+<phase_done name='optimize_blocks' stamp='0.332'/>
+</phase>
+<phase name='gvn' stamp='0.332'>
+<phase_done name='gvn' stamp='0.332'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.332'>
+<phase_done name='rangeCheckElimination' stamp='0.332'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.332'>
+<phase_done name='optimize_null_checks' stamp='0.332'/>
+</phase>
+<phase_done name='buildIR' stamp='0.332'/>
+</phase>
+<phase name='emit_lir' stamp='0.332'>
+<phase name='lirGeneration' stamp='0.332'>
+<phase_done name='lirGeneration' stamp='0.332'/>
+</phase>
+<phase name='linearScan' stamp='0.332'>
+<phase_done name='linearScan' stamp='0.332'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.332'/>
+</phase>
+<phase name='codeemit' stamp='0.332'>
+<phase_done name='codeemit' stamp='0.332'/>
+</phase>
+<phase name='codeinstall' stamp='0.332'>
+<phase_done name='codeinstall' stamp='0.332'/>
+</phase>
+<code_cache total_blobs='975' nmethods='542' adapters='260' free_code_cache='247659776'/>
+<task_done success='1' nmsize='304' count='1299' stamp='0.332'/>
+</task>
+<task compile_id='542' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getString ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='76' count='537' iicount='537' level='3' stamp='0.332'>
+<phase name='setup' stamp='0.332'>
+<phase_done name='setup' stamp='0.332'/>
+</phase>
+<phase name='buildIR' stamp='0.332'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='getString' return='1094' flags='4' bytes='76' iicount='537'/>
+<parse method='1095'  stamp='0.332'>
+<phase name='parse_hir' stamp='0.332'>
+<bc code='182' bci='19'/>
+<type id='975' name='int'/>
+<klass id='1097' name='java.util.ArrayList' flags='1'/>
+<method id='1099' holder='1097' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1099'>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='183' bci='51'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1094' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='81'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23085'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.332'/>
+</parse>
+<parse_done stamp='0.332'/>
+</parse>
+<bc code='182' bci='70'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='1097' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='475'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1105'>
+<bc code='183' bci='20'/>
+<klass id='1108' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1109' holder='1097' name='add' return='977' arguments='982 1108 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='475'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='7'/>
+<method id='1113' holder='1097' name='grow' return='1108' flags='2' bytes='11' iicount='116'/>
+<call method='1113' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='7'/>
+<method id='1115' holder='1097' name='grow' return='1108' arguments='975' flags='2' bytes='18' iicount='116'/>
+<call method='1115' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='183' bci='7'/>
+<method id='1117' holder='1097' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' iicount='116'/>
+<call method='1117' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1119' name='java.util.Arrays' flags='1'/>
+<method id='1120' holder='1119' name='copyOf' return='1108' arguments='1108 975' flags='9' bytes='10' iicount='377'/>
+<call method='1120' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1123' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1125' holder='1119' name='copyOf' return='1108' arguments='1108 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='1108'/>
+<call method='1125' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='40'/>
+<method id='1128' holder='1097' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='526' compiler='c1' level='3' iicount='769'/>
+<call method='1128' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1128'>
+<bc code='184' bci='5'/>
+<klass id='1130' name='java.util.Objects' flags='17'/>
+<method id='1131' holder='1130' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='989'/>
+<call method='1131' instr='invokestatic'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1131'>
+<bc code='184' bci='3'/>
+<klass id='1134' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1133' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1135' holder='1133' name='checkIndex' return='975' arguments='975 975 1134' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='992'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='12'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1137' holder='1133' name='outOfBoundsCheckIndex' return='993' arguments='1134 975 975' flags='10' bytes='25' iicount='1'/>
+<call method='1137' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1139' holder='1097' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='796'/>
+<call method='1139' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<parse method='1139'>
+<parse_done stamp='0.333'/>
+</parse>
+<parse_done stamp='0.333'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.333'/>
+</phase>
+<parse_done stamp='0.333'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.333'>
+<phase_done name='optimize_blocks' stamp='0.333'/>
+</phase>
+<phase name='gvn' stamp='0.333'>
+<phase_done name='gvn' stamp='0.333'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.333'>
+<phase_done name='rangeCheckElimination' stamp='0.333'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.333'>
+<phase_done name='optimize_null_checks' stamp='0.333'/>
+</phase>
+<phase_done name='buildIR' stamp='0.333'/>
+</phase>
+<phase name='emit_lir' stamp='0.333'>
+<phase name='lirGeneration' stamp='0.333'>
+<phase_done name='lirGeneration' stamp='0.333'/>
+</phase>
+<phase name='linearScan' stamp='0.333'>
+<phase_done name='linearScan' stamp='0.333'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.333'/>
+</phase>
+<phase name='codeemit' stamp='0.333'>
+<phase_done name='codeemit' stamp='0.333'/>
+</phase>
+<phase name='codeinstall' stamp='0.333'>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='codeinstall' stamp='0.333'/>
+</phase>
+<code_cache total_blobs='980' nmethods='547' adapters='260' free_code_cache='247626752'/>
+<task_done success='1' nmsize='3112' count='695' inlined_bytes='139' stamp='0.333'/>
+</task>
+<task compile_id='552' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl setValue (ILjava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='27' count='695' iicount='695' level='3' stamp='0.333'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1095' holder='1093' name='setValue' return='977' arguments='975 983 1094' flags='1' bytes='27' iicount='695'/>
+<parse method='1095'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='985' nmethods='550' adapters='260' free_code_cache='247622400'/>
+<task_done success='1' nmsize='720' count='744' stamp='0.334'/>
+</task>
+<task compile_id='554' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isNoLimit (I)Z' bytes='10' count='745' iicount='745' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1094' holder='1093' name='isNoLimit' return='969' arguments='975' flags='1' bytes='10' iicount='752'/>
+<parse method='1094'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='987' nmethods='552' adapters='260' free_code_cache='247620224'/>
+<task_done success='1' nmsize='432' count='773' stamp='0.334'/>
+</task>
+<task compile_id='557' method='java.lang.Character digit (CI)I' bytes='6' count='498' iicount='498' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='975' name='int'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='digit' return='975' arguments='970 975' flags='9' bytes='6' iicount='498'/>
+<parse method='1093'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<bc code='184' bci='2'/>
+<method id='1095' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' iicount='498'/>
+<call method='1095' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='184' bci='1'/>
+<klass id='1097' name='java.lang.CharacterData' flags='1024'/>
+<method id='1098' holder='1097' name='of' return='1097' arguments='975' flags='24' bytes='120' compile_id='124' compiler='c1' level='3' iicount='1476'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='6'/>
+<method id='1100' holder='1097' name='digit' return='975' arguments='975 975' flags='1024' bytes='0' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.334'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.334'/>
+</phase>
+<parse_done stamp='0.334'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.334'>
+<phase_done name='optimize_blocks' stamp='0.334'/>
+</phase>
+<phase name='gvn' stamp='0.334'>
+<phase_done name='gvn' stamp='0.334'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.334'>
+<phase_done name='rangeCheckElimination' stamp='0.334'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.334'>
+<phase_done name='optimize_null_checks' stamp='0.334'/>
+</phase>
+<phase_done name='buildIR' stamp='0.334'/>
+</phase>
+<phase name='emit_lir' stamp='0.334'>
+<phase name='lirGeneration' stamp='0.334'>
+<phase_done name='lirGeneration' stamp='0.334'/>
+</phase>
+<phase name='linearScan' stamp='0.334'>
+<phase_done name='linearScan' stamp='0.334'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.334'/>
+</phase>
+<phase name='codeemit' stamp='0.334'>
+<phase_done name='codeemit' stamp='0.334'/>
+</phase>
+<phase name='codeinstall' stamp='0.334'>
+<phase_done name='codeinstall' stamp='0.334'/>
+</phase>
+<code_cache total_blobs='989' nmethods='554' adapters='260' free_code_cache='247617664'/>
+<task_done success='1' nmsize='664' count='498' inlined_bytes='10' stamp='0.334'/>
+</task>
+<task compile_id='559' method='java.lang.CharacterDataLatin1 digit (II)I' bytes='91' count='498' iicount='498' level='3' stamp='0.334'>
+<phase name='setup' stamp='0.334'>
+<phase_done name='setup' stamp='0.334'/>
+</phase>
+<phase name='buildIR' stamp='0.334'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='digit' return='975' arguments='975 975' flags='0' bytes='91' iicount='498'/>
+<parse method='1094'  stamp='0.334'>
+<phase name='parse_hir' stamp='0.334'>
+<bc code='182' bci='15'/>
+<method id='1096' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='555' compiler='c1' level='1' iicount='1299'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.335'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.335'/>
+</phase>
+<parse_done stamp='0.335'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.335'>
+<phase_done name='optimize_blocks' stamp='0.335'/>
+</phase>
+<phase name='gvn' stamp='0.335'>
+<phase_done name='gvn' stamp='0.335'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.335'>
+<phase_done name='rangeCheckElimination' stamp='0.335'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.335'>
+<phase_done name='optimize_null_checks' stamp='0.335'/>
+</phase>
+<phase_done name='buildIR' stamp='0.335'/>
+</phase>
+<phase name='emit_lir' stamp='0.335'>
+<phase name='lirGeneration' stamp='0.335'>
+<phase_done name='lirGeneration' stamp='0.335'/>
+</phase>
+<phase name='linearScan' stamp='0.335'>
+<phase_done name='linearScan' stamp='0.335'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.335'/>
+</phase>
+<phase name='codeemit' stamp='0.335'>
+<phase_done name='codeemit' stamp='0.335'/>
+</phase>
+<phase name='codeinstall' stamp='0.335'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.335'/>
+</phase>
+<code_cache total_blobs='994' nmethods='557' adapters='260' free_code_cache='247613952'/>
+<task_done success='1' nmsize='912' count='557' inlined_bytes='11' stamp='0.335'/>
+</task>
+<task compile_id='561' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy setAttributes (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='6' count='143' iicount='143' level='1' stamp='0.335'>
+<phase name='setup' stamp='0.335'>
+<phase_done name='setup' stamp='0.335'/>
+</phase>
+<phase name='buildIR' stamp='0.335'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1095' holder='1093' name='setAttributes' return='977' arguments='1094' flags='1' bytes='6' iicount='143'/>
+<parse method='1095'  stamp='0.335'>
+<phase name='parse_hir' stamp='0.335'>
+<phase_done name='parse_hir' stamp='0.335'/>
+</phase>
+<parse_done stamp='0.335'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.335'>
+<phase_done name='optimize_blocks' stamp='0.335'/>
+</phase>
+<phase name='gvn' stamp='0.335'>
+<phase_done name='gvn' stamp='0.335'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.335'>
+<phase_done name='rangeCheckElimination' stamp='0.335'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.335'>
+<phase_done name='optimize_null_checks' stamp='0.335'/>
+</phase>
+<phase_done name='buildIR' stamp='0.335'/>
+</phase>
+<phase name='emit_lir' stamp='0.335'>
+<phase name='lirGeneration' stamp='0.335'>
+<phase_done name='lirGeneration' stamp='0.335'/>
+</phase>
+<phase name='linearScan' stamp='0.335'>
+<phase_done name='linearScan' stamp='0.335'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.335'/>
+</phase>
+<phase name='codeemit' stamp='0.335'>
+<phase_done name='codeemit' stamp='0.335'/>
+</phase>
+<phase name='codeinstall' stamp='0.335'>
+<phase_done name='codeinstall' stamp='0.335'/>
+</phase>
+<code_cache total_blobs='995' nmethods='558' adapters='260' free_code_cache='247613056'/>
+<task_done success='1' nmsize='368' count='147' stamp='0.335'/>
+</task>
+<task compile_id='562' method='java.lang.String &lt;init&gt; ([CII)V' bytes='14' count='258' iicount='258' level='3' stamp='0.337'>
+<phase name='setup' stamp='0.337'>
+<phase_done name='setup' stamp='0.337'/>
+</phase>
+<phase name='buildIR' stamp='0.337'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='1' bytes='14' iicount='258'/>
+<parse method='1093'  stamp='0.337'>
+<phase name='parse_hir' stamp='0.337'>
+<bc code='184' bci='7'/>
+<klass id='1095' name='java.lang.Void' flags='17'/>
+<method id='1096' holder='983' name='rangeCheck' return='1095' arguments='1082 975 975' flags='10' bytes='9' iicount='262'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='4'/>
+<method id='1098' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' iicount='356'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.337'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1100' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1095' flags='0' bytes='74' compile_id='527' compiler='c1' level='3' iicount='436'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.337'/>
+</phase>
+<parse_done stamp='0.337'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.337'>
+<phase_done name='optimize_blocks' stamp='0.337'/>
+</phase>
+<phase name='gvn' stamp='0.337'>
+<phase_done name='gvn' stamp='0.337'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.337'>
+<phase_done name='rangeCheckElimination' stamp='0.337'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.337'>
+<phase_done name='optimize_null_checks' stamp='0.337'/>
+</phase>
+<phase_done name='buildIR' stamp='0.337'/>
+</phase>
+<phase name='emit_lir' stamp='0.337'>
+<phase name='lirGeneration' stamp='0.337'>
+<phase_done name='lirGeneration' stamp='0.337'/>
+</phase>
+<phase name='linearScan' stamp='0.337'>
+<phase_done name='linearScan' stamp='0.337'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.337'/>
+</phase>
+<phase name='codeemit' stamp='0.337'>
+<phase_done name='codeemit' stamp='0.337'/>
+</phase>
+<phase name='codeinstall' stamp='0.337'>
+<phase_done name='codeinstall' stamp='0.337'/>
+</phase>
+<code_cache total_blobs='1000' nmethods='562' adapters='261' free_code_cache='247552640'/>
+<task_done success='1' nmsize='600' count='274' inlined_bytes='9' stamp='0.337'/>
+</task>
+<task compile_id='566' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='11' count='258' iicount='258' level='3' stamp='0.338'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1094' holder='1093' name='getValue' return='983' arguments='983' flags='1' bytes='11' iicount='258'/>
+<parse method='1094'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<bc code='185' bci='5'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1097' holder='1096' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1097' instr='invokeinterface'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1099' holder='1098' name='getValue' return='983' arguments='983' flags='1' bytes='56' iicount='263'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.339'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.339'/>
+</phase>
+<phase name='codeemit' stamp='0.339'>
+<phase_done name='codeemit' stamp='0.339'/>
+</phase>
+<phase name='codeinstall' stamp='0.339'>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<phase_done name='codeinstall' stamp='0.339'/>
+</phase>
+<code_cache total_blobs='1003' nmethods='565' adapters='261' free_code_cache='247548672'/>
+<task_done success='1' nmsize='584' count='273' stamp='0.339'/>
+</task>
+<task compile_id='570' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getCharacterData ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='17' count='257' iicount='257' level='3' stamp='0.339'>
+<phase name='setup' stamp='0.339'>
+<phase_done name='setup' stamp='0.339'/>
+</phase>
+<phase name='buildIR' stamp='0.339'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='getCharacterData' return='1094' flags='1' bytes='17' iicount='257'/>
+<parse method='1095'  stamp='0.339'>
+<phase name='parse_hir' stamp='0.339'>
+<phase_done name='parse_hir' stamp='0.339'/>
+</phase>
+<parse_done stamp='0.339'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.339'>
+<phase_done name='optimize_blocks' stamp='0.339'/>
+</phase>
+<phase name='gvn' stamp='0.339'>
+<phase_done name='gvn' stamp='0.339'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.339'>
+<phase_done name='rangeCheckElimination' stamp='0.339'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.339'>
+<phase_done name='optimize_null_checks' stamp='0.339'/>
+</phase>
+<phase_done name='buildIR' stamp='0.339'/>
+</phase>
+<phase name='emit_lir' stamp='0.339'>
+<phase name='lirGeneration' stamp='0.339'>
+<phase_done name='lirGeneration' stamp='0.339'/>
+</phase>
+<phase name='linearScan' stamp='0.339'>
+<phase_done name='linearScan' stamp='0.339'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.339'/>
+</phase>
+<phase name='codeemit' stamp='0.339'>
+<phase_done name='codeemit' stamp='0.339'/>
+</phase>
+<phase name='codeinstall' stamp='0.339'>
+<phase_done name='codeinstall' stamp='0.340'/>
+</phase>
+<code_cache total_blobs='1006' nmethods='568' adapters='261' free_code_cache='247543680'/>
+<task_done success='1' nmsize='432' count='259' stamp='0.340'/>
+</task>
+<task compile_id='573' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='256' backedge_count='1626' iicount='256' level='3' stamp='0.340'>
+<phase name='setup' stamp='0.340'>
+<phase_done name='setup' stamp='0.340'/>
+</phase>
+<phase name='buildIR' stamp='0.340'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='scanStartElement' return='969' flags='4' bytes='446' iicount='256'/>
+<parse method='1094'  stamp='0.340'>
+<phase name='parse_hir' stamp='0.340'>
+<bc code='182' bci='18'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1101' holder='1096' name='getNext' return='1098' flags='1' bytes='29' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.340'/>
+</parse>
+<bc code='182' bci='31'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1105' holder='1097' name='skipString' return='969' arguments='983' flags='4' bytes='122' iicount='14'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='48'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1096' name='push' return='977' flags='1' bytes='28' iicount='1'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1107'>
+<parse_done stamp='0.340'/>
+</parse>
+<bc code='182' bci='63'/>
+<method id='1109' holder='1096' name='reposition' return='977' flags='1' bytes='36' iicount='1'/>
+<call method='1109' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='85'/>
+<method id='1111' holder='1096' name='nextElement' return='1098' flags='1' bytes='129' iicount='265'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='109'/>
+<klass id='1113' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1116' holder='1097' name='scanQName' return='969' arguments='1098 1113' flags='4' bytes='502' iicount='1'/>
+<call method='1116' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='123'/>
+<method id='1118' holder='1097' name='scanName' return='983' arguments='1113' flags='4' bytes='305' compile_id='534' compiler='c1' level='3' iicount='2264'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='182' bci='135'/>
+<method id='1121' holder='1098' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='536' compiler='c1' level='3' iicount='2233'/>
+<call method='1121' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1121'>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='182' bci='153'/>
+<method id='1123' holder='1096' name='matchElement' return='969' arguments='1098' flags='1' bytes='177' iicount='1'/>
+<call method='1123' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='182'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<method id='1125' holder='1099' name='removeAllAttributes' return='977' flags='1' bytes='10' iicount='271'/>
+<call method='1125' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<parse method='1125'>
+<bc code='183' bci='1'/>
+<klass id='1127' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1128' holder='1127' name='removeAllAttributes' return='977' flags='1' bytes='6' iicount='272'/>
+<call method='1128' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='182' bci='187'/>
+<method id='1130' holder='1093' name='checkDepth' return='977' arguments='983' flags='0' bytes='100' iicount='274'/>
+<call method='1130' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1130'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='191'/>
+<method id='1132' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' compile_id='537' compiler='c1' level='3' iicount='2289'/>
+<call method='1132' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='222'/>
+<klass id='1134' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1135' holder='1093' name='scanAttribute' return='977' arguments='1134' flags='4' bytes='248' compile_id='541' compiler='c1' level='3' iicount='2046'/>
+<call method='1135' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='240'/>
+<type id='975' name='int'/>
+<klass id='1137' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1138' holder='1137' name='isNoLimit' return='969' arguments='975' flags='1' bytes='10' compile_id='554' compiler='c1' level='3' iicount='2055'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='182' bci='250'/>
+<method id='1140' holder='1127' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<call method='1140' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='184' bci='282'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1146' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='136'/>
+<call method='1146' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1146'>
+<bc code='183' bci='28'/>
+<method id='1152' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='262'/>
+<call method='1152' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1152'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1154' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='685'/>
+<call method='1154' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1154'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1156' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23649'/>
+<call method='1156' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='182' bci='287'/>
+<klass id='1145' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='974' name='short'/>
+<klass id='1142' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1158' holder='1142' name='reportError' return='983' arguments='983 983 1145 974' flags='1' bytes='14' iicount='1'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<parse method='1158'>
+<bc code='182' bci='10'/>
+<klass id='1160' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<method id='1161' holder='1142' name='reportError' return='983' arguments='1160 983 983 1145 974' flags='1' bytes='13' iicount='1'/>
+<call method='1161' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<parse method='1161'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1163' holder='1142' name='reportError' return='983' arguments='1160 983 983 1145 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1163' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='182' bci='292'/>
+<call method='1132' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='355'/>
+<klass id='1104' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1166' holder='1104' name='reportFatalError' return='977' arguments='983 1145' flags='4' bytes='18' iicount='1'/>
+<call method='1166' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1166'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1166'>
+<bc code='182' bci='13'/>
+<call method='1161' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<parse method='1161'>
+<bc code='182' bci='9'/>
+<call method='1163' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<parse_done stamp='0.341'/>
+</parse>
+<parse_done stamp='0.341'/>
+</parse>
+<bc code='185' bci='378'/>
+<klass id='1169' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1168' name='com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler' flags='1537'/>
+<method id='1170' holder='1168' name='emptyElement' return='977' arguments='1098 1134 1169' flags='1025' bytes='0' iicount='1'/>
+<call method='1170' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='387'/>
+<method id='1171' holder='1096' name='popElement' return='1098' flags='1' bytes='59' iicount='283'/>
+<call method='1171' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='413'/>
+<klass id='1173' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<method id='1174' holder='1173' name='startElement' return='977' arguments='1098 1134' unloaded='1'/>
+<call method='1174' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='436'/>
+<method id='1175' holder='1168' name='startElement' return='977' arguments='1098 1134 1169' flags='1025' bytes='0' iicount='1'/>
+<call method='1175' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.342'/>
+</phase>
+<parse_done stamp='0.342'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.342'>
+<phase_done name='optimize_blocks' stamp='0.342'/>
+</phase>
+<phase name='gvn' stamp='0.342'>
+<phase_done name='gvn' stamp='0.342'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.343'>
+<phase_done name='rangeCheckElimination' stamp='0.343'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.343'>
+<phase_done name='optimize_null_checks' stamp='0.343'/>
+</phase>
+<phase_done name='buildIR' stamp='0.343'/>
+</phase>
+<phase name='emit_lir' stamp='0.343'>
+<phase name='lirGeneration' stamp='0.343'>
+<phase_done name='lirGeneration' stamp='0.344'/>
+</phase>
+<phase name='linearScan' stamp='0.344'>
+<phase_done name='linearScan' stamp='0.346'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.346'/>
+</phase>
+<phase name='codeemit' stamp='0.346'>
+<phase_done name='codeemit' stamp='0.346'/>
+</phase>
+<phase name='codeinstall' stamp='0.346'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='leaf_type' ctxk='1142'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1130'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1132'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1135'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1166'/>
+<phase_done name='codeinstall' stamp='0.346'/>
+</phase>
+<code_cache total_blobs='1022' nmethods='578' adapters='261' free_code_cache='247444864'/>
+<task_done success='1' nmsize='8472' count='391' backedge_count='2624' inlined_bytes='216' stamp='0.346'/>
+</task>
+<task compile_id='577' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl checkDepth (Ljava/lang/String;)V' bytes='100' count='392' iicount='392' level='3' stamp='0.346'>
+<phase name='setup' stamp='0.346'>
+<phase_done name='setup' stamp='0.346'/>
+</phase>
+<phase name='buildIR' stamp='0.346'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='checkDepth' return='977' arguments='983' flags='0' bytes='100' iicount='392'/>
+<parse method='1094'  stamp='0.346'>
+<phase name='parse_hir' stamp='0.346'>
+<bc code='182' bci='15'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<type id='975' name='int'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1102' holder='1096' name='addValue' return='977' arguments='1098 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='3947'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='182' bci='2'/>
+<klass id='1104' name='java.lang.Enum' flags='1025'/>
+<method id='1105' holder='1104' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1107' holder='1096' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='3970'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='29'/>
+<type id='969' name='boolean'/>
+<klass id='1110' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1111' holder='1110' name='isOverLimit' return='969' arguments='1098 1096' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='7550'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1111'>
+<bc code='182' bci='2'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1113' holder='1110' name='isOverLimit' return='969' arguments='975 1096' flags='1' bytes='111' compile_id='517' compiler='c1' level='3' iicount='7585'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.346'/>
+</parse>
+<bc code='182' bci='43'/>
+<method id='1115' holder='1110' name='debugPrint' return='977' arguments='1096' flags='1' bytes='18' iicount='1'/>
+<call method='1115' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<bc code='182' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1118' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<method id='1120' holder='1096' name='debugPrint' return='977' arguments='1110' flags='1' bytes='169' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.347'/>
+</parse>
+<bc code='182' bci='67'/>
+<method id='1124' holder='1096' name='getTotalValue' return='975' arguments='1098' flags='1' bytes='10' iicount='1'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.347'/>
+</parse>
+<parse_done stamp='0.347'/>
+</parse>
+<bc code='184' bci='70'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1126' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='157'/>
+<call method='1126' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='183' bci='28'/>
+<method id='1132' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='262'/>
+<call method='1132' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1134' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='761'/>
+<call method='1134' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='183' bci='1'/>
+<method id='1136' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='23979'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<parse_done stamp='0.347'/>
+</parse>
+<parse_done stamp='0.347'/>
+</parse>
+<parse_done stamp='0.347'/>
+</parse>
+<parse_done stamp='0.347'/>
+</parse>
+<bc code='182' bci='83'/>
+<method id='1138' holder='1110' name='getLimit' return='975' arguments='1098' flags='1' bytes='10' iicount='4'/>
+<call method='1138' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='182' bci='5'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.347'/>
+</parse>
+<parse_done stamp='0.347'/>
+</parse>
+<bc code='184' bci='86'/>
+<call method='1126' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1126'>
+<bc code='183' bci='28'/>
+<call method='1132' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1132'>
+<bc code='183' bci='1'/>
+<call method='1134' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1134'>
+<bc code='183' bci='1'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<parse_done stamp='0.351'/>
+</parse>
+<parse_done stamp='0.351'/>
+</parse>
+<parse_done stamp='0.351'/>
+</parse>
+<parse_done stamp='0.351'/>
+</parse>
+<bc code='182' bci='96'/>
+<klass id='1123' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1141' holder='1097' name='reportFatalError' return='977' arguments='983 1123' flags='4' bytes='18' iicount='1'/>
+<call method='1141' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1141'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1141'>
+<bc code='182' bci='13'/>
+<klass id='1146' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1143' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1147' holder='1143' name='reportError' return='983' arguments='1146 983 983 1123 974' flags='1' bytes='13' iicount='1'/>
+<call method='1147' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1143'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1143'/>
+<parse method='1147'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1149' holder='1143' name='reportError' return='983' arguments='1146 983 983 1123 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1149' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1143'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1143'/>
+<parse_done stamp='0.352'/>
+</parse>
+<parse_done stamp='0.352'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.352'/>
+</phase>
+<parse_done stamp='0.352'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.352'>
+<phase_done name='optimize_blocks' stamp='0.352'/>
+</phase>
+<phase name='gvn' stamp='0.352'>
+<phase_done name='gvn' stamp='0.352'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.352'>
+<phase_done name='rangeCheckElimination' stamp='0.352'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.352'>
+<phase_done name='optimize_null_checks' stamp='0.352'/>
+</phase>
+<phase_done name='buildIR' stamp='0.352'/>
+</phase>
+<phase name='emit_lir' stamp='0.352'>
+<phase name='lirGeneration' stamp='0.352'>
+<phase_done name='lirGeneration' stamp='0.352'/>
+</phase>
+<phase name='linearScan' stamp='0.352'>
+<phase_done name='linearScan' stamp='0.352'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.352'/>
+</phase>
+<phase name='codeemit' stamp='0.352'>
+<phase_done name='codeemit' stamp='0.352'/>
+</phase>
+<phase name='codeinstall' stamp='0.352'>
+<dependency type='leaf_type' ctxk='1143'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1141'/>
+<phase_done name='codeinstall' stamp='0.353'/>
+</phase>
+<code_cache total_blobs='1052' nmethods='594' adapters='261' free_code_cache='247426688'/>
+<task_done success='1' nmsize='6600' count='554' inlined_bytes='206' stamp='0.353'/>
+</task>
+<task compile_id='606' method='java.lang.Long parseLong (Ljava/lang/String;I)J' bytes='267' count='304' backedge_count='2982' iicount='304' level='3' stamp='0.353'>
+<phase name='setup' stamp='0.353'>
+<phase_done name='setup' stamp='0.353'/>
+</phase>
+<phase name='buildIR' stamp='0.353'>
+<type id='976' name='long'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<method id='1093' holder='1077' name='parseLong' return='976' arguments='983 975' flags='9' bytes='267' iicount='304'/>
+<parse method='1093'  stamp='0.353'>
+<phase name='parse_hir' stamp='0.353'>
+<bc code='183' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1095' name='java.lang.NumberFormatException' flags='1'/>
+<method id='1097' holder='1095' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='27'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1098' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1454'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1100' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1555'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='32'/>
+<method id='1103' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='2108'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<method id='1105' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='2108'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='36'/>
+<method id='1107' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='367'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<method id='1109' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='367'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='41'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='44'/>
+<method id='1112' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1555'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1114' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='4795'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1117' name='java.lang.StringLatin1' flags='16'/>
+<method id='1118' holder='1117' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='2973'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='9'/>
+<klass id='1120' name='java.util.Arrays' flags='1'/>
+<method id='1121' holder='1120' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='2991'/>
+<call method='1121' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1123' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4217'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1125' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='24419'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.353'/>
+</parse>
+<parse_done stamp='0.353'/>
+</parse>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1127' name='java.lang.StringUTF16' flags='16'/>
+<method id='1128' holder='1127' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1128' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='183' bci='47'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='65'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='70'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='74'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='79'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='82'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='9'/>
+<call method='1121' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.353'/>
+</parse>
+<parse_done stamp='0.353'/>
+</parse>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1128' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='183' bci='85'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='94'/>
+<method id='1131' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='15047'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='182' bci='6'/>
+<method id='1133' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='31669'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<parse_done stamp='0.353'/>
+</parse>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='182' bci='111'/>
+<type id='970' name='char'/>
+<method id='1135' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='45482'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<method id='1137' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='57420'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.353'/>
+</parse>
+<bc code='184' bci='12'/>
+<method id='1139' holder='1117' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='44290'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='183' bci='15'/>
+<klass id='1141' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1142' holder='1141' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='21'/>
+<method id='1143' holder='1127' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='184' bci='2'/>
+<method id='1145' holder='1127' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='184' bci='2'/>
+<method id='1147' holder='1127' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1147' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1149' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1149' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1151' holder='1127' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.360'/>
+</parse>
+<parse_done stamp='0.360'/>
+</parse>
+<bc code='184' bci='148'/>
+<method id='1152' holder='1095' name='forInputString' return='1095' arguments='983' unloaded='1'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='159'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='187'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='183' bci='15'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='184' bci='2'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='184' bci='2'/>
+<call method='1147' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1149' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='191'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1153' holder='1070' name='digit' return='975' arguments='970 975' flags='9' bytes='6' compile_id='557' compiler='c1' level='3' iicount='4526'/>
+<call method='1153' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='184' bci='2'/>
+<method id='1155' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' compile_id='558' compiler='c1' level='3' iicount='4526'/>
+<call method='1155' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<bc code='184' bci='1'/>
+<klass id='1158' name='java.lang.CharacterData' flags='1024'/>
+<method id='1159' holder='1158' name='of' return='1158' arguments='975' flags='24' bytes='120' compile_id='124' compiler='c1' level='3' iicount='5540'/>
+<call method='1159' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='6'/>
+<method id='1161' holder='1158' name='digit' return='975' arguments='975 975' flags='1024' bytes='0' iicount='1'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.361'/>
+</parse>
+<parse_done stamp='0.361'/>
+</parse>
+<bc code='184' bci='234'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='210'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='263'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.361'/>
+</phase>
+<parse_done stamp='0.361'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.361'>
+<phase_done name='optimize_blocks' stamp='0.361'/>
+</phase>
+<phase name='gvn' stamp='0.361'>
+<phase_done name='gvn' stamp='0.361'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.361'>
+<phase_done name='rangeCheckElimination' stamp='0.361'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.361'>
+<phase_done name='optimize_null_checks' stamp='0.361'/>
+</phase>
+<phase_done name='buildIR' stamp='0.361'/>
+</phase>
+<phase name='emit_lir' stamp='0.361'>
+<phase name='lirGeneration' stamp='0.361'>
+<phase_done name='lirGeneration' stamp='0.363'/>
+</phase>
+<phase name='linearScan' stamp='0.363'>
+<phase_done name='linearScan' stamp='0.367'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.367'/>
+</phase>
+<phase name='codeemit' stamp='0.367'>
+<phase_done name='codeemit' stamp='0.368'/>
+</phase>
+<phase name='codeinstall' stamp='0.368'>
+<phase_done name='codeinstall' stamp='0.368'/>
+</phase>
+<code_cache total_blobs='1068' nmethods='599' adapters='262' free_code_cache='247388800'/>
+<task_done success='1' nmsize='10616' count='460' backedge_count='4499' inlined_bytes='472' stamp='0.368'/>
+</task>
+<task compile_id='619' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='10338' backedge_count='2917' iicount='10340' decompiles='1' unstable_if_traps='1' level='3' stamp='0.368'>
+<phase name='setup' stamp='0.368'>
+<phase_done name='setup' stamp='0.368'/>
+</phase>
+<phase name='buildIR' stamp='0.368'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipSpaces' return='969' flags='4' bytes='350' iicount='10342'/>
+<parse method='1094'  stamp='0.368'>
+<phase name='parse_hir' stamp='0.368'>
+<bc code='182' bci='21'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='20'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='61'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1101' holder='1100' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='514' compiler='c1' level='3' iicount='13707'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.369'/>
+</parse>
+<bc code='182' bci='130'/>
+<type id='977' name='void'/>
+<method id='1105' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='20'/>
+<call method='1105' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='148'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='261'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1096' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1110' holder='1093' name='checkEntityLimit' return='977' arguments='1109 1096 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1110' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='310'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='340'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.370'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.370'/>
+</phase>
+<parse_done stamp='0.370'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.370'>
+<phase_done name='optimize_blocks' stamp='0.370'/>
+</phase>
+<phase name='gvn' stamp='0.370'>
+<phase_done name='gvn' stamp='0.371'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.371'>
+<phase_done name='rangeCheckElimination' stamp='0.371'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.371'>
+<phase_done name='optimize_null_checks' stamp='0.371'/>
+</phase>
+<phase_done name='buildIR' stamp='0.371'/>
+</phase>
+<phase name='emit_lir' stamp='0.371'>
+<phase name='lirGeneration' stamp='0.371'>
+<phase_done name='lirGeneration' stamp='0.371'/>
+</phase>
+<phase name='linearScan' stamp='0.371'>
+<phase_done name='linearScan' stamp='0.373'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.373'/>
+</phase>
+<phase name='codeemit' stamp='0.373'>
+<phase_done name='codeemit' stamp='0.374'/>
+</phase>
+<phase name='codeinstall' stamp='0.374'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.374'/>
+</phase>
+<code_cache total_blobs='1076' nmethods='603' adapters='262' free_code_cache='247391616'/>
+<task_done success='1' nmsize='3304' count='11879' backedge_count='2920' inlined_bytes='44' stamp='0.374'/>
+</task>
+<task compile_id='627' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='7871' iicount='7871' decompiles='1' unstable_if_traps='1' level='3' stamp='0.374'>
+<phase name='setup' stamp='0.374'>
+<phase_done name='setup' stamp='0.374'/>
+</phase>
+<phase name='buildIR' stamp='0.374'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='peekChar' return='975' flags='1' bytes='63' iicount='7878'/>
+<parse method='1094'  stamp='0.374'>
+<phase name='parse_hir' stamp='0.374'>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='21'/>
+<call method='1097' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.374'/>
+</phase>
+<parse_done stamp='0.374'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.374'>
+<phase_done name='optimize_blocks' stamp='0.374'/>
+</phase>
+<phase name='gvn' stamp='0.374'>
+<phase_done name='gvn' stamp='0.374'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.374'>
+<phase_done name='rangeCheckElimination' stamp='0.374'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.374'>
+<phase_done name='optimize_null_checks' stamp='0.374'/>
+</phase>
+<phase_done name='buildIR' stamp='0.374'/>
+</phase>
+<phase name='emit_lir' stamp='0.374'>
+<phase name='lirGeneration' stamp='0.374'>
+<phase_done name='lirGeneration' stamp='0.374'/>
+</phase>
+<phase name='linearScan' stamp='0.374'>
+<phase_done name='linearScan' stamp='0.374'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.374'/>
+</phase>
+<phase name='codeemit' stamp='0.374'>
+<phase_done name='codeemit' stamp='0.374'/>
+</phase>
+<phase name='codeinstall' stamp='0.374'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.374'/>
+</phase>
+<code_cache total_blobs='1077' nmethods='604' adapters='262' free_code_cache='247389952'/>
+<task_done success='1' nmsize='840' count='8051' stamp='0.374'/>
+</task>
+<task compile_id='621' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='8200' iicount='8200' decompiles='1' unstable_if_traps='1' level='3' stamp='0.374'>
+<phase name='setup' stamp='0.374'>
+<phase_done name='setup' stamp='0.374'/>
+</phase>
+<phase name='buildIR' stamp='0.374'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' iicount='8200'/>
+<parse method='1094'  stamp='0.374'>
+<phase name='parse_hir' stamp='0.374'>
+<bc code='182' bci='4'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1099' holder='1096' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='619' compiler='c1' level='3' iicount='12078'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='12'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='627' compiler='c1' level='3' iicount='8065'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='27'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1104' holder='1096' name='scanChar' return='975' arguments='1103' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='44'/>
+<call method='1104' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='57'/>
+<method id='1108' holder='1096' name='skipChar' return='969' arguments='975 1103' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<bc code='182' bci='80'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1112' name='[Ljava.lang.Object;' flags='1041'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1113' holder='1098' name='reportFatalError' return='977' arguments='983 1112' flags='4' bytes='18' iicount='1'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1113'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='13'/>
+<klass id='1117' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1115' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1118' holder='1115' name='reportError' return='983' arguments='1117 983 983 1112 974' flags='1' bytes='13' iicount='1'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse method='1118'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1120' holder='1115' name='reportError' return='983' arguments='1117 983 983 1112 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse_done stamp='0.376'/>
+</parse>
+<parse_done stamp='0.376'/>
+</parse>
+<bc code='182' bci='92'/>
+<method id='1122' holder='1098' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' compile_id='539' compiler='c1' level='3' iicount='7314'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1122'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='184' bci='1'/>
+<klass id='1124' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1125' holder='1124' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='17032'/>
+<call method='1125' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.376'/>
+</parse>
+<parse_done stamp='0.376'/>
+</parse>
+<bc code='182' bci='104'/>
+<method id='1129' holder='1098' name='isValidNameStartHighSurrogate' return='969' arguments='975' flags='4' bytes='2' iicount='6'/>
+<call method='1129' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.377'/>
+</parse>
+<bc code='182' bci='131'/>
+<call method='1113' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1113'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='182' bci='13'/>
+<call method='1118' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse method='1118'>
+<bc code='182' bci='9'/>
+<call method='1120' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<parse_done stamp='0.377'/>
+</parse>
+<parse_done stamp='0.377'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.377'/>
+</phase>
+<parse_done stamp='0.377'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.377'>
+<phase_done name='optimize_blocks' stamp='0.377'/>
+</phase>
+<phase name='gvn' stamp='0.377'>
+<phase_done name='gvn' stamp='0.377'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.377'>
+<phase_done name='rangeCheckElimination' stamp='0.377'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.377'>
+<phase_done name='optimize_null_checks' stamp='0.377'/>
+</phase>
+<phase_done name='buildIR' stamp='0.377'/>
+</phase>
+<phase name='emit_lir' stamp='0.377'>
+<phase name='lirGeneration' stamp='0.377'>
+<phase_done name='lirGeneration' stamp='0.377'/>
+</phase>
+<phase name='linearScan' stamp='0.377'>
+<phase_done name='linearScan' stamp='0.377'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.377'/>
+</phase>
+<phase name='codeemit' stamp='0.377'>
+<phase_done name='codeemit' stamp='0.378'/>
+</phase>
+<phase name='codeinstall' stamp='0.378'>
+<dependency type='leaf_type' ctxk='1096'/>
+<dependency type='leaf_type' ctxk='1115'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1122'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1129'/>
+<phase_done name='codeinstall' stamp='0.378'/>
+</phase>
+<code_cache total_blobs='1080' nmethods='607' adapters='262' free_code_cache='247303808'/>
+<task_done success='1' nmsize='3912' count='8674' inlined_bytes='91' stamp='0.378'/>
+</task>
+<task compile_id='639' method='java.lang.Integer parseInt (Ljava/lang/String;I)I' bytes='259' count='535' backedge_count='645' iicount='535' level='3' stamp='0.378'>
+<phase name='setup' stamp='0.378'>
+<phase_done name='setup' stamp='0.378'/>
+</phase>
+<phase name='buildIR' stamp='0.378'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1093' holder='1076' name='parseInt' return='975' arguments='983 975' flags='9' bytes='259' iicount='535'/>
+<parse method='1093'  stamp='0.378'>
+<phase name='parse_hir' stamp='0.378'>
+<bc code='183' bci='10'/>
+<type id='977' name='void'/>
+<klass id='1095' name='java.lang.NumberFormatException' flags='1'/>
+<method id='1097' holder='1095' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='27'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1098' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='1564'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1100' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='1691'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='32'/>
+<method id='1103' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='2506'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<method id='1105' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='2506'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='36'/>
+<method id='1107' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='374'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<method id='1109' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='374'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='41'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='182' bci='44'/>
+<method id='1112' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='1694'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1114' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='4941'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1117' name='java.lang.StringLatin1' flags='16'/>
+<method id='1118' holder='1117' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='3272'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='9'/>
+<klass id='1120' name='java.util.Arrays' flags='1'/>
+<method id='1121' holder='1120' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='3289'/>
+<call method='1121' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1123' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4536'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1125' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='26708'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.378'/>
+</parse>
+<parse_done stamp='0.378'/>
+</parse>
+<parse_done stamp='0.378'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1127' name='java.lang.StringUTF16' flags='16'/>
+<method id='1128' holder='1127' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1128' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='183' bci='47'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='65'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='3'/>
+<call method='1100' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='70'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='74'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='2'/>
+<call method='1109' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='79'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='82'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='1'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='16'/>
+<call method='1118' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<bc code='184' bci='9'/>
+<call method='1121' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='31'/>
+<call method='1128' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='183' bci='85'/>
+<call method='1097' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='94'/>
+<method id='1131' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='18793'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='182' bci='6'/>
+<method id='1133' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='37567'/>
+<call method='1133' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='182' bci='110'/>
+<type id='970' name='char'/>
+<method id='1135' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='45482'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<method id='1137' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='58347'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='12'/>
+<method id='1139' holder='1117' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='44290'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='183' bci='15'/>
+<klass id='1141' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1142' holder='1141' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='21'/>
+<method id='1143' holder='1127' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='184' bci='2'/>
+<method id='1145' holder='1127' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='184' bci='2'/>
+<method id='1147' holder='1127' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1147' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1149' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' iicount='21'/>
+<call method='1149' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1151' holder='1127' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.379'/>
+</parse>
+<parse_done stamp='0.379'/>
+</parse>
+<bc code='184' bci='146'/>
+<method id='1152' holder='1095' name='forInputString' return='1095' arguments='983' unloaded='1'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='157'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='184'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='183' bci='1'/>
+<call method='1137' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1139' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1139'>
+<bc code='183' bci='15'/>
+<call method='1142' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='184' bci='2'/>
+<call method='1145' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='184' bci='2'/>
+<call method='1147' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1147'>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1149' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1151' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.380'/>
+</parse>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='188'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1153' holder='1070' name='digit' return='975' arguments='970 975' flags='9' bytes='6' compile_id='557' compiler='c1' level='3' iicount='5269'/>
+<call method='1153' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1153'>
+<bc code='184' bci='2'/>
+<method id='1155' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' compile_id='558' compiler='c1' level='3' iicount='5269'/>
+<call method='1155' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1155'>
+<bc code='184' bci='1'/>
+<klass id='1158' name='java.lang.CharacterData' flags='1024'/>
+<method id='1159' holder='1158' name='of' return='1158' arguments='975' flags='24' bytes='120' compile_id='124' compiler='c1' level='3' iicount='6307'/>
+<call method='1159' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='6'/>
+<method id='1161' holder='1158' name='digit' return='975' arguments='975 975' flags='1024' bytes='0' iicount='1'/>
+<call method='1161' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.380'/>
+</parse>
+<parse_done stamp='0.380'/>
+</parse>
+<bc code='184' bci='227'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='206'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='255'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.380'/>
+</phase>
+<parse_done stamp='0.380'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.380'>
+<phase_done name='optimize_blocks' stamp='0.380'/>
+</phase>
+<phase name='gvn' stamp='0.380'>
+<phase_done name='gvn' stamp='0.380'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.380'>
+<phase_done name='rangeCheckElimination' stamp='0.380'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.380'>
+<phase_done name='optimize_null_checks' stamp='0.380'/>
+</phase>
+<phase_done name='buildIR' stamp='0.380'/>
+</phase>
+<phase name='emit_lir' stamp='0.380'>
+<phase name='lirGeneration' stamp='0.380'>
+<phase_done name='lirGeneration' stamp='0.381'/>
+</phase>
+<phase name='linearScan' stamp='0.381'>
+<phase_done name='linearScan' stamp='0.382'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.382'/>
+</phase>
+<phase name='codeemit' stamp='0.382'>
+<phase_done name='codeemit' stamp='0.382'/>
+</phase>
+<phase name='codeinstall' stamp='0.382'>
+<phase_done name='codeinstall' stamp='0.383'/>
+</phase>
+<code_cache total_blobs='1083' nmethods='610' adapters='262' free_code_cache='247282048'/>
+<task_done success='1' nmsize='10552' count='776' backedge_count='907' inlined_bytes='472' stamp='0.383'/>
+</task>
+<task compile_id='645' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer doubleValue ()D' bytes='1194' count='539' backedge_count='1032' iicount='539' level='3' stamp='0.383'>
+<phase name='setup' stamp='0.383'>
+<phase_done name='setup' stamp='0.383'/>
+</phase>
+<phase name='buildIR' stamp='0.383'>
+<type id='972' name='double'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer' flags='8'/>
+<method id='1094' holder='1093' name='doubleValue' return='972' flags='1' bytes='1194' iicount='539'/>
+<parse method='1094'  stamp='0.383'>
+<phase name='parse_hir' stamp='0.383'>
+<bc code='184' bci='6'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.lang.Math' flags='17'/>
+<method id='1097' holder='1096' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='7119'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='184' bci='23'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='184' bci='401'/>
+<type id='969' name='boolean'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1102' holder='1073' name='isInfinite' return='969' arguments='972' flags='9' bytes='22' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='184' bci='428'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.383'/>
+</parse>
+<bc code='183' bci='679'/>
+<type id='977' name='void'/>
+<type id='976' name='long'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1105' name='jdk.internal.math.FDBigInteger' unloaded='1'/>
+<method id='1106' holder='1105' name='&lt;init&gt;' return='977' arguments='976 1082 975 975' unloaded='1'/>
+<call method='1106' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='697'/>
+<method id='1107' holder='1073' name='doubleToRawLongBits' return='976' arguments='972' flags='265' bytes='0' iicount='1'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='706'/>
+<method id='1109' holder='1096' name='max' return='975' arguments='975 975' flags='9' bytes='11' compile_id='472' compiler='c1' level='3' iicount='427'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.385'/>
+</parse>
+<bc code='184' bci='714'/>
+<call method='1109' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='182' bci='724'/>
+<method id='1111' holder='1105' name='multByPow52' return='1105' arguments='975 975' unloaded='1'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='731'/>
+<method id='1112' holder='1105' name='makeImmutable' return='977' unloaded='1'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='797'/>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<method id='1113' holder='1077' name='numberOfLeadingZeros' return='975' arguments='976' flags='9' bytes='94' iicount='1'/>
+<call method='1113' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='830'/>
+<method id='1115' holder='1077' name='numberOfTrailingZeros' return='975' arguments='976' flags='9' bytes='116' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='941'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='944'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.386'/>
+</parse>
+<bc code='184' bci='976'/>
+<method id='1117' holder='1105' name='valueOfMulPow52' return='1105' arguments='976 975 975' unloaded='1'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='997'/>
+<method id='1118' holder='1105' name='leftShift' return='1105' arguments='975' unloaded='1'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1010'/>
+<method id='1119' holder='1105' name='cmp' return='975' arguments='1105' unloaded='1'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1026'/>
+<method id='1120' holder='1105' name='leftInplaceSub' return='1105' arguments='1105' unloaded='1'/>
+<call method='1120' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1059'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1079'/>
+<method id='1121' holder='1105' name='rightInplaceSub' return='1105' arguments='1105' unloaded='1'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='1090'/>
+<method id='1122' holder='1105' name='cmpPow52' return='975' arguments='975 975' unloaded='1'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='1190'/>
+<method id='1123' holder='1073' name='longBitsToDouble' return='972' arguments='976' flags='265' bytes='0' iicount='2'/>
+<call method='1123' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.387'/>
+</phase>
+<parse_done stamp='0.387'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.387'>
+<phase_done name='optimize_blocks' stamp='0.387'/>
+</phase>
+<phase name='gvn' stamp='0.387'>
+<phase_done name='gvn' stamp='0.388'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.388'>
+<phase_done name='rangeCheckElimination' stamp='0.388'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.388'>
+<phase_done name='optimize_null_checks' stamp='0.389'/>
+</phase>
+<phase_done name='buildIR' stamp='0.389'/>
+</phase>
+<phase name='emit_lir' stamp='0.389'>
+<phase name='lirGeneration' stamp='0.389'>
+<phase_done name='lirGeneration' stamp='0.391'/>
+</phase>
+<phase name='linearScan' stamp='0.391'>
+<phase_done name='linearScan' stamp='0.393'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.393'/>
+</phase>
+<phase name='codeemit' stamp='0.393'>
+<phase_done name='codeemit' stamp='0.393'/>
+</phase>
+<phase name='codeinstall' stamp='0.393'>
+<phase_done name='codeinstall' stamp='0.394'/>
+</phase>
+<code_cache total_blobs='1087' nmethods='612' adapters='262' free_code_cache='247266176'/>
+<task_done success='1' nmsize='8888' count='844' backedge_count='1587' inlined_bytes='110' stamp='0.394'/>
+</task>
+<task compile_id='630' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;' bytes='19' count='1738' iicount='1738' level='3' stamp='0.394'>
+<phase name='setup' stamp='0.395'>
+<phase_done name='setup' stamp='0.395'/>
+</phase>
+<phase name='buildIR' stamp='0.395'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='search' return='983' arguments='1094 983 983' flags='0' bytes='19' iicount='1741'/>
+<parse method='1095'  stamp='0.395'>
+<phase name='parse_hir' stamp='0.395'>
+<bc code='185' bci='2'/>
+<method id='1098' holder='1094' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokeinterface'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1099' holder='1097' name='getValue' return='983' arguments='983' flags='1' bytes='11' compile_id='566' compiler='c1' level='3' iicount='5392'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1099'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<bc code='185' bci='5'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1103' holder='1102' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<klass id='1104' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1105' holder='1104' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='567' compiler='c1' level='3' iicount='5401'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1105'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.395'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.395'/>
+</phase>
+<parse_done stamp='0.395'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.395'>
+<phase_done name='optimize_blocks' stamp='0.395'/>
+</phase>
+<phase name='gvn' stamp='0.395'>
+<phase_done name='gvn' stamp='0.395'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.395'>
+<phase_done name='rangeCheckElimination' stamp='0.395'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.395'>
+<phase_done name='optimize_null_checks' stamp='0.395'/>
+</phase>
+<phase_done name='buildIR' stamp='0.395'/>
+</phase>
+<phase name='emit_lir' stamp='0.395'>
+<phase name='lirGeneration' stamp='0.395'>
+<phase_done name='lirGeneration' stamp='0.395'/>
+</phase>
+<phase name='linearScan' stamp='0.395'>
+<phase_done name='linearScan' stamp='0.395'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.395'/>
+</phase>
+<phase name='codeemit' stamp='0.395'>
+<phase_done name='codeemit' stamp='0.395'/>
+</phase>
+<phase name='codeinstall' stamp='0.395'>
+<dependency type='unique_concrete_method' ctxk='1094' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1105'/>
+<phase_done name='codeinstall' stamp='0.395'/>
+</phase>
+<code_cache total_blobs='1088' nmethods='613' adapters='262' free_code_cache='247264512'/>
+<task_done success='1' nmsize='808' count='1764' inlined_bytes='11' stamp='0.395'/>
+</task>
+<task compile_id='633' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='1746' iicount='1746' level='3' stamp='0.395'>
+<phase name='setup' stamp='0.395'>
+<phase_done name='setup' stamp='0.395'/>
+</phase>
+<phase name='buildIR' stamp='0.395'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$BmpCharProperty' flags='10'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='55' iicount='1746'/>
+<parse method='1096'  stamp='0.395'>
+<phase name='parse_hir' stamp='0.395'>
+<bc code='185' bci='14'/>
+<type id='970' name='char'/>
+<method id='1103' holder='1095' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='19'/>
+<klass id='1101' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<method id='1104' holder='1101' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1104' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='36'/>
+<klass id='1105' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1106' holder='1105' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.395'/>
+</phase>
+<parse_done stamp='0.395'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.395'>
+<phase_done name='optimize_blocks' stamp='0.395'/>
+</phase>
+<phase name='gvn' stamp='0.395'>
+<phase_done name='gvn' stamp='0.395'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.395'>
+<phase_done name='rangeCheckElimination' stamp='0.395'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.395'>
+<phase_done name='optimize_null_checks' stamp='0.395'/>
+</phase>
+<phase_done name='buildIR' stamp='0.395'/>
+</phase>
+<phase name='emit_lir' stamp='0.395'>
+<phase name='lirGeneration' stamp='0.395'>
+<phase_done name='lirGeneration' stamp='0.396'/>
+</phase>
+<phase name='linearScan' stamp='0.396'>
+<phase_done name='linearScan' stamp='0.396'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.396'/>
+</phase>
+<phase name='codeemit' stamp='0.396'>
+<phase_done name='codeemit' stamp='0.396'/>
+</phase>
+<phase name='codeinstall' stamp='0.396'>
+<phase_done name='codeinstall' stamp='0.396'/>
+</phase>
+<code_cache total_blobs='1089' nmethods='614' adapters='262' free_code_cache='247262464'/>
+<task_done success='1' nmsize='1224' count='1758' stamp='0.396'/>
+</task>
+<task compile_id='634' method='java.util.regex.Pattern$$Lambda$1/6738746 is (I)Z' bytes='9' count='1758' iicount='1758' level='3' stamp='0.396'>
+<phase name='setup' stamp='0.396'>
+<phase_done name='setup' stamp='0.396'/>
+</phase>
+<phase name='buildIR' stamp='0.396'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='java.util.regex.Pattern$$Lambda$1/6738746' flags='4112'/>
+<method id='1095' holder='1094' name='is' return='969' arguments='975' flags='1' bytes='9' iicount='1758'/>
+<parse method='1095'  stamp='0.396'>
+<phase name='parse_hir' stamp='0.396'>
+<bc code='184' bci='5'/>
+<klass id='1097' name='java.util.regex.Pattern' flags='17'/>
+<method id='1098' holder='1097' name='lambda$Single$8' return='969' arguments='975 975' flags='4106' bytes='11' iicount='1806'/>
+<call method='1098' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<parse_done stamp='0.396'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.396'/>
+</phase>
+<parse_done stamp='0.396'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.396'>
+<phase_done name='optimize_blocks' stamp='0.396'/>
+</phase>
+<phase name='gvn' stamp='0.396'>
+<phase_done name='gvn' stamp='0.396'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.396'>
+<phase_done name='rangeCheckElimination' stamp='0.396'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.396'>
+<phase_done name='optimize_null_checks' stamp='0.396'/>
+</phase>
+<phase_done name='buildIR' stamp='0.396'/>
+</phase>
+<phase name='emit_lir' stamp='0.396'>
+<phase name='lirGeneration' stamp='0.396'>
+<phase_done name='lirGeneration' stamp='0.396'/>
+</phase>
+<phase name='linearScan' stamp='0.396'>
+<phase_done name='linearScan' stamp='0.396'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.396'/>
+</phase>
+<phase name='codeemit' stamp='0.396'>
+<phase_done name='codeemit' stamp='0.396'/>
+</phase>
+<phase name='codeinstall' stamp='0.396'>
+<phase_done name='codeinstall' stamp='0.396'/>
+</phase>
+<code_cache total_blobs='1090' nmethods='615' adapters='262' free_code_cache='247261312'/>
+<task_done success='1' nmsize='528' count='1809' inlined_bytes='11' stamp='0.396'/>
+</task>
+<task compile_id='629' method='java.lang.StringLatin1 trim ([B)Ljava/lang/String;' bytes='76' count='900' backedge_count='3' iicount='900' level='3' stamp='0.396'>
+<phase name='setup' stamp='0.396'>
+<phase_done name='setup' stamp='0.396'/>
+</phase>
+<phase name='buildIR' stamp='0.396'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='trim' return='983' arguments='1085' flags='9' bytes='76' iicount='900'/>
+<parse method='1094'  stamp='0.396'>
+<phase name='parse_hir' stamp='0.396'>
+<bc code='184' bci='68'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='3545'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='9'/>
+<klass id='1098' name='java.util.Arrays' flags='1'/>
+<method id='1099' holder='1098' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='3562'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1101' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4817'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='29150'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.397'/>
+</parse>
+<parse_done stamp='0.397'/>
+</parse>
+<parse_done stamp='0.397'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.397'/>
+</phase>
+<parse_done stamp='0.397'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.397'>
+<phase_done name='optimize_blocks' stamp='0.397'/>
+</phase>
+<phase name='gvn' stamp='0.397'>
+<phase_done name='gvn' stamp='0.397'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.397'>
+<phase_done name='rangeCheckElimination' stamp='0.397'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.397'>
+<phase_done name='optimize_null_checks' stamp='0.397'/>
+</phase>
+<phase_done name='buildIR' stamp='0.397'/>
+</phase>
+<phase name='emit_lir' stamp='0.397'>
+<phase name='lirGeneration' stamp='0.397'>
+<phase_done name='lirGeneration' stamp='0.397'/>
+</phase>
+<phase name='linearScan' stamp='0.397'>
+<phase_done name='linearScan' stamp='0.397'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.397'/>
+</phase>
+<phase name='codeemit' stamp='0.397'>
+<phase_done name='codeemit' stamp='0.397'/>
+</phase>
+<phase name='codeinstall' stamp='0.397'>
+<phase_done name='codeinstall' stamp='0.397'/>
+</phase>
+<code_cache total_blobs='1091' nmethods='616' adapters='262' free_code_cache='247258752'/>
+<task_done success='1' nmsize='1544' count='922' backedge_count='3' inlined_bytes='33' stamp='0.397'/>
+</task>
+<task compile_id='637' method='java.util.regex.Pattern lambda$Single$8 (II)Z' bytes='11' count='1866' iicount='1866' level='3' stamp='0.397'>
+<phase name='setup' stamp='0.397'>
+<phase_done name='setup' stamp='0.397'/>
+</phase>
+<phase name='buildIR' stamp='0.397'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Pattern' flags='17'/>
+<method id='1094' holder='1093' name='lambda$Single$8' return='969' arguments='975 975' flags='4106' bytes='11' iicount='1866'/>
+<parse method='1094'  stamp='0.397'>
+<phase name='parse_hir' stamp='0.397'>
+<phase_done name='parse_hir' stamp='0.397'/>
+</phase>
+<parse_done stamp='0.397'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.397'>
+<phase_done name='optimize_blocks' stamp='0.397'/>
+</phase>
+<phase name='gvn' stamp='0.397'>
+<phase_done name='gvn' stamp='0.397'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.397'>
+<phase_done name='rangeCheckElimination' stamp='0.397'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.397'>
+<phase_done name='optimize_null_checks' stamp='0.397'/>
+</phase>
+<phase_done name='buildIR' stamp='0.397'/>
+</phase>
+<phase name='emit_lir' stamp='0.397'>
+<phase name='lirGeneration' stamp='0.397'>
+<phase_done name='lirGeneration' stamp='0.397'/>
+</phase>
+<phase name='linearScan' stamp='0.397'>
+<phase_done name='linearScan' stamp='0.397'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.397'/>
+</phase>
+<phase name='codeemit' stamp='0.397'>
+<phase_done name='codeemit' stamp='0.398'/>
+</phase>
+<phase name='codeinstall' stamp='0.398'>
+<phase_done name='codeinstall' stamp='0.398'/>
+</phase>
+<code_cache total_blobs='1092' nmethods='617' adapters='262' free_code_cache='247257728'/>
+<task_done success='1' nmsize='400' count='1866' stamp='0.398'/>
+</task>
+<task compile_id='636' method='java.lang.Integer parseInt (Ljava/lang/String;)I' bytes='7' count='1696' iicount='1696' level='3' stamp='0.398'>
+<phase name='setup' stamp='0.398'>
+<phase_done name='setup' stamp='0.398'/>
+</phase>
+<phase name='buildIR' stamp='0.398'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1093' holder='1076' name='parseInt' return='975' arguments='983' flags='9' bytes='7' iicount='1698'/>
+<parse method='1093'  stamp='0.398'>
+<phase name='parse_hir' stamp='0.398'>
+<bc code='184' bci='3'/>
+<method id='1095' holder='1076' name='parseInt' return='975' arguments='983 975' flags='9' bytes='259' compile_id='639' compiler='c1' level='3' iicount='1702'/>
+<call method='1095' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.398'/>
+</phase>
+<parse_done stamp='0.398'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.398'>
+<phase_done name='optimize_blocks' stamp='0.398'/>
+</phase>
+<phase name='gvn' stamp='0.398'>
+<phase_done name='gvn' stamp='0.398'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.398'>
+<phase_done name='rangeCheckElimination' stamp='0.398'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.398'>
+<phase_done name='optimize_null_checks' stamp='0.398'/>
+</phase>
+<phase_done name='buildIR' stamp='0.398'/>
+</phase>
+<phase name='emit_lir' stamp='0.398'>
+<phase name='lirGeneration' stamp='0.398'>
+<phase_done name='lirGeneration' stamp='0.398'/>
+</phase>
+<phase name='linearScan' stamp='0.398'>
+<phase_done name='linearScan' stamp='0.398'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.398'/>
+</phase>
+<phase name='codeemit' stamp='0.398'>
+<phase_done name='codeemit' stamp='0.398'/>
+</phase>
+<phase name='codeinstall' stamp='0.398'>
+<phase_done name='codeinstall' stamp='0.398'/>
+</phase>
+<code_cache total_blobs='1093' nmethods='618' adapters='262' free_code_cache='247256704'/>
+<task_done success='1' nmsize='360' count='1720' stamp='0.398'/>
+</task>
+<task compile_id='628' method='java.lang.String trim ()Ljava/lang/String;' bytes='35' count='943' iicount='943' level='3' stamp='0.398'>
+<phase name='setup' stamp='0.398'>
+<phase_done name='setup' stamp='0.398'/>
+</phase>
+<phase name='buildIR' stamp='0.398'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='trim' return='983' flags='1' bytes='35' iicount='944'/>
+<parse method='1093'  stamp='0.398'>
+<phase name='parse_hir' stamp='0.398'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='60583'/>
+<call method='1095' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<parse_done stamp='0.398'/>
+</parse>
+<bc code='184' bci='11'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='trim' return='983' arguments='1085' flags='9' bytes='76' compile_id='629' compiler='c1' level='3' iicount='947'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='21'/>
+<klass id='1101' name='java.lang.StringUTF16' flags='16'/>
+<method id='1102' holder='1101' name='trim' return='983' arguments='1085' flags='9' bytes='85' iicount='1'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.398'/>
+</phase>
+<parse_done stamp='0.398'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.398'>
+<phase_done name='optimize_blocks' stamp='0.398'/>
+</phase>
+<phase name='gvn' stamp='0.398'>
+<phase_done name='gvn' stamp='0.398'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.398'>
+<phase_done name='rangeCheckElimination' stamp='0.398'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.398'>
+<phase_done name='optimize_null_checks' stamp='0.398'/>
+</phase>
+<phase_done name='buildIR' stamp='0.398'/>
+</phase>
+<phase name='emit_lir' stamp='0.398'>
+<phase name='lirGeneration' stamp='0.398'>
+<phase_done name='lirGeneration' stamp='0.398'/>
+</phase>
+<phase name='linearScan' stamp='0.398'>
+<phase_done name='linearScan' stamp='0.398'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.398'/>
+</phase>
+<phase name='codeemit' stamp='0.398'>
+<phase_done name='codeemit' stamp='0.398'/>
+</phase>
+<phase name='codeinstall' stamp='0.399'>
+<phase_done name='codeinstall' stamp='0.399'/>
+</phase>
+<code_cache total_blobs='1094' nmethods='619' adapters='262' free_code_cache='247255168'/>
+<task_done success='1' nmsize='824' count='953' inlined_bytes='19' stamp='0.399'/>
+</task>
+<task compile_id='632' method='jdk.internal.math.FloatingDecimal parseDouble (Ljava/lang/String;)D' bytes='10' count='967' iicount='967' level='3' stamp='0.399'>
+<phase name='setup' stamp='0.400'>
+<phase_done name='setup' stamp='0.400'/>
+</phase>
+<phase name='buildIR' stamp='0.400'>
+<type id='972' name='double'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal' flags='1'/>
+<method id='1094' holder='1093' name='parseDouble' return='972' arguments='983' flags='9' bytes='10' iicount='968'/>
+<parse method='1094'  stamp='0.400'>
+<phase name='parse_hir' stamp='0.400'>
+<bc code='184' bci='1'/>
+<klass id='1097' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter' flags='1544'/>
+<method id='1098' holder='1093' name='readJavaFormatString' return='1097' arguments='983' flags='8' bytes='826' iicount='968'/>
+<call method='1098' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='185' bci='4'/>
+<method id='1100' holder='1097' name='doubleValue' return='972' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.400'/>
+</phase>
+<parse_done stamp='0.400'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.400'>
+<phase_done name='optimize_blocks' stamp='0.400'/>
+</phase>
+<phase name='gvn' stamp='0.400'>
+<phase_done name='gvn' stamp='0.400'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.400'>
+<phase_done name='rangeCheckElimination' stamp='0.400'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.400'>
+<phase_done name='optimize_null_checks' stamp='0.400'/>
+</phase>
+<phase_done name='buildIR' stamp='0.400'/>
+</phase>
+<phase name='emit_lir' stamp='0.400'>
+<phase name='lirGeneration' stamp='0.400'>
+<phase_done name='lirGeneration' stamp='0.400'/>
+</phase>
+<phase name='linearScan' stamp='0.400'>
+<phase_done name='linearScan' stamp='0.400'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.400'/>
+</phase>
+<phase name='codeemit' stamp='0.400'>
+<phase_done name='codeemit' stamp='0.400'/>
+</phase>
+<phase name='codeinstall' stamp='0.400'>
+<phase_done name='codeinstall' stamp='0.400'/>
+</phase>
+<code_cache total_blobs='1098' nmethods='623' adapters='262' free_code_cache='247209216'/>
+<task_done success='1' nmsize='536' count='980' stamp='0.400'/>
+</task>
+<task compile_id='640' method='java.util.ArrayList$SubList access$100 (Ljava/util/ArrayList$SubList;)Ljava/util/ArrayList;' bytes='5' count='389' iicount='389' level='1' stamp='0.400'>
+<phase name='setup' stamp='0.400'>
+<phase_done name='setup' stamp='0.400'/>
+</phase>
+<phase name='buildIR' stamp='0.400'>
+<klass id='1094' name='java.util.ArrayList' flags='1'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1095' holder='1093' name='access$100' return='1094' arguments='1093' flags='4104' bytes='5' iicount='389'/>
+<parse method='1095'  stamp='0.400'>
+<phase name='parse_hir' stamp='0.400'>
+<phase_done name='parse_hir' stamp='0.400'/>
+</phase>
+<parse_done stamp='0.400'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.400'>
+<phase_done name='optimize_blocks' stamp='0.400'/>
+</phase>
+<phase name='gvn' stamp='0.400'>
+<phase_done name='gvn' stamp='0.400'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.400'>
+<phase_done name='rangeCheckElimination' stamp='0.400'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.400'>
+<phase_done name='optimize_null_checks' stamp='0.400'/>
+</phase>
+<phase_done name='buildIR' stamp='0.400'/>
+</phase>
+<phase name='emit_lir' stamp='0.400'>
+<phase name='lirGeneration' stamp='0.400'>
+<phase_done name='lirGeneration' stamp='0.400'/>
+</phase>
+<phase name='linearScan' stamp='0.400'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.401'/>
+</phase>
+<phase name='codeinstall' stamp='0.401'>
+<phase_done name='codeinstall' stamp='0.401'/>
+</phase>
+<code_cache total_blobs='1102' nmethods='627' adapters='262' free_code_cache='247160448'/>
+<task_done success='1' nmsize='240' count='396' stamp='0.401'/>
+</task>
+<task compile_id='657' method='com.sun.hotspot.tools.compiler.BasicLogEvent &lt;init&gt; (DLjava/lang/String;)V' bytes='20' count='552' iicount='552' level='3' stamp='0.401'>
+<phase name='setup' stamp='0.401'>
+<phase_done name='setup' stamp='0.401'/>
+</phase>
+<phase name='buildIR' stamp='0.401'>
+<type id='977' name='void'/>
+<type id='972' name='double'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='972 983' flags='0' bytes='20' iicount='552'/>
+<parse method='1094'  stamp='0.401'>
+<phase name='parse_hir' stamp='0.401'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='29646'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<parse_done stamp='0.401'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.401'/>
+</phase>
+<parse_done stamp='0.401'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.401'>
+<phase_done name='optimize_blocks' stamp='0.401'/>
+</phase>
+<phase name='gvn' stamp='0.401'>
+<phase_done name='gvn' stamp='0.401'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.401'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.401'/>
+</phase>
+<phase name='emit_lir' stamp='0.401'>
+<phase name='lirGeneration' stamp='0.401'>
+<phase_done name='lirGeneration' stamp='0.401'/>
+</phase>
+<phase name='linearScan' stamp='0.401'>
+<phase_done name='linearScan' stamp='0.401'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.401'/>
+</phase>
+<phase name='codeemit' stamp='0.401'>
+<phase_done name='codeemit' stamp='0.401'/>
+</phase>
+<phase name='codeinstall' stamp='0.401'>
+<dependency type='no_finalizable_subclasses' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.401'/>
+</phase>
+<code_cache total_blobs='1105' nmethods='630' adapters='262' free_code_cache='247157504'/>
+<task_done success='1' nmsize='528' count='562' inlined_bytes='1' stamp='0.401'/>
+</task>
+<task compile_id='650' method='com.sun.hotspot.tools.compiler.BasicLogEvent setEnd (D)V' bytes='6' count='323' iicount='323' level='1' stamp='0.401'>
+<phase name='setup' stamp='0.401'>
+<phase_done name='setup' stamp='0.401'/>
+</phase>
+<phase name='buildIR' stamp='0.401'>
+<type id='977' name='void'/>
+<type id='972' name='double'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1094' holder='1093' name='setEnd' return='977' arguments='972' flags='17' bytes='6' iicount='323'/>
+<parse method='1094'  stamp='0.401'>
+<phase name='parse_hir' stamp='0.401'>
+<phase_done name='parse_hir' stamp='0.401'/>
+</phase>
+<parse_done stamp='0.401'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.401'>
+<phase_done name='optimize_blocks' stamp='0.401'/>
+</phase>
+<phase name='gvn' stamp='0.401'>
+<phase_done name='gvn' stamp='0.401'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.401'>
+<phase_done name='rangeCheckElimination' stamp='0.401'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.401'>
+<phase_done name='optimize_null_checks' stamp='0.401'/>
+</phase>
+<phase_done name='buildIR' stamp='0.401'/>
+</phase>
+<phase name='emit_lir' stamp='0.401'>
+<phase name='lirGeneration' stamp='0.401'>
+<phase_done name='lirGeneration' stamp='0.401'/>
+</phase>
+<phase name='linearScan' stamp='0.401'>
+<phase_done name='linearScan' stamp='0.402'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.402'/>
+</phase>
+<phase name='codeemit' stamp='0.402'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1108' nmethods='633' adapters='262' free_code_cache='247154816'/>
+<task_done success='1' nmsize='272' count='323' stamp='0.402'/>
+</task>
+<task compile_id='653' method='com.sun.hotspot.tools.compiler.Compilation getPhases ()Ljava/util/ArrayList;' bytes='5' count='323' iicount='323' level='1' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<klass id='1094' name='java.util.ArrayList' flags='1'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1095' holder='1093' name='getPhases' return='1094' flags='1' bytes='5' iicount='323'/>
+<parse method='1095'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<phase_done name='parse_hir' stamp='0.402'/>
+</phase>
+<parse_done stamp='0.402'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.402'>
+<phase_done name='optimize_blocks' stamp='0.402'/>
+</phase>
+<phase name='gvn' stamp='0.402'>
+<phase_done name='gvn' stamp='0.402'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.402'>
+<phase_done name='rangeCheckElimination' stamp='0.402'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.402'>
+<phase_done name='optimize_null_checks' stamp='0.402'/>
+</phase>
+<phase_done name='buildIR' stamp='0.402'/>
+</phase>
+<phase name='emit_lir' stamp='0.402'>
+<phase name='lirGeneration' stamp='0.402'>
+<phase_done name='lirGeneration' stamp='0.402'/>
+</phase>
+<phase name='linearScan' stamp='0.402'>
+<phase_done name='linearScan' stamp='0.402'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.402'/>
+</phase>
+<phase name='codeemit' stamp='0.402'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1110' nmethods='635' adapters='262' free_code_cache='247153024'/>
+<task_done success='1' nmsize='272' count='324' stamp='0.402'/>
+</task>
+<task compile_id='579' method='java.lang.Long longValue ()J' bytes='5' count='460' iicount='460' level='1' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<type id='976' name='long'/>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<method id='1093' holder='1077' name='longValue' return='976' flags='1' bytes='5' iicount='460'/>
+<parse method='1093'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<phase_done name='parse_hir' stamp='0.402'/>
+</phase>
+<parse_done stamp='0.402'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.402'>
+<phase_done name='optimize_blocks' stamp='0.402'/>
+</phase>
+<phase name='gvn' stamp='0.402'>
+<phase_done name='gvn' stamp='0.402'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.402'>
+<phase_done name='rangeCheckElimination' stamp='0.402'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.402'>
+<phase_done name='optimize_null_checks' stamp='0.402'/>
+</phase>
+<phase_done name='buildIR' stamp='0.402'/>
+</phase>
+<phase name='emit_lir' stamp='0.402'>
+<phase name='lirGeneration' stamp='0.402'>
+<phase_done name='lirGeneration' stamp='0.402'/>
+</phase>
+<phase name='linearScan' stamp='0.402'>
+<phase_done name='linearScan' stamp='0.402'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.402'/>
+</phase>
+<phase name='codeemit' stamp='0.402'>
+<phase_done name='codeemit' stamp='0.402'/>
+</phase>
+<phase name='codeinstall' stamp='0.402'>
+<phase_done name='codeinstall' stamp='0.402'/>
+</phase>
+<code_cache total_blobs='1113' nmethods='638' adapters='262' free_code_cache='247150464'/>
+<task_done success='1' nmsize='272' count='460' stamp='0.402'/>
+</task>
+<task compile_id='605' method='java.lang.Long valueOf (Ljava/lang/String;I)Ljava/lang/Long;' bytes='9' count='460' iicount='460' level='3' stamp='0.402'>
+<phase name='setup' stamp='0.402'>
+<phase_done name='setup' stamp='0.402'/>
+</phase>
+<phase name='buildIR' stamp='0.402'>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<method id='1093' holder='1077' name='valueOf' return='1077' arguments='983 975' flags='9' bytes='9' iicount='460'/>
+<parse method='1093'  stamp='0.402'>
+<phase name='parse_hir' stamp='0.402'>
+<bc code='184' bci='2'/>
+<type id='976' name='long'/>
+<method id='1095' holder='1077' name='parseLong' return='976' arguments='983 975' flags='9' bytes='267' compile_id='606' compiler='c1' level='3' iicount='460'/>
+<call method='1095' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='5'/>
+<method id='1097' holder='1077' name='valueOf' return='1077' arguments='976' flags='9' bytes='40' iicount='460'/>
+<call method='1097' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.403'/>
+</phase>
+<parse_done stamp='0.403'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.403'>
+<phase_done name='optimize_blocks' stamp='0.403'/>
+</phase>
+<phase name='gvn' stamp='0.403'>
+<phase_done name='gvn' stamp='0.403'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.403'>
+<phase_done name='rangeCheckElimination' stamp='0.403'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.403'>
+<phase_done name='optimize_null_checks' stamp='0.403'/>
+</phase>
+<phase_done name='buildIR' stamp='0.403'/>
+</phase>
+<phase name='emit_lir' stamp='0.403'>
+<phase name='lirGeneration' stamp='0.403'>
+<phase_done name='lirGeneration' stamp='0.403'/>
+</phase>
+<phase name='linearScan' stamp='0.403'>
+<phase_done name='linearScan' stamp='0.403'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.403'/>
+</phase>
+<phase name='codeemit' stamp='0.403'>
+<phase_done name='codeemit' stamp='0.403'/>
+</phase>
+<phase name='codeinstall' stamp='0.403'>
+<phase_done name='codeinstall' stamp='0.403'/>
+</phase>
+<code_cache total_blobs='1114' nmethods='639' adapters='262' free_code_cache='247149440'/>
+<task_done success='1' nmsize='408' count='460' stamp='0.403'/>
+</task>
+<task compile_id='615' method='java.lang.Long valueOf (J)Ljava/lang/Long;' bytes='40' count='460' iicount='460' level='3' stamp='0.403'>
+<phase name='setup' stamp='0.403'>
+<phase_done name='setup' stamp='0.403'/>
+</phase>
+<phase name='buildIR' stamp='0.403'>
+<klass id='1077' name='java.lang.Long' flags='17'/>
+<type id='976' name='long'/>
+<method id='1093' holder='1077' name='valueOf' return='1077' arguments='976' flags='9' bytes='40' iicount='460'/>
+<parse method='1093'  stamp='0.403'>
+<phase name='parse_hir' stamp='0.403'>
+<bc code='183' bci='36'/>
+<type id='977' name='void'/>
+<method id='1098' holder='1077' name='&lt;init&gt;' return='977' arguments='976' flags='1' bytes='10' iicount='460'/>
+<call method='1098' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1100' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1141'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='29891'/>
+<call method='1102' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<parse_done stamp='0.403'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.403'/>
+</phase>
+<parse_done stamp='0.403'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.403'>
+<phase_done name='optimize_blocks' stamp='0.403'/>
+</phase>
+<phase name='gvn' stamp='0.403'>
+<phase_done name='gvn' stamp='0.403'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.403'>
+<phase_done name='rangeCheckElimination' stamp='0.403'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.403'>
+<phase_done name='optimize_null_checks' stamp='0.403'/>
+</phase>
+<phase_done name='buildIR' stamp='0.403'/>
+</phase>
+<phase name='emit_lir' stamp='0.403'>
+<phase name='lirGeneration' stamp='0.403'>
+<phase_done name='lirGeneration' stamp='0.403'/>
+</phase>
+<phase name='linearScan' stamp='0.403'>
+<phase_done name='linearScan' stamp='0.403'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.403'/>
+</phase>
+<phase name='codeemit' stamp='0.403'>
+<phase_done name='codeemit' stamp='0.404'/>
+</phase>
+<phase name='codeinstall' stamp='0.404'>
+<phase_done name='codeinstall' stamp='0.404'/>
+</phase>
+<code_cache total_blobs='1115' nmethods='640' adapters='262' free_code_cache='247147520'/>
+<task_done success='1' nmsize='1040' count='460' inlined_bytes='16' stamp='0.404'/>
+</task>
+<task compile_id='665' method='java.util.ArrayDeque pollFirst ()Ljava/lang/Object;' bytes='36' count='521' iicount='521' level='3' stamp='0.404'>
+<phase name='setup' stamp='0.404'>
+<phase_done name='setup' stamp='0.404'/>
+</phase>
+<phase name='buildIR' stamp='0.404'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='pollFirst' return='982' flags='1' bytes='36' iicount='522'/>
+<parse method='1094'  stamp='0.404'>
+<phase name='parse_hir' stamp='0.404'>
+<bc code='184' bci='12'/>
+<klass id='1096' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='elementAt' return='982' arguments='1096 975' flags='24' bytes='4' compile_id='655' compiler='c1' level='3' iicount='735'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.404'/>
+</parse>
+<bc code='184' bci='28'/>
+<method id='1099' holder='1093' name='inc' return='975' arguments='975 975' flags='24' bytes='12' compile_id='658' compiler='c1' level='3' iicount='569'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.404'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.404'/>
+</phase>
+<parse_done stamp='0.404'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.404'>
+<phase_done name='optimize_blocks' stamp='0.404'/>
+</phase>
+<phase name='gvn' stamp='0.404'>
+<phase_done name='gvn' stamp='0.404'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.404'>
+<phase_done name='rangeCheckElimination' stamp='0.404'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.404'>
+<phase_done name='optimize_null_checks' stamp='0.404'/>
+</phase>
+<phase_done name='buildIR' stamp='0.404'/>
+</phase>
+<phase name='emit_lir' stamp='0.404'>
+<phase name='lirGeneration' stamp='0.404'>
+<phase_done name='lirGeneration' stamp='0.404'/>
+</phase>
+<phase name='linearScan' stamp='0.404'>
+<phase_done name='linearScan' stamp='0.404'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.404'/>
+</phase>
+<phase name='codeemit' stamp='0.404'>
+<phase_done name='codeemit' stamp='0.404'/>
+</phase>
+<phase name='codeinstall' stamp='0.404'>
+<phase_done name='codeinstall' stamp='0.404'/>
+</phase>
+<code_cache total_blobs='1116' nmethods='641' adapters='262' free_code_cache='247145472'/>
+<task_done success='1' nmsize='1136' count='527' inlined_bytes='16' stamp='0.404'/>
+</task>
+<task compile_id='667' method='java.util.regex.Matcher search (I)Z' bytes='154' count='205' backedge_count='4100' iicount='205' level='3' stamp='0.404'>
+<phase name='setup' stamp='0.404'>
+<phase_done name='setup' stamp='0.404'/>
+</phase>
+<phase name='buildIR' stamp='0.404'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='search' return='969' arguments='975' flags='0' bytes='154' iicount='205'/>
+<parse method='1094'  stamp='0.404'>
+<phase name='parse_hir' stamp='0.404'>
+<bc code='182' bci='94'/>
+<type id='977' name='void'/>
+<klass id='1096' name='java.util.regex.IntHashSet' flags='0'/>
+<method id='1098' holder='1096' name='clear' return='977' flags='1' bytes='22' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='121'/>
+<klass id='1101' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1100' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1102' holder='1100' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='27' iicount='1'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.405'/>
+</phase>
+<parse_done stamp='0.405'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.405'>
+<phase_done name='optimize_blocks' stamp='0.405'/>
+</phase>
+<phase name='gvn' stamp='0.405'>
+<phase_done name='gvn' stamp='0.405'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.405'>
+<phase_done name='rangeCheckElimination' stamp='0.405'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.405'>
+<phase_done name='optimize_null_checks' stamp='0.405'/>
+</phase>
+<phase_done name='buildIR' stamp='0.405'/>
+</phase>
+<phase name='emit_lir' stamp='0.405'>
+<phase name='lirGeneration' stamp='0.405'>
+<phase_done name='lirGeneration' stamp='0.405'/>
+</phase>
+<phase name='linearScan' stamp='0.405'>
+<phase_done name='linearScan' stamp='0.405'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.405'/>
+</phase>
+<phase name='codeemit' stamp='0.405'>
+<phase_done name='codeemit' stamp='0.405'/>
+</phase>
+<phase name='codeinstall' stamp='0.405'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.405'/>
+</phase>
+<code_cache total_blobs='1117' nmethods='642' adapters='262' free_code_cache='247143040'/>
+<task_done success='1' nmsize='1496' count='208' backedge_count='4160' stamp='0.405'/>
+</task>
+<task compile_id='666' method='com.sun.org.apache.xerces.internal.impl.XMLScanner checkEntityLimit (ZLjava/lang/String;I)V' bytes='317' count='270' iicount='270' level='3' stamp='0.405'>
+<phase name='setup' stamp='0.405'>
+<phase_done name='setup' stamp='0.405'/>
+</phase>
+<phase name='buildIR' stamp='0.405'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1094' holder='1093' name='checkEntityLimit' return='977' arguments='969 983 975' flags='0' bytes='317' iicount='270'/>
+<parse method='1094'  stamp='0.405'>
+<phase name='parse_hir' stamp='0.405'>
+<bc code='186' bci='30'/>
+<klass id='1035' name='java.lang.invoke.MethodHandle' flags='1025'/>
+<method id='1101' holder='1035' name='invokeBasic' return='983' arguments='983' unloaded='1'/>
+<call method='1101' instr='invokedynamic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='36'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1103' holder='1096' name='addValue' return='977' arguments='1098 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='15558'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='2'/>
+<klass id='1105' name='java.lang.Enum' flags='1025'/>
+<method id='1106' holder='1105' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1108' holder='1096' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='15578'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='182' bci='50'/>
+<klass id='1111' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1112' holder='1111' name='isOverLimit' return='969' arguments='1098 1096' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='28829'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='2'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1114' holder='1111' name='isOverLimit' return='969' arguments='975 1096' flags='1' bytes='111' compile_id='594' compiler='c2' level='4' iicount='11900'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='182' bci='64'/>
+<method id='1116' holder='1111' name='debugPrint' return='977' arguments='1096' flags='1' bytes='18' iicount='1'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1119' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<method id='1121' holder='1096' name='debugPrint' return='977' arguments='1111' flags='1' bytes='169' iicount='1'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='186' bci='77'/>
+<call method='1101' instr='invokedynamic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='92'/>
+<method id='1125' holder='1096' name='getValue' return='975' arguments='1098' flags='1' bytes='9' iicount='1'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='182' bci='2'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1127' holder='1096' name='getValue' return='975' arguments='975' flags='1' bytes='24' iicount='1'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='182' bci='4'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='184' bci='95'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1130' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='335'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='28'/>
+<method id='1136' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='405'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1138' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1150'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<method id='1140' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='30492'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='182' bci='108'/>
+<method id='1142' holder='1111' name='getLimit' return='975' arguments='1098' flags='1' bytes='10' iicount='4'/>
+<call method='1142' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.406'/>
+</parse>
+<parse_done stamp='0.406'/>
+</parse>
+<bc code='184' bci='111'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='28'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='1'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='124'/>
+<method id='1144' holder='1111' name='getStateLiteral' return='983' arguments='1098' flags='1' bytes='13' iicount='1'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='9'/>
+<klass id='1146' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$State' flags='16409'/>
+<method id='1148' holder='1146' name='literal' return='983' flags='0' bytes='5' iicount='1'/>
+<call method='1148' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='128'/>
+<klass id='1124' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1150' holder='1093' name='reportFatalError' return='977' arguments='983 1124' flags='4' bytes='18' iicount='1'/>
+<call method='1150' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1150'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1150'>
+<bc code='182' bci='13'/>
+<klass id='1155' name='com.sun.org.apache.xerces.internal.xni.XMLLocator' flags='1537'/>
+<type id='974' name='short'/>
+<klass id='1152' name='com.sun.org.apache.xerces.internal.impl.XMLErrorReporter' flags='1'/>
+<method id='1156' holder='1152' name='reportError' return='983' arguments='1155 983 983 1124 974' flags='1' bytes='13' iicount='1'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<parse method='1156'>
+<bc code='182' bci='9'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1158' holder='1152' name='reportError' return='983' arguments='1155 983 983 1124 974 992' flags='1' bytes='288' iicount='1'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='143'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='182' bci='2'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='7'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='157'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='2'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='171'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='6'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='194'/>
+<call method='1125' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='182' bci='2'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1127' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='182' bci='4'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<parse_done stamp='0.407'/>
+</parse>
+<bc code='184' bci='197'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='28'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='1'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='210'/>
+<call method='1142' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='184' bci='213'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='28'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='1'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='226'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1148' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='230'/>
+<call method='1150' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1150'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1150'>
+<bc code='182' bci='13'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<parse method='1156'>
+<bc code='182' bci='9'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='244'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='182' bci='2'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='258'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='6'/>
+<call method='1119' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='14'/>
+<call method='1121' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='277'/>
+<method id='1163' holder='1096' name='getTotalValue' return='975' arguments='1098' flags='1' bytes='10' iicount='1'/>
+<call method='1163' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1163'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='184' bci='280'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='28'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='1'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='293'/>
+<call method='1142' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1142'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='184' bci='296'/>
+<call method='1130' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1130'>
+<bc code='183' bci='28'/>
+<call method='1136' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='183' bci='1'/>
+<call method='1138' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1138'>
+<bc code='183' bci='1'/>
+<call method='1140' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1140'>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<parse_done stamp='0.408'/>
+</parse>
+<bc code='182' bci='309'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='182' bci='5'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<parse_done stamp='0.409'/>
+</parse>
+<bc code='182' bci='9'/>
+<call method='1148' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1148'>
+<parse_done stamp='0.409'/>
+</parse>
+<parse_done stamp='0.409'/>
+</parse>
+<bc code='182' bci='313'/>
+<call method='1150' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1150'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1150'>
+<bc code='182' bci='13'/>
+<call method='1156' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<parse method='1156'>
+<bc code='182' bci='9'/>
+<call method='1158' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1152'/>
+<parse_done stamp='0.409'/>
+</parse>
+<parse_done stamp='0.409'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.409'/>
+</phase>
+<parse_done stamp='0.409'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.409'>
+<phase_done name='optimize_blocks' stamp='0.409'/>
+</phase>
+<phase name='gvn' stamp='0.409'>
+<phase_done name='gvn' stamp='0.409'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.409'>
+<phase_done name='rangeCheckElimination' stamp='0.409'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.409'>
+<phase_done name='optimize_null_checks' stamp='0.409'/>
+</phase>
+<phase_done name='buildIR' stamp='0.409'/>
+</phase>
+<phase name='emit_lir' stamp='0.409'>
+<phase name='lirGeneration' stamp='0.409'>
+<phase_done name='lirGeneration' stamp='0.410'/>
+</phase>
+<phase name='linearScan' stamp='0.410'>
+<phase_done name='linearScan' stamp='0.411'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.411'/>
+</phase>
+<phase name='codeemit' stamp='0.411'>
+<phase_done name='codeemit' stamp='0.412'/>
+</phase>
+<phase name='codeinstall' stamp='0.412'>
+<dependency type='leaf_type' ctxk='1152'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1150'/>
+<phase_done name='codeinstall' stamp='0.412'/>
+</phase>
+<code_cache total_blobs='1131' nmethods='650' adapters='262' free_code_cache='247060352'/>
+<task_done success='1' nmsize='21208' count='270' inlined_bytes='727' stamp='0.412'/>
+</task>
+<task compile_id='671' method='java.util.ArrayDeque push (Ljava/lang/Object;)V' bytes='6' count='599' iicount='599' level='3' stamp='0.412'>
+<phase name='setup' stamp='0.413'>
+<phase_done name='setup' stamp='0.413'/>
+</phase>
+<phase name='buildIR' stamp='0.413'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='push' return='977' arguments='982' flags='1' bytes='6' iicount='599'/>
+<parse method='1094'  stamp='0.413'>
+<phase name='parse_hir' stamp='0.413'>
+<bc code='182' bci='2'/>
+<method id='1096' holder='1093' name='addFirst' return='977' arguments='982' flags='1' bytes='51' iicount='600'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.413'/>
+</phase>
+<parse_done stamp='0.413'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.413'>
+<phase_done name='optimize_blocks' stamp='0.413'/>
+</phase>
+<phase name='gvn' stamp='0.413'>
+<phase_done name='gvn' stamp='0.413'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.413'>
+<phase_done name='rangeCheckElimination' stamp='0.413'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.413'>
+<phase_done name='optimize_null_checks' stamp='0.413'/>
+</phase>
+<phase_done name='buildIR' stamp='0.413'/>
+</phase>
+<phase name='emit_lir' stamp='0.413'>
+<phase name='lirGeneration' stamp='0.413'>
+<phase_done name='lirGeneration' stamp='0.413'/>
+</phase>
+<phase name='linearScan' stamp='0.413'>
+<phase_done name='linearScan' stamp='0.413'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.413'/>
+</phase>
+<phase name='codeemit' stamp='0.413'>
+<phase_done name='codeemit' stamp='0.413'/>
+</phase>
+<phase name='codeinstall' stamp='0.413'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.413'/>
+</phase>
+<code_cache total_blobs='1133' nmethods='652' adapters='262' free_code_cache='247056384'/>
+<task_done success='1' nmsize='392' count='601' stamp='0.413'/>
+</task>
+<task compile_id='678' method='java.util.ArrayDeque pop ()Ljava/lang/Object;' bytes='5' count='548' iicount='548' level='3' stamp='0.413'>
+<phase name='setup' stamp='0.413'>
+<phase_done name='setup' stamp='0.413'/>
+</phase>
+<phase name='buildIR' stamp='0.413'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='pop' return='982' flags='1' bytes='5' iicount='548'/>
+<parse method='1094'  stamp='0.413'>
+<phase name='parse_hir' stamp='0.413'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='1093' name='removeFirst' return='982' flags='1' bytes='19' iicount='548'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<bc code='182' bci='1'/>
+<method id='1098' holder='1093' name='pollFirst' return='982' flags='1' bytes='36' compile_id='665' compiler='c1' level='3' iicount='648'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<klass id='1100' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.413'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.413'/>
+</phase>
+<parse_done stamp='0.413'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.413'>
+<phase_done name='optimize_blocks' stamp='0.413'/>
+</phase>
+<phase name='gvn' stamp='0.413'>
+<phase_done name='gvn' stamp='0.413'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.413'>
+<phase_done name='rangeCheckElimination' stamp='0.413'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.413'>
+<phase_done name='optimize_null_checks' stamp='0.413'/>
+</phase>
+<phase_done name='buildIR' stamp='0.413'/>
+</phase>
+<phase name='emit_lir' stamp='0.413'>
+<phase name='lirGeneration' stamp='0.413'>
+<phase_done name='lirGeneration' stamp='0.413'/>
+</phase>
+<phase name='linearScan' stamp='0.413'>
+<phase_done name='linearScan' stamp='0.413'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.413'/>
+</phase>
+<phase name='codeemit' stamp='0.413'>
+<phase_done name='codeemit' stamp='0.413'/>
+</phase>
+<phase name='codeinstall' stamp='0.413'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.413'/>
+</phase>
+<code_cache total_blobs='1134' nmethods='653' adapters='262' free_code_cache='247054976'/>
+<task_done success='1' nmsize='664' count='561' inlined_bytes='19' stamp='0.413'/>
+</task>
+<task compile_id='679' method='java.util.ArrayDeque removeFirst ()Ljava/lang/Object;' bytes='19' count='561' iicount='561' level='3' stamp='0.413'>
+<phase name='setup' stamp='0.413'>
+<phase_done name='setup' stamp='0.413'/>
+</phase>
+<phase name='buildIR' stamp='0.413'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='removeFirst' return='982' flags='1' bytes='19' iicount='562'/>
+<parse method='1094'  stamp='0.413'>
+<phase name='parse_hir' stamp='0.413'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='1093' name='pollFirst' return='982' flags='1' bytes='36' compile_id='665' compiler='c1' level='3' iicount='659'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1099' holder='1098' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1099' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.414'/>
+</phase>
+<parse_done stamp='0.414'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.414'>
+<phase_done name='optimize_blocks' stamp='0.414'/>
+</phase>
+<phase name='gvn' stamp='0.414'>
+<phase_done name='gvn' stamp='0.414'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.414'>
+<phase_done name='rangeCheckElimination' stamp='0.414'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.414'>
+<phase_done name='optimize_null_checks' stamp='0.414'/>
+</phase>
+<phase_done name='buildIR' stamp='0.414'/>
+</phase>
+<phase name='emit_lir' stamp='0.414'>
+<phase name='lirGeneration' stamp='0.414'>
+<phase_done name='lirGeneration' stamp='0.414'/>
+</phase>
+<phase name='linearScan' stamp='0.414'>
+<phase_done name='linearScan' stamp='0.414'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.414'/>
+</phase>
+<phase name='codeemit' stamp='0.414'>
+<phase_done name='codeemit' stamp='0.414'/>
+</phase>
+<phase name='codeinstall' stamp='0.414'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.414'/>
+</phase>
+<code_cache total_blobs='1136' nmethods='655' adapters='262' free_code_cache='247051520'/>
+<task_done success='1' nmsize='568' count='569' stamp='0.414'/>
+</task>
+<task compile_id='659' method='com.sun.hotspot.tools.compiler.Method setHolder (Ljava/lang/String;)V' bytes='6' count='185' iicount='185' level='1' stamp='0.414'>
+<phase name='setup' stamp='0.414'>
+<phase_done name='setup' stamp='0.414'/>
+</phase>
+<phase name='buildIR' stamp='0.414'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setHolder' return='977' arguments='983' flags='1' bytes='6' iicount='185'/>
+<parse method='1094'  stamp='0.414'>
+<phase name='parse_hir' stamp='0.414'>
+<phase_done name='parse_hir' stamp='0.414'/>
+</phase>
+<parse_done stamp='0.414'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.414'>
+<phase_done name='optimize_blocks' stamp='0.414'/>
+</phase>
+<phase name='gvn' stamp='0.414'>
+<phase_done name='gvn' stamp='0.414'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.414'>
+<phase_done name='rangeCheckElimination' stamp='0.414'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.414'>
+<phase_done name='optimize_null_checks' stamp='0.414'/>
+</phase>
+<phase_done name='buildIR' stamp='0.414'/>
+</phase>
+<phase name='emit_lir' stamp='0.414'>
+<phase name='lirGeneration' stamp='0.414'>
+<phase_done name='lirGeneration' stamp='0.414'/>
+</phase>
+<phase name='linearScan' stamp='0.414'>
+<phase_done name='linearScan' stamp='0.414'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.414'/>
+</phase>
+<phase name='codeemit' stamp='0.414'>
+<phase_done name='codeemit' stamp='0.414'/>
+</phase>
+<phase name='codeinstall' stamp='0.414'>
+<phase_done name='codeinstall' stamp='0.414'/>
+</phase>
+<code_cache total_blobs='1137' nmethods='656' adapters='262' free_code_cache='247050624'/>
+<task_done success='1' nmsize='368' count='186' stamp='0.414'/>
+</task>
+<task compile_id='660' method='com.sun.hotspot.tools.compiler.Method setName (Ljava/lang/String;)V' bytes='6' count='187' iicount='187' level='1' stamp='0.414'>
+<phase name='setup' stamp='0.414'>
+<phase_done name='setup' stamp='0.414'/>
+</phase>
+<phase name='buildIR' stamp='0.414'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setName' return='977' arguments='983' flags='1' bytes='6' iicount='187'/>
+<parse method='1094'  stamp='0.414'>
+<phase name='parse_hir' stamp='0.414'>
+<phase_done name='parse_hir' stamp='0.414'/>
+</phase>
+<parse_done stamp='0.414'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.414'>
+<phase_done name='optimize_blocks' stamp='0.414'/>
+</phase>
+<phase name='gvn' stamp='0.414'>
+<phase_done name='gvn' stamp='0.414'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.414'>
+<phase_done name='rangeCheckElimination' stamp='0.414'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.414'>
+<phase_done name='optimize_null_checks' stamp='0.414'/>
+</phase>
+<phase_done name='buildIR' stamp='0.414'/>
+</phase>
+<phase name='emit_lir' stamp='0.414'>
+<phase name='lirGeneration' stamp='0.414'>
+<phase_done name='lirGeneration' stamp='0.414'/>
+</phase>
+<phase name='linearScan' stamp='0.414'>
+<phase_done name='linearScan' stamp='0.414'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.414'/>
+</phase>
+<phase name='codeemit' stamp='0.414'>
+<phase_done name='codeemit' stamp='0.414'/>
+</phase>
+<phase name='codeinstall' stamp='0.414'>
+<phase_done name='codeinstall' stamp='0.414'/>
+</phase>
+<code_cache total_blobs='1138' nmethods='657' adapters='262' free_code_cache='247049728'/>
+<task_done success='1' nmsize='368' count='188' stamp='0.414'/>
+</task>
+<task compile_id='663' method='com.sun.hotspot.tools.compiler.Method setFlags (Ljava/lang/String;)V' bytes='6' count='185' iicount='185' level='1' stamp='0.414'>
+<phase name='setup' stamp='0.414'>
+<phase_done name='setup' stamp='0.414'/>
+</phase>
+<phase name='buildIR' stamp='0.414'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setFlags' return='977' arguments='983' flags='1' bytes='6' iicount='185'/>
+<parse method='1094'  stamp='0.414'>
+<phase name='parse_hir' stamp='0.414'>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.415'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.415'>
+<phase_done name='optimize_null_checks' stamp='0.415'/>
+</phase>
+<phase_done name='buildIR' stamp='0.415'/>
+</phase>
+<phase name='emit_lir' stamp='0.415'>
+<phase name='lirGeneration' stamp='0.415'>
+<phase_done name='lirGeneration' stamp='0.415'/>
+</phase>
+<phase name='linearScan' stamp='0.415'>
+<phase_done name='linearScan' stamp='0.415'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.415'/>
+</phase>
+<phase name='codeemit' stamp='0.415'>
+<phase_done name='codeemit' stamp='0.415'/>
+</phase>
+<phase name='codeinstall' stamp='0.415'>
+<phase_done name='codeinstall' stamp='0.415'/>
+</phase>
+<code_cache total_blobs='1141' nmethods='660' adapters='262' free_code_cache='247041024'/>
+<task_done success='1' nmsize='368' count='186' stamp='0.415'/>
+</task>
+<task compile_id='681' method='com.sun.hotspot.tools.compiler.Method setIICount (Ljava/lang/String;)V' bytes='6' count='145' iicount='145' level='1' stamp='0.415'>
+<phase name='setup' stamp='0.415'>
+<phase_done name='setup' stamp='0.415'/>
+</phase>
+<phase name='buildIR' stamp='0.415'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='setIICount' return='977' arguments='983' flags='1' bytes='6' iicount='145'/>
+<parse method='1094'  stamp='0.415'>
+<phase name='parse_hir' stamp='0.415'>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.415'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.415'>
+<phase_done name='optimize_null_checks' stamp='0.415'/>
+</phase>
+<phase_done name='buildIR' stamp='0.415'/>
+</phase>
+<phase name='emit_lir' stamp='0.415'>
+<phase name='lirGeneration' stamp='0.415'>
+<phase_done name='lirGeneration' stamp='0.415'/>
+</phase>
+<phase name='linearScan' stamp='0.415'>
+<phase_done name='linearScan' stamp='0.415'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.415'/>
+</phase>
+<phase name='codeemit' stamp='0.415'>
+<phase_done name='codeemit' stamp='0.415'/>
+</phase>
+<phase name='codeinstall' stamp='0.415'>
+<phase_done name='codeinstall' stamp='0.415'/>
+</phase>
+<code_cache total_blobs='1143' nmethods='662' adapters='262' free_code_cache='247039232'/>
+<task_done success='1' nmsize='368' count='147' stamp='0.415'/>
+</task>
+<task compile_id='602' method='java.util.LinkedHashMap removeEldestEntry (Ljava/util/Map$Entry;)Z' bytes='2' count='242' iicount='242' level='1' stamp='0.415'>
+<phase name='setup' stamp='0.415'>
+<phase_done name='setup' stamp='0.415'/>
+</phase>
+<phase name='buildIR' stamp='0.415'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.Map$Entry' flags='1545'/>
+<klass id='1093' name='java.util.LinkedHashMap' flags='1'/>
+<method id='1095' holder='1093' name='removeEldestEntry' return='969' arguments='1094' flags='4' bytes='2' iicount='242'/>
+<parse method='1095'  stamp='0.415'>
+<phase name='parse_hir' stamp='0.415'>
+<phase_done name='parse_hir' stamp='0.415'/>
+</phase>
+<parse_done stamp='0.415'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.415'>
+<phase_done name='optimize_blocks' stamp='0.415'/>
+</phase>
+<phase name='gvn' stamp='0.415'>
+<phase_done name='gvn' stamp='0.415'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.415'>
+<phase_done name='rangeCheckElimination' stamp='0.415'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.415'>
+<phase_done name='optimize_null_checks' stamp='0.415'/>
+</phase>
+<phase_done name='buildIR' stamp='0.415'/>
+</phase>
+<phase name='emit_lir' stamp='0.415'>
+<phase name='lirGeneration' stamp='0.415'>
+<phase_done name='lirGeneration' stamp='0.415'/>
+</phase>
+<phase name='linearScan' stamp='0.415'>
+<phase_done name='linearScan' stamp='0.415'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.415'/>
+</phase>
+<phase name='codeemit' stamp='0.415'>
+<phase_done name='codeemit' stamp='0.415'/>
+</phase>
+<phase name='codeinstall' stamp='0.415'>
+<phase_done name='codeinstall' stamp='0.415'/>
+</phase>
+<code_cache total_blobs='1145' nmethods='664' adapters='262' free_code_cache='247037568'/>
+<task_done success='1' nmsize='272' count='242' stamp='0.415'/>
+</task>
+<task compile_id='685' method='com.sun.hotspot.tools.compiler.CallSite setReason (Ljava/lang/String;)V' bytes='6' count='129' iicount='129' level='1' stamp='0.415'>
+<phase name='setup' stamp='0.416'>
+<phase_done name='setup' stamp='0.416'/>
+</phase>
+<phase name='buildIR' stamp='0.416'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='setReason' return='977' arguments='983' flags='1' bytes='6' iicount='129'/>
+<parse method='1094'  stamp='0.416'>
+<phase name='parse_hir' stamp='0.416'>
+<phase_done name='parse_hir' stamp='0.416'/>
+</phase>
+<parse_done stamp='0.416'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.416'>
+<phase_done name='optimize_blocks' stamp='0.416'/>
+</phase>
+<phase name='gvn' stamp='0.416'>
+<phase_done name='gvn' stamp='0.416'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.416'>
+<phase_done name='rangeCheckElimination' stamp='0.416'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.416'>
+<phase_done name='optimize_null_checks' stamp='0.416'/>
+</phase>
+<phase_done name='buildIR' stamp='0.416'/>
+</phase>
+<phase name='emit_lir' stamp='0.416'>
+<phase name='lirGeneration' stamp='0.416'>
+<phase_done name='lirGeneration' stamp='0.416'/>
+</phase>
+<phase name='linearScan' stamp='0.416'>
+<phase_done name='linearScan' stamp='0.416'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.416'/>
+</phase>
+<phase name='codeemit' stamp='0.416'>
+<phase_done name='codeemit' stamp='0.416'/>
+</phase>
+<phase name='codeinstall' stamp='0.416'>
+<phase_done name='codeinstall' stamp='0.416'/>
+</phase>
+<code_cache total_blobs='1147' nmethods='666' adapters='262' free_code_cache='247035776'/>
+<task_done success='1' nmsize='368' count='129' stamp='0.416'/>
+</task>
+<task compile_id='687' method='java.util.ArrayList &lt;init&gt; ()V' bytes='12' count='318' iicount='318' level='3' stamp='0.416'>
+<phase name='setup' stamp='0.416'>
+<phase_done name='setup' stamp='0.416'/>
+</phase>
+<phase name='buildIR' stamp='0.416'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='12' iicount='318'/>
+<parse method='1094'  stamp='0.416'>
+<phase name='parse_hir' stamp='0.416'>
+<bc code='183' bci='1'/>
+<klass id='1096' name='java.util.AbstractList' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='618'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='1'/>
+<klass id='1099' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1100' holder='1099' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='1955'/>
+<call method='1100' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1102' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='32527'/>
+<call method='1102' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.416'/>
+</parse>
+<parse_done stamp='0.416'/>
+</parse>
+<parse_done stamp='0.416'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.416'/>
+</phase>
+<parse_done stamp='0.416'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.416'>
+<phase_done name='optimize_blocks' stamp='0.416'/>
+</phase>
+<phase name='gvn' stamp='0.416'>
+<phase_done name='gvn' stamp='0.416'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.416'>
+<phase_done name='rangeCheckElimination' stamp='0.416'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.416'>
+<phase_done name='optimize_null_checks' stamp='0.416'/>
+</phase>
+<phase_done name='buildIR' stamp='0.416'/>
+</phase>
+<phase name='emit_lir' stamp='0.416'>
+<phase name='lirGeneration' stamp='0.416'>
+<phase_done name='lirGeneration' stamp='0.416'/>
+</phase>
+<phase name='linearScan' stamp='0.416'>
+<phase_done name='linearScan' stamp='0.416'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.416'/>
+</phase>
+<phase name='codeemit' stamp='0.416'>
+<phase_done name='codeemit' stamp='0.417'/>
+</phase>
+<phase name='codeinstall' stamp='0.417'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.417'/>
+</phase>
+<code_cache total_blobs='1154' nmethods='669' adapters='262' free_code_cache='247015936'/>
+<task_done success='1' nmsize='752' count='320' inlined_bytes='16' stamp='0.417'/>
+</task>
+<task compile_id='689' method='java.util.ArrayList$SubList$1 next ()Ljava/lang/Object;' bytes='85' count='256' iicount='256' level='3' stamp='0.418'>
+<phase name='setup' stamp='0.418'>
+<phase_done name='setup' stamp='0.418'/>
+</phase>
+<phase name='buildIR' stamp='0.418'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayList$SubList$1' flags='0'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='85' iicount='256'/>
+<parse method='1094'  stamp='0.418'>
+<phase name='parse_hir' stamp='0.418'>
+<bc code='182' bci='1'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='checkForComodification' return='977' flags='16' bytes='26' iicount='256'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='184' bci='4'/>
+<klass id='1099' name='java.util.ArrayList' flags='1'/>
+<klass id='1098' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1100' holder='1098' name='access$100' return='1099' arguments='1098' flags='4104' bytes='5' compile_id='640' compiler='c1' level='1' iicount='396'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.418'/>
+</parse>
+<bc code='183' bci='21'/>
+<klass id='1103' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1104' holder='1103' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.418'/>
+</parse>
+<bc code='184' bci='14'/>
+<type id='975' name='int'/>
+<method id='1105' holder='1098' name='access$200' return='975' arguments='1098' flags='4104' bytes='5' compile_id='641' compiler='c1' level='1' iicount='396'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.418'/>
+</parse>
+<bc code='183' bci='24'/>
+<klass id='1107' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1108' holder='1107' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='32'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.418'/>
+</parse>
+<bc code='184' bci='43'/>
+<method id='1110' holder='1098' name='access$300' return='975' arguments='1098' flags='4104' bytes='5' compile_id='643' compiler='c1' level='1' iicount='338'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.418'/>
+</parse>
+<bc code='183' bci='57'/>
+<call method='1104' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='184' bci='73'/>
+<call method='1110' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<parse_done stamp='0.418'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.418'/>
+</phase>
+<parse_done stamp='0.418'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.418'>
+<phase_done name='optimize_blocks' stamp='0.418'/>
+</phase>
+<phase name='gvn' stamp='0.418'>
+<phase_done name='gvn' stamp='0.418'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.418'>
+<phase_done name='rangeCheckElimination' stamp='0.418'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.418'>
+<phase_done name='optimize_null_checks' stamp='0.418'/>
+</phase>
+<phase_done name='buildIR' stamp='0.418'/>
+</phase>
+<phase name='emit_lir' stamp='0.418'>
+<phase name='lirGeneration' stamp='0.418'>
+<phase_done name='lirGeneration' stamp='0.418'/>
+</phase>
+<phase name='linearScan' stamp='0.418'>
+<phase_done name='linearScan' stamp='0.418'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.418'/>
+</phase>
+<phase name='codeemit' stamp='0.418'>
+<phase_done name='codeemit' stamp='0.418'/>
+</phase>
+<phase name='codeinstall' stamp='0.418'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.418'/>
+</phase>
+<code_cache total_blobs='1161' nmethods='674' adapters='262' free_code_cache='246997376'/>
+<task_done success='1' nmsize='1288' count='264' inlined_bytes='51' stamp='0.418'/>
+</task>
+<task compile_id='694' method='java.util.ArrayDeque size ()I' bytes='17' count='256' iicount='256' level='3' stamp='0.421'>
+<phase name='setup' stamp='0.421'>
+<phase_done name='setup' stamp='0.421'/>
+</phase>
+<phase name='buildIR' stamp='0.421'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='size' return='975' flags='1' bytes='17' iicount='256'/>
+<parse method='1094'  stamp='0.421'>
+<phase name='parse_hir' stamp='0.421'>
+<bc code='184' bci='13'/>
+<method id='1097' holder='1093' name='sub' return='975' arguments='975 975 975' flags='24' bytes='14' iicount='257'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.422'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1175' nmethods='682' adapters='262' free_code_cache='246986624'/>
+<task_done success='1' nmsize='528' count='262' inlined_bytes='14' stamp='0.422'/>
+</task>
+<task compile_id='697' method='com.sun.hotspot.tools.compiler.CallSite setEndLiveNodes (I)V' bytes='6' count='132' iicount='132' level='1' stamp='0.422'>
+<phase name='setup' stamp='0.422'>
+<phase_done name='setup' stamp='0.422'/>
+</phase>
+<phase name='buildIR' stamp='0.422'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='setEndLiveNodes' return='977' arguments='975' flags='0' bytes='6' iicount='132'/>
+<parse method='1094'  stamp='0.422'>
+<phase name='parse_hir' stamp='0.422'>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1178' nmethods='684' adapters='262' free_code_cache='246979072'/>
+<task_done success='1' nmsize='272' count='132' stamp='0.422'/>
+</task>
+<task compile_id='700' method='java.util.HashMap clear ()V' bytes='50' count='107' backedge_count='3072' iicount='107' level='3' stamp='0.422'>
+<phase name='setup' stamp='0.422'>
+<phase_done name='setup' stamp='0.422'/>
+</phase>
+<phase name='buildIR' stamp='0.422'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='clear' return='977' flags='1' bytes='50' iicount='107'/>
+<parse method='1094'  stamp='0.422'>
+<phase name='parse_hir' stamp='0.422'>
+<phase_done name='parse_hir' stamp='0.422'/>
+</phase>
+<parse_done stamp='0.422'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.422'>
+<phase_done name='optimize_blocks' stamp='0.422'/>
+</phase>
+<phase name='gvn' stamp='0.422'>
+<phase_done name='gvn' stamp='0.422'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.422'>
+<phase_done name='rangeCheckElimination' stamp='0.422'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.422'>
+<phase_done name='optimize_null_checks' stamp='0.422'/>
+</phase>
+<phase_done name='buildIR' stamp='0.422'/>
+</phase>
+<phase name='emit_lir' stamp='0.422'>
+<phase name='lirGeneration' stamp='0.422'>
+<phase_done name='lirGeneration' stamp='0.422'/>
+</phase>
+<phase name='linearScan' stamp='0.422'>
+<phase_done name='linearScan' stamp='0.422'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.422'/>
+</phase>
+<phase name='codeemit' stamp='0.422'>
+<phase_done name='codeemit' stamp='0.422'/>
+</phase>
+<phase name='codeinstall' stamp='0.422'>
+<phase_done name='codeinstall' stamp='0.422'/>
+</phase>
+<code_cache total_blobs='1183' nmethods='688' adapters='262' free_code_cache='246979200'/>
+<task_done success='1' nmsize='1040' count='107' backedge_count='3072' stamp='0.422'/>
+</task>
+<task compile_id='704' method='java.util.regex.Matcher find ()Z' bytes='69' count='384' iicount='384' level='3' stamp='0.425'>
+<phase name='setup' stamp='0.425'>
+<phase_done name='setup' stamp='0.425'/>
+</phase>
+<phase name='buildIR' stamp='0.425'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='find' return='969' flags='1' bytes='69' iicount='385'/>
+<parse method='1094'  stamp='0.425'>
+<phase name='parse_hir' stamp='0.425'>
+<bc code='182' bci='65'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='search' return='969' arguments='975' flags='0' bytes='154' compile_id='667' compiler='c1' level='3' iicount='389'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.425'/>
+</phase>
+<parse_done stamp='0.425'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.425'>
+<phase_done name='optimize_blocks' stamp='0.425'/>
+</phase>
+<phase name='gvn' stamp='0.425'>
+<phase_done name='gvn' stamp='0.425'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.425'>
+<phase_done name='rangeCheckElimination' stamp='0.425'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.425'>
+<phase_done name='optimize_null_checks' stamp='0.425'/>
+</phase>
+<phase_done name='buildIR' stamp='0.425'/>
+</phase>
+<phase name='emit_lir' stamp='0.425'>
+<phase name='lirGeneration' stamp='0.425'>
+<phase_done name='lirGeneration' stamp='0.425'/>
+</phase>
+<phase name='linearScan' stamp='0.425'>
+<phase_done name='linearScan' stamp='0.425'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.425'/>
+</phase>
+<phase name='codeemit' stamp='0.425'>
+<phase_done name='codeemit' stamp='0.425'/>
+</phase>
+<phase name='codeinstall' stamp='0.425'>
+<phase_done name='codeinstall' stamp='0.425'/>
+</phase>
+<code_cache total_blobs='1189' nmethods='692' adapters='262' free_code_cache='246973952'/>
+<task_done success='1' nmsize='904' count='396' stamp='0.425'/>
+</task>
+<task compile_id='708' method='com.sun.hotspot.tools.compiler.Method &lt;init&gt; ()V' bytes='5' count='258' iicount='258' level='3' stamp='0.425'>
+<phase name='setup' stamp='0.425'>
+<phase_done name='setup' stamp='0.425'/>
+</phase>
+<phase name='buildIR' stamp='0.425'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='258'/>
+<parse method='1094'  stamp='0.425'>
+<phase name='parse_hir' stamp='0.425'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='35362'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.425'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.425'/>
+</phase>
+<parse_done stamp='0.425'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.425'>
+<phase_done name='optimize_blocks' stamp='0.425'/>
+</phase>
+<phase name='gvn' stamp='0.425'>
+<phase_done name='gvn' stamp='0.425'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.425'>
+<phase_done name='rangeCheckElimination' stamp='0.425'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.425'>
+<phase_done name='optimize_null_checks' stamp='0.425'/>
+</phase>
+<phase_done name='buildIR' stamp='0.425'/>
+</phase>
+<phase name='emit_lir' stamp='0.425'>
+<phase name='lirGeneration' stamp='0.425'>
+<phase_done name='lirGeneration' stamp='0.425'/>
+</phase>
+<phase name='linearScan' stamp='0.425'>
+<phase_done name='linearScan' stamp='0.425'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.425'/>
+</phase>
+<phase name='codeemit' stamp='0.425'>
+<phase_done name='codeemit' stamp='0.425'/>
+</phase>
+<phase name='codeinstall' stamp='0.425'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.425'/>
+</phase>
+<code_cache total_blobs='1190' nmethods='693' adapters='262' free_code_cache='246972928'/>
+<task_done success='1' nmsize='432' count='261' inlined_bytes='1' stamp='0.425'/>
+</task>
+<task compile_id='710' method='com.sun.hotspot.tools.compiler.LogParser type (Ljava/lang/String;)Ljava/lang/String;' bytes='31' count='406' iicount='406' level='3' stamp='0.425'>
+<phase name='setup' stamp='0.425'>
+<phase_done name='setup' stamp='0.425'/>
+</phase>
+<phase name='buildIR' stamp='0.425'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='type' return='983' arguments='983' flags='0' bytes='31' iicount='406'/>
+<parse method='1094'  stamp='0.426'>
+<phase name='parse_hir' stamp='0.426'>
+<bc code='182' bci='5'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1096' name='java.util.HashMap' flags='1'/>
+<method id='1097' holder='1096' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='5459'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='11473'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='182' bci='9'/>
+<method id='1104' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1107' name='java.util.HashMap$Node' flags='8'/>
+<method id='1108' holder='1096' name='getNode' return='1107' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='6624'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.426'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.426'/>
+</phase>
+<parse_done stamp='0.426'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.426'>
+<phase_done name='optimize_blocks' stamp='0.426'/>
+</phase>
+<phase name='gvn' stamp='0.426'>
+<phase_done name='gvn' stamp='0.426'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.426'>
+<phase_done name='rangeCheckElimination' stamp='0.426'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.426'>
+<phase_done name='optimize_null_checks' stamp='0.426'/>
+</phase>
+<phase_done name='buildIR' stamp='0.426'/>
+</phase>
+<phase name='emit_lir' stamp='0.426'>
+<phase name='lirGeneration' stamp='0.426'>
+<phase_done name='lirGeneration' stamp='0.426'/>
+</phase>
+<phase name='linearScan' stamp='0.426'>
+<phase_done name='linearScan' stamp='0.426'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.426'/>
+</phase>
+<phase name='codeemit' stamp='0.426'>
+<phase_done name='codeemit' stamp='0.426'/>
+</phase>
+<phase name='codeinstall' stamp='0.426'>
+<phase_done name='codeinstall' stamp='0.426'/>
+</phase>
+<code_cache total_blobs='1195' nmethods='696' adapters='262' free_code_cache='246964352'/>
+<task_done success='1' nmsize='1864' count='410' inlined_bytes='43' stamp='0.426'/>
+</task>
+<task compile_id='711' method='java.util.ArrayDeque peek ()Ljava/lang/Object;' bytes='5' count='384' iicount='384' level='3' stamp='0.426'>
+<phase name='setup' stamp='0.426'>
+<phase_done name='setup' stamp='0.426'/>
+</phase>
+<phase name='buildIR' stamp='0.426'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayDeque' flags='1'/>
+<method id='1094' holder='1093' name='peek' return='982' flags='1' bytes='5' iicount='384'/>
+<parse method='1094'  stamp='0.426'>
+<phase name='parse_hir' stamp='0.426'>
+<bc code='182' bci='1'/>
+<method id='1096' holder='1093' name='peekFirst' return='982' flags='1' bytes='12' iicount='384'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<bc code='184' bci='8'/>
+<klass id='1098' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1093' name='elementAt' return='982' arguments='1098 975' flags='24' bytes='4' compile_id='655' compiler='c1' level='3' iicount='1350'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.426'/>
+</parse>
+<parse_done stamp='0.426'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.426'/>
+</phase>
+<parse_done stamp='0.426'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.426'>
+<phase_done name='optimize_blocks' stamp='0.426'/>
+</phase>
+<phase name='gvn' stamp='0.426'>
+<phase_done name='gvn' stamp='0.426'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.426'>
+<phase_done name='rangeCheckElimination' stamp='0.426'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.426'>
+<phase_done name='optimize_null_checks' stamp='0.426'/>
+</phase>
+<phase_done name='buildIR' stamp='0.426'/>
+</phase>
+<phase name='emit_lir' stamp='0.426'>
+<phase name='lirGeneration' stamp='0.426'>
+<phase_done name='lirGeneration' stamp='0.427'/>
+</phase>
+<phase name='linearScan' stamp='0.427'>
+<phase_done name='linearScan' stamp='0.427'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.427'/>
+</phase>
+<phase name='codeemit' stamp='0.427'>
+<phase_done name='codeemit' stamp='0.427'/>
+</phase>
+<phase name='codeinstall' stamp='0.427'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.427'/>
+</phase>
+<code_cache total_blobs='1197' nmethods='698' adapters='262' free_code_cache='246961664'/>
+<task_done success='1' nmsize='592' count='390' inlined_bytes='16' stamp='0.427'/>
+</task>
+<task compile_id='714' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='6309' iicount='6309' decompiles='1' unstable_if_traps='1' level='3' stamp='0.428'>
+<phase name='setup' stamp='0.428'>
+<phase_done name='setup' stamp='0.428'/>
+</phase>
+<phase name='buildIR' stamp='0.428'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='skipChar' return='969' arguments='975 1094' flags='4' bytes='285' iicount='6349'/>
+<parse method='1095'  stamp='0.428'>
+<phase name='parse_hir' stamp='0.428'>
+<bc code='182' bci='21'/>
+<method id='1098' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='40'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='128'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1101' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='172'/>
+<method id='1103' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='40'/>
+<call method='1103' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='191'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='278'/>
+<call method='1101' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.428'/>
+</phase>
+<parse_done stamp='0.428'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.428'>
+<phase_done name='optimize_blocks' stamp='0.428'/>
+</phase>
+<phase name='gvn' stamp='0.428'>
+<phase_done name='gvn' stamp='0.428'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.428'>
+<phase_done name='rangeCheckElimination' stamp='0.428'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.428'>
+<phase_done name='optimize_null_checks' stamp='0.428'/>
+</phase>
+<phase_done name='buildIR' stamp='0.428'/>
+</phase>
+<phase name='emit_lir' stamp='0.428'>
+<phase name='lirGeneration' stamp='0.428'>
+<phase_done name='lirGeneration' stamp='0.428'/>
+</phase>
+<phase name='linearScan' stamp='0.428'>
+<phase_done name='linearScan' stamp='0.429'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.429'/>
+</phase>
+<phase name='codeemit' stamp='0.429'>
+<phase_done name='codeemit' stamp='0.429'/>
+</phase>
+<phase name='codeinstall' stamp='0.429'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.430'/>
+</phase>
+<code_cache total_blobs='1211' nmethods='706' adapters='262' free_code_cache='246797568'/>
+<task_done success='1' nmsize='1800' count='7125' stamp='0.430'/>
+</task>
+<task compile_id='722' method='java.util.regex.Pattern$LastNode match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='45' count='256' iicount='256' level='3' stamp='0.436'>
+<phase name='setup' stamp='0.436'>
+<phase_done name='setup' stamp='0.436'/>
+</phase>
+<phase name='buildIR' stamp='0.436'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$LastNode' flags='8'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='45' iicount='256'/>
+<parse method='1096'  stamp='0.436'>
+<phase name='parse_hir' stamp='0.436'>
+<phase_done name='parse_hir' stamp='0.436'/>
+</phase>
+<parse_done stamp='0.436'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.436'>
+<phase_done name='optimize_blocks' stamp='0.436'/>
+</phase>
+<phase name='gvn' stamp='0.437'>
+<phase_done name='gvn' stamp='0.437'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.437'>
+<phase_done name='rangeCheckElimination' stamp='0.437'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.437'>
+<phase_done name='optimize_null_checks' stamp='0.437'/>
+</phase>
+<phase_done name='buildIR' stamp='0.437'/>
+</phase>
+<phase name='emit_lir' stamp='0.437'>
+<phase name='lirGeneration' stamp='0.437'>
+<phase_done name='lirGeneration' stamp='0.437'/>
+</phase>
+<phase name='linearScan' stamp='0.437'>
+<phase_done name='linearScan' stamp='0.437'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.437'/>
+</phase>
+<phase name='codeemit' stamp='0.437'>
+<phase_done name='codeemit' stamp='0.437'/>
+</phase>
+<phase name='codeinstall' stamp='0.437'>
+<phase_done name='codeinstall' stamp='0.437'/>
+</phase>
+<code_cache total_blobs='1232' nmethods='715' adapters='262' free_code_cache='246766592'/>
+<task_done success='1' nmsize='560' count='258' stamp='0.437'/>
+</task>
+<task compile_id='729' method='com.sun.org.apache.xerces.internal.impl.XMLScanner resolveCharacter (Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/util/XMLStringBuffer;)Z' bytes='109' count='261' iicount='261' level='3' stamp='0.445'>
+<phase name='setup' stamp='0.445'>
+<phase_done name='setup' stamp='0.445'/>
+</phase>
+<phase name='buildIR' stamp='0.445'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1095' holder='1093' name='resolveCharacter' return='969' arguments='983 1094' flags='4' bytes='109' iicount='261'/>
+<parse method='1095'  stamp='0.445'>
+<phase name='parse_hir' stamp='0.445'>
+<bc code='182' bci='10'/>
+<type id='977' name='void'/>
+<type id='970' name='char'/>
+<method id='1100' holder='1094' name='append' return='977' arguments='970' flags='1' bytes='87' iicount='263'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='182' bci='25'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='182' bci='40'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='182' bci='65'/>
+<type id='975' name='int'/>
+<method id='1108' holder='1093' name='checkEntityLimit' return='977' arguments='969 983 975' flags='0' bytes='317' compile_id='666' compiler='c1' level='3' iicount='389'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='71'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<bc code='182' bci='96'/>
+<call method='1108' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='102'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1094'/>
+<phase_done name='parse_hir' stamp='0.445'/>
+</phase>
+<parse_done stamp='0.445'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.445'>
+<phase_done name='optimize_blocks' stamp='0.445'/>
+</phase>
+<phase name='gvn' stamp='0.445'>
+<phase_done name='gvn' stamp='0.445'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.445'>
+<phase_done name='rangeCheckElimination' stamp='0.445'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.445'>
+<phase_done name='optimize_null_checks' stamp='0.445'/>
+</phase>
+<phase_done name='buildIR' stamp='0.445'/>
+</phase>
+<phase name='emit_lir' stamp='0.445'>
+<phase name='lirGeneration' stamp='0.445'>
+<phase_done name='lirGeneration' stamp='0.445'/>
+</phase>
+<phase name='linearScan' stamp='0.445'>
+<phase_done name='linearScan' stamp='0.445'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.445'/>
+</phase>
+<phase name='codeemit' stamp='0.445'>
+<phase_done name='codeemit' stamp='0.445'/>
+</phase>
+<phase name='codeinstall' stamp='0.445'>
+<dependency type='leaf_type' ctxk='1094'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<phase_done name='codeinstall' stamp='0.445'/>
+</phase>
+<code_cache total_blobs='1249' nmethods='724' adapters='262' free_code_cache='246746368'/>
+<task_done success='1' nmsize='1544' count='261' stamp='0.445'/>
+</task>
+<task compile_id='737' method='java.util.regex.Pattern split (Ljava/lang/CharSequence;I)[Ljava/lang/String;' bytes='290' count='257' backedge_count='326' iicount='257' level='3' stamp='0.460'>
+<phase name='setup' stamp='0.460'>
+<phase_done name='setup' stamp='0.460'/>
+</phase>
+<phase name='buildIR' stamp='0.460'>
+<klass id='1095' name='[Ljava.lang.String;' flags='1041'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Pattern' flags='17'/>
+<method id='1096' holder='1093' name='split' return='1095' arguments='1094 975' flags='1' bytes='290' iicount='257'/>
+<parse method='1096'  stamp='0.460'>
+<phase name='parse_hir' stamp='0.460'>
+<bc code='183' bci='17'/>
+<type id='977' name='void'/>
+<klass id='1098' name='java.util.ArrayList' flags='1'/>
+<method id='1100' holder='1098' name='&lt;init&gt;' return='977' flags='1' bytes='12' compile_id='687' compiler='c1' level='3' iicount='508'/>
+<call method='1100' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='183' bci='1'/>
+<klass id='1102' name='java.util.AbstractList' flags='1025'/>
+<method id='1103' holder='1102' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='944'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='1'/>
+<klass id='1105' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1106' holder='1105' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='2281'/>
+<call method='1106' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1108' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='39052'/>
+<call method='1108' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='24'/>
+<klass id='1113' name='java.util.regex.Matcher' flags='17'/>
+<method id='1114' holder='1093' name='matcher' return='1113' arguments='1094' flags='1' bytes='44' iicount='258'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='31'/>
+<type id='969' name='boolean'/>
+<method id='1116' holder='1113' name='find' return='969' flags='1' bytes='69' compile_id='704' compiler='c1' level='3' iicount='586'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='44'/>
+<method id='1118' holder='1098' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1118'>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='120'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1118'>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='185' bci='132'/>
+<method id='1120' holder='1094' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1120' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='137'/>
+<method id='1121' holder='1094' name='subSequence' return='1094' arguments='975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1121' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='142'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1122' holder='1094' name='toString' return='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1122' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='153'/>
+<method id='1123' holder='1098' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='2616'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1123'>
+<bc code='183' bci='20'/>
+<klass id='1110' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1125' holder='1098' name='add' return='977' arguments='982 1110 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='2617'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='7'/>
+<method id='1129' holder='1098' name='grow' return='1110' flags='2' bytes='11' iicount='701'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='7'/>
+<method id='1131' holder='1098' name='grow' return='1110' arguments='975' flags='2' bytes='18' iicount='701'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='7'/>
+<method id='1133' holder='1098' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' compile_id='668' compiler='c1' level='3' iicount='702'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<klass id='1135' name='java.util.Arrays' flags='1'/>
+<method id='1136' holder='1135' name='copyOf' return='1110' arguments='1110 975' flags='9' bytes='10' iicount='964'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1139' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<method id='1141' holder='1135' name='copyOf' return='1110' arguments='1110 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='1696'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='159'/>
+<method id='1144' holder='1113' name='end' return='975' flags='1' bytes='22' compile_id='723' compiler='c1' level='3' iicount='328'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='183' bci='13'/>
+<klass id='1146' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1148' holder='1146' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='60'/>
+<method id='1149' holder='1113' name='start' return='975' flags='1' bytes='22' compile_id='691' compiler='c1' level='3' iicount='504'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='183' bci='13'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='68'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='183' bci='13'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='73'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='183' bci='13'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='182' bci='86'/>
+<call method='1149' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1149'>
+<bc code='183' bci='13'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.460'/>
+</parse>
+<bc code='185' bci='89'/>
+<call method='1121' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='94'/>
+<call method='1122' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='105'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1123'>
+<bc code='183' bci='20'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='7'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='7'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='7'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='182' bci='3'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='182' bci='111'/>
+<call method='1144' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1144'>
+<bc code='183' bci='13'/>
+<call method='1148' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='185' bci='177'/>
+<call method='1122' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='191'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1118'>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='185' bci='203'/>
+<call method='1120' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='208'/>
+<call method='1121' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='213'/>
+<call method='1122' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='218'/>
+<call method='1123' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1123'>
+<bc code='183' bci='20'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<bc code='183' bci='7'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<bc code='183' bci='7'/>
+<call method='1131' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1131'>
+<bc code='183' bci='7'/>
+<call method='1133' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='10'/>
+<call method='1136' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1136'>
+<bc code='182' bci='3'/>
+<call method='1139' instr='invokevirtual'/>
+<inline_success reason='intrinsic'/>
+<bc code='184' bci='6'/>
+<call method='1141' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='182' bci='224'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1118'>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='182' bci='244'/>
+<method id='1151' holder='1098' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='526' compiler='c1' level='3' iicount='7272'/>
+<call method='1151' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1151'>
+<bc code='184' bci='5'/>
+<klass id='1153' name='java.util.Objects' flags='17'/>
+<method id='1154' holder='1153' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='7487'/>
+<call method='1154' instr='invokestatic'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1154'>
+<bc code='184' bci='3'/>
+<klass id='1157' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1156' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1158' holder='1156' name='checkIndex' return='975' arguments='975 975 1157' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='7487'/>
+<call method='1158' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1158'>
+<bc code='184' bci='12'/>
+<klass id='993' name='java.lang.RuntimeException' flags='1'/>
+<method id='1160' holder='1156' name='outOfBoundsCheckIndex' return='993' arguments='1157 975 975' flags='10' bytes='25' iicount='1'/>
+<call method='1160' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1162' holder='1098' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='7292'/>
+<call method='1162' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1162'>
+<parse_done stamp='0.461'/>
+</parse>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='182' bci='252'/>
+<method id='1165' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1165' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='276'/>
+<klass id='1167' name='java.util.List' flags='1537'/>
+<method id='1168' holder='1098' name='subList' return='1167' arguments='975 975' flags='1' bytes='20' iicount='177'/>
+<call method='1168' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<parse method='1168'>
+<bc code='184' bci='6'/>
+<method id='1170' holder='1102' name='subListRangeCheck' return='977' arguments='975 975 975' flags='8' bytes='110' iicount='177'/>
+<call method='1170' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='16'/>
+<klass id='1099' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1172' holder='1099' name='&lt;init&gt;' return='977' arguments='1098 975 975' flags='1' bytes='35' iicount='177'/>
+<call method='1172' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.461'/>
+</parse>
+<bc code='185' bci='281'/>
+<method id='1174' holder='1167' name='toArray' return='1110' arguments='1110' flags='1025' bytes='0' iicount='1'/>
+<call method='1174' instr='invokeinterface'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.461'/>
+</phase>
+<parse_done stamp='0.461'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.461'>
+<phase_done name='optimize_blocks' stamp='0.461'/>
+</phase>
+<phase name='gvn' stamp='0.461'>
+<phase_done name='gvn' stamp='0.461'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.461'>
+<phase_done name='rangeCheckElimination' stamp='0.461'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.461'>
+<phase_done name='optimize_null_checks' stamp='0.461'/>
+</phase>
+<phase_done name='buildIR' stamp='0.461'/>
+</phase>
+<phase name='emit_lir' stamp='0.461'>
+<phase name='lirGeneration' stamp='0.461'>
+<phase_done name='lirGeneration' stamp='0.462'/>
+</phase>
+<phase name='linearScan' stamp='0.462'>
+<phase_done name='linearScan' stamp='0.463'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.463'/>
+</phase>
+<phase name='codeemit' stamp='0.463'>
+<phase_done name='codeemit' stamp='0.463'/>
+</phase>
+<phase name='codeinstall' stamp='0.463'>
+<dependency type='leaf_type' ctxk='1098'/>
+<phase_done name='codeinstall' stamp='0.463'/>
+</phase>
+<code_cache total_blobs='1279' nmethods='738' adapters='262' free_code_cache='246662912'/>
+<task_done success='1' nmsize='14136' count='268' backedge_count='345' inlined_bytes='502' stamp='0.463'/>
+</task>
+<task compile_id='761' method='com.sun.hotspot.tools.compiler.LogParser makeId (Lorg/xml/sax/Attributes;)Ljava/lang/String;' bytes='53' count='367' iicount='367' level='3' stamp='0.496'>
+<phase name='setup' stamp='0.496'>
+<phase_done name='setup' stamp='0.496'/>
+</phase>
+<phase name='buildIR' stamp='0.496'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='makeId' return='983' arguments='1094' flags='1' bytes='53' iicount='367'/>
+<parse method='1095'  stamp='0.496'>
+<phase name='parse_hir' stamp='0.496'>
+<bc code='185' bci='3'/>
+<method id='1099' holder='1094' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' instr='invokeinterface'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1100' holder='1097' name='getValue' return='983' arguments='983' flags='1' bytes='11' compile_id='566' compiler='c1' level='3' iicount='19047'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='185' bci='5'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1104' holder='1103' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1104' instr='invokeinterface'/>
+<klass id='1105' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1106' holder='1105' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='677' compiler='c2' level='4' iicount='13274'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1106'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='185' bci='12'/>
+<call method='1099' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='185' bci='5'/>
+<call method='1104' instr='invokeinterface'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1106'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='25'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1111' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1111' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='35'/>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1113' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='2559'/>
+<call method='1113' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1113'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1115' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='2903'/>
+<call method='1115' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='39'/>
+<method id='1117' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='5615'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<method id='1119' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='5615'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='44'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1117'>
+<bc code='183' bci='2'/>
+<call method='1119' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='182' bci='47'/>
+<method id='1122' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='2903'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='182' bci='1'/>
+<method id='1124' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='6272'/>
+<call method='1124' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1127' name='java.lang.StringLatin1' flags='16'/>
+<method id='1128' holder='1127' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='5162'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='184' bci='9'/>
+<klass id='1130' name='java.util.Arrays' flags='1'/>
+<method id='1131' holder='1130' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1131' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1133' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='6435'/>
+<call method='1133' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='183' bci='1'/>
+<method id='1135' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='42312'/>
+<call method='1135' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<parse_done stamp='0.496'/>
+</parse>
+<parse_done stamp='0.496'/>
+</parse>
+<parse_done stamp='0.496'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1137' name='java.lang.StringUTF16' flags='16'/>
+<method id='1138' holder='1137' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1138' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.496'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.496'/>
+</phase>
+<parse_done stamp='0.496'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.496'>
+<phase_done name='optimize_blocks' stamp='0.496'/>
+</phase>
+<phase name='gvn' stamp='0.496'>
+<phase_done name='gvn' stamp='0.496'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.496'>
+<phase_done name='rangeCheckElimination' stamp='0.496'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.496'>
+<phase_done name='optimize_null_checks' stamp='0.496'/>
+</phase>
+<phase_done name='buildIR' stamp='0.496'/>
+</phase>
+<phase name='emit_lir' stamp='0.496'>
+<phase name='lirGeneration' stamp='0.496'>
+<phase_done name='lirGeneration' stamp='0.496'/>
+</phase>
+<phase name='linearScan' stamp='0.496'>
+<phase_done name='linearScan' stamp='0.497'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.497'/>
+</phase>
+<phase name='codeemit' stamp='0.497'>
+<phase_done name='codeemit' stamp='0.497'/>
+</phase>
+<phase name='codeinstall' stamp='0.497'>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1106'/>
+<phase_done name='codeinstall' stamp='0.497'/>
+</phase>
+<code_cache total_blobs='1324' nmethods='757' adapters='262' free_code_cache='246592512'/>
+<task_done success='1' nmsize='3576' count='368' inlined_bytes='132' stamp='0.497'/>
+</task>
+<task compile_id='764' method='java.util.AbstractList listIterator ()Ljava/util/ListIterator;' bytes='6' count='256' iicount='256' level='3' stamp='0.498'>
+<phase name='setup' stamp='0.498'>
+<phase_done name='setup' stamp='0.498'/>
+</phase>
+<phase name='buildIR' stamp='0.498'>
+<klass id='1094' name='java.util.ListIterator' flags='1537'/>
+<klass id='1093' name='java.util.AbstractList' flags='1025'/>
+<method id='1095' holder='1093' name='listIterator' return='1094' flags='1' bytes='6' iicount='257'/>
+<parse method='1095'  stamp='0.498'>
+<phase name='parse_hir' stamp='0.498'>
+<bc code='182' bci='2'/>
+<type id='975' name='int'/>
+<method id='1097' holder='1093' name='listIterator' return='1094' arguments='975' flags='1' bytes='15' iicount='1'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.498'/>
+</phase>
+<parse_done stamp='0.498'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.498'>
+<phase_done name='optimize_blocks' stamp='0.498'/>
+</phase>
+<phase name='gvn' stamp='0.498'>
+<phase_done name='gvn' stamp='0.498'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.498'>
+<phase_done name='rangeCheckElimination' stamp='0.498'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.498'>
+<phase_done name='optimize_null_checks' stamp='0.498'/>
+</phase>
+<phase_done name='buildIR' stamp='0.498'/>
+</phase>
+<phase name='emit_lir' stamp='0.498'>
+<phase name='lirGeneration' stamp='0.498'>
+<phase_done name='lirGeneration' stamp='0.498'/>
+</phase>
+<phase name='linearScan' stamp='0.498'>
+<phase_done name='linearScan' stamp='0.498'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.498'/>
+</phase>
+<phase name='codeemit' stamp='0.498'>
+<phase_done name='codeemit' stamp='0.498'/>
+</phase>
+<phase name='codeinstall' stamp='0.498'>
+<phase_done name='codeinstall' stamp='0.498'/>
+</phase>
+<code_cache total_blobs='1325' nmethods='758' adapters='262' free_code_cache='246591360'/>
+<task_done success='1' nmsize='520' count='257' stamp='0.498'/>
+</task>
+<task compile_id='765' method='java.util.ArrayList$SubList listIterator (I)Ljava/util/ListIterator;' bytes='19' count='257' iicount='257' level='3' stamp='0.499'>
+<phase name='setup' stamp='0.499'>
+<phase_done name='setup' stamp='0.499'/>
+</phase>
+<phase name='buildIR' stamp='0.499'>
+<klass id='1094' name='java.util.ListIterator' flags='1537'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1095' holder='1093' name='listIterator' return='1094' arguments='975' flags='1' bytes='19' iicount='257'/>
+<parse method='1095'  stamp='0.499'>
+<phase name='parse_hir' stamp='0.499'>
+<bc code='183' bci='1'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1093' name='checkForComodification' return='977' flags='2' bytes='23' compile_id='716' compiler='c1' level='3' iicount='514'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='18'/>
+<klass id='1101' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1102' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='183' bci='6'/>
+<method id='1103' holder='1093' name='rangeCheckForAdd' return='977' arguments='975' flags='2' bytes='26' iicount='257'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='18'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1106' holder='1093' name='outOfBoundsMsg' return='983' arguments='975' flags='2' bytes='32' iicount='1'/>
+<call method='1106' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='21'/>
+<klass id='1105' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1108' holder='1105' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='183' bci='15'/>
+<klass id='1109' name='java.util.ArrayList$SubList$1' flags='0'/>
+<method id='1110' holder='1109' name='&lt;init&gt;' return='977' arguments='1093 975' flags='0' bytes='42' iicount='258'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.499'/>
+</phase>
+<parse_done stamp='0.499'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.499'>
+<phase_done name='optimize_blocks' stamp='0.499'/>
+</phase>
+<phase name='gvn' stamp='0.499'>
+<phase_done name='gvn' stamp='0.499'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.499'>
+<phase_done name='rangeCheckElimination' stamp='0.499'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.499'>
+<phase_done name='optimize_null_checks' stamp='0.499'/>
+</phase>
+<phase_done name='buildIR' stamp='0.499'/>
+</phase>
+<phase name='emit_lir' stamp='0.499'>
+<phase name='lirGeneration' stamp='0.499'>
+<phase_done name='lirGeneration' stamp='0.499'/>
+</phase>
+<phase name='linearScan' stamp='0.499'>
+<phase_done name='linearScan' stamp='0.499'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.499'/>
+</phase>
+<phase name='codeemit' stamp='0.499'>
+<phase_done name='codeemit' stamp='0.499'/>
+</phase>
+<phase name='codeinstall' stamp='0.499'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.499'/>
+</phase>
+<code_cache total_blobs='1327' nmethods='760' adapters='262' free_code_cache='246587648'/>
+<task_done success='1' nmsize='1208' count='260' inlined_bytes='49' stamp='0.499'/>
+</task>
+<task compile_id='767' method='java.util.ArrayList$SubList$1 &lt;init&gt; (Ljava/util/ArrayList$SubList;I)V' bytes='42' count='260' iicount='260' level='3' stamp='0.499'>
+<phase name='setup' stamp='0.499'>
+<phase_done name='setup' stamp='0.499'/>
+</phase>
+<phase name='buildIR' stamp='0.499'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.ArrayList$SubList' flags='10'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList$1' flags='0'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 975' flags='0' bytes='42' iicount='260'/>
+<parse method='1095'  stamp='0.499'>
+<phase name='parse_hir' stamp='0.499'>
+<bc code='183' bci='11'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='42518'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.499'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1099' name='java.util.ArrayList' flags='1'/>
+<method id='1100' holder='1094' name='access$100' return='1099' arguments='1094' flags='4104' bytes='5' compile_id='640' compiler='c1' level='1' iicount='396'/>
+<call method='1100' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.499'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.499'/>
+</phase>
+<parse_done stamp='0.499'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.499'>
+<phase_done name='optimize_blocks' stamp='0.499'/>
+</phase>
+<phase name='gvn' stamp='0.499'>
+<phase_done name='gvn' stamp='0.499'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.499'>
+<phase_done name='rangeCheckElimination' stamp='0.499'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.499'>
+<phase_done name='optimize_null_checks' stamp='0.499'/>
+</phase>
+<phase_done name='buildIR' stamp='0.499'/>
+</phase>
+<phase name='emit_lir' stamp='0.499'>
+<phase name='lirGeneration' stamp='0.499'>
+<phase_done name='lirGeneration' stamp='0.499'/>
+</phase>
+<phase name='linearScan' stamp='0.499'>
+<phase_done name='linearScan' stamp='0.499'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.499'/>
+</phase>
+<phase name='codeemit' stamp='0.499'>
+<phase_done name='codeemit' stamp='0.499'/>
+</phase>
+<phase name='codeinstall' stamp='0.499'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.499'/>
+</phase>
+<code_cache total_blobs='1330' nmethods='763' adapters='262' free_code_cache='246580224'/>
+<task_done success='1' nmsize='592' count='261' inlined_bytes='6' stamp='0.499'/>
+</task>
+<task compile_id='772' method='java.nio.Buffer remaining ()I' bytes='10' count='258' iicount='258' level='3' stamp='0.514'>
+<phase name='setup' stamp='0.514'>
+<phase_done name='setup' stamp='0.514'/>
+</phase>
+<phase name='buildIR' stamp='0.514'>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='remaining' return='975' flags='17' bytes='10' iicount='258'/>
+<parse method='1093'  stamp='0.514'>
+<phase name='parse_hir' stamp='0.514'>
+<phase_done name='parse_hir' stamp='0.514'/>
+</phase>
+<parse_done stamp='0.514'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.514'>
+<phase_done name='optimize_blocks' stamp='0.514'/>
+</phase>
+<phase name='gvn' stamp='0.514'>
+<phase_done name='gvn' stamp='0.514'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.514'>
+<phase_done name='rangeCheckElimination' stamp='0.514'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.514'>
+<phase_done name='optimize_null_checks' stamp='0.514'/>
+</phase>
+<phase_done name='buildIR' stamp='0.514'/>
+</phase>
+<phase name='emit_lir' stamp='0.514'>
+<phase name='lirGeneration' stamp='0.514'>
+<phase_done name='lirGeneration' stamp='0.514'/>
+</phase>
+<phase name='linearScan' stamp='0.514'>
+<phase_done name='linearScan' stamp='0.514'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.514'/>
+</phase>
+<phase name='codeemit' stamp='0.514'>
+<phase_done name='codeemit' stamp='0.514'/>
+</phase>
+<phase name='codeinstall' stamp='0.514'>
+<phase_done name='codeinstall' stamp='0.514'/>
+</phase>
+<code_cache total_blobs='1339' nmethods='768' adapters='262' free_code_cache='246515712'/>
+<task_done success='1' nmsize='336' count='258' stamp='0.514'/>
+</task>
+<task compile_id='774' method='java.util.ArrayList$SubList &lt;init&gt; (Ljava/util/ArrayList;II)V' bytes='35' count='306' iicount='306' level='3' stamp='0.516'>
+<phase name='setup' stamp='0.516'>
+<phase_done name='setup' stamp='0.516'/>
+</phase>
+<phase name='buildIR' stamp='0.516'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.ArrayList' flags='1'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList$SubList' flags='10'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 975 975' flags='1' bytes='35' iicount='306'/>
+<parse method='1095'  stamp='0.516'>
+<phase name='parse_hir' stamp='0.516'>
+<bc code='183' bci='1'/>
+<klass id='1097' name='java.util.AbstractList' flags='1025'/>
+<method id='1098' holder='1097' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='1393'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='183' bci='1'/>
+<klass id='1100' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='2730'/>
+<call method='1101' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='43775'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.516'/>
+</parse>
+<parse_done stamp='0.516'/>
+</parse>
+<parse_done stamp='0.516'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.516'/>
+</phase>
+<parse_done stamp='0.516'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.516'>
+<phase_done name='optimize_blocks' stamp='0.516'/>
+</phase>
+<phase name='gvn' stamp='0.516'>
+<phase_done name='gvn' stamp='0.516'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.516'>
+<phase_done name='rangeCheckElimination' stamp='0.516'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.516'>
+<phase_done name='optimize_null_checks' stamp='0.516'/>
+</phase>
+<phase_done name='buildIR' stamp='0.516'/>
+</phase>
+<phase name='emit_lir' stamp='0.516'>
+<phase name='lirGeneration' stamp='0.516'>
+<phase_done name='lirGeneration' stamp='0.516'/>
+</phase>
+<phase name='linearScan' stamp='0.516'>
+<phase_done name='linearScan' stamp='0.516'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.516'/>
+</phase>
+<phase name='codeemit' stamp='0.516'>
+<phase_done name='codeemit' stamp='0.516'/>
+</phase>
+<phase name='codeinstall' stamp='0.516'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.516'/>
+</phase>
+<code_cache total_blobs='1343' nmethods='770' adapters='262' free_code_cache='246498816'/>
+<task_done success='1' nmsize='816' count='307' inlined_bytes='16' stamp='0.516'/>
+</task>
+<task compile_id='780' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='15258' backedge_count='90882' iicount='15258' decompiles='1' unstable_if_traps='2' level='3' stamp='0.527'>
+<phase name='setup' stamp='0.527'>
+<phase_done name='setup' stamp='0.527'/>
+</phase>
+<phase name='buildIR' stamp='0.527'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanName' return='983' arguments='1094' flags='4' bytes='305' iicount='15277'/>
+<parse method='1095'  stamp='0.527'>
+<phase name='parse_hir' stamp='0.527'>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<method id='1099' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='72'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='42'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1103' holder='1102' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='36653'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.527'/>
+</parse>
+<bc code='182' bci='74'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='73'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='101'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='133'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1111' holder='1097' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='4925'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<bc code='184' bci='181'/>
+<method id='1115' holder='1102' name='isName' return='969' arguments='975' flags='9' bytes='23' iicount='1'/>
+<call method='1115' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1115'>
+<parse_done stamp='0.527'/>
+</parse>
+<bc code='182' bci='201'/>
+<klass id='1098' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1117' holder='1093' name='checkBeforeLoad' return='975' arguments='1098 975 975' flags='4' bytes='140' compile_id='597' compiler='c2' level='4' iicount='28118'/>
+<call method='1117' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='215'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='264'/>
+<klass id='1119' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1122' holder='1093' name='checkLimit' return='977' arguments='1119 1098 975 975' flags='4' bytes='253' compile_id='610' compiler='c2' level='4' iicount='15167'/>
+<call method='1122' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='275'/>
+<method id='1126' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1098 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<call method='1126' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<bc code='182' bci='291'/>
+<call method='1111' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='parse_hir' stamp='0.527'/>
+</phase>
+<parse_done stamp='0.527'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.527'>
+<phase_done name='optimize_blocks' stamp='0.527'/>
+</phase>
+<phase name='gvn' stamp='0.527'>
+<phase_done name='gvn' stamp='0.527'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.527'>
+<phase_done name='rangeCheckElimination' stamp='0.527'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.527'>
+<phase_done name='optimize_null_checks' stamp='0.527'/>
+</phase>
+<phase_done name='buildIR' stamp='0.528'/>
+</phase>
+<phase name='emit_lir' stamp='0.528'>
+<phase name='lirGeneration' stamp='0.528'>
+<phase_done name='lirGeneration' stamp='0.528'/>
+</phase>
+<phase name='linearScan' stamp='0.528'>
+<phase_done name='linearScan' stamp='0.528'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.528'/>
+</phase>
+<phase name='codeemit' stamp='0.528'>
+<phase_done name='codeemit' stamp='0.528'/>
+</phase>
+<phase name='codeinstall' stamp='0.528'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1097'/>
+<phase_done name='codeinstall' stamp='0.528'/>
+</phase>
+<code_cache total_blobs='1352' nmethods='777' adapters='262' free_code_cache='246481152'/>
+<task_done success='1' nmsize='3112' count='15504' backedge_count='92050' inlined_bytes='45' stamp='0.528'/>
+</task>
+<task compile_id='783' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)V' bytes='17' count='261' iicount='261' level='3' stamp='0.542'>
+<phase name='setup' stamp='0.542'>
+<phase_done name='setup' stamp='0.542'/>
+</phase>
+<phase name='buildIR' stamp='0.542'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1094' holder='1093' name='setValues' return='977' arguments='1093' flags='1' bytes='17' iicount='261'/>
+<parse method='1094'  stamp='0.542'>
+<phase name='parse_hir' stamp='0.542'>
+<bc code='182' bci='13'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='583' compiler='c2' level='4' iicount='16140'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.542'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.542'/>
+</phase>
+<parse_done stamp='0.542'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.542'>
+<phase_done name='optimize_blocks' stamp='0.542'/>
+</phase>
+<phase name='gvn' stamp='0.542'>
+<phase_done name='gvn' stamp='0.542'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.542'>
+<phase_done name='rangeCheckElimination' stamp='0.542'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.542'>
+<phase_done name='optimize_null_checks' stamp='0.542'/>
+</phase>
+<phase_done name='buildIR' stamp='0.542'/>
+</phase>
+<phase name='emit_lir' stamp='0.542'>
+<phase name='lirGeneration' stamp='0.542'>
+<phase_done name='lirGeneration' stamp='0.542'/>
+</phase>
+<phase name='linearScan' stamp='0.542'>
+<phase_done name='linearScan' stamp='0.542'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.542'/>
+</phase>
+<phase name='codeemit' stamp='0.542'>
+<phase_done name='codeemit' stamp='0.542'/>
+</phase>
+<phase name='codeinstall' stamp='0.542'>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<phase_done name='codeinstall' stamp='0.542'/>
+</phase>
+<code_cache total_blobs='1356' nmethods='779' adapters='262' free_code_cache='246472192'/>
+<task_done success='1' nmsize='688' count='261' inlined_bytes='16' stamp='0.542'/>
+</task>
+<task compile_id='789' method='com.sun.org.apache.xerces.internal.util.XMLChar isInvalid (I)Z' bytes='13' count='389' iicount='389' level='3' stamp='0.548'>
+<phase name='setup' stamp='0.548'>
+<phase_done name='setup' stamp='0.548'/>
+</phase>
+<phase name='buildIR' stamp='0.548'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isInvalid' return='969' arguments='975' flags='9' bytes='13' iicount='389'/>
+<parse method='1094'  stamp='0.548'>
+<phase name='parse_hir' stamp='0.548'>
+<bc code='184' bci='1'/>
+<method id='1096' holder='1093' name='isValid' return='969' arguments='975' flags='9' bytes='34' iicount='389'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.548'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.548'/>
+</phase>
+<parse_done stamp='0.548'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.548'>
+<phase_done name='optimize_blocks' stamp='0.548'/>
+</phase>
+<phase name='gvn' stamp='0.548'>
+<phase_done name='gvn' stamp='0.548'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.548'>
+<phase_done name='rangeCheckElimination' stamp='0.548'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.548'>
+<phase_done name='optimize_null_checks' stamp='0.548'/>
+</phase>
+<phase_done name='buildIR' stamp='0.548'/>
+</phase>
+<phase name='emit_lir' stamp='0.548'>
+<phase name='lirGeneration' stamp='0.548'>
+<phase_done name='lirGeneration' stamp='0.548'/>
+</phase>
+<phase name='linearScan' stamp='0.548'>
+<phase_done name='linearScan' stamp='0.548'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.548'/>
+</phase>
+<phase name='codeemit' stamp='0.548'>
+<phase_done name='codeemit' stamp='0.548'/>
+</phase>
+<phase name='codeinstall' stamp='0.548'>
+<phase_done name='codeinstall' stamp='0.548'/>
+</phase>
+<code_cache total_blobs='1362' nmethods='783' adapters='262' free_code_cache='246460544'/>
+<task_done success='1' nmsize='816' count='389' inlined_bytes='34' stamp='0.548'/>
+</task>
+<task compile_id='792' method='java.util.ArrayList$Itr next ()Ljava/lang/Object;' bytes='66' count='469' iicount='470' level='3' stamp='0.549'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayList$Itr' flags='2'/>
+<method id='1094' holder='1093' name='next' return='982' flags='1' bytes='66' iicount='512'/>
+<parse method='1094'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<bc code='182' bci='1'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1093' name='checkForComodification' return='977' flags='16' bytes='23' iicount='638'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='183' bci='18'/>
+<klass id='1100' name='java.util.ConcurrentModificationException' unloaded='1'/>
+<method id='1101' holder='1100' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='184' bci='14'/>
+<type id='975' name='int'/>
+<klass id='1098' name='java.util.ArrayList' flags='1'/>
+<method id='1102' holder='1098' name='access$000' return='975' arguments='1098' flags='4104' bytes='5' compile_id='140' compiler='c1' level='1' iicount='155'/>
+<call method='1102' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.550'/>
+</parse>
+<bc code='183' bci='24'/>
+<klass id='1104' name='java.util.NoSuchElementException' unloaded='1'/>
+<method id='1105' holder='1104' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='46'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.550'/>
+</phase>
+<phase name='linearScan' stamp='0.550'>
+<phase_done name='linearScan' stamp='0.550'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.550'/>
+</phase>
+<phase name='codeemit' stamp='0.550'>
+<phase_done name='codeemit' stamp='0.550'/>
+</phase>
+<phase name='codeinstall' stamp='0.550'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.550'/>
+</phase>
+<code_cache total_blobs='1370' nmethods='789' adapters='262' free_code_cache='246442240'/>
+<task_done success='1' nmsize='1192' count='658' inlined_bytes='28' stamp='0.550'/>
+</task>
+<task compile_id='797' method='com.sun.hotspot.tools.compiler.LogParser$1 compare (Ljava/lang/Object;Ljava/lang/Object;)I' bytes='13' count='302' iicount='302' level='3' stamp='0.550'>
+<phase name='setup' stamp='0.550'>
+<phase_done name='setup' stamp='0.550'/>
+</phase>
+<phase name='buildIR' stamp='0.550'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser$1' flags='8'/>
+<method id='1094' holder='1093' name='compare' return='975' arguments='982 982' flags='4161' bytes='13' iicount='302'/>
+<parse method='1094'  stamp='0.550'>
+<phase name='parse_hir' stamp='0.550'>
+<bc code='182' bci='9'/>
+<klass id='1096' name='com.sun.hotspot.tools.compiler.LogEvent' flags='1537'/>
+<method id='1097' holder='1093' name='compare' return='975' arguments='1096 1096' flags='1' bytes='32' iicount='375'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='185' bci='1'/>
+<type id='972' name='double'/>
+<method id='1100' holder='1096' name='getStart' return='972' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='185' bci='7'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.550'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.550'/>
+</phase>
+<parse_done stamp='0.550'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.550'>
+<phase_done name='optimize_blocks' stamp='0.550'/>
+</phase>
+<phase name='gvn' stamp='0.550'>
+<phase_done name='gvn' stamp='0.550'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.550'>
+<phase_done name='rangeCheckElimination' stamp='0.550'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.550'>
+<phase_done name='optimize_null_checks' stamp='0.550'/>
+</phase>
+<phase_done name='buildIR' stamp='0.550'/>
+</phase>
+<phase name='emit_lir' stamp='0.550'>
+<phase name='lirGeneration' stamp='0.550'>
+<phase_done name='lirGeneration' stamp='0.551'/>
+</phase>
+<phase name='linearScan' stamp='0.551'>
+<phase_done name='linearScan' stamp='0.551'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.551'/>
+</phase>
+<phase name='codeemit' stamp='0.551'>
+<phase_done name='codeemit' stamp='0.551'/>
+</phase>
+<phase name='codeinstall' stamp='0.551'>
+<phase_done name='codeinstall' stamp='0.551'/>
+</phase>
+<code_cache total_blobs='1376' nmethods='793' adapters='264' free_code_cache='246434944'/>
+<task_done success='1' nmsize='1720' count='998' inlined_bytes='32' stamp='0.551'/>
+</task>
+<task compile_id='804' method='jdk.internal.org.objectweb.asm.ByteVector enlarge (I)V' bytes='51' count='284' iicount='284' level='3' stamp='0.554'>
+<phase name='setup' stamp='0.554'>
+<phase_done name='setup' stamp='0.554'/>
+</phase>
+<phase name='buildIR' stamp='0.554'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<method id='1094' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='284'/>
+<parse method='1094'  stamp='0.554'>
+<phase name='parse_hir' stamp='0.554'>
+<bc code='184' bci='41'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1096' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<phase_done name='parse_hir' stamp='0.554'/>
+</phase>
+<parse_done stamp='0.554'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.554'>
+<phase_done name='optimize_blocks' stamp='0.554'/>
+</phase>
+<phase name='gvn' stamp='0.554'>
+<phase_done name='gvn' stamp='0.554'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.554'>
+<phase_done name='rangeCheckElimination' stamp='0.554'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.554'>
+<phase_done name='optimize_null_checks' stamp='0.554'/>
+</phase>
+<phase_done name='buildIR' stamp='0.554'/>
+</phase>
+<phase name='emit_lir' stamp='0.554'>
+<phase name='lirGeneration' stamp='0.554'>
+<phase_done name='lirGeneration' stamp='0.554'/>
+</phase>
+<phase name='linearScan' stamp='0.554'>
+<phase_done name='linearScan' stamp='0.554'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.554'/>
+</phase>
+<phase name='codeemit' stamp='0.554'>
+<phase_done name='codeemit' stamp='0.554'/>
+</phase>
+<phase name='codeinstall' stamp='0.554'>
+<phase_done name='codeinstall' stamp='0.554'/>
+</phase>
+<code_cache total_blobs='1385' nmethods='800' adapters='264' free_code_cache='246426624'/>
+<task_done success='1' nmsize='840' count='288' stamp='0.554'/>
+</task>
+<task compile_id='810' method='jdk.internal.math.FDBigInteger &lt;init&gt; ([II)V' bytes='30' count='261' iicount='261' level='3' stamp='0.559'>
+<phase name='setup' stamp='0.559'>
+<phase_done name='setup' stamp='0.559'/>
+</phase>
+<phase name='buildIR' stamp='0.559'>
+<type id='977' name='void'/>
+<klass id='1087' name='[I' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='jdk.internal.math.FDBigInteger' flags='1'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='1087 975' flags='2' bytes='30' iicount='269'/>
+<parse method='1094'  stamp='0.559'>
+<phase name='parse_hir' stamp='0.559'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='46701'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.559'/>
+</parse>
+<bc code='183' bci='26'/>
+<method id='1098' holder='1093' name='trimLeadingZeros' return='977' flags='2' bytes='57' iicount='311'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.559'/>
+</phase>
+<parse_done stamp='0.559'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.559'>
+<phase_done name='optimize_blocks' stamp='0.559'/>
+</phase>
+<phase name='gvn' stamp='0.559'>
+<phase_done name='gvn' stamp='0.559'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.559'>
+<phase_done name='rangeCheckElimination' stamp='0.559'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.559'>
+<phase_done name='optimize_null_checks' stamp='0.559'/>
+</phase>
+<phase_done name='buildIR' stamp='0.559'/>
+</phase>
+<phase name='emit_lir' stamp='0.559'>
+<phase name='lirGeneration' stamp='0.559'>
+<phase_done name='lirGeneration' stamp='0.559'/>
+</phase>
+<phase name='linearScan' stamp='0.559'>
+<phase_done name='linearScan' stamp='0.559'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.559'/>
+</phase>
+<phase name='codeemit' stamp='0.559'>
+<phase_done name='codeemit' stamp='0.559'/>
+</phase>
+<phase name='codeinstall' stamp='0.559'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.559'/>
+</phase>
+<code_cache total_blobs='1397' nmethods='806' adapters='270' free_code_cache='246363520'/>
+<task_done success='1' nmsize='616' count='341' inlined_bytes='1' stamp='0.559'/>
+</task>
+<task compile_id='814' method='java.nio.ByteBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='263' iicount='263' level='3' stamp='0.560'>
+<phase name='setup' stamp='0.560'>
+<phase_done name='setup' stamp='0.560'/>
+</phase>
+<phase name='buildIR' stamp='0.560'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='position' return='1064' arguments='975' flags='4161' bytes='6' iicount='263'/>
+<parse method='1094'  stamp='0.560'>
+<phase name='parse_hir' stamp='0.560'>
+<bc code='182' bci='2'/>
+<method id='1096' holder='1093' name='position' return='1093' arguments='975' flags='1' bytes='8' compile_id='486' compiler='c1' level='3' iicount='699'/>
+<call method='1096' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.560'/>
+</phase>
+<parse_done stamp='0.560'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.560'>
+<phase_done name='optimize_blocks' stamp='0.560'/>
+</phase>
+<phase name='gvn' stamp='0.560'>
+<phase_done name='gvn' stamp='0.560'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.560'>
+<phase_done name='rangeCheckElimination' stamp='0.560'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.560'>
+<phase_done name='optimize_null_checks' stamp='0.560'/>
+</phase>
+<phase_done name='buildIR' stamp='0.560'/>
+</phase>
+<phase name='emit_lir' stamp='0.560'>
+<phase name='lirGeneration' stamp='0.560'>
+<phase_done name='lirGeneration' stamp='0.560'/>
+</phase>
+<phase name='linearScan' stamp='0.560'>
+<phase_done name='linearScan' stamp='0.560'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.560'/>
+</phase>
+<phase name='codeemit' stamp='0.560'>
+<phase_done name='codeemit' stamp='0.560'/>
+</phase>
+<phase name='codeinstall' stamp='0.560'>
+<phase_done name='codeinstall' stamp='0.560'/>
+</phase>
+<code_cache total_blobs='1401' nmethods='810' adapters='270' free_code_cache='246357248'/>
+<task_done success='1' nmsize='520' count='273' stamp='0.560'/>
+</task>
+<task compile_id='815' method='java.nio.CharBuffer hasArray ()Z' bytes='20' count='259' iicount='259' level='3' stamp='0.560'>
+<phase name='setup' stamp='0.560'>
+<phase_done name='setup' stamp='0.560'/>
+</phase>
+<phase name='buildIR' stamp='0.560'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='hasArray' return='969' flags='17' bytes='20' iicount='259'/>
+<parse method='1094'  stamp='0.560'>
+<phase name='parse_hir' stamp='0.560'>
+<phase_done name='parse_hir' stamp='0.560'/>
+</phase>
+<parse_done stamp='0.560'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.560'>
+<phase_done name='optimize_blocks' stamp='0.560'/>
+</phase>
+<phase name='gvn' stamp='0.560'>
+<phase_done name='gvn' stamp='0.560'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.560'>
+<phase_done name='rangeCheckElimination' stamp='0.560'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.560'>
+<phase_done name='optimize_null_checks' stamp='0.560'/>
+</phase>
+<phase_done name='buildIR' stamp='0.560'/>
+</phase>
+<phase name='emit_lir' stamp='0.560'>
+<phase name='lirGeneration' stamp='0.560'>
+<phase_done name='lirGeneration' stamp='0.560'/>
+</phase>
+<phase name='linearScan' stamp='0.560'>
+<phase_done name='linearScan' stamp='0.560'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.560'/>
+</phase>
+<phase name='codeemit' stamp='0.560'>
+<phase_done name='codeemit' stamp='0.560'/>
+</phase>
+<phase name='codeinstall' stamp='0.560'>
+<phase_done name='codeinstall' stamp='0.561'/>
+</phase>
+<code_cache total_blobs='1402' nmethods='811' adapters='270' free_code_cache='246356224'/>
+<task_done success='1' nmsize='496' count='268' stamp='0.561'/>
+</task>
+<task compile_id='819' method='sun.nio.cs.UTF_8 access$200 (Ljava/nio/Buffer;ILjava/nio/Buffer;I)V' bytes='8' count='292' iicount='292' level='3' stamp='0.561'>
+<phase name='setup' stamp='0.561'>
+<phase_done name='setup' stamp='0.561'/>
+</phase>
+<phase name='buildIR' stamp='0.561'>
+<type id='977' name='void'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<klass id='1093' name='sun.nio.cs.UTF_8' flags='0'/>
+<method id='1094' holder='1093' name='access$200' return='977' arguments='1064 975 1064 975' flags='4104' bytes='8' iicount='293'/>
+<parse method='1094'  stamp='0.561'>
+<phase name='parse_hir' stamp='0.561'>
+<bc code='184' bci='4'/>
+<method id='1096' holder='1093' name='updatePositions' return='977' arguments='1064 975 1064 975' flags='26' bytes='23' iicount='294'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='3'/>
+<method id='1100' holder='1064' name='arrayOffset' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<method id='1101' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='1315'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.561'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.561'/>
+</phase>
+<parse_done stamp='0.561'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.561'>
+<phase_done name='optimize_blocks' stamp='0.561'/>
+</phase>
+<phase name='gvn' stamp='0.561'>
+<phase_done name='gvn' stamp='0.561'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.561'>
+<phase_done name='rangeCheckElimination' stamp='0.561'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.561'>
+<phase_done name='optimize_null_checks' stamp='0.561'/>
+</phase>
+<phase_done name='buildIR' stamp='0.561'/>
+</phase>
+<phase name='emit_lir' stamp='0.561'>
+<phase name='lirGeneration' stamp='0.561'>
+<phase_done name='lirGeneration' stamp='0.561'/>
+</phase>
+<phase name='linearScan' stamp='0.561'>
+<phase_done name='linearScan' stamp='0.561'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.561'/>
+</phase>
+<phase name='codeemit' stamp='0.561'>
+<phase_done name='codeemit' stamp='0.561'/>
+</phase>
+<phase name='codeinstall' stamp='0.561'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1406' nmethods='815' adapters='270' free_code_cache='246350848'/>
+<task_done success='1' nmsize='1208' count='301' inlined_bytes='23' stamp='0.562'/>
+</task>
+<task compile_id='822' method='sun.nio.cs.UTF_8 updatePositions (Ljava/nio/Buffer;ILjava/nio/Buffer;I)V' bytes='23' count='301' iicount='301' level='3' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<type id='977' name='void'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<klass id='1093' name='sun.nio.cs.UTF_8' flags='0'/>
+<method id='1094' holder='1093' name='updatePositions' return='977' arguments='1064 975 1064 975' flags='26' bytes='23' iicount='301'/>
+<parse method='1094'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<bc code='182' bci='3'/>
+<method id='1098' holder='1064' name='arrayOffset' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='7'/>
+<method id='1099' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='1344'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='14'/>
+<call method='1098' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='18'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.562'/>
+</phase>
+<phase name='codeemit' stamp='0.562'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1412' nmethods='819' adapters='270' free_code_cache='246344320'/>
+<task_done success='1' nmsize='1112' count='314' stamp='0.562'/>
+</task>
+<task compile_id='827' method='java.lang.String &lt;init&gt; ([C)V' bytes='10' count='256' iicount='256' level='3' stamp='0.562'>
+<phase name='setup' stamp='0.562'>
+<phase_done name='setup' stamp='0.562'/>
+</phase>
+<phase name='buildIR' stamp='0.562'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='&lt;init&gt;' return='977' arguments='1082' flags='1' bytes='10' iicount='256'/>
+<parse method='1093'  stamp='0.562'>
+<phase name='parse_hir' stamp='0.562'>
+<bc code='183' bci='6'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.Void' flags='17'/>
+<method id='1096' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1095' flags='0' bytes='74' compile_id='707' compiler='c2' level='4' iicount='8367'/>
+<call method='1096' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.562'/>
+</phase>
+<parse_done stamp='0.562'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.562'>
+<phase_done name='optimize_blocks' stamp='0.562'/>
+</phase>
+<phase name='gvn' stamp='0.562'>
+<phase_done name='gvn' stamp='0.562'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.562'>
+<phase_done name='rangeCheckElimination' stamp='0.562'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.562'>
+<phase_done name='optimize_null_checks' stamp='0.562'/>
+</phase>
+<phase_done name='buildIR' stamp='0.562'/>
+</phase>
+<phase name='emit_lir' stamp='0.562'>
+<phase name='lirGeneration' stamp='0.562'>
+<phase_done name='lirGeneration' stamp='0.562'/>
+</phase>
+<phase name='linearScan' stamp='0.562'>
+<phase_done name='linearScan' stamp='0.562'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.562'/>
+</phase>
+<phase name='codeemit' stamp='0.562'>
+<phase_done name='codeemit' stamp='0.562'/>
+</phase>
+<phase name='codeinstall' stamp='0.562'>
+<phase_done name='codeinstall' stamp='0.562'/>
+</phase>
+<code_cache total_blobs='1416' nmethods='823' adapters='270' free_code_cache='246339840'/>
+<task_done success='1' nmsize='424' count='256' stamp='0.562'/>
+</task>
+<task compile_id='830' method='java.nio.HeapCharBuffer &lt;init&gt; ([CII)V' bytes='14' count='262' iicount='262' level='3' stamp='0.563'>
+<phase name='setup' stamp='0.563'>
+<phase_done name='setup' stamp='0.563'/>
+</phase>
+<phase name='buildIR' stamp='0.563'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.nio.HeapCharBuffer' flags='0'/>
+<method id='1094' holder='1093' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='0' bytes='14' iicount='262'/>
+<parse method='1094'  stamp='0.563'>
+<phase name='parse_hir' stamp='0.563'>
+<bc code='183' bci='10'/>
+<klass id='1096' name='java.nio.CharBuffer' flags='1025'/>
+<method id='1097' holder='1096' name='&lt;init&gt;' return='977' arguments='975 975 975 975 1082 975' flags='0' bytes='22' compile_id='823' compiler='c1' level='3' iicount='302'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='6'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1099' holder='1064' name='&lt;init&gt;' return='977' arguments='975 975 975 975' flags='0' bytes='99' compile_id='731' compiler='c1' level='3' iicount='487'/>
+<call method='1099' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.563'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.563'/>
+</phase>
+<parse_done stamp='0.563'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.563'>
+<phase_done name='optimize_blocks' stamp='0.563'/>
+</phase>
+<phase name='gvn' stamp='0.563'>
+<phase_done name='gvn' stamp='0.563'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.563'>
+<phase_done name='rangeCheckElimination' stamp='0.563'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.563'>
+<phase_done name='optimize_null_checks' stamp='0.563'/>
+</phase>
+<phase_done name='buildIR' stamp='0.563'/>
+</phase>
+<phase name='emit_lir' stamp='0.563'>
+<phase name='lirGeneration' stamp='0.563'>
+<phase_done name='lirGeneration' stamp='0.563'/>
+</phase>
+<phase name='linearScan' stamp='0.563'>
+<phase_done name='linearScan' stamp='0.563'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.563'/>
+</phase>
+<phase name='codeemit' stamp='0.563'>
+<phase_done name='codeemit' stamp='0.563'/>
+</phase>
+<phase name='codeinstall' stamp='0.563'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.563'/>
+</phase>
+<code_cache total_blobs='1419' nmethods='826' adapters='270' free_code_cache='246336640'/>
+<task_done success='1' nmsize='648' count='273' inlined_bytes='22' stamp='0.563'/>
+</task>
+<task compile_id='836' method='java.io.BufferedOutputStream flush ()V' bytes='12' count='256' iicount='256' level='3' stamp='0.564'>
+<phase name='setup' stamp='0.564'>
+<phase_done name='setup' stamp='0.564'/>
+</phase>
+<phase name='buildIR' stamp='0.564'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.BufferedOutputStream' flags='1'/>
+<method id='1094' holder='1093' name='flush' return='977' flags='33' bytes='12' iicount='256'/>
+<parse method='1094'  stamp='0.564'>
+<phase name='parse_hir' stamp='0.564'>
+<bc code='183' bci='1'/>
+<method id='1096' holder='1093' name='flushBuffer' return='977' flags='2' bytes='29' iicount='256'/>
+<call method='1096' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<bc code='182' bci='20'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1099' name='java.io.OutputStream' flags='1025'/>
+<method id='1101' holder='1099' name='write' return='977' arguments='1085 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.564'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1102' holder='1099' name='flush' return='977' flags='1' bytes='1' iicount='263'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.564'/>
+</phase>
+<parse_done stamp='0.564'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.564'>
+<phase_done name='optimize_blocks' stamp='0.564'/>
+</phase>
+<phase name='gvn' stamp='0.564'>
+<phase_done name='gvn' stamp='0.564'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.564'>
+<phase_done name='rangeCheckElimination' stamp='0.564'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.564'>
+<phase_done name='optimize_null_checks' stamp='0.564'/>
+</phase>
+<phase_done name='buildIR' stamp='0.564'/>
+</phase>
+<phase name='emit_lir' stamp='0.564'>
+<phase name='lirGeneration' stamp='0.564'>
+<phase_done name='lirGeneration' stamp='0.564'/>
+</phase>
+<phase name='linearScan' stamp='0.564'>
+<phase_done name='linearScan' stamp='0.564'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.564'/>
+</phase>
+<phase name='codeemit' stamp='0.564'>
+<phase_done name='codeemit' stamp='0.564'/>
+</phase>
+<phase name='codeinstall' stamp='0.564'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.564'/>
+</phase>
+<code_cache total_blobs='1427' nmethods='832' adapters='270' free_code_cache='246323456'/>
+<task_done success='1' nmsize='1272' count='270' inlined_bytes='29' stamp='0.564'/>
+</task>
+<task compile_id='840' method='java.io.BufferedWriter write (Ljava/lang/String;II)V' bytes='117' count='256' backedge_count='232' iicount='256' level='3' stamp='0.565'>
+<phase name='setup' stamp='0.565'>
+<phase_done name='setup' stamp='0.565'/>
+</phase>
+<phase name='buildIR' stamp='0.565'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.io.BufferedWriter' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='983 975 975' flags='1' bytes='117' iicount='256'/>
+<parse method='1094'  stamp='0.565'>
+<phase name='parse_hir' stamp='0.565'>
+<bc code='183' bci='9'/>
+<method id='1097' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='820' compiler='c1' level='3' iicount='512'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='13'/>
+<klass id='1099' name='java.io.IOException' flags='1'/>
+<method id='1101' holder='1099' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1101' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='183' bci='42'/>
+<method id='1103' holder='1093' name='min' return='975' arguments='975 975' flags='2' bytes='9' iicount='234'/>
+<call method='1103' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.565'/>
+</parse>
+<bc code='182' bci='63'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1105' holder='983' name='getChars' return='977' arguments='975 975 1082 975' flags='1' bytes='54' iicount='238'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='96'/>
+<method id='1107' holder='1093' name='flushBuffer' return='977' flags='0' bytes='53' iicount='264'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='parse_hir' stamp='0.565'/>
+</phase>
+<parse_done stamp='0.565'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.565'>
+<phase_done name='optimize_blocks' stamp='0.565'/>
+</phase>
+<phase name='gvn' stamp='0.565'>
+<phase_done name='gvn' stamp='0.565'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.565'>
+<phase_done name='rangeCheckElimination' stamp='0.565'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.565'>
+<phase_done name='optimize_null_checks' stamp='0.565'/>
+</phase>
+<phase_done name='buildIR' stamp='0.565'/>
+</phase>
+<phase name='emit_lir' stamp='0.565'>
+<phase name='lirGeneration' stamp='0.565'>
+<phase_done name='lirGeneration' stamp='0.565'/>
+</phase>
+<phase name='linearScan' stamp='0.565'>
+<phase_done name='linearScan' stamp='0.565'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.565'/>
+</phase>
+<phase name='codeemit' stamp='0.565'>
+<phase_done name='codeemit' stamp='0.565'/>
+</phase>
+<phase name='codeinstall' stamp='0.565'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.565'/>
+</phase>
+<code_cache total_blobs='1432' nmethods='837' adapters='270' free_code_cache='246311168'/>
+<task_done success='1' nmsize='1928' count='288' backedge_count='261' inlined_bytes='27' stamp='0.565'/>
+</task>
+<task compile_id='843' method='sun.nio.cs.StreamEncoder flushBuffer ()V' bytes='42' count='289' iicount='289' level='3' stamp='0.565'>
+<phase name='setup' stamp='0.565'>
+<phase_done name='setup' stamp='0.565'/>
+</phase>
+<phase name='buildIR' stamp='0.565'>
+<type id='977' name='void'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='flushBuffer' return='977' flags='1' bytes='42' iicount='290'/>
+<parse method='1094'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<bc code='183' bci='8'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1093' name='isOpen' return='969' flags='2' bytes='13' iicount='295'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='182' bci='15'/>
+<method id='1099' holder='1093' name='implFlushBuffer' return='977' flags='0' bytes='15' iicount='296'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1099'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1102' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='183' bci='11'/>
+<method id='1104' holder='1093' name='writeBytes' return='977' flags='2' bytes='132' iicount='268'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='183' bci='27'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1106' name='java.io.IOException' flags='1'/>
+<method id='1108' holder='1106' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1108' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.566'/>
+</phase>
+<parse_done stamp='0.566'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.566'>
+<phase_done name='optimize_blocks' stamp='0.566'/>
+</phase>
+<phase name='gvn' stamp='0.566'>
+<phase_done name='gvn' stamp='0.566'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.566'>
+<phase_done name='rangeCheckElimination' stamp='0.566'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.566'>
+<phase_done name='optimize_null_checks' stamp='0.566'/>
+</phase>
+<phase_done name='buildIR' stamp='0.566'/>
+</phase>
+<phase name='emit_lir' stamp='0.566'>
+<phase name='lirGeneration' stamp='0.566'>
+<phase_done name='lirGeneration' stamp='0.566'/>
+</phase>
+<phase name='linearScan' stamp='0.566'>
+<phase_done name='linearScan' stamp='0.566'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.566'/>
+</phase>
+<phase name='codeemit' stamp='0.566'>
+<phase_done name='codeemit' stamp='0.566'/>
+</phase>
+<phase name='codeinstall' stamp='0.566'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.566'/>
+</phase>
+<code_cache total_blobs='1436' nmethods='841' adapters='270' free_code_cache='246303872'/>
+<task_done success='1' nmsize='1592' count='307' inlined_bytes='33' stamp='0.566'/>
+</task>
+<task compile_id='846' method='java.lang.String valueOf (C)Ljava/lang/String;' bytes='39' count='273' iicount='273' level='3' stamp='0.566'>
+<phase name='setup' stamp='0.566'>
+<phase_done name='setup' stamp='0.566'/>
+</phase>
+<phase name='buildIR' stamp='0.566'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<method id='1093' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' iicount='277'/>
+<parse method='1093'  stamp='0.566'>
+<phase name='parse_hir' stamp='0.566'>
+<bc code='184' bci='7'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.lang.StringLatin1' flags='16'/>
+<method id='1097' holder='1096' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='12763'/>
+<call method='1097' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='184' bci='18'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1099' holder='1096' name='toBytes' return='1085' arguments='970' flags='9' bytes='9' compile_id='834' compiler='c1' level='3' iicount='277'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='183' bci='22'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1101' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='7745'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='47420'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.566'/>
+</parse>
+<parse_done stamp='0.566'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1105' name='java.lang.StringUTF16' flags='16'/>
+<method id='1106' holder='1105' name='toBytes' return='1085' arguments='970' flags='9' bytes='12' iicount='1'/>
+<call method='1106' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1106'>
+<bc code='184' bci='7'/>
+<method id='1108' holder='1105' name='putChar' return='977' arguments='1085 975 975' flags='8' bytes='54' iicount='1'/>
+<call method='1108' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='183' bci='35'/>
+<call method='1101' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='183' bci='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<parse_done stamp='0.567'/>
+</parse>
+<parse_done stamp='0.567'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.567'/>
+</phase>
+<parse_done stamp='0.567'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.567'>
+<phase_done name='optimize_blocks' stamp='0.567'/>
+</phase>
+<phase name='gvn' stamp='0.567'>
+<phase_done name='gvn' stamp='0.567'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.567'>
+<phase_done name='rangeCheckElimination' stamp='0.567'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.567'>
+<phase_done name='optimize_null_checks' stamp='0.567'/>
+</phase>
+<phase_done name='buildIR' stamp='0.567'/>
+</phase>
+<phase name='emit_lir' stamp='0.567'>
+<phase name='lirGeneration' stamp='0.567'>
+<phase_done name='lirGeneration' stamp='0.567'/>
+</phase>
+<phase name='linearScan' stamp='0.567'>
+<phase_done name='linearScan' stamp='0.567'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.567'/>
+</phase>
+<phase name='codeemit' stamp='0.567'>
+<phase_done name='codeemit' stamp='0.567'/>
+</phase>
+<phase name='codeinstall' stamp='0.567'>
+<phase_done name='codeinstall' stamp='0.567'/>
+</phase>
+<code_cache total_blobs='1441' nmethods='846' adapters='270' free_code_cache='246296832'/>
+<task_done success='1' nmsize='1808' count='281' inlined_bytes='66' stamp='0.567'/>
+</task>
+<task compile_id='853' method='java.lang.AbstractStringBuilder charAt (I)C' bytes='36' count='288' iicount='288' level='3' stamp='0.567'>
+<phase name='setup' stamp='0.567'>
+<phase_done name='setup' stamp='0.567'/>
+</phase>
+<phase name='buildIR' stamp='0.567'>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='charAt' return='970' arguments='975' flags='1' bytes='36' iicount='288'/>
+<parse method='1093'  stamp='0.567'>
+<phase name='parse_hir' stamp='0.567'>
+<bc code='184' bci='5'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1095' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' compile_id='833' compiler='c1' level='3' iicount='365'/>
+<call method='1095' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='9'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='7862'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1100' name='java.lang.StringUTF16' flags='16'/>
+<method id='1101' holder='1100' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<bc code='184' bci='2'/>
+<method id='1103' holder='1100' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1103' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='184' bci='2'/>
+<method id='1105' holder='1100' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1105' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1105'>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1095' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.567'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1107' holder='1100' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.567'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.567'/>
+</phase>
+<parse_done stamp='0.567'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.567'>
+<phase_done name='optimize_blocks' stamp='0.567'/>
+</phase>
+<phase name='gvn' stamp='0.567'>
+<phase_done name='gvn' stamp='0.567'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.567'>
+<phase_done name='rangeCheckElimination' stamp='0.567'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.567'>
+<phase_done name='optimize_null_checks' stamp='0.567'/>
+</phase>
+<phase_done name='buildIR' stamp='0.567'/>
+</phase>
+<phase name='emit_lir' stamp='0.567'>
+<phase name='lirGeneration' stamp='0.567'>
+<phase_done name='lirGeneration' stamp='0.567'/>
+</phase>
+<phase name='linearScan' stamp='0.567'>
+<phase_done name='linearScan' stamp='0.567'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.567'/>
+</phase>
+<phase name='codeemit' stamp='0.567'>
+<phase_done name='codeemit' stamp='0.567'/>
+</phase>
+<phase name='codeinstall' stamp='0.567'>
+<phase_done name='codeinstall' stamp='0.567'/>
+</phase>
+<code_cache total_blobs='1444' nmethods='849' adapters='270' free_code_cache='246292224'/>
+<task_done success='1' nmsize='1272' count='315' inlined_bytes='44' stamp='0.567'/>
+</task>
+<task compile_id='857' method='java.util.ArrayList$Itr &lt;init&gt; (Ljava/util/ArrayList;)V' bytes='26' count='257' iicount='257' level='3' stamp='0.568'>
+<phase name='setup' stamp='0.568'>
+<phase_done name='setup' stamp='0.568'/>
+</phase>
+<phase name='buildIR' stamp='0.568'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.ArrayList' flags='1'/>
+<klass id='1093' name='java.util.ArrayList$Itr' flags='2'/>
+<method id='1095' holder='1093' name='&lt;init&gt;' return='977' arguments='1094' flags='0' bytes='26' iicount='257'/>
+<parse method='1095'  stamp='0.568'>
+<phase name='parse_hir' stamp='0.568'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1097' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='47609'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.568'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.568'/>
+</phase>
+<parse_done stamp='0.568'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.568'>
+<phase_done name='optimize_blocks' stamp='0.568'/>
+</phase>
+<phase name='gvn' stamp='0.568'>
+<phase_done name='gvn' stamp='0.568'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.568'>
+<phase_done name='rangeCheckElimination' stamp='0.568'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.568'>
+<phase_done name='optimize_null_checks' stamp='0.568'/>
+</phase>
+<phase_done name='buildIR' stamp='0.568'/>
+</phase>
+<phase name='emit_lir' stamp='0.568'>
+<phase name='lirGeneration' stamp='0.568'>
+<phase_done name='lirGeneration' stamp='0.568'/>
+</phase>
+<phase name='linearScan' stamp='0.568'>
+<phase_done name='linearScan' stamp='0.568'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.568'/>
+</phase>
+<phase name='codeemit' stamp='0.568'>
+<phase_done name='codeemit' stamp='0.568'/>
+</phase>
+<phase name='codeinstall' stamp='0.568'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.568'/>
+</phase>
+<code_cache total_blobs='1446' nmethods='851' adapters='270' free_code_cache='246289792'/>
+<task_done success='1' nmsize='560' count='259' inlined_bytes='1' stamp='0.568'/>
+</task>
+<task compile_id='858' method='java.lang.String getChars (II[CI)V' bytes='54' count='372' iicount='372' level='3' stamp='0.568'>
+<phase name='setup' stamp='0.568'>
+<phase_done name='setup' stamp='0.568'/>
+</phase>
+<phase name='buildIR' stamp='0.568'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='getChars' return='977' arguments='975 975 1082 975' flags='1' bytes='54' iicount='372'/>
+<parse method='1093'  stamp='0.568'>
+<phase name='parse_hir' stamp='0.568'>
+<bc code='182' bci='3'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='40330'/>
+<call method='1095' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1097' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='65825'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<parse_done stamp='0.568'/>
+</parse>
+<parse_done stamp='0.568'/>
+</parse>
+<bc code='184' bci='6'/>
+<method id='1100' holder='983' name='checkBoundsBeginEnd' return='977' arguments='975 975 975' flags='8' bytes='60' compile_id='287' compiler='c1' level='3' iicount='2710'/>
+<call method='1100' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='16'/>
+<method id='1102' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' compile_id='693' compiler='c2' level='4' iicount='7719'/>
+<call method='1102' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='20'/>
+<type id='969' name='boolean'/>
+<method id='1104' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='112172'/>
+<call method='1104' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.568'/>
+</parse>
+<bc code='184' bci='35'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1106' name='java.lang.StringLatin1' flags='16'/>
+<method id='1107' holder='1106' name='getChars' return='977' arguments='1085 975 975 1082 975' flags='9' bytes='12' iicount='383'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='184' bci='8'/>
+<method id='1109' holder='1106' name='inflate' return='977' arguments='1085 975 1082 975 975' flags='9' bytes='34' compile_id='440' compiler='c1' level='3' iicount='590'/>
+<call method='1109' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.568'/>
+</parse>
+<bc code='184' bci='50'/>
+<klass id='1111' name='java.lang.StringUTF16' flags='16'/>
+<method id='1112' holder='1111' name='getChars' return='977' arguments='1085 975 975 1082 975' flags='9' bytes='42' iicount='1'/>
+<call method='1112' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.568'/>
+</phase>
+<parse_done stamp='0.568'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.568'>
+<phase_done name='optimize_blocks' stamp='0.568'/>
+</phase>
+<phase name='gvn' stamp='0.568'>
+<phase_done name='gvn' stamp='0.568'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.568'>
+<phase_done name='rangeCheckElimination' stamp='0.568'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.568'>
+<phase_done name='optimize_null_checks' stamp='0.568'/>
+</phase>
+<phase_done name='buildIR' stamp='0.568'/>
+</phase>
+<phase name='emit_lir' stamp='0.568'>
+<phase name='lirGeneration' stamp='0.568'>
+<phase_done name='lirGeneration' stamp='0.569'/>
+</phase>
+<phase name='linearScan' stamp='0.569'>
+<phase_done name='linearScan' stamp='0.569'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.569'/>
+</phase>
+<phase name='codeemit' stamp='0.569'>
+<phase_done name='codeemit' stamp='0.569'/>
+</phase>
+<phase name='codeinstall' stamp='0.569'>
+<phase_done name='codeinstall' stamp='0.569'/>
+</phase>
+<code_cache total_blobs='1450' nmethods='855' adapters='270' free_code_cache='246278656'/>
+<task_done success='1' nmsize='1560' count='396' inlined_bytes='57' stamp='0.569'/>
+</task>
+<task compile_id='873' method='sun.nio.cs.StreamEncoder writeBytes ()V' bytes='132' count='396' iicount='396' level='3' stamp='0.569'>
+<phase name='setup' stamp='0.569'>
+<phase_done name='setup' stamp='0.569'/>
+</phase>
+<phase name='buildIR' stamp='0.569'>
+<type id='977' name='void'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='writeBytes' return='977' flags='2' bytes='132' iicount='396'/>
+<parse method='1094'  stamp='0.569'>
+<phase name='parse_hir' stamp='0.569'>
+<bc code='182' bci='4'/>
+<klass id='1098' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1099' holder='1098' name='flip' return='1098' flags='1' bytes='7' compile_id='831' compiler='c1' level='3' iicount='480'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='12'/>
+<type id='975' name='int'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1100' holder='1064' name='limit' return='975' flags='17' bytes='5' compile_id='481' compiler='c1' level='1' iicount='147'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='20'/>
+<method id='1102' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='185' bci='75'/>
+<klass id='1105' name='java.nio.channels.WritableByteChannel' unloaded='1'/>
+<method id='1106' holder='1105' name='write' return='975' arguments='1098' unloaded='1'/>
+<call method='1106' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='107'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1108' holder='1098' name='array' return='1085' flags='17' bytes='35' compile_id='807' compiler='c1' level='3' iicount='1067'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='11'/>
+<klass id='1110' name='java.lang.UnsupportedOperationException' flags='1'/>
+<method id='1111' holder='1110' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='1'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<klass id='1112' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<method id='1113' holder='1112' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='114'/>
+<method id='1114' holder='1098' name='arrayOffset' return='975' flags='17' bytes='35' compile_id='739' compiler='c1' level='3' iicount='2101'/>
+<call method='1114' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='183' bci='11'/>
+<call method='1111' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='26'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.569'/>
+</parse>
+<bc code='182' bci='120'/>
+<klass id='1107' name='java.io.OutputStream' flags='1025'/>
+<method id='1116' holder='1107' name='write' return='977' arguments='1085 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='127'/>
+<method id='1117' holder='1098' name='clear' return='1098' flags='1' bytes='7' iicount='413'/>
+<call method='1117' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.569'/>
+</phase>
+<parse_done stamp='0.569'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.569'>
+<phase_done name='optimize_blocks' stamp='0.569'/>
+</phase>
+<phase name='gvn' stamp='0.569'>
+<phase_done name='gvn' stamp='0.569'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.569'>
+<phase_done name='rangeCheckElimination' stamp='0.569'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.569'>
+<phase_done name='optimize_null_checks' stamp='0.569'/>
+</phase>
+<phase_done name='buildIR' stamp='0.569'/>
+</phase>
+<phase name='emit_lir' stamp='0.569'>
+<phase name='lirGeneration' stamp='0.569'>
+<phase_done name='lirGeneration' stamp='0.569'/>
+</phase>
+<phase name='linearScan' stamp='0.569'>
+<phase_done name='linearScan' stamp='0.569'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.569'/>
+</phase>
+<phase name='codeemit' stamp='0.569'>
+<phase_done name='codeemit' stamp='0.570'/>
+</phase>
+<phase name='codeinstall' stamp='0.570'>
+<phase_done name='codeinstall' stamp='0.570'/>
+</phase>
+<code_cache total_blobs='1454' nmethods='859' adapters='270' free_code_cache='246249216'/>
+<task_done success='1' nmsize='2968' count='456' inlined_bytes='80' stamp='0.570'/>
+</task>
+<task compile_id='865' method='sun.nio.cs.StreamEncoder ensureOpen ()V' bytes='18' count='457' iicount='457' level='3' stamp='0.570'>
+<phase name='setup' stamp='0.570'>
+<phase_done name='setup' stamp='0.570'/>
+</phase>
+<phase name='buildIR' stamp='0.570'>
+<type id='977' name='void'/>
+<klass id='1093' name='sun.nio.cs.StreamEncoder' flags='1'/>
+<method id='1094' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' iicount='459'/>
+<parse method='1094'  stamp='0.570'>
+<phase name='parse_hir' stamp='0.570'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.io.IOException' flags='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<phase_done name='parse_hir' stamp='0.570'/>
+</phase>
+<parse_done stamp='0.570'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.570'>
+<phase_done name='optimize_blocks' stamp='0.570'/>
+</phase>
+<phase name='gvn' stamp='0.570'>
+<phase_done name='gvn' stamp='0.570'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.570'>
+<phase_done name='rangeCheckElimination' stamp='0.570'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.570'>
+<phase_done name='optimize_null_checks' stamp='0.570'/>
+</phase>
+<phase_done name='buildIR' stamp='0.570'/>
+</phase>
+<phase name='emit_lir' stamp='0.570'>
+<phase name='lirGeneration' stamp='0.570'>
+<phase_done name='lirGeneration' stamp='0.570'/>
+</phase>
+<phase name='linearScan' stamp='0.570'>
+<phase_done name='linearScan' stamp='0.570'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.570'/>
+</phase>
+<phase name='codeemit' stamp='0.570'>
+<phase_done name='codeemit' stamp='0.570'/>
+</phase>
+<phase name='codeinstall' stamp='0.570'>
+<phase_done name='codeinstall' stamp='0.570'/>
+</phase>
+<code_cache total_blobs='1455' nmethods='860' adapters='270' free_code_cache='246247936'/>
+<task_done success='1' nmsize='616' count='477' stamp='0.570'/>
+</task>
+<task compile_id='868' method='java.io.PrintStream write ([BII)V' bytes='69' count='478' iicount='478' level='3' stamp='0.570'>
+<phase name='setup' stamp='0.570'>
+<phase_done name='setup' stamp='0.570'/>
+</phase>
+<phase name='buildIR' stamp='0.570'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='write' return='977' arguments='1085 975 975' flags='1' bytes='69' iicount='479'/>
+<parse method='1094'  stamp='0.570'>
+<phase name='parse_hir' stamp='0.570'>
+<bc code='183' bci='6'/>
+<method id='1097' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='821' compiler='c1' level='3' iicount='1074'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1101' name='java.io.IOException' flags='1'/>
+<method id='1103' holder='1101' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.570'/>
+</parse>
+<bc code='182' bci='16'/>
+<klass id='1099' name='java.io.OutputStream' flags='1025'/>
+<method id='1105' holder='1099' name='write' return='977' arguments='1085 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='30'/>
+<method id='1106' holder='1099' name='flush' return='977' flags='1' bytes='1' compile_id='838' compiler='c1' level='3' iicount='572'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='52'/>
+<klass id='1014' name='java.lang.Thread' flags='1'/>
+<method id='1107' holder='1014' name='currentThread' return='1014' flags='265' bytes='0' iicount='264'/>
+<call method='1107' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='55'/>
+<method id='1109' holder='1014' name='interrupt' return='977' flags='1' bytes='56' iicount='1'/>
+<call method='1109' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1109'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.571'/>
+</phase>
+<parse_done stamp='0.571'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.571'>
+<phase_done name='optimize_blocks' stamp='0.571'/>
+</phase>
+<phase name='gvn' stamp='0.571'>
+<phase_done name='gvn' stamp='0.571'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.571'>
+<phase_done name='rangeCheckElimination' stamp='0.571'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.571'>
+<phase_done name='optimize_null_checks' stamp='0.571'/>
+</phase>
+<phase_done name='buildIR' stamp='0.571'/>
+</phase>
+<phase name='emit_lir' stamp='0.571'>
+<phase name='lirGeneration' stamp='0.571'>
+<phase_done name='lirGeneration' stamp='0.571'/>
+</phase>
+<phase name='linearScan' stamp='0.571'>
+<phase_done name='linearScan' stamp='0.571'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.571'/>
+</phase>
+<phase name='codeemit' stamp='0.571'>
+<phase_done name='codeemit' stamp='0.571'/>
+</phase>
+<phase name='codeinstall' stamp='0.571'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1109'/>
+<phase_done name='codeinstall' stamp='0.571'/>
+</phase>
+<code_cache total_blobs='1457' nmethods='862' adapters='270' free_code_cache='246243456'/>
+<task_done success='1' nmsize='1944' count='520' inlined_bytes='18' stamp='0.571'/>
+</task>
+<task compile_id='874' method='java.util.regex.Pattern$Branch match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='66' count='270' backedge_count='108' iicount='270' level='3' stamp='0.571'>
+<phase name='setup' stamp='0.571'>
+<phase_done name='setup' stamp='0.571'/>
+</phase>
+<phase name='buildIR' stamp='0.571'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$Branch' flags='24'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='66' iicount='270'/>
+<parse method='1096'  stamp='0.571'>
+<phase name='parse_hir' stamp='0.571'>
+<bc code='182' bci='32'/>
+<klass id='1099' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1101' holder='1099' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='50'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.571'/>
+</phase>
+<parse_done stamp='0.571'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.571'>
+<phase_done name='optimize_blocks' stamp='0.571'/>
+</phase>
+<phase name='gvn' stamp='0.571'>
+<phase_done name='gvn' stamp='0.571'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.571'>
+<phase_done name='rangeCheckElimination' stamp='0.571'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.571'>
+<phase_done name='optimize_null_checks' stamp='0.571'/>
+</phase>
+<phase_done name='buildIR' stamp='0.571'/>
+</phase>
+<phase name='emit_lir' stamp='0.571'>
+<phase name='lirGeneration' stamp='0.571'>
+<phase_done name='lirGeneration' stamp='0.571'/>
+</phase>
+<phase name='linearScan' stamp='0.571'>
+<phase_done name='linearScan' stamp='0.571'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.571'/>
+</phase>
+<phase name='codeemit' stamp='0.571'>
+<phase_done name='codeemit' stamp='0.571'/>
+</phase>
+<phase name='codeinstall' stamp='0.571'>
+<phase_done name='codeinstall' stamp='0.571'/>
+</phase>
+<code_cache total_blobs='1461' nmethods='866' adapters='270' free_code_cache='246225152'/>
+<task_done success='1' nmsize='1272' count='290' backedge_count='116' stamp='0.571'/>
+</task>
+<task compile_id='871' method='java.nio.ByteBuffer clear ()Ljava/nio/ByteBuffer;' bytes='7' count='562' iicount='562' level='3' stamp='0.571'>
+<phase name='setup' stamp='0.571'>
+<phase_done name='setup' stamp='0.571'/>
+</phase>
+<phase name='buildIR' stamp='0.571'>
+<klass id='1093' name='java.nio.ByteBuffer' flags='1025'/>
+<method id='1094' holder='1093' name='clear' return='1093' flags='1' bytes='7' iicount='564'/>
+<parse method='1094'  stamp='0.572'>
+<phase name='parse_hir' stamp='0.572'>
+<bc code='183' bci='1'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1096' holder='1064' name='clear' return='1064' flags='1' bytes='20' iicount='564'/>
+<call method='1096' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.572'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.572'>
+<phase_done name='lirGeneration' stamp='0.572'/>
+</phase>
+<phase name='linearScan' stamp='0.572'>
+<phase_done name='linearScan' stamp='0.572'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.572'/>
+</phase>
+<phase name='codeemit' stamp='0.572'>
+<phase_done name='codeemit' stamp='0.572'/>
+</phase>
+<phase name='codeinstall' stamp='0.572'>
+<phase_done name='codeinstall' stamp='0.572'/>
+</phase>
+<code_cache total_blobs='1462' nmethods='867' adapters='270' free_code_cache='246224128'/>
+<task_done success='1' nmsize='464' count='578' inlined_bytes='20' stamp='0.572'/>
+</task>
+<task compile_id='872' method='java.nio.Buffer clear ()Ljava/nio/Buffer;' bytes='20' count='578' iicount='578' level='3' stamp='0.572'>
+<phase name='setup' stamp='0.572'>
+<phase_done name='setup' stamp='0.572'/>
+</phase>
+<phase name='buildIR' stamp='0.572'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1093' holder='1064' name='clear' return='1064' flags='1' bytes='20' iicount='578'/>
+<parse method='1093'  stamp='0.572'>
+<phase name='parse_hir' stamp='0.572'>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.572'/>
+</phase>
+<phase name='emit_lir' stamp='0.572'>
+<phase name='lirGeneration' stamp='0.572'>
+<phase_done name='lirGeneration' stamp='0.572'/>
+</phase>
+<phase name='linearScan' stamp='0.572'>
+<phase_done name='linearScan' stamp='0.572'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.572'/>
+</phase>
+<phase name='codeemit' stamp='0.572'>
+<phase_done name='codeemit' stamp='0.572'/>
+</phase>
+<phase name='codeinstall' stamp='0.572'>
+<phase_done name='codeinstall' stamp='0.572'/>
+</phase>
+<code_cache total_blobs='1464' nmethods='869' adapters='270' free_code_cache='246221952'/>
+<task_done success='1' nmsize='368' count='593' stamp='0.572'/>
+</task>
+<task compile_id='877' method='java.util.regex.Pattern$BmpCharPropertyGreedy match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='89' count='256' backedge_count='256' iicount='256' level='3' stamp='0.572'>
+<phase name='setup' stamp='0.572'>
+<phase_done name='setup' stamp='0.572'/>
+</phase>
+<phase name='buildIR' stamp='0.572'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$BmpCharPropertyGreedy' flags='24'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='89' iicount='256'/>
+<parse method='1096'  stamp='0.572'>
+<phase name='parse_hir' stamp='0.572'>
+<bc code='185' bci='21'/>
+<type id='970' name='char'/>
+<method id='1100' holder='1095' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1100' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='185' bci='26'/>
+<klass id='1098' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<method id='1101' holder='1098' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='70'/>
+<klass id='1102' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1103' holder='1102' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.572'/>
+</phase>
+<parse_done stamp='0.572'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.572'>
+<phase_done name='optimize_blocks' stamp='0.572'/>
+</phase>
+<phase name='gvn' stamp='0.572'>
+<phase_done name='gvn' stamp='0.572'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.572'>
+<phase_done name='rangeCheckElimination' stamp='0.572'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.572'>
+<phase_done name='optimize_null_checks' stamp='0.572'/>
+</phase>
+<phase_done name='buildIR' stamp='0.573'/>
+</phase>
+<phase name='emit_lir' stamp='0.573'>
+<phase name='lirGeneration' stamp='0.573'>
+<phase_done name='lirGeneration' stamp='0.573'/>
+</phase>
+<phase name='linearScan' stamp='0.573'>
+<phase_done name='linearScan' stamp='0.573'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.573'/>
+</phase>
+<phase name='codeemit' stamp='0.573'>
+<phase_done name='codeemit' stamp='0.573'/>
+</phase>
+<phase name='codeinstall' stamp='0.573'>
+<phase_done name='codeinstall' stamp='0.573'/>
+</phase>
+<code_cache total_blobs='1469' nmethods='874' adapters='270' free_code_cache='246210816'/>
+<task_done success='1' nmsize='1640' count='272' backedge_count='272' stamp='0.573'/>
+</task>
+<task compile_id='882' method='java.util.regex.Matcher start (I)I' bytes='65' count='408' iicount='408' level='3' stamp='0.573'>
+<phase name='setup' stamp='0.573'>
+<phase_done name='setup' stamp='0.573'/>
+</phase>
+<phase name='buildIR' stamp='0.573'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='start' return='975' arguments='975' flags='1' bytes='65' iicount='414'/>
+<parse method='1094'  stamp='0.573'>
+<phase name='parse_hir' stamp='0.573'>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='23'/>
+<method id='1099' holder='1093' name='groupCount' return='975' flags='1' bytes='10' compile_id='848' compiler='c1' level='3' iicount='700'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.573'/>
+</parse>
+<bc code='183' bci='37'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1103' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='3453'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1105' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='3900'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.573'/>
+</parse>
+<bc code='182' bci='42'/>
+<method id='1108' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6227'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<method id='1110' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.573'/>
+</parse>
+<bc code='182' bci='46'/>
+<method id='1112' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='652'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<method id='1114' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='652'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.573'/>
+</parse>
+<bc code='182' bci='49'/>
+<method id='1116' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='3840'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1118' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='8736'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.573'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1121' name='java.lang.StringLatin1' flags='16'/>
+<method id='1122' holder='1121' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='6559'/>
+<call method='1122' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='184' bci='9'/>
+<klass id='1124' name='java.util.Arrays' flags='1'/>
+<method id='1125' holder='1124' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1125' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1127' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='8124'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1129' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='48599'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.574'/>
+</parse>
+<parse_done stamp='0.574'/>
+</parse>
+<parse_done stamp='0.574'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1131' name='java.lang.StringUTF16' flags='16'/>
+<method id='1132' holder='1131' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1132' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.574'/>
+</parse>
+<bc code='183' bci='52'/>
+<klass id='1102' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1134' holder='1102' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1134' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.574'/>
+</phase>
+<parse_done stamp='0.574'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.574'>
+<phase_done name='optimize_blocks' stamp='0.574'/>
+</phase>
+<phase name='gvn' stamp='0.574'>
+<phase_done name='gvn' stamp='0.574'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.574'>
+<phase_done name='rangeCheckElimination' stamp='0.574'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.574'>
+<phase_done name='optimize_null_checks' stamp='0.574'/>
+</phase>
+<phase_done name='buildIR' stamp='0.574'/>
+</phase>
+<phase name='emit_lir' stamp='0.574'>
+<phase name='lirGeneration' stamp='0.574'>
+<phase_done name='lirGeneration' stamp='0.574'/>
+</phase>
+<phase name='linearScan' stamp='0.574'>
+<phase_done name='linearScan' stamp='0.574'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.574'/>
+</phase>
+<phase name='codeemit' stamp='0.574'>
+<phase_done name='codeemit' stamp='0.574'/>
+</phase>
+<phase name='codeinstall' stamp='0.574'>
+<phase_done name='codeinstall' stamp='0.574'/>
+</phase>
+<code_cache total_blobs='1478' nmethods='883' adapters='270' free_code_cache='246196736'/>
+<task_done success='1' nmsize='3208' count='474' inlined_bytes='120' stamp='0.574'/>
+</task>
+<task compile_id='891' method='java.util.regex.Pattern$BranchConn match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='11' count='258' iicount='258' level='3' stamp='0.575'>
+<phase name='setup' stamp='0.575'>
+<phase_done name='setup' stamp='0.575'/>
+</phase>
+<phase name='buildIR' stamp='0.575'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$BranchConn' flags='24'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='11' iicount='258'/>
+<parse method='1096'  stamp='0.575'>
+<phase name='parse_hir' stamp='0.575'>
+<bc code='182' bci='7'/>
+<klass id='1098' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1099' holder='1098' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.576'/>
+</phase>
+<parse_done stamp='0.576'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.576'>
+<phase_done name='optimize_blocks' stamp='0.576'/>
+</phase>
+<phase name='gvn' stamp='0.576'>
+<phase_done name='gvn' stamp='0.576'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.576'>
+<phase_done name='rangeCheckElimination' stamp='0.576'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.576'>
+<phase_done name='optimize_null_checks' stamp='0.576'/>
+</phase>
+<phase_done name='buildIR' stamp='0.576'/>
+</phase>
+<phase name='emit_lir' stamp='0.576'>
+<phase name='lirGeneration' stamp='0.576'>
+<phase_done name='lirGeneration' stamp='0.576'/>
+</phase>
+<phase name='linearScan' stamp='0.576'>
+<phase_done name='linearScan' stamp='0.576'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.576'/>
+</phase>
+<phase name='codeemit' stamp='0.576'>
+<phase_done name='codeemit' stamp='0.576'/>
+</phase>
+<phase name='codeinstall' stamp='0.576'>
+<phase_done name='codeinstall' stamp='0.576'/>
+</phase>
+<code_cache total_blobs='1483' nmethods='888' adapters='270' free_code_cache='246189824'/>
+<task_done success='1' nmsize='552' count='265' stamp='0.576'/>
+</task>
+<task compile_id='894' method='java.util.regex.Matcher end (I)I' bytes='67' count='384' iicount='384' level='3' stamp='0.577'>
+<phase name='setup' stamp='0.577'>
+<phase_done name='setup' stamp='0.577'/>
+</phase>
+<phase name='buildIR' stamp='0.577'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='end' return='975' arguments='975' flags='1' bytes='67' iicount='384'/>
+<parse method='1094'  stamp='0.577'>
+<phase name='parse_hir' stamp='0.577'>
+<bc code='183' bci='13'/>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.lang.IllegalStateException' unloaded='1'/>
+<method id='1098' holder='1096' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1098' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='23'/>
+<method id='1099' holder='1093' name='groupCount' return='975' flags='1' bytes='10' compile_id='848' compiler='c1' level='3' iicount='960'/>
+<call method='1099' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='183' bci='37'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1103' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='3569'/>
+<call method='1103' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='3'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1105' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='4018'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='182' bci='42'/>
+<method id='1108' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='6227'/>
+<call method='1108' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1108'>
+<bc code='183' bci='2'/>
+<method id='1110' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='781' compiler='c2' level='4' iicount='6206'/>
+<call method='1110' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='182' bci='46'/>
+<method id='1112' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='677'/>
+<call method='1112' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1112'>
+<bc code='183' bci='2'/>
+<method id='1114' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='677'/>
+<call method='1114' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='182' bci='49'/>
+<method id='1116' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='3925'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1116'>
+<bc code='182' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1118' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='9283'/>
+<call method='1118' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1118'>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='184' bci='16'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1121' name='java.lang.StringLatin1' flags='16'/>
+<method id='1122' holder='1121' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='6671'/>
+<call method='1122' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='184' bci='9'/>
+<klass id='1124' name='java.util.Arrays' flags='1'/>
+<method id='1125' holder='1124' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='757' compiler='c2' level='4' iicount='5175'/>
+<call method='1125' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='13'/>
+<type id='973' name='byte'/>
+<method id='1127' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='8336'/>
+<call method='1127' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1129' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='49288'/>
+<call method='1129' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1129'>
+<parse_done stamp='0.577'/>
+</parse>
+<parse_done stamp='0.577'/>
+</parse>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='184' bci='31'/>
+<klass id='1131' name='java.lang.StringUTF16' flags='16'/>
+<method id='1132' holder='1131' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='50' iicount='1'/>
+<call method='1132' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.577'/>
+</parse>
+<bc code='183' bci='52'/>
+<klass id='1102' name='java.lang.IndexOutOfBoundsException' unloaded='1'/>
+<method id='1134' holder='1102' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1134' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.577'/>
+</phase>
+<parse_done stamp='0.577'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.577'>
+<phase_done name='optimize_blocks' stamp='0.577'/>
+</phase>
+<phase name='gvn' stamp='0.577'>
+<phase_done name='gvn' stamp='0.577'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.577'>
+<phase_done name='rangeCheckElimination' stamp='0.577'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.577'>
+<phase_done name='optimize_null_checks' stamp='0.577'/>
+</phase>
+<phase_done name='buildIR' stamp='0.577'/>
+</phase>
+<phase name='emit_lir' stamp='0.577'>
+<phase name='lirGeneration' stamp='0.577'>
+<phase_done name='lirGeneration' stamp='0.577'/>
+</phase>
+<phase name='linearScan' stamp='0.577'>
+<phase_done name='linearScan' stamp='0.577'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.577'/>
+</phase>
+<phase name='codeemit' stamp='0.577'>
+<phase_done name='codeemit' stamp='0.578'/>
+</phase>
+<phase name='codeinstall' stamp='0.578'>
+<phase_done name='codeinstall' stamp='0.578'/>
+</phase>
+<code_cache total_blobs='1490' nmethods='893' adapters='270' free_code_cache='246177920'/>
+<task_done success='1' nmsize='3208' count='424' inlined_bytes='120' stamp='0.578'/>
+</task>
+<task compile_id='900' method='java.util.regex.Pattern lambda$clazz$1 (Ljava/util/regex/Pattern$BitClass;I)Z' bytes='22' count='258' iicount='258' level='3' stamp='0.580'>
+<phase name='setup' stamp='0.580'>
+<phase_done name='setup' stamp='0.580'/>
+</phase>
+<phase name='buildIR' stamp='0.580'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Pattern$BitClass' flags='24'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Pattern' flags='17'/>
+<method id='1095' holder='1093' name='lambda$clazz$1' return='969' arguments='1094 975' flags='4106' bytes='22' iicount='258'/>
+<parse method='1095'  stamp='0.580'>
+<phase name='parse_hir' stamp='0.580'>
+<phase_done name='parse_hir' stamp='0.580'/>
+</phase>
+<parse_done stamp='0.580'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.580'>
+<phase_done name='optimize_blocks' stamp='0.580'/>
+</phase>
+<phase name='gvn' stamp='0.580'>
+<phase_done name='gvn' stamp='0.580'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.580'>
+<phase_done name='rangeCheckElimination' stamp='0.580'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.580'>
+<phase_done name='optimize_null_checks' stamp='0.580'/>
+</phase>
+<phase_done name='buildIR' stamp='0.580'/>
+</phase>
+<phase name='emit_lir' stamp='0.580'>
+<phase name='lirGeneration' stamp='0.580'>
+<phase_done name='lirGeneration' stamp='0.580'/>
+</phase>
+<phase name='linearScan' stamp='0.580'>
+<phase_done name='linearScan' stamp='0.580'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.580'/>
+</phase>
+<phase name='codeemit' stamp='0.580'>
+<phase_done name='codeemit' stamp='0.580'/>
+</phase>
+<phase name='codeinstall' stamp='0.580'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1496' nmethods='897' adapters='270' free_code_cache='246173440'/>
+<task_done success='1' nmsize='496' count='260' stamp='0.581'/>
+</task>
+<task compile_id='903' method='java.util.Formatter$Conversion isGeneral (C)Z' bytes='64' count='260' iicount='260' level='3' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1094' holder='1093' name='isGeneral' return='969' arguments='970' flags='8' bytes='64' iicount='260'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1500' nmethods='901' adapters='270' free_code_cache='246165760'/>
+<task_done success='1' nmsize='368' count='264' stamp='0.581'/>
+</task>
+<task compile_id='907' method='com.sun.hotspot.tools.compiler.CallSite getTimeStamp ()D' bytes='5' count='131' iicount='131' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<type id='972' name='double'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1094' holder='1093' name='getTimeStamp' return='972' flags='1' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1505' nmethods='906' adapters='270' free_code_cache='246161664'/>
+<task_done success='1' nmsize='272' count='134' stamp='0.581'/>
+</task>
+<task compile_id='912' method='jdk.internal.math.FormattedFloatingDecimal getMantissa ()[C' bytes='5' count='134' iicount='134' level='1' stamp='0.581'>
+<phase name='setup' stamp='0.581'>
+<phase_done name='setup' stamp='0.581'/>
+</phase>
+<phase name='buildIR' stamp='0.581'>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='jdk.internal.math.FormattedFloatingDecimal' flags='1'/>
+<method id='1094' holder='1093' name='getMantissa' return='1082' flags='1' bytes='5' iicount='134'/>
+<parse method='1094'  stamp='0.581'>
+<phase name='parse_hir' stamp='0.581'>
+<phase_done name='parse_hir' stamp='0.581'/>
+</phase>
+<parse_done stamp='0.581'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.581'>
+<phase_done name='optimize_blocks' stamp='0.581'/>
+</phase>
+<phase name='gvn' stamp='0.581'>
+<phase_done name='gvn' stamp='0.581'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.581'>
+<phase_done name='rangeCheckElimination' stamp='0.581'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.581'>
+<phase_done name='optimize_null_checks' stamp='0.581'/>
+</phase>
+<phase_done name='buildIR' stamp='0.581'/>
+</phase>
+<phase name='emit_lir' stamp='0.581'>
+<phase name='lirGeneration' stamp='0.581'>
+<phase_done name='lirGeneration' stamp='0.581'/>
+</phase>
+<phase name='linearScan' stamp='0.581'>
+<phase_done name='linearScan' stamp='0.581'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.581'/>
+</phase>
+<phase name='codeemit' stamp='0.581'>
+<phase_done name='codeemit' stamp='0.581'/>
+</phase>
+<phase name='codeinstall' stamp='0.581'>
+<phase_done name='codeinstall' stamp='0.581'/>
+</phase>
+<code_cache total_blobs='1509' nmethods='910' adapters='270' free_code_cache='246158592'/>
+<task_done success='1' nmsize='272' count='136' stamp='0.581'/>
+</task>
+<task compile_id='916' method='java.lang.Double isNaN (D)Z' bytes='12' count='261' iicount='261' level='3' stamp='0.582'>
+<phase name='setup' stamp='0.582'>
+<phase_done name='setup' stamp='0.582'/>
+</phase>
+<phase name='buildIR' stamp='0.582'>
+<type id='969' name='boolean'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='isNaN' return='969' arguments='972' flags='9' bytes='12' iicount='261'/>
+<parse method='1093'  stamp='0.582'>
+<phase name='parse_hir' stamp='0.582'>
+<phase_done name='parse_hir' stamp='0.582'/>
+</phase>
+<parse_done stamp='0.582'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.582'>
+<phase_done name='optimize_blocks' stamp='0.582'/>
+</phase>
+<phase name='gvn' stamp='0.582'>
+<phase_done name='gvn' stamp='0.582'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.582'>
+<phase_done name='rangeCheckElimination' stamp='0.582'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.582'>
+<phase_done name='optimize_null_checks' stamp='0.582'/>
+</phase>
+<phase_done name='buildIR' stamp='0.582'/>
+</phase>
+<phase name='emit_lir' stamp='0.582'>
+<phase name='lirGeneration' stamp='0.582'>
+<phase_done name='lirGeneration' stamp='0.582'/>
+</phase>
+<phase name='linearScan' stamp='0.582'>
+<phase_done name='linearScan' stamp='0.582'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.582'/>
+</phase>
+<phase name='codeemit' stamp='0.582'>
+<phase_done name='codeemit' stamp='0.582'/>
+</phase>
+<phase name='codeinstall' stamp='0.582'>
+<phase_done name='codeinstall' stamp='0.582'/>
+</phase>
+<code_cache total_blobs='1513' nmethods='914' adapters='270' free_code_cache='246154880'/>
+<task_done success='1' nmsize='432' count='267' stamp='0.582'/>
+</task>
+<task compile_id='924' method='java.io.BufferedWriter newLine ()V' bytes='8' count='257' iicount='257' level='3' stamp='0.586'>
+<phase name='setup' stamp='0.586'>
+<phase_done name='setup' stamp='0.586'/>
+</phase>
+<phase name='buildIR' stamp='0.586'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.BufferedWriter' flags='1'/>
+<method id='1094' holder='1093' name='newLine' return='977' flags='1' bytes='8' iicount='257'/>
+<parse method='1094'  stamp='0.586'>
+<phase name='parse_hir' stamp='0.586'>
+<bc code='184' bci='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1096' holder='988' name='lineSeparator' return='983' flags='9' bytes='4' compile_id='922' compiler='c1' level='3' iicount='259'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='4'/>
+<klass id='1099' name='java.io.Writer' flags='1025'/>
+<method id='1100' holder='1099' name='write' return='977' arguments='983' flags='1' bytes='11' compile_id='839' compiler='c1' level='3' iicount='1941'/>
+<call method='1100' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1100'>
+<bc code='182' bci='4'/>
+<type id='975' name='int'/>
+<method id='1102' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='43370'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1102'>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1104' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='68866'/>
+<call method='1104' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<parse_done stamp='0.586'/>
+</parse>
+<parse_done stamp='0.586'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1107' holder='1099' name='write' return='977' arguments='983 975 975' flags='1' bytes='79' iicount='1'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.586'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.586'/>
+</phase>
+<parse_done stamp='0.586'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.586'>
+<phase_done name='optimize_blocks' stamp='0.586'/>
+</phase>
+<phase name='gvn' stamp='0.586'>
+<phase_done name='gvn' stamp='0.586'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.586'>
+<phase_done name='rangeCheckElimination' stamp='0.586'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.586'>
+<phase_done name='optimize_null_checks' stamp='0.586'/>
+</phase>
+<phase_done name='buildIR' stamp='0.586'/>
+</phase>
+<phase name='emit_lir' stamp='0.586'>
+<phase name='lirGeneration' stamp='0.586'>
+<phase_done name='lirGeneration' stamp='0.586'/>
+</phase>
+<phase name='linearScan' stamp='0.586'>
+<phase_done name='linearScan' stamp='0.586'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.586'/>
+</phase>
+<phase name='codeemit' stamp='0.586'>
+<phase_done name='codeemit' stamp='0.586'/>
+</phase>
+<phase name='codeinstall' stamp='0.586'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.587'/>
+</phase>
+<code_cache total_blobs='1523' nmethods='920' adapters='270' free_code_cache='246143232'/>
+<task_done success='1' nmsize='1256' count='268' inlined_bytes='41' stamp='0.587'/>
+</task>
+<task compile_id='928' method='java.util.Formatter$Conversion isInteger (C)Z' bytes='48' count='388' iicount='388' level='3' stamp='0.587'>
+<phase name='setup' stamp='0.587'>
+<phase_done name='setup' stamp='0.587'/>
+</phase>
+<phase name='buildIR' stamp='0.587'>
+<type id='969' name='boolean'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1094' holder='1093' name='isInteger' return='969' arguments='970' flags='8' bytes='48' iicount='388'/>
+<parse method='1094'  stamp='0.587'>
+<phase name='parse_hir' stamp='0.587'>
+<phase_done name='parse_hir' stamp='0.587'/>
+</phase>
+<parse_done stamp='0.587'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.587'>
+<phase_done name='optimize_blocks' stamp='0.587'/>
+</phase>
+<phase name='gvn' stamp='0.587'>
+<phase_done name='gvn' stamp='0.587'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.587'>
+<phase_done name='rangeCheckElimination' stamp='0.587'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.587'>
+<phase_done name='optimize_null_checks' stamp='0.587'/>
+</phase>
+<phase_done name='buildIR' stamp='0.587'/>
+</phase>
+<phase name='emit_lir' stamp='0.587'>
+<phase name='lirGeneration' stamp='0.587'>
+<phase_done name='lirGeneration' stamp='0.587'/>
+</phase>
+<phase name='linearScan' stamp='0.587'>
+<phase_done name='linearScan' stamp='0.587'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.587'/>
+</phase>
+<phase name='codeemit' stamp='0.587'>
+<phase_done name='codeemit' stamp='0.587'/>
+</phase>
+<phase name='codeinstall' stamp='0.587'>
+<phase_done name='codeinstall' stamp='0.587'/>
+</phase>
+<code_cache total_blobs='1525' nmethods='922' adapters='270' free_code_cache='246140160'/>
+<task_done success='1' nmsize='368' count='394' stamp='0.587'/>
+</task>
+<task compile_id='930' method='java.util.Locale equals (Ljava/lang/Object;)Z' bytes='75' count='391' iicount='391' level='3' stamp='0.587'>
+<phase name='setup' stamp='0.587'>
+<phase_done name='setup' stamp='0.587'/>
+</phase>
+<phase name='buildIR' stamp='0.587'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Locale' flags='17'/>
+<method id='1094' holder='1093' name='equals' return='969' arguments='982' flags='1' bytes='75' iicount='391'/>
+<parse method='1094'  stamp='0.587'>
+<phase name='parse_hir' stamp='0.587'>
+<bc code='182' bci='29'/>
+<klass id='1096' name='sun.util.locale.BaseLocale' flags='17'/>
+<method id='1097' holder='1096' name='equals' return='969' arguments='982' flags='1' bytes='71' iicount='2'/>
+<call method='1097' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='71'/>
+<klass id='1099' name='sun.util.locale.LocaleExtensions' unloaded='1'/>
+<method id='1100' holder='1099' name='equals' return='969' arguments='982' unloaded='1'/>
+<call method='1100' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.587'/>
+</phase>
+<parse_done stamp='0.587'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.587'>
+<phase_done name='optimize_blocks' stamp='0.587'/>
+</phase>
+<phase name='gvn' stamp='0.587'>
+<phase_done name='gvn' stamp='0.587'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.587'>
+<phase_done name='rangeCheckElimination' stamp='0.587'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.587'>
+<phase_done name='optimize_null_checks' stamp='0.587'/>
+</phase>
+<phase_done name='buildIR' stamp='0.587'/>
+</phase>
+<phase name='emit_lir' stamp='0.587'>
+<phase name='lirGeneration' stamp='0.587'>
+<phase_done name='lirGeneration' stamp='0.587'/>
+</phase>
+<phase name='linearScan' stamp='0.587'>
+<phase_done name='linearScan' stamp='0.587'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.587'/>
+</phase>
+<phase name='codeemit' stamp='0.587'>
+<phase_done name='codeemit' stamp='0.587'/>
+</phase>
+<phase name='codeinstall' stamp='0.587'>
+<phase_done name='codeinstall' stamp='0.587'/>
+</phase>
+<code_cache total_blobs='1528' nmethods='925' adapters='270' free_code_cache='246130688'/>
+<task_done success='1' nmsize='1976' count='401' stamp='0.587'/>
+</task>
+<task compile_id='932' method='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer setSign (Z)V' bytes='6' count='130' iicount='130' level='1' stamp='0.591'>
+<phase name='setup' stamp='0.591'>
+<phase_done name='setup' stamp='0.591'/>
+</phase>
+<phase name='buildIR' stamp='0.591'>
+<type id='977' name='void'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$BinaryToASCIIBuffer' flags='8'/>
+<method id='1094' holder='1093' name='setSign' return='977' arguments='969' flags='2' bytes='6' iicount='130'/>
+<parse method='1094'  stamp='0.591'>
+<phase name='parse_hir' stamp='0.591'>
+<phase_done name='parse_hir' stamp='0.591'/>
+</phase>
+<parse_done stamp='0.591'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.591'>
+<phase_done name='optimize_blocks' stamp='0.591'/>
+</phase>
+<phase name='gvn' stamp='0.591'>
+<phase_done name='gvn' stamp='0.591'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.591'>
+<phase_done name='rangeCheckElimination' stamp='0.591'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.591'>
+<phase_done name='optimize_null_checks' stamp='0.591'/>
+</phase>
+<phase_done name='buildIR' stamp='0.591'/>
+</phase>
+<phase name='emit_lir' stamp='0.591'>
+<phase name='lirGeneration' stamp='0.591'>
+<phase_done name='lirGeneration' stamp='0.591'/>
+</phase>
+<phase name='linearScan' stamp='0.591'>
+<phase_done name='linearScan' stamp='0.591'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.591'/>
+</phase>
+<phase name='codeemit' stamp='0.591'>
+<phase_done name='codeemit' stamp='0.591'/>
+</phase>
+<phase name='codeinstall' stamp='0.591'>
+<phase_done name='codeinstall' stamp='0.591'/>
+</phase>
+<code_cache total_blobs='1535' nmethods='929' adapters='270' free_code_cache='246088832'/>
+<task_done success='1' nmsize='272' count='130' stamp='0.591'/>
+</task>
+<task compile_id='938' method='java.util.regex.Pattern lambda$Range$11 (III)Z' bytes='7' count='256' iicount='256' level='3' stamp='0.592'>
+<phase name='setup' stamp='0.592'>
+<phase_done name='setup' stamp='0.592'/>
+</phase>
+<phase name='buildIR' stamp='0.592'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Pattern' flags='17'/>
+<method id='1094' holder='1093' name='lambda$Range$11' return='969' arguments='975 975 975' flags='4106' bytes='7' iicount='256'/>
+<parse method='1094'  stamp='0.592'>
+<phase name='parse_hir' stamp='0.592'>
+<bc code='184' bci='3'/>
+<method id='1096' holder='1093' name='inRange' return='969' arguments='975 975 975' flags='10' bytes='16' iicount='256'/>
+<call method='1096' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1096'>
+<parse_done stamp='0.592'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.592'/>
+</phase>
+<parse_done stamp='0.592'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.592'>
+<phase_done name='optimize_blocks' stamp='0.592'/>
+</phase>
+<phase name='gvn' stamp='0.592'>
+<phase_done name='gvn' stamp='0.592'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.592'>
+<phase_done name='rangeCheckElimination' stamp='0.592'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.592'>
+<phase_done name='optimize_null_checks' stamp='0.592'/>
+</phase>
+<phase_done name='buildIR' stamp='0.592'/>
+</phase>
+<phase name='emit_lir' stamp='0.592'>
+<phase name='lirGeneration' stamp='0.592'>
+<phase_done name='lirGeneration' stamp='0.592'/>
+</phase>
+<phase name='linearScan' stamp='0.592'>
+<phase_done name='linearScan' stamp='0.592'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.592'/>
+</phase>
+<phase name='codeemit' stamp='0.592'>
+<phase_done name='codeemit' stamp='0.592'/>
+</phase>
+<phase name='codeinstall' stamp='0.592'>
+<phase_done name='codeinstall' stamp='0.592'/>
+</phase>
+<code_cache total_blobs='1546' nmethods='937' adapters='270' free_code_cache='246082048'/>
+<task_done success='1' nmsize='560' count='258' inlined_bytes='16' stamp='0.592'/>
+</task>
+<task compile_id='941' method='java.util.Formatter$FormatSpecifier &lt;init&gt; (Ljava/util/Formatter;Ljava/lang/String;Ljava/util/regex/Matcher;)V' bytes='259' count='258' iicount='258' level='3' stamp='0.593'>
+<phase name='setup' stamp='0.593'>
+<phase_done name='setup' stamp='0.593'/>
+</phase>
+<phase name='buildIR' stamp='0.593'>
+<type id='977' name='void'/>
+<klass id='1094' name='java.util.Formatter' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='java.util.regex.Matcher' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1096' holder='1093' name='&lt;init&gt;' return='977' arguments='1094 983 1095' flags='0' bytes='259' iicount='258'/>
+<parse method='1096'  stamp='0.593'>
+<phase name='parse_hir' stamp='0.593'>
+<bc code='183' bci='6'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1098' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='53485'/>
+<call method='1098' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1098'>
+<bc code='177' bci='0'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='30'/>
+<type id='975' name='int'/>
+<method id='1103' holder='1095' name='start' return='975' arguments='975' flags='1' bytes='65' compile_id='882' compiler='c1' level='3' iicount='1560'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='35'/>
+<method id='1105' holder='1095' name='end' return='975' arguments='975' flags='1' bytes='67' compile_id='894' compiler='c1' level='3' iicount='1040'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='38'/>
+<method id='1107' holder='1093' name='index' return='975' arguments='983 975 975' flags='2' bytes='50' iicount='260'/>
+<call method='1107' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='46'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='51'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='54'/>
+<klass id='1100' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1109' holder='1093' name='flags' return='1100' arguments='983 975 975' flags='2' bytes='33' iicount='260'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='184' bci='4'/>
+<method id='1111' holder='1100' name='parse' return='1100' arguments='983 975 975' flags='9' bytes='70' iicount='260'/>
+<call method='1111' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='17'/>
+<type id='969' name='boolean'/>
+<method id='1114' holder='1100' name='contains' return='969' arguments='1100' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='2343'/>
+<call method='1114' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1114'>
+<bc code='182' bci='5'/>
+<method id='1116' holder='1100' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1116'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1116'>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='62'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='67'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='70'/>
+<method id='1118' holder='1093' name='width' return='975' arguments='983 975 975' flags='2' bytes='64' iicount='262'/>
+<call method='1118' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='78'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='83'/>
+<call method='1105' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='86'/>
+<method id='1120' holder='1093' name='precision' return='975' arguments='983 975 975' flags='2' bytes='66' iicount='262'/>
+<call method='1120' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='92'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='110'/>
+<type id='970' name='char'/>
+<method id='1122' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='95072'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='183' bci='1'/>
+<method id='1124' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='117300'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1127' name='java.lang.StringLatin1' flags='16'/>
+<method id='1128' holder='1127' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='93752'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='15'/>
+<klass id='1130' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<method id='1131' holder='1130' name='&lt;init&gt;' return='977' arguments='975' unloaded='1'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='21'/>
+<klass id='1132' name='java.lang.StringUTF16' flags='16'/>
+<method id='1133' holder='1132' name='charAt' return='970' arguments='1085 975' flags='9' bytes='11' iicount='1'/>
+<call method='1133' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='184' bci='2'/>
+<method id='1135' holder='1132' name='checkIndex' return='977' arguments='975 1085' flags='9' bytes='9' iicount='1'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='2'/>
+<method id='1137' holder='1132' name='length' return='975' arguments='1085' flags='9' bytes='5' iicount='1'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='5'/>
+<method id='1139' holder='983' name='checkIndex' return='977' arguments='975 975' flags='8' bytes='46' compile_id='833' compiler='c1' level='3' iicount='2408'/>
+<call method='1139' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='7'/>
+<method id='1141' holder='1132' name='getChar' return='970' arguments='1085 975' flags='8' bytes='60' compile_id='2' compiler='c1' level='3' iicount='512'/>
+<call method='1141' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='125'/>
+<method id='1143' holder='1100' name='access$100' return='1100' arguments='1100 1100' flags='4104' bytes='6' iicount='1'/>
+<call method='1143' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1143'>
+<bc code='183' bci='2'/>
+<method id='1145' holder='1100' name='add' return='1100' arguments='1100' flags='2' bytes='15' iicount='1'/>
+<call method='1145' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1145'>
+<bc code='182' bci='6'/>
+<call method='1116' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<parse method='1116'>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='182' bci='134'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='137'/>
+<call method='1122' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1122'>
+<bc code='183' bci='1'/>
+<call method='1124' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1124'>
+<parse_done stamp='0.593'/>
+</parse>
+<bc code='184' bci='12'/>
+<call method='1128' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1128'>
+<bc code='183' bci='15'/>
+<call method='1131' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='184' bci='21'/>
+<call method='1133' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1133'>
+<bc code='184' bci='2'/>
+<call method='1135' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1135'>
+<bc code='184' bci='2'/>
+<call method='1137' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1137'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='184' bci='5'/>
+<call method='1139' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='184' bci='7'/>
+<call method='1141' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<parse_done stamp='0.594'/>
+</parse>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='183' bci='140'/>
+<method id='1147' holder='1093' name='conversion' return='970' arguments='970' flags='2' bytes='90' iicount='270'/>
+<call method='1147' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='152'/>
+<method id='1149' holder='1093' name='checkDateTime' return='977' flags='2' bytes='139' iicount='1'/>
+<call method='1149' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='162'/>
+<klass id='1151' name='java.util.Formatter$Conversion' flags='10'/>
+<method id='1152' holder='1151' name='isGeneral' return='969' arguments='970' flags='8' bytes='64' compile_id='903' compiler='c1' level='3' iicount='540'/>
+<call method='1152' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='169'/>
+<method id='1154' holder='1093' name='checkGeneral' return='977' flags='2' bytes='114' iicount='3'/>
+<call method='1154' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='179'/>
+<method id='1156' holder='1151' name='isCharacter' return='969' arguments='970' flags='8' bytes='32' iicount='268'/>
+<call method='1156' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1156'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='183' bci='186'/>
+<method id='1158' holder='1093' name='checkCharacter' return='977' flags='2' bytes='99' iicount='1'/>
+<call method='1158' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='196'/>
+<method id='1160' holder='1151' name='isInteger' return='969' arguments='970' flags='8' bytes='48' compile_id='928' compiler='c1' level='3' iicount='538'/>
+<call method='1160' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='203'/>
+<method id='1162' holder='1093' name='checkInteger' return='977' flags='2' bytes='91' iicount='4'/>
+<call method='1162' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='213'/>
+<method id='1164' holder='1151' name='isFloat' return='969' arguments='970' flags='8' bytes='72' compile_id='929' compiler='c1' level='3' iicount='530'/>
+<call method='1164' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='220'/>
+<method id='1166' holder='1093' name='checkFloat' return='977' flags='2' bytes='98' iicount='265'/>
+<call method='1166' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='230'/>
+<method id='1168' holder='1151' name='isText' return='969' arguments='970' flags='8' bytes='32' iicount='272'/>
+<call method='1168' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1168'>
+<parse_done stamp='0.594'/>
+</parse>
+<bc code='183' bci='237'/>
+<method id='1170' holder='1093' name='checkText' return='977' flags='2' bytes='198' iicount='1'/>
+<call method='1170' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='251'/>
+<method id='1173' holder='983' name='valueOf' return='983' arguments='970' flags='9' bytes='39' compile_id='846' compiler='c1' level='3' iicount='1049'/>
+<call method='1173' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='254'/>
+<klass id='1172' name='java.util.UnknownFormatConversionException' unloaded='1'/>
+<method id='1175' holder='1172' name='&lt;init&gt;' return='977' arguments='983' unloaded='1'/>
+<call method='1175' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.594'/>
+</phase>
+<parse_done stamp='0.594'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.594'>
+<phase_done name='optimize_blocks' stamp='0.594'/>
+</phase>
+<phase name='gvn' stamp='0.594'>
+<phase_done name='gvn' stamp='0.594'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.594'>
+<phase_done name='rangeCheckElimination' stamp='0.594'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.594'>
+<phase_done name='optimize_null_checks' stamp='0.594'/>
+</phase>
+<phase_done name='buildIR' stamp='0.594'/>
+</phase>
+<phase name='emit_lir' stamp='0.594'>
+<phase name='lirGeneration' stamp='0.594'>
+<phase_done name='lirGeneration' stamp='0.594'/>
+</phase>
+<phase name='linearScan' stamp='0.594'>
+<phase_done name='linearScan' stamp='0.595'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.595'/>
+</phase>
+<phase name='codeemit' stamp='0.595'>
+<phase_done name='codeemit' stamp='0.595'/>
+</phase>
+<phase name='codeinstall' stamp='0.595'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<phase_done name='codeinstall' stamp='0.595'/>
+</phase>
+<code_cache total_blobs='1562' nmethods='950' adapters='270' free_code_cache='246045824'/>
+<task_done success='1' nmsize='7768' count='289' inlined_bytes='350' stamp='0.595'/>
+</task>
+<task compile_id='957' method='com.sun.hotspot.tools.compiler.Method getBytes ()Ljava/lang/String;' bytes='5' count='130' iicount='130' level='1' stamp='0.596'>
+<phase name='setup' stamp='0.596'>
+<phase_done name='setup' stamp='0.596'/>
+</phase>
+<phase name='buildIR' stamp='0.596'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1094' holder='1093' name='getBytes' return='983' flags='1' bytes='5' iicount='131'/>
+<parse method='1094'  stamp='0.596'>
+<phase name='parse_hir' stamp='0.596'>
+<phase_done name='parse_hir' stamp='0.596'/>
+</phase>
+<parse_done stamp='0.596'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.596'>
+<phase_done name='optimize_blocks' stamp='0.596'/>
+</phase>
+<phase name='gvn' stamp='0.597'>
+<phase_done name='gvn' stamp='0.597'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.597'>
+<phase_done name='rangeCheckElimination' stamp='0.597'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.597'>
+<phase_done name='optimize_null_checks' stamp='0.597'/>
+</phase>
+<phase_done name='buildIR' stamp='0.597'/>
+</phase>
+<phase name='emit_lir' stamp='0.597'>
+<phase name='lirGeneration' stamp='0.597'>
+<phase_done name='lirGeneration' stamp='0.597'/>
+</phase>
+<phase name='linearScan' stamp='0.597'>
+<phase_done name='linearScan' stamp='0.597'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.597'/>
+</phase>
+<phase name='codeemit' stamp='0.597'>
+<phase_done name='codeemit' stamp='0.597'/>
+</phase>
+<phase name='codeinstall' stamp='0.597'>
+<phase_done name='codeinstall' stamp='0.597'/>
+</phase>
+<code_cache total_blobs='1566' nmethods='953' adapters='270' free_code_cache='246048512'/>
+<task_done success='1' nmsize='272' count='133' stamp='0.597'/>
+</task>
+<task compile_id='958' method='com.sun.hotspot.tools.compiler.Compilation getFailureReason ()Ljava/lang/String;' bytes='5' count='134' iicount='135' level='1' stamp='0.597'>
+<phase name='setup' stamp='0.597'>
+<phase_done name='setup' stamp='0.597'/>
+</phase>
+<phase name='buildIR' stamp='0.597'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<method id='1094' holder='1093' name='getFailureReason' return='983' flags='1' bytes='5' iicount='135'/>
+<parse method='1094'  stamp='0.597'>
+<phase name='parse_hir' stamp='0.597'>
+<phase_done name='parse_hir' stamp='0.597'/>
+</phase>
+<parse_done stamp='0.597'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.597'>
+<phase_done name='optimize_blocks' stamp='0.597'/>
+</phase>
+<phase name='gvn' stamp='0.597'>
+<phase_done name='gvn' stamp='0.597'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.597'>
+<phase_done name='rangeCheckElimination' stamp='0.597'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.597'>
+<phase_done name='optimize_null_checks' stamp='0.597'/>
+</phase>
+<phase_done name='buildIR' stamp='0.597'/>
+</phase>
+<phase name='emit_lir' stamp='0.597'>
+<phase name='lirGeneration' stamp='0.597'>
+<phase_done name='lirGeneration' stamp='0.597'/>
+</phase>
+<phase name='linearScan' stamp='0.597'>
+<phase_done name='linearScan' stamp='0.597'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.597'/>
+</phase>
+<phase name='codeemit' stamp='0.597'>
+<phase_done name='codeemit' stamp='0.597'/>
+</phase>
+<phase name='codeinstall' stamp='0.597'>
+<phase_done name='codeinstall' stamp='0.597'/>
+</phase>
+<code_cache total_blobs='1568' nmethods='955' adapters='270' free_code_cache='246046720'/>
+<task_done success='1' nmsize='272' count='137' stamp='0.597'/>
+</task>
+<task compile_id='965' method='java.lang.Character isUpperCase (I)Z' bytes='25' count='384' iicount='384' level='3' stamp='0.603'>
+<phase name='setup' stamp='0.603'>
+<phase_done name='setup' stamp='0.603'/>
+</phase>
+<phase name='buildIR' stamp='0.603'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1093' holder='1070' name='isUpperCase' return='969' arguments='975' flags='9' bytes='25' iicount='384'/>
+<parse method='1093'  stamp='0.603'>
+<phase name='parse_hir' stamp='0.603'>
+<bc code='184' bci='1'/>
+<method id='1095' holder='1070' name='getType' return='975' arguments='975' flags='9' bytes='9' compile_id='934' compiler='c1' level='3' iicount='388'/>
+<call method='1095' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1095'>
+<bc code='184' bci='1'/>
+<klass id='1098' name='java.lang.CharacterData' flags='1024'/>
+<method id='1099' holder='1098' name='of' return='1098' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='5'/>
+<method id='1101' holder='1098' name='getType' return='975' arguments='975' flags='1024' bytes='0' iicount='1'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.603'/>
+</parse>
+<bc code='184' bci='9'/>
+<call method='1099' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='13'/>
+<method id='1102' holder='1098' name='isOtherUppercase' return='969' arguments='975' flags='0' bytes='2' iicount='1'/>
+<call method='1102' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<phase_done name='parse_hir' stamp='0.603'/>
+</phase>
+<parse_done stamp='0.603'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.603'>
+<phase_done name='optimize_blocks' stamp='0.603'/>
+</phase>
+<phase name='gvn' stamp='0.603'>
+<phase_done name='gvn' stamp='0.603'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.603'>
+<phase_done name='rangeCheckElimination' stamp='0.603'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.603'>
+<phase_done name='optimize_null_checks' stamp='0.603'/>
+</phase>
+<phase_done name='buildIR' stamp='0.603'/>
+</phase>
+<phase name='emit_lir' stamp='0.603'>
+<phase name='lirGeneration' stamp='0.603'>
+<phase_done name='lirGeneration' stamp='0.603'/>
+</phase>
+<phase name='linearScan' stamp='0.603'>
+<phase_done name='linearScan' stamp='0.604'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.604'/>
+</phase>
+<phase name='codeemit' stamp='0.604'>
+<phase_done name='codeemit' stamp='0.604'/>
+</phase>
+<phase name='codeinstall' stamp='0.604'>
+<phase_done name='codeinstall' stamp='0.604'/>
+</phase>
+<code_cache total_blobs='1581' nmethods='962' adapters='270' free_code_cache='246027008'/>
+<task_done success='1' nmsize='1048' count='388' inlined_bytes='9' stamp='0.604'/>
+</task>
+<task compile_id='966' method='java.lang.CharacterDataLatin1 isOtherUppercase (I)Z' bytes='18' count='389' iicount='389' level='3' stamp='0.604'>
+<phase name='setup' stamp='0.604'>
+<phase_done name='setup' stamp='0.604'/>
+</phase>
+<phase name='buildIR' stamp='0.604'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='isOtherUppercase' return='969' arguments='975' flags='0' bytes='18' iicount='389'/>
+<parse method='1094'  stamp='0.604'>
+<phase name='parse_hir' stamp='0.604'>
+<bc code='182' bci='2'/>
+<method id='1096' holder='1093' name='getPropertiesEx' return='975' arguments='975' flags='0' bytes='11' iicount='390'/>
+<call method='1096' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1096'>
+<parse_done stamp='0.604'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.604'/>
+</phase>
+<parse_done stamp='0.604'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.604'>
+<phase_done name='optimize_blocks' stamp='0.604'/>
+</phase>
+<phase name='gvn' stamp='0.604'>
+<phase_done name='gvn' stamp='0.604'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.604'>
+<phase_done name='rangeCheckElimination' stamp='0.604'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.604'>
+<phase_done name='optimize_null_checks' stamp='0.604'/>
+</phase>
+<phase_done name='buildIR' stamp='0.604'/>
+</phase>
+<phase name='emit_lir' stamp='0.604'>
+<phase name='lirGeneration' stamp='0.604'>
+<phase_done name='lirGeneration' stamp='0.604'/>
+</phase>
+<phase name='linearScan' stamp='0.604'>
+<phase_done name='linearScan' stamp='0.604'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.604'/>
+</phase>
+<phase name='codeemit' stamp='0.604'>
+<phase_done name='codeemit' stamp='0.604'/>
+</phase>
+<phase name='codeinstall' stamp='0.604'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.604'/>
+</phase>
+<code_cache total_blobs='1582' nmethods='963' adapters='270' free_code_cache='246025728'/>
+<task_done success='1' nmsize='592' count='392' inlined_bytes='11' stamp='0.604'/>
+</task>
+<task compile_id='967' method='java.lang.CharacterDataLatin1 getPropertiesEx (I)I' bytes='11' count='393' iicount='393' level='3' stamp='0.604'>
+<phase name='setup' stamp='0.604'>
+<phase_done name='setup' stamp='0.604'/>
+</phase>
+<phase name='buildIR' stamp='0.604'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='getPropertiesEx' return='975' arguments='975' flags='0' bytes='11' iicount='393'/>
+<parse method='1094'  stamp='0.604'>
+<phase name='parse_hir' stamp='0.604'>
+<phase_done name='parse_hir' stamp='0.604'/>
+</phase>
+<parse_done stamp='0.604'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.604'>
+<phase_done name='optimize_blocks' stamp='0.604'/>
+</phase>
+<phase name='gvn' stamp='0.604'>
+<phase_done name='gvn' stamp='0.604'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.604'>
+<phase_done name='rangeCheckElimination' stamp='0.604'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.604'>
+<phase_done name='optimize_null_checks' stamp='0.604'/>
+</phase>
+<phase_done name='buildIR' stamp='0.604'/>
+</phase>
+<phase name='emit_lir' stamp='0.604'>
+<phase name='lirGeneration' stamp='0.604'>
+<phase_done name='lirGeneration' stamp='0.604'/>
+</phase>
+<phase name='linearScan' stamp='0.604'>
+<phase_done name='linearScan' stamp='0.604'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.604'/>
+</phase>
+<phase name='codeemit' stamp='0.604'>
+<phase_done name='codeemit' stamp='0.604'/>
+</phase>
+<phase name='codeinstall' stamp='0.604'>
+<phase_done name='codeinstall' stamp='0.604'/>
+</phase>
+<code_cache total_blobs='1583' nmethods='964' adapters='270' free_code_cache='246024704'/>
+<task_done success='1' nmsize='400' count='395' stamp='0.604'/>
+</task>
+<task compile_id='968' method='java.util.Formatter$FixedString print (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='26' count='395' iicount='395' level='3' stamp='0.604'>
+<phase name='setup' stamp='0.604'>
+<phase_done name='setup' stamp='0.604'/>
+</phase>
+<phase name='buildIR' stamp='0.604'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FixedString' flags='2'/>
+<method id='1095' holder='1093' name='print' return='977' arguments='982 1094' flags='1' bytes='26' iicount='395'/>
+<parse method='1095'  stamp='0.604'>
+<phase name='parse_hir' stamp='0.604'>
+<bc code='184' bci='4'/>
+<klass id='1098' name='java.lang.Appendable' flags='1537'/>
+<klass id='1097' name='java.util.Formatter' flags='17'/>
+<method id='1099' holder='1097' name='access$000' return='1098' arguments='1097' flags='4104' bytes='5' compile_id='883' compiler='c1' level='1' iicount='142'/>
+<call method='1099' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1099'>
+<parse_done stamp='0.604'/>
+</parse>
+<bc code='185' bci='19'/>
+<klass id='1101' name='java.lang.CharSequence' flags='1537'/>
+<type id='975' name='int'/>
+<method id='1102' holder='1098' name='append' return='1098' arguments='1101 975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<phase_done name='parse_hir' stamp='0.604'/>
+</phase>
+<parse_done stamp='0.604'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.604'>
+<phase_done name='optimize_blocks' stamp='0.604'/>
+</phase>
+<phase name='gvn' stamp='0.604'>
+<phase_done name='gvn' stamp='0.604'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.604'>
+<phase_done name='rangeCheckElimination' stamp='0.604'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.604'>
+<phase_done name='optimize_null_checks' stamp='0.604'/>
+</phase>
+<phase_done name='buildIR' stamp='0.604'/>
+</phase>
+<phase name='emit_lir' stamp='0.604'>
+<phase name='lirGeneration' stamp='0.604'>
+<phase_done name='lirGeneration' stamp='0.604'/>
+</phase>
+<phase name='linearScan' stamp='0.604'>
+<phase_done name='linearScan' stamp='0.604'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.604'/>
+</phase>
+<phase name='codeemit' stamp='0.604'>
+<phase_done name='codeemit' stamp='0.605'/>
+</phase>
+<phase name='codeinstall' stamp='0.605'>
+<phase_done name='codeinstall' stamp='0.605'/>
+</phase>
+<code_cache total_blobs='1584' nmethods='965' adapters='270' free_code_cache='246023424'/>
+<task_done success='1' nmsize='584' count='397' inlined_bytes='5' stamp='0.605'/>
+</task>
+<task compile_id='969' method='java.io.PrintStream append (Ljava/lang/CharSequence;II)Ljava/lang/Appendable;' bytes='8' count='397' iicount='397' level='3' stamp='0.605'>
+<phase name='setup' stamp='0.605'>
+<phase_done name='setup' stamp='0.605'/>
+</phase>
+<phase name='buildIR' stamp='0.605'>
+<klass id='1095' name='java.lang.Appendable' flags='1537'/>
+<klass id='1094' name='java.lang.CharSequence' flags='1537'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1096' holder='1093' name='append' return='1095' arguments='1094 975 975' flags='4161' bytes='8' iicount='397'/>
+<parse method='1096'  stamp='0.605'>
+<phase name='parse_hir' stamp='0.605'>
+<bc code='182' bci='4'/>
+<method id='1098' holder='1093' name='append' return='1093' arguments='1094 975 975' flags='1' bytes='20' iicount='398'/>
+<call method='1098' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1098'>
+<bc code='185' bci='11'/>
+<method id='1101' holder='1094' name='subSequence' return='1094' arguments='975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' instr='invokeinterface'/>
+<inline_fail reason='no static binding'/>
+<bc code='182' bci='16'/>
+<method id='1102' holder='1093' name='append' return='1093' arguments='1094' flags='1' bytes='10' compile_id='925' compiler='c1' level='3' iicount='799'/>
+<call method='1102' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1102'>
+<bc code='184' bci='2'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1104' holder='983' name='valueOf' return='983' arguments='982' flags='9' bytes='14' compile_id='854' compiler='c1' level='3' iicount='2957'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='10'/>
+<method id='1106' holder='982' name='toString' return='983' flags='1' bytes='36' iicount='1'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='182' bci='5'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1093' name='print' return='977' arguments='983' flags='1' bytes='9' compile_id='884' compiler='c1' level='3' iicount='2151'/>
+<call method='1107' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<parse method='1107'>
+<bc code='184' bci='2'/>
+<call method='1104' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1104'>
+<bc code='182' bci='10'/>
+<call method='1106' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<parse_done stamp='0.605'/>
+</parse>
+<bc code='183' bci='5'/>
+<method id='1109' holder='1093' name='write' return='977' arguments='983' flags='2' bytes='83' compile_id='850' compiler='c1' level='3' iicount='3544'/>
+<call method='1109' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<parse_done stamp='0.605'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.605'/>
+</phase>
+<parse_done stamp='0.605'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.605'>
+<phase_done name='optimize_blocks' stamp='0.605'/>
+</phase>
+<phase name='gvn' stamp='0.605'>
+<phase_done name='gvn' stamp='0.605'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.605'>
+<phase_done name='rangeCheckElimination' stamp='0.605'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.605'>
+<phase_done name='optimize_null_checks' stamp='0.605'/>
+</phase>
+<phase_done name='buildIR' stamp='0.605'/>
+</phase>
+<phase name='emit_lir' stamp='0.605'>
+<phase name='lirGeneration' stamp='0.605'>
+<phase_done name='lirGeneration' stamp='0.605'/>
+</phase>
+<phase name='linearScan' stamp='0.605'>
+<phase_done name='linearScan' stamp='0.605'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.605'/>
+</phase>
+<phase name='codeemit' stamp='0.605'>
+<phase_done name='codeemit' stamp='0.605'/>
+</phase>
+<phase name='codeinstall' stamp='0.606'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.606'/>
+</phase>
+<code_cache total_blobs='1587' nmethods='968' adapters='270' free_code_cache='245974528'/>
+<task_done success='1' nmsize='1784' count='403' inlined_bytes='67' stamp='0.606'/>
+</task>
+<task compile_id='977' method='java.util.Formatter$FormatSpecifier leadingSign (Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;' bytes='82' count='396' iicount='396' level='3' stamp='0.606'>
+<phase name='setup' stamp='0.606'>
+<phase_done name='setup' stamp='0.606'/>
+</phase>
+<phase name='buildIR' stamp='0.606'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1094' holder='1093' name='leadingSign' return='1050' arguments='1050 969' flags='2' bytes='82' iicount='396'/>
+<parse method='1094'  stamp='0.606'>
+<phase name='parse_hir' stamp='0.606'>
+<bc code='182' bci='11'/>
+<klass id='1096' name='java.util.Formatter$Flags' flags='10'/>
+<method id='1099' holder='1096' name='contains' return='969' arguments='1096' flags='1' bytes='22' compile_id='851' compiler='c1' level='3' iicount='3641'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1099'>
+<bc code='182' bci='5'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1096' name='valueOf' return='975' flags='1' bytes='5' compile_id='817' compiler='c1' level='1' iicount='162'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='20'/>
+<type id='970' name='char'/>
+<method id='1103' holder='1050' name='append' return='1050' arguments='970' flags='1' bytes='8' compile_id='221' compiler='c1' level='3' iicount='5780'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1105' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='5788'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='34'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1099'>
+<bc code='182' bci='5'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='43'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='57'/>
+<call method='1099' instr='invokevirtual'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1099'>
+<bc code='182' bci='5'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1101' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<dependency type='leaf_type' ctxk='1096'/>
+<parse method='1101'>
+<parse_done stamp='0.606'/>
+</parse>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='66'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<bc code='182' bci='76'/>
+<call method='1103' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1103'>
+<bc code='183' bci='2'/>
+<call method='1105' instr='invokespecial'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.606'/>
+</parse>
+<phase_done name='parse_hir' stamp='0.606'/>
+</phase>
+<parse_done stamp='0.606'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.606'>
+<phase_done name='optimize_blocks' stamp='0.606'/>
+</phase>
+<phase name='gvn' stamp='0.606'>
+<phase_done name='gvn' stamp='0.606'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.606'>
+<phase_done name='rangeCheckElimination' stamp='0.606'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.606'>
+<phase_done name='optimize_null_checks' stamp='0.606'/>
+</phase>
+<phase_done name='buildIR' stamp='0.606'/>
+</phase>
+<phase name='emit_lir' stamp='0.606'>
+<phase name='lirGeneration' stamp='0.606'>
+<phase_done name='lirGeneration' stamp='0.606'/>
+</phase>
+<phase name='linearScan' stamp='0.606'>
+<phase_done name='linearScan' stamp='0.606'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.606'/>
+</phase>
+<phase name='codeemit' stamp='0.606'>
+<phase_done name='codeemit' stamp='0.606'/>
+</phase>
+<phase name='codeinstall' stamp='0.606'>
+<dependency type='leaf_type' ctxk='1096'/>
+<phase_done name='codeinstall' stamp='0.607'/>
+</phase>
+<code_cache total_blobs='1593' nmethods='972' adapters='270' free_code_cache='245950592'/>
+<task_done success='1' nmsize='2616' count='411' inlined_bytes='128' stamp='0.607'/>
+</task>
+<task compile_id='971' method='java.util.Formatter$FormatSpecifier print (Ljava/lang/Object;Ljava/util/Locale;)V' bytes='243' count='421' iicount='421' level='3' stamp='0.607'>
+<phase name='setup' stamp='0.607'>
+<phase_done name='setup' stamp='0.607'/>
+</phase>
+<phase name='buildIR' stamp='0.607'>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1094' name='java.util.Locale' flags='17'/>
+<klass id='1093' name='java.util.Formatter$FormatSpecifier' flags='2'/>
+<method id='1095' holder='1093' name='print' return='977' arguments='982 1094' flags='1' bytes='243' iicount='421'/>
+<parse method='1095'  stamp='0.607'>
+<phase name='parse_hir' stamp='0.607'>
+<bc code='183' bci='10'/>
+<method id='1097' holder='1093' name='printDateTime' return='977' arguments='982 1094' flags='2' bytes='149' iicount='1'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='214'/>
+<klass id='1100' name='java.lang.Appendable' flags='1537'/>
+<klass id='1099' name='java.util.Formatter' flags='17'/>
+<method id='1101' holder='1099' name='access$000' return='1100' arguments='1099' flags='4104' bytes='5' compile_id='883' compiler='c1' level='1' iicount='142'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='185' bci='219'/>
+<type id='970' name='char'/>
+<method id='1103' holder='1100' name='append' return='1100' arguments='970' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='168'/>
+<method id='1104' holder='1093' name='printBoolean' return='977' arguments='982' flags='2' bytes='40' iicount='1'/>
+<call method='1104' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='160'/>
+<method id='1106' holder='1093' name='printCharacter' return='977' arguments='982' flags='2' bytes='193' iicount='1'/>
+<call method='1106' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='152'/>
+<method id='1108' holder='1093' name='printFloat' return='977' arguments='982 1094' flags='2' bytes='86' iicount='410'/>
+<call method='1108' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='185'/>
+<method id='1110' holder='1093' name='printHashCode' return='977' arguments='982' flags='2' bytes='23' iicount='1'/>
+<call method='1110' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1110'>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1113' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1113' instr='invokevirtual'/>
+<inline_fail reason='no static binding'/>
+<bc code='184' bci='13'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1114' holder='1076' name='toHexString' return='983' arguments='975' flags='9' bytes='6' iicount='1'/>
+<call method='1114' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1114'>
+<bc code='184' bci='2'/>
+<method id='1116' holder='1076' name='toUnsignedString0' return='983' arguments='975 975' flags='10' bytes='78' iicount='1'/>
+<call method='1116' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='183' bci='19'/>
+<method id='1118' holder='1093' name='print' return='977' arguments='983' flags='2' bytes='67' iicount='8'/>
+<call method='1118' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='184' bci='195'/>
+<call method='1101' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1101'>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='184' bci='198'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1120' holder='988' name='lineSeparator' return='983' flags='9' bytes='4' compile_id='922' compiler='c1' level='3' iicount='610'/>
+<call method='1120' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1120'>
+<parse_done stamp='0.607'/>
+</parse>
+<bc code='185' bci='201'/>
+<klass id='1123' name='java.lang.CharSequence' flags='1537'/>
+<method id='1124' holder='1100' name='append' return='1100' arguments='1123' flags='1025' bytes='0' iicount='1'/>
+<call method='1124' instr='invokeinterface'/>
+<inline_fail reason='not inlineable'/>
+<bc code='183' bci='177'/>
+<method id='1125' holder='1093' name='printString' return='977' arguments='982 1094' flags='2' bytes='105' iicount='8'/>
+<call method='1125' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='143'/>
+<method id='1127' holder='1093' name='printInteger' return='977' arguments='982 1094' flags='2' bytes='130' iicount='8'/>
+<call method='1127' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.608'/>
+</phase>
+<parse_done stamp='0.608'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.608'>
+<phase_done name='optimize_blocks' stamp='0.608'/>
+</phase>
+<phase name='gvn' stamp='0.608'>
+<phase_done name='gvn' stamp='0.608'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.608'>
+<phase_done name='rangeCheckElimination' stamp='0.608'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.608'>
+<phase_done name='optimize_null_checks' stamp='0.608'/>
+</phase>
+<phase_done name='buildIR' stamp='0.608'/>
+</phase>
+<phase name='emit_lir' stamp='0.608'>
+<phase name='lirGeneration' stamp='0.608'>
+<phase_done name='lirGeneration' stamp='0.608'/>
+</phase>
+<phase name='linearScan' stamp='0.608'>
+<phase_done name='linearScan' stamp='0.608'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.608'/>
+</phase>
+<phase name='codeemit' stamp='0.608'>
+<phase_done name='codeemit' stamp='0.608'/>
+</phase>
+<phase name='codeinstall' stamp='0.608'>
+<dependency type='leaf_type' ctxk='1093'/>
+<phase_done name='codeinstall' stamp='0.608'/>
+</phase>
+<code_cache total_blobs='1600' nmethods='979' adapters='270' free_code_cache='245933440'/>
+<task_done success='1' nmsize='2280' count='439' inlined_bytes='43' stamp='0.608'/>
+</task>
+<task compile_id='995' method='java.io.PrintStream format (Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;' bytes='92' count='436' iicount='436' level='3' stamp='0.608'>
+<phase name='setup' stamp='0.608'>
+<phase_done name='setup' stamp='0.608'/>
+</phase>
+<phase name='buildIR' stamp='0.608'>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1095' holder='1093' name='format' return='1093' arguments='983 1094' flags='129' bytes='92' iicount='436'/>
+<parse method='1095'  stamp='0.608'>
+<phase name='parse_hir' stamp='0.608'>
+<bc code='183' bci='5'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='951' compiler='c2' level='4' iicount='8793'/>
+<call method='1097' instr='invokespecial'/>
+<dependency type='leaf_type' ctxk='1093'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1097'>
+<bc code='183' bci='13'/>
+<klass id='1101' name='java.io.IOException' flags='1'/>
+<method id='1103' holder='1101' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='6' iicount='1'/>
+<call method='1103' instr='invokespecial'/>
+<inline_fail reason='don&apos;t inline Throwable constructors'/>
+<parse_done stamp='0.608'/>
+</parse>
+<bc code='182' bci='19'/>
+<klass id='1106' name='java.util.Locale' flags='17'/>
+<klass id='1105' name='java.util.Formatter' flags='17'/>
+<method id='1107' holder='1105' name='locale' return='1106' flags='1' bytes='9' compile_id='926' compiler='c1' level='3' iicount='873'/>
+<call method='1107' instr='invokevirtual'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1107'>
+<bc code='183' bci='1'/>
+<method id='1109' holder='1105' name='ensureOpen' return='977' flags='2' bytes='16' compile_id='890' compiler='c1' level='3' iicount='1312'/>
+<call method='1109' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1109'>
+<bc code='183' bci='11'/>
+<klass id='1112' name='java.util.FormatterClosedException' unloaded='1'/>
+<method id='1113' holder='1112' name='&lt;init&gt;' return='977' unloaded='1'/>
+<call method='1113' instr='invokespecial'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.609'/>
+</parse>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='25'/>
+<klass id='1114' name='java.util.Locale$Category' flags='16409'/>
+<method id='1117' holder='1106' name='getDefault' return='1106' arguments='1114' flags='9' bytes='132' compile_id='898' compiler='c1' level='3' iicount='882'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='183' bci='37'/>
+<klass id='1111' name='java.lang.Appendable' flags='1537'/>
+<method id='1119' holder='1105' name='&lt;init&gt;' return='977' arguments='1111' flags='1' bytes='15' iicount='1'/>
+<call method='1119' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1119'>
+<bc code='184' bci='4'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='8'/>
+<method id='1121' holder='1105' name='nonNullAppendable' return='1111' arguments='1111' flags='26' bytes='14' iicount='1'/>
+<call method='1121' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1121'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='183' bci='11'/>
+<method id='1123' holder='1105' name='&lt;init&gt;' return='977' arguments='1106 1111' flags='2' bytes='23' iicount='1'/>
+<call method='1123' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1123'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1125' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='58669'/>
+<call method='1125' instr='invokespecial'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1125'>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='16'/>
+<type id='970' name='char'/>
+<method id='1127' holder='1105' name='getZero' return='970' arguments='1106' flags='10' bytes='27' iicount='1'/>
+<call method='1127' instr='invokestatic'/>
+<inline_success reason='receiver is statically known'/>
+<parse method='1127'>
+<bc code='182' bci='8'/>
+<type id='969' name='boolean'/>
+<method id='1131' holder='1106' name='equals' return='969' arguments='982' flags='1' bytes='75' compile_id='930' compiler='c1' level='3' iicount='883'/>
+<call method='1131' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='15'/>
+<klass id='1133' name='java.text.DecimalFormatSymbols' unloaded='1'/>
+<method id='1134' holder='1133' name='getInstance' return='1133' arguments='1106' unloaded='1'/>
+<call method='1134' instr='invokestatic'/>
+<inline_fail reason='not inlineable'/>
+<bc code='182' bci='20'/>
+<method id='1135' holder='1133' name='getZeroDigit' return='970' unloaded='1'/>
+<call method='1135' instr='invokevirtual'/>
+<inline_fail reason='not inlineable'/>
+<parse_done stamp='0.609'/>
+</parse>
+<parse_done stamp='0.609'/>
+</parse>
+<parse_done stamp='0.609'/>
+</parse>
+<bc code='184' bci='50'/>
+<call method='1117' instr='invokestatic'/>
+<inline_fail reason='callee is too large'/>
+<bc code='182' bci='55'/>
+<method id='1136' holder='1105' name='format' return='1105' arguments='1106 983 1094' flags='129' bytes='280' compile_id='974' compiler='c1' level='3' iicount='452'/>
+<call method='1136' instr='invokevirtual'/>
+<inline_fail reason='callee is too large'/>
+<bc code='184' bci='75'/>
+<klass id='1014' name='java.lang.Thread' flags='1'/>
+<method id='1142' holder='1014' name='currentThread' return='1014' flags='265' bytes='0' iicount='319'/>
+<call method='1142' instr='invokestatic'/>
+<inline_success reason='intrinsic'/>
+<bc code='182' bci='78'/>
+<method id='1144' holder='1014' name='interrupt' return='977' flags='1' bytes='56' iicount='1'/>
+<call method='1144' instr='invokevirtual'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1144'/>
+<inline_fail reason='callee is too large'/>
+<phase_done name='parse_hir' stamp='0.609'/>
+</phase>
+<parse_done stamp='0.609'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.609'>
+<phase_done name='optimize_blocks' stamp='0.609'/>
+</phase>
+<phase name='gvn' stamp='0.609'>
+<phase_done name='gvn' stamp='0.609'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.609'>
+<phase_done name='rangeCheckElimination' stamp='0.609'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.609'>
+<phase_done name='optimize_null_checks' stamp='0.609'/>
+</phase>
+<phase_done name='buildIR' stamp='0.609'/>
+</phase>
+<phase name='emit_lir' stamp='0.609'>
+<phase name='lirGeneration' stamp='0.609'>
+<phase_done name='lirGeneration' stamp='0.610'/>
+</phase>
+<phase name='linearScan' stamp='0.610'>
+<phase_done name='linearScan' stamp='0.610'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.610'/>
+</phase>
+<phase name='codeemit' stamp='0.610'>
+<phase_done name='codeemit' stamp='0.610'/>
+</phase>
+<phase name='codeinstall' stamp='0.610'>
+<dependency type='leaf_type' ctxk='1093'/>
+<dependency type='unique_concrete_method' ctxk='1014' x='1144'/>
+<phase_done name='codeinstall' stamp='0.610'/>
+</phase>
+<code_cache total_blobs='1610' nmethods='987' adapters='270' free_code_cache='245903232'/>
+<task_done success='1' nmsize='3896' count='456' inlined_bytes='123' stamp='0.610'/>
+</task>
+<task compile_id='984' method='java.lang.Double isInfinite (D)Z' bytes='22' count='444' iicount='444' level='3' stamp='0.610'>
+<phase name='setup' stamp='0.610'>
+<phase_done name='setup' stamp='0.610'/>
+</phase>
+<phase name='buildIR' stamp='0.610'>
+<type id='969' name='boolean'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1093' holder='1073' name='isInfinite' return='969' arguments='972' flags='9' bytes='22' iicount='444'/>
+<parse method='1093'  stamp='0.610'>
+<phase name='parse_hir' stamp='0.610'>
+<phase_done name='parse_hir' stamp='0.610'/>
+</phase>
+<parse_done stamp='0.610'/>
+</parse>
+<phase name='optimize_blocks' stamp='0.610'>
+<phase_done name='optimize_blocks' stamp='0.610'/>
+</phase>
+<phase name='gvn' stamp='0.610'>
+<phase_done name='gvn' stamp='0.610'/>
+</phase>
+<phase name='rangeCheckElimination' stamp='0.610'>
+<phase_done name='rangeCheckElimination' stamp='0.610'/>
+</phase>
+<phase name='optimize_null_checks' stamp='0.610'>
+<phase_done name='optimize_null_checks' stamp='0.610'/>
+</phase>
+<phase_done name='buildIR' stamp='0.610'/>
+</phase>
+<phase name='emit_lir' stamp='0.610'>
+<phase name='lirGeneration' stamp='0.610'>
+<phase_done name='lirGeneration' stamp='0.610'/>
+</phase>
+<phase name='linearScan' stamp='0.610'>
+<phase_done name='linearScan' stamp='0.610'/>
+</phase>
+<phase_done name='emit_lir' stamp='0.610'/>
+</phase>
+<phase name='codeemit' stamp='0.610'>
+<phase_done name='codeemit' stamp='0.610'/>
+</phase>
+<phase name='codeinstall' stamp='0.610'>
+<phase_done name='codeinstall' stamp='0.610'/>
+</phase>
+<code_cache total_blobs='1612' nmethods='989' adapters='270' free_code_cache='245900800'/>
+<task_done success='1' nmsize='560' count='444' stamp='0.610'/>
+</task>
+<fragment>
+<![CDATA[
+<task compile_id='986' method='jdk.internal.math.FormattedFloatingDecimal valueOf (DILjdk/internal/math/FormattedFloatingDecimal$Form;)Ljdk/internal/math/FormattedFloatingDecimal;' bytes='30' count='444' iicount='444' level='3' stamp='0.610'>
+<phase name='setup' stamp='0.610'>
+<phase_done name='setup' stamp='0.610'/>
+</phase>
+<phase name='buildIR' stamp='0.611'>
+<klass id='1093' name='jdk.internal.math.FormattedFloatingDecimal' flags='1'/>
+<type id='972' name='double'/>
+<type id='975' name='int'/>
+<klass id='1094' name='jdk.internal.math.FormattedFloatingDecimal$Form' flags='16409'/>
+<method id='1095' holder='1093' name='valueOf' return='1093' arguments='972 975 1094' flags='9' bytes='30']]>
+</fragment>
+</compilation_log>
+<compilation_log thread='25165'>
+<start_compile_thread name='C2 CompilerThread7' thread='25165' process='25109' stamp='0.107'/>
+<task compile_id='49' method='java.lang.String isLatin1 ()Z' bytes='19' count='5689' iicount='5690' stamp='0.140'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='1' compiler='c1' level='3' iicount='5744'/>
+<parse method='1093' uses='5744.000000' stamp='0.140'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='5740' cnt='5740.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='5739' cnt='5740.000000' prob='0.000174216'/>
+<parse_done nodes='48' live='47' memory='24016' stamp='0.140'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='355' nmethods='50' adapters='160' free_code_cache='248683776'/>
+<task_done success='1' nmsize='120' count='5913' stamp='0.141'/>
+</task>
+<task compile_id='129' method='java.lang.String coder ()B' bytes='15' count='5632' iicount='5632' stamp='0.158'>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='4' compiler='c1' level='3' iicount='5632'/>
+<parse method='1093' uses='5632.000000' stamp='0.158'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='5632' cnt='5632.000000' prob='never'/>
+<parse_done nodes='39' live='38' memory='22880' stamp='0.158'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='439' nmethods='128' adapters='162' free_code_cache='248555648'/>
+<task_done success='1' nmsize='88' count='5662' stamp='0.158'/>
+</task>
+<task compile_id='412' method='jdk.internal.org.objectweb.asm.ByteVector putUTF8 (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/ByteVector;' bytes='142' count='765' backedge_count='19595' iicount='765' stamp='0.272'>
+<klass id='1093' name='jdk.internal.org.objectweb.asm.ByteVector' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1094' holder='1093' name='putUTF8' return='1093' arguments='983' flags='1' bytes='142' compile_id='235' compiler='c1' level='3' iicount='768'/>
+<klass id='1100' name='java.lang.IllegalArgumentException' flags='1'/>
+<uncommon_trap method='1094' bci='11' reason='unloaded' action='reinterpret' index='7' debug_id='0' klass='1100'/>
+<parse method='1094' uses='768.000000' stamp='0.272'>
+<bc code='182' bci='1'/>
+<type id='975' name='int'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='5442'/>
+<call method='1096' count='646' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='646.000000' stamp='0.272'>
+<uncommon_trap bci='1' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1101' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='16943'/>
+<call method='1101' count='5189' prof_factor='0.118706' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='646.000000' stamp='0.272'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='16943' cnt='16943.000000' prob='never'/>
+<parse_done nodes='94' live='91' memory='32488' stamp='0.272'/>
+</parse>
+<parse_done nodes='95' live='91' memory='32784' stamp='0.272'/>
+</parse>
+<bc code='164' bci='8'/>
+<branch target_bci='19' taken='646' not_taken='0' cnt='646.000000' prob='always'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='190' bci='33'/>
+<uncommon_trap bci='33' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='164' bci='34'/>
+<branch target_bci='44' taken='543' not_taken='103' cnt='646.000000' prob='0.840557'/>
+<bc code='183' bci='41'/>
+<type id='977' name='void'/>
+<method id='1099' holder='1093' name='enlarge' return='977' arguments='975' flags='2' bytes='51' iicount='160'/>
+<call method='1099' count='103' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='41'/>
+<bc code='84' bci='61'/>
+<uncommon_trap bci='61' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='61' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='84' bci='70'/>
+<uncommon_trap bci='70' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='77'/>
+<branch target_bci='135' taken='646' not_taken='16433' cnt='17079.000000' prob='0.0378242'/>
+<uncommon_trap bci='80' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='80' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='83'/>
+<type id='970' name='char'/>
+<method id='1097' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='27000'/>
+<call method='1097' count='16433' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1097' uses='16433.000000' stamp='0.273'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1106' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='36735'/>
+<call method='1106' count='27037' prof_factor='0.608630' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='16456.000000' stamp='0.273'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='36735' cnt='36735.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='36734' cnt='36735.000000' prob='2.7222e-05'/>
+<parse_done nodes='323' live='311' memory='76448' stamp='0.273'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='27037' cnt='27037.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1109' name='java.lang.StringLatin1' flags='16'/>
+<method id='1110' holder='1109' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='26725'/>
+<call method='1110' count='27037' prof_factor='0.608630' inline='1'/>
+<klass id='1113' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1110' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1113'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='16456.000000' stamp='0.273'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='26725' cnt='26725.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='26725' not_taken='0' cnt='26725.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='418' live='400' memory='92312' stamp='0.273'/>
+</parse>
+<parse_done nodes='420' live='401' memory='92784' stamp='0.273'/>
+</parse>
+<bc code='161' bci='91'/>
+<branch target_bci='114' taken='0' not_taken='16433' cnt='16433.000000' prob='never'/>
+<uncommon_trap bci='91' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='163' bci='98'/>
+<branch target_bci='114' taken='0' not_taken='16433' cnt='16433.000000' prob='never'/>
+<uncommon_trap bci='98' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='84' bci='110'/>
+<uncommon_trap bci='110' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='77'/>
+<branch target_bci='135' taken='646' not_taken='16433' cnt='16433.000000' prob='0.0378242'/>
+<parse_done nodes='490' live='467' memory='107024' stamp='0.273'/>
+</parse>
+<loop_tree>
+<loop idx='522' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='522' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='736' inner_loop='1' main_loop='736' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='682' inner_loop='1' pre_loop='522' >
+</loop>
+<loop idx='807' inner_loop='1' main_loop='807' >
+</loop>
+<loop idx='638' inner_loop='1' post_loop='522' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='682' inner_loop='1' pre_loop='522' >
+</loop>
+<loop idx='807' inner_loop='1' main_loop='807' >
+</loop>
+<loop idx='638' inner_loop='1' post_loop='522' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='682' inner_loop='1' pre_loop='522' >
+</loop>
+<loop idx='807' inner_loop='1' main_loop='807' >
+</loop>
+<loop idx='638' inner_loop='1' post_loop='522' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='848' nmethods='440' adapters='243' free_code_cache='247861888'/>
+<task_done success='1' nmsize='1128' count='930' backedge_count='24882' inlined_bytes='98' stamp='0.278'/>
+</task>
+<task compile_id='489' method='java.util.concurrent.ConcurrentHashMap tabAt ([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' bytes='22' count='5632' iicount='5632' stamp='0.300'>
+<klass id='1094' name='java.util.concurrent.ConcurrentHashMap$Node' flags='8'/>
+<klass id='1095' name='[Ljava.util.concurrent.ConcurrentHashMap$Node;' flags='1040'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.concurrent.ConcurrentHashMap' flags='1'/>
+<method id='1096' holder='1093' name='tabAt' return='1094' arguments='1095 975' flags='24' bytes='22' compile_id='52' compiler='c1' level='3' iicount='5632'/>
+<parse method='1096' uses='5632.000000' stamp='0.300'>
+<bc code='182' bci='15'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='976' name='long'/>
+<klass id='1051' name='jdk.internal.misc.Unsafe' flags='17'/>
+<method id='1099' holder='1051' name='getObjectAcquire' return='982' arguments='982 976' flags='17' bytes='7' compile_id='53' compiler='c1' level='3' iicount='5641'/>
+<call method='1099' count='5122' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_getObjectAcquire' nodes='17'/>
+<parse_done nodes='50' live='49' memory='24072' stamp='0.300'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='906' nmethods='491' adapters='248' free_code_cache='247783680'/>
+<task_done success='1' nmsize='88' count='5645' inlined_bytes='7' stamp='0.300'/>
+</task>
+<task compile_id='528' method='java.lang.Math min (II)I' bytes='11' count='6407' iicount='6407' stamp='0.327'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Math' flags='17'/>
+<method id='1094' holder='1093' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='120' compiler='c1' level='3' iicount='6408'/>
+<parse method='1094' uses='6408.000000' stamp='0.328'>
+<bc code='163' bci='2'/>
+<branch target_bci='9' taken='2981' not_taken='3427' cnt='6408.000000' prob='0.4652'/>
+<parse_done nodes='32' live='31' memory='21864' stamp='0.328'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='960' nmethods='527' adapters='260' free_code_cache='247708928'/>
+<task_done success='1' nmsize='56' count='6408' stamp='0.328'/>
+</task>
+<task compile_id='571' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='5416' backedge_count='1628' iicount='5416' stamp='0.339'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='519' compiler='c1' level='3' iicount='5429'/>
+<parse method='1094' uses='5429.000000' stamp='0.339'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='5429' not_taken='0' cnt='5429.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='29'/>
+<branch target_bci='34' taken='5429' not_taken='0' cnt='5429.000000' prob='always'/>
+<uncommon_trap bci='29' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='48'/>
+<uncommon_trap bci='48' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='48' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='61'/>
+<type id='975' name='int'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1098' holder='1097' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='514' compiler='c1' level='3' iicount='7162'/>
+<call method='1098' count='5138' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='5429.000000' stamp='0.340'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='5423' not_taken='1739' cnt='7162.000000' prob='0.757191'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='1739' cnt='1739.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='195' live='188' memory='48544' stamp='0.340'/>
+</parse>
+<bc code='153' bci='64'/>
+<branch target_bci='348' taken='3689' not_taken='1740' cnt='5429.000000' prob='0.679499'/>
+<uncommon_trap bci='67' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='67' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='72'/>
+<branch target_bci='88' taken='0' not_taken='1740' cnt='1740.000000' prob='never'/>
+<uncommon_trap bci='72' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='79'/>
+<branch target_bci='232' taken='0' not_taken='1740' cnt='1740.000000' prob='never'/>
+<uncommon_trap bci='79' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='85'/>
+<branch target_bci='232' taken='1740' not_taken='0' cnt='1740.000000' prob='always'/>
+<uncommon_trap bci='85' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='237'/>
+<uncommon_trap bci='237' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='261'/>
+<type id='977' name='void'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1096' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1100' holder='1093' name='checkEntityLimit' return='977' arguments='1099 1096 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<call method='1100' count='1647' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='1740.000000' stamp='0.340'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='353' live='338' memory='77752' stamp='0.340'/>
+</parse>
+<bc code='180' bci='268'/>
+<uncommon_trap bci='268' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='273'/>
+<branch target_bci='289' taken='0' not_taken='1740' cnt='1740.000000' prob='never'/>
+<bc code='160' bci='303'/>
+<branch target_bci='323' taken='1740' not_taken='0' cnt='1740.000000' prob='always'/>
+<uncommon_trap bci='303' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='337'/>
+<uncommon_trap bci='337' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='337' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='340'/>
+<call method='1098' count='1647' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='1740.000000' stamp='0.340'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='5423' not_taken='1739' cnt='7162.000000' prob='0.757191'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='1739' cnt='1739.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='512' live='491' memory='102120' stamp='0.340'/>
+</parse>
+<bc code='154' bci='343'/>
+<branch target_bci='67' taken='0' not_taken='1740' cnt='1740.000000' prob='never'/>
+<uncommon_trap bci='343' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='530' live='506' memory='113720' stamp='0.340'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<code_cache total_blobs='1024' nmethods='580' adapters='261' free_code_cache='247460480'/>
+<task_done success='1' nmsize='664' count='9428' backedge_count='2914' inlined_bytes='94' stamp='0.346'/>
+</task>
+<task compile_id='591' method='com.sun.org.apache.xerces.internal.util.XMLChar isContent (I)Z' bytes='35' count='26972' iicount='26972' stamp='0.346'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='509' compiler='c1' level='3' iicount='26973'/>
+<parse method='1094' uses='26973.000000' stamp='0.346'>
+<bc code='162' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='26973' cnt='26973.000000' prob='never'/>
+<uncommon_trap bci='3' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='10'/>
+<uncommon_trap bci='10' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='14'/>
+<branch target_bci='29' taken='26512' not_taken='461' cnt='26973.000000' prob='0.982909'/>
+<bc code='163' bci='20'/>
+<branch target_bci='33' taken='461' not_taken='0' cnt='461.000000' prob='always'/>
+<uncommon_trap bci='20' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='95' live='91' memory='31944' stamp='0.346'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1030' nmethods='582' adapters='261' free_code_cache='247446784'/>
+<task_done success='1' nmsize='152' count='28226' stamp='0.347'/>
+</task>
+<task compile_id='594' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isOverLimit (ILcom/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer;)Z' bytes='111' count='7937' iicount='7937' stamp='0.347'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1095' holder='1093' name='isOverLimit' return='969' arguments='975 1094' flags='1' bytes='111' compile_id='517' compiler='c1' level='3' iicount='9914'/>
+<parse method='1095' uses='9914.000000' stamp='0.351'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='9323' not_taken='586' cnt='9909.000000' prob='0.940862'/>
+<bc code='182' bci='15'/>
+<klass id='1098' name='java.lang.Enum' flags='1025'/>
+<method id='1099' holder='1098' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1099' count='9094' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='9323.000000' stamp='0.352'>
+<parse_done nodes='91' live='87' memory='32192' stamp='0.352'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='9323' cnt='9323.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1099' count='9094' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='9323.000000' stamp='0.352'>
+<parse_done nodes='117' live='111' memory='35912' stamp='0.352'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='9323' cnt='9323.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1099' count='9094' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='9323.000000' stamp='0.352'>
+<parse_done nodes='142' live='134' memory='42760' stamp='0.352'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='4714' not_taken='4609' cnt='9323.000000' prob='0.505631'/>
+<bc code='182' bci='45'/>
+<call method='1099' count='4496' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='4609.000000' stamp='0.352'>
+<parse_done nodes='163' live='154' memory='46168' stamp='0.352'/>
+</parse>
+<bc code='159' bci='48'/>
+<branch target_bci='71' taken='0' not_taken='4609' cnt='4609.000000' prob='never'/>
+<uncommon_trap bci='48' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='55'/>
+<call method='1099' count='4496' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='4609.000000' stamp='0.352'>
+<parse_done nodes='188' live='177' memory='49560' stamp='0.352'/>
+</parse>
+<bc code='159' bci='58'/>
+<branch target_bci='71' taken='0' not_taken='4609' cnt='4609.000000' prob='never'/>
+<uncommon_trap bci='58' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='65'/>
+<call method='1099' count='4496' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='4609.000000' stamp='0.352'>
+<parse_done nodes='213' live='200' memory='53816' stamp='0.352'/>
+</parse>
+<bc code='160' bci='68'/>
+<branch target_bci='91' taken='0' not_taken='4609' cnt='4609.000000' prob='never'/>
+<uncommon_trap bci='68' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='73'/>
+<method id='1100' holder='1094' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' compile_id='521' compiler='c1' level='3' iicount='9350'/>
+<call method='1100' count='9094' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='9323.000000' stamp='0.352'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='285' live='267' memory='70112' stamp='0.352'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='9323' not_taken='0' cnt='9323.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='337' live='315' memory='77832' stamp='0.352'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='1058' nmethods='596' adapters='261' free_code_cache='247417728'/>
+<task_done success='1' nmsize='568' count='11900' inlined_bytes='37' stamp='0.354'/>
+</task>
+<task compile_id='611' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='5436' iicount='5436' stamp='0.354'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' compile_id='537' compiler='c1' level='3' iicount='5444'/>
+<parse method='1094' uses='5444.000000' stamp='0.354'>
+<bc code='182' bci='4'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1099' holder='1096' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='571' compiler='c2' level='4' iicount='9428'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<call method='1099' count='5139' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='12'/>
+<type id='975' name='int'/>
+<method id='1100' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='590' compiler='c2' level='4' iicount='7224'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1100'/>
+<call method='1100' count='5139' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='5444.000000' stamp='0.354'>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7224' not_taken='0' cnt='7224.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='7224' cnt='7224.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='7224' cnt='7224.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='212' live='203' memory='52520' stamp='0.355'/>
+</parse>
+<bc code='160' bci='19'/>
+<branch target_bci='33' taken='5444' not_taken='0' cnt='5444.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='36'/>
+<branch target_bci='90' taken='4867' not_taken='577' cnt='5444.000000' prob='0.894012'/>
+<bc code='182' bci='44'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1108' holder='1096' name='scanChar' return='975' arguments='1107' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1108'/>
+<call method='1108' count='545' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='577.000000' stamp='0.355'>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<type id='977' name='void'/>
+<klass id='1110' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1113' holder='1096' name='checkEntityLimit' return='977' arguments='1107 1110 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<call method='1113' count='7328' prof_factor='0.075881' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1113' uses='577.000000' stamp='0.355'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='463' live='443' memory='95968' stamp='0.355'/>
+</parse>
+<parse_done nodes='466' live='445' memory='97128' stamp='0.355'/>
+</parse>
+<bc code='182' bci='57'/>
+<method id='1109' holder='1096' name='skipChar' return='969' arguments='975 1107' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='545' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='577.000000' stamp='0.356'>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6243' not_taken='0' cnt='6243.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='605' not_taken='5638' cnt='6243.000000' prob='0.0969085'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='5638' not_taken='0' cnt='5638.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<call method='1113' count='5400' prof_factor='0.092424' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1113' uses='521.000000' stamp='0.356'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='679' live='651' memory='138832' stamp='0.356'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='605' not_taken='0' cnt='605.000000' prob='always'/>
+<parse_done nodes='690' live='660' memory='142664' stamp='0.356'/>
+</parse>
+<bc code='154' bci='60'/>
+<branch target_bci='83' taken='577' not_taken='0' cnt='577.000000' prob='always'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='92'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1101' holder='1098' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' compile_id='539' compiler='c1' level='3' iicount='4853'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1101'/>
+<call method='1101' count='4594' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='4867.000000' stamp='0.356'>
+<bc code='184' bci='1'/>
+<klass id='1111' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1126' holder='1111' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='12464'/>
+<call method='1126' count='5218' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1126' uses='5218.000000' stamp='0.356'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='12464' cnt='12464.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='12464' cnt='12464.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='765' live='731' memory='154200' stamp='0.356'/>
+</parse>
+<parse_done nodes='766' live='731' memory='154400' stamp='0.356'/>
+</parse>
+<bc code='153' bci='95'/>
+<branch target_bci='102' taken='0' not_taken='4867' cnt='4867.000000' prob='never'/>
+<bc code='154' bci='99'/>
+<branch target_bci='134' taken='4867' not_taken='0' cnt='4867.000000' prob='always'/>
+<uncommon_trap bci='99' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='790' live='753' memory='157536' stamp='0.356'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1100'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1101'/>
+<code_cache total_blobs='1064' nmethods='598' adapters='261' free_code_cache='247411968'/>
+<task_done success='1' nmsize='1032' count='7131' inlined_bytes='711' stamp='0.361'/>
+</task>
+<task compile_id='618' method='java.lang.AbstractStringBuilder ensureCapacityInternal (I)V' bytes='39' count='5391' iicount='5391' stamp='0.362'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='131' compiler='c1' level='3' iicount='5391'/>
+<parse method='1093' uses='5391.000000' stamp='0.362'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='38' taken='4262' not_taken='1129' cnt='5391.000000' prob='0.790577'/>
+<bc code='183' bci='24'/>
+<method id='1095' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' compile_id='295' compiler='c1' level='3' iicount='1136'/>
+<call method='1095' count='1073' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='1129.000000' stamp='0.362'>
+<bc code='156' bci='20'/>
+<branch target_bci='25' taken='1059' not_taken='77' cnt='1136.000000' prob='0.932218'/>
+<bc code='158' bci='35'/>
+<branch target_bci='45' taken='0' not_taken='1136' cnt='1136.000000' prob='never'/>
+<uncommon_trap bci='35' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='156' bci='42'/>
+<branch target_bci='53' taken='1136' not_taken='0' cnt='1136.000000' prob='always'/>
+<uncommon_trap bci='42' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='129' live='125' memory='38640' stamp='0.363'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1096' name='java.util.Arrays' flags='1'/>
+<method id='1097' holder='1096' name='copyOf' return='1085' arguments='1085 975' flags='9' bytes='19' iicount='1365'/>
+<call method='1097' count='1073' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1097' uses='1129.000000' stamp='0.363'>
+<bc code='190' bci='9'/>
+<uncommon_trap bci='9' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='11'/>
+<klass id='1100' name='java.lang.Math' flags='17'/>
+<method id='1101' holder='1100' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='6753'/>
+<call method='1101' count='1185' prof_factor='0.827106' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='184' bci='14'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1102' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1102' count='1185' prof_factor='0.827106' inline='1'/>
+<uncommon_trap bci='1' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='53'/>
+<parse_done nodes='266' live='259' memory='65840' stamp='0.363'/>
+</parse>
+<parse_done nodes='424' live='416' memory='86608' stamp='0.364'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1072' nmethods='601' adapters='262' free_code_cache='247391744'/>
+<task_done success='1' nmsize='984' count='5517' inlined_bytes='85' stamp='0.371'/>
+</task>
+<task compile_id='620' method='com.sun.org.apache.xerces.internal.util.XMLChar isSpace (I)Z' bytes='22' count='14714' iicount='14714' stamp='0.371'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1094' holder='1093' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='514' compiler='c1' level='3' iicount='14714'/>
+<parse method='1094' uses='14714.000000' stamp='0.371'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='11188' not_taken='3526' cnt='14714.000000' prob='0.760364'/>
+<bc code='51' bci='10'/>
+<uncommon_trap bci='10' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='3526' cnt='3526.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='78' live='75' memory='29320' stamp='0.372'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1075' nmethods='602' adapters='262' free_code_cache='247390976'/>
+<task_done success='1' nmsize='152' count='15548' stamp='0.374'/>
+</task>
+<task compile_id='635' method='java.lang.StringLatin1 replace ([BCC)Ljava/lang/String;' bytes='196' count='928' backedge_count='27905' iicount='928' stamp='0.374'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='970' name='char'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='replace' return='983' arguments='1085 970 970' flags='9' bytes='196' compile_id='231' compiler='c1' level='3' iicount='928'/>
+<parse method='1094' uses='928.000000' stamp='0.374'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='12123'/>
+<call method='1096' count='823' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='823.000000' stamp='0.374'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='12123' cnt='12123.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='54' live='52' memory='26128' stamp='0.374'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='194' taken='0' not_taken='823' cnt='823.000000' prob='never'/>
+<bc code='190' bci='8'/>
+<uncommon_trap bci='8' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='19'/>
+<branch target_bci='34' taken='23' not_taken='4379' cnt='4402.000000' prob='0.0052249'/>
+<uncommon_trap bci='22' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='22' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='25'/>
+<uncommon_trap bci='25' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='28'/>
+<branch target_bci='13' taken='3579' not_taken='800' cnt='4379.000000' prob='0.81731'/>
+<bc code='162' bci='19'/>
+<branch target_bci='34' taken='23' not_taken='4379' cnt='4402.000000' prob='0.0052249'/>
+<bc code='162' bci='37'/>
+<branch target_bci='194' taken='23' not_taken='800' cnt='823.000000' prob='0.0279465'/>
+<bc code='184' bci='41'/>
+<call method='1096' count='800' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='800.000000' stamp='0.376'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='12123' cnt='12123.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='210' live='202' memory='53456' stamp='0.376'/>
+</parse>
+<bc code='153' bci='44'/>
+<branch target_bci='125' taken='0' not_taken='800' cnt='800.000000' prob='never'/>
+<bc code='162' bci='59'/>
+<branch target_bci='77' taken='800' not_taken='3184' cnt='3984.000000' prob='0.200803'/>
+<uncommon_trap bci='62' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='62' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='69'/>
+<uncommon_trap bci='69' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='84' bci='70'/>
+<uncommon_trap bci='70' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='59'/>
+<branch target_bci='77' taken='800' not_taken='3184' cnt='3184.000000' prob='0.200803'/>
+<bc code='162' bci='80'/>
+<branch target_bci='114' taken='800' not_taken='17250' cnt='18050.000000' prob='0.0443213'/>
+<uncommon_trap bci='83' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='83' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='86'/>
+<uncommon_trap bci='86' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='97'/>
+<branch target_bci='105' taken='15295' not_taken='1955' cnt='17250.000000' prob='0.886667'/>
+<bc code='84' bci='107'/>
+<uncommon_trap bci='107' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='80'/>
+<branch target_bci='114' taken='800' not_taken='17250' cnt='17250.000000' prob='0.0443213'/>
+<bc code='183' bci='121'/>
+<type id='977' name='void'/>
+<type id='973' name='byte'/>
+<method id='1100' holder='983' name='&lt;init&gt;' return='977' arguments='1085 973' flags='0' bytes='15' compile_id='176' compiler='c1' level='3' iicount='4463'/>
+<call method='1100' count='800' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='800.000000' stamp='0.377'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='26622'/>
+<call method='1103' count='4499' prof_factor='0.179252' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='806.000000' stamp='0.377'>
+<parse_done nodes='540' live='523' memory='120280' stamp='0.377'/>
+</parse>
+<parse_done nodes='562' live='544' memory='124000' stamp='0.378'/>
+</parse>
+<parse_done nodes='564' live='544' memory='124640' stamp='0.378'/>
+</parse>
+<loop_tree>
+<loop idx='575' >
+</loop>
+<loop idx='581' >
+</loop>
+<loop idx='587' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='575' inner_loop='1' >
+</loop>
+<loop idx='581' inner_loop='1' >
+</loop>
+<loop idx='587' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='575' inner_loop='1' >
+</loop>
+<loop idx='581' inner_loop='1' >
+</loop>
+<loop idx='587' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='787' inner_loop='1' main_loop='787' >
+</loop>
+<loop idx='875' inner_loop='1' main_loop='875' >
+</loop>
+<loop idx='976' inner_loop='1' main_loop='976' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='753' inner_loop='1' pre_loop='575' >
+</loop>
+<loop idx='787' inner_loop='1' main_loop='787' >
+</loop>
+<loop idx='712' inner_loop='1' post_loop='575' >
+</loop>
+<loop idx='840' inner_loop='1' pre_loop='581' >
+</loop>
+<loop idx='875' inner_loop='1' main_loop='875' >
+</loop>
+<loop idx='812' inner_loop='1' post_loop='581' >
+</loop>
+<loop idx='934' inner_loop='1' pre_loop='587' >
+</loop>
+<loop idx='976' inner_loop='1' main_loop='976' >
+</loop>
+<loop idx='899' inner_loop='1' post_loop='587' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='753' inner_loop='1' pre_loop='575' >
+</loop>
+<loop idx='1025' inner_loop='1' main_loop='1025' >
+</loop>
+<loop idx='712' inner_loop='1' post_loop='575' >
+</loop>
+<loop idx='840' inner_loop='1' pre_loop='581' >
+</loop>
+<loop idx='875' inner_loop='1' main_loop='875' >
+</loop>
+<loop idx='812' inner_loop='1' post_loop='581' >
+</loop>
+<loop idx='934' inner_loop='1' pre_loop='587' >
+</loop>
+<loop idx='1064' inner_loop='1' main_loop='1064' >
+</loop>
+<loop idx='899' inner_loop='1' post_loop='587' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='753' inner_loop='1' pre_loop='575' >
+</loop>
+<loop idx='1025' inner_loop='1' main_loop='1025' >
+</loop>
+<loop idx='712' inner_loop='1' post_loop='575' >
+</loop>
+<loop idx='840' inner_loop='1' pre_loop='581' >
+</loop>
+<loop idx='875' inner_loop='1' main_loop='875' >
+</loop>
+<loop idx='812' inner_loop='1' post_loop='581' >
+</loop>
+<loop idx='934' inner_loop='1' pre_loop='587' >
+</loop>
+<loop idx='1064' inner_loop='1' main_loop='1064' >
+</loop>
+<loop idx='899' inner_loop='1' post_loop='587' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='753' inner_loop='1' pre_loop='575' >
+</loop>
+<loop idx='1025' inner_loop='1' main_loop='1025' >
+</loop>
+<loop idx='712' inner_loop='1' post_loop='575' >
+</loop>
+<loop idx='840' inner_loop='1' pre_loop='581' >
+</loop>
+<loop idx='875' inner_loop='1' main_loop='875' >
+</loop>
+<loop idx='812' inner_loop='1' post_loop='581' >
+</loop>
+<loop idx='934' inner_loop='1' pre_loop='587' >
+</loop>
+<loop idx='1064' inner_loop='1' main_loop='1064' >
+</loop>
+<loop idx='899' inner_loop='1' post_loop='587' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1086' nmethods='611' adapters='262' free_code_cache='247274112'/>
+<task_done success='1' nmsize='1144' count='1009' backedge_count='30166' inlined_bytes='42' stamp='0.394'/>
+</task>
+<task compile_id='648' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='19576' backedge_count='5136' iicount='19576' decompiles='1' unstable_if_traps='1' stamp='0.394'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='619' compiler='c1' level='3' iicount='19590'/>
+<parse method='1094' uses='19590.000000' stamp='0.394'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='19587' not_taken='0' cnt='19587.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='29'/>
+<branch target_bci='34' taken='19587' not_taken='0' cnt='19587.000000' prob='always'/>
+<uncommon_trap bci='29' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='48'/>
+<uncommon_trap bci='48' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='48' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='61'/>
+<type id='975' name='int'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1098' holder='1097' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='620' compiler='c2' level='4' iicount='25521'/>
+<call method='1098' count='19305' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='19587.000000' stamp='0.399'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='21117' not_taken='6377' cnt='27494.000000' prob='0.768058'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='6377' cnt='6377.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='195' live='188' memory='48544' stamp='0.399'/>
+</parse>
+<bc code='153' bci='64'/>
+<branch target_bci='348' taken='13668' not_taken='5919' cnt='19587.000000' prob='0.69781'/>
+<uncommon_trap bci='67' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='67' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='72'/>
+<branch target_bci='88' taken='0' not_taken='5941' cnt='5941.000000' prob='never'/>
+<uncommon_trap bci='72' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='79'/>
+<branch target_bci='232' taken='0' not_taken='5941' cnt='5941.000000' prob='never'/>
+<uncommon_trap bci='79' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='85'/>
+<branch target_bci='232' taken='5941' not_taken='0' cnt='5941.000000' prob='always'/>
+<uncommon_trap bci='85' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='237'/>
+<uncommon_trap bci='237' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='261'/>
+<type id='977' name='void'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1096' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1100' holder='1093' name='checkEntityLimit' return='977' arguments='1099 1096 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<call method='1100' count='5855' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='5941.000000' stamp='0.400'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='353' live='338' memory='77752' stamp='0.400'/>
+</parse>
+<bc code='180' bci='268'/>
+<uncommon_trap bci='268' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='273'/>
+<branch target_bci='289' taken='0' not_taken='5941' cnt='5941.000000' prob='never'/>
+<bc code='160' bci='303'/>
+<branch target_bci='323' taken='5939' not_taken='1' cnt='5940.000000' prob='0.999832'/>
+<bc code='182' bci='310'/>
+<method id='1101' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='27'/>
+<call method='1101' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='310'/>
+<bc code='199' bci='318'/>
+<branch target_bci='323' taken='1' not_taken='0'/>
+<bc code='180' bci='327'/>
+<uncommon_trap bci='327' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='337'/>
+<uncommon_trap bci='337' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='337' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='340'/>
+<call method='1098' count='5855' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='5941.000000' stamp='0.400'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='21117' not_taken='6377' cnt='27494.000000' prob='0.768058'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='6377' cnt='6377.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='548' live='526' memory='116648' stamp='0.401'/>
+</parse>
+<bc code='154' bci='343'/>
+<branch target_bci='67' taken='21' not_taken='5920' cnt='5941.000000' prob='0.00353476'/>
+<parse_done nodes='564' live='540' memory='120176' stamp='0.401'/>
+</parse>
+<loop_tree>
+<loop idx='592' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='592' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='592' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='592' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='592' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<code_cache total_blobs='1120' nmethods='643' adapters='262' free_code_cache='247135232'/>
+<task_done success='1' nmsize='840' count='23867' backedge_count='6362' inlined_bytes='94' stamp='0.406'/>
+</task>
+<task compile_id='656' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='19095' iicount='19095' decompiles='1' unstable_if_traps='1' stamp='0.406'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='peekChar' return='975' flags='1' bytes='63' compile_id='627' compiler='c1' level='3' iicount='19097'/>
+<parse method='1094' uses='19097.000000' stamp='0.407'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='19093' not_taken='1' cnt='19094.000000' prob='0.999948'/>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1097' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='30'/>
+<call method='1097' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='19094' cnt='19094.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='19094' cnt='19094.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='176' live='169' memory='46376' stamp='0.407'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1128' nmethods='647' adapters='262' free_code_cache='247108352'/>
+<task_done success='1' nmsize='360' count='20109' stamp='0.409'/>
+</task>
+<task compile_id='662' compile_kind='osr' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='61' backedge_count='245758' iicount='61' osr_bci='73' stamp='0.409'>
+<klass id='1095' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1100' name='java.nio.HeapCharBuffer' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Decoder' flags='10'/>
+<method id='1097' holder='1093' name='decodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='691' compile_id='642' compiler='c1' level='3' iicount='61'/>
+<parse method='1097' uses='61.000000' osr_bci='73' stamp='0.410'>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<uncommon_trap bci='73' reason='constraint' action='reinterpret' debug_id='0'/>
+<uncommon_trap bci='73' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='73' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='77'/>
+<branch target_bci='106' taken='39' not_taken='163788' cnt='163827.000000' prob='0.000238056'/>
+<bc code='51' bci='83'/>
+<uncommon_trap bci='83' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='83' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='155' bci='84'/>
+<branch target_bci='106' taken='0' not_taken='163788' cnt='163788.000000' prob='never'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='100'/>
+<uncommon_trap bci='100' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='85' bci='102'/>
+<uncommon_trap bci='102' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='102' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='110'/>
+<branch target_bci='678' taken='19' not_taken='20'/>
+<uncommon_trap bci='113' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='113' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='116'/>
+<uncommon_trap bci='116' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='116' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='155' bci='121'/>
+<branch target_bci='161' taken='0' not_taken='20'/>
+<bc code='161' bci='128'/>
+<branch target_bci='144' taken='0' not_taken='20'/>
+<bc code='184' bci='140'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1109' holder='1093' name='xflow' return='1096' arguments='1064 975 975 1064 975 975' flags='10' bytes='31' iicount='61'/>
+<call method='1109' count='20' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='140'/>
+<bc code='85' bci='154'/>
+<uncommon_trap bci='154' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='154' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='167'/>
+<branch target_bci='261' taken='0' not_taken='0'/>
+<bc code='153' bci='175'/>
+<branch target_bci='261' taken='0' not_taken='0'/>
+<bc code='161' bci='184'/>
+<branch target_bci='194' taken='0' not_taken='0'/>
+<bc code='161' bci='191'/>
+<branch target_bci='207' taken='0' not_taken='0'/>
+<bc code='51' bci='212'/>
+<uncommon_trap bci='212' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='217'/>
+<type id='969' name='boolean'/>
+<method id='1121' holder='1093' name='isNotContinuation' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='217'/>
+<bc code='153' bci='220'/>
+<branch target_bci='234' taken='0' not_taken='0'/>
+<bc code='184' bci='230'/>
+<method id='1111' holder='1093' name='malformedForLength' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='13' iicount='1'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='230'/>
+<bc code='85' bci='254'/>
+<uncommon_trap bci='254' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='254' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='203'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='203'/>
+<bc code='160' bci='267'/>
+<branch target_bci='428' taken='0' not_taken='0'/>
+<bc code='161' bci='280'/>
+<branch target_bci='290' taken='0' not_taken='0'/>
+<bc code='161' bci='287'/>
+<branch target_bci='334' taken='0' not_taken='0'/>
+<bc code='51' bci='339'/>
+<uncommon_trap bci='339' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='347'/>
+<uncommon_trap bci='347' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='356'/>
+<method id='1119' holder='1093' name='isMalformed3' return='969' arguments='975 975 975' flags='10' bytes='45' iicount='1'/>
+<call method='1119' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='356'/>
+<bc code='153' bci='359'/>
+<branch target_bci='373' taken='0' not_taken='0'/>
+<bc code='184' bci='369'/>
+<method id='1110' holder='1093' name='malformed' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='29' iicount='1'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='369'/>
+<bc code='184' bci='395'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1120' holder='1070' name='isSurrogate' return='969' arguments='970' flags='9' bytes='18' iicount='43'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='395'/>
+<bc code='153' bci='398'/>
+<branch target_bci='412' taken='0' not_taken='0'/>
+<bc code='184' bci='408'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='408'/>
+<bc code='85' bci='421'/>
+<uncommon_trap bci='421' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='421' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='293'/>
+<branch target_bci='321' taken='0' not_taken='0'/>
+<bc code='51' bci='303'/>
+<uncommon_trap bci='303' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='304'/>
+<method id='1118' holder='1093' name='isMalformed3_2' return='969' arguments='975 975' flags='10' bytes='34' iicount='1'/>
+<call method='1118' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='304'/>
+<bc code='153' bci='307'/>
+<branch target_bci='321' taken='0' not_taken='0'/>
+<bc code='184' bci='317'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='317'/>
+<bc code='184' bci='330'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='330'/>
+<bc code='160' bci='434'/>
+<branch target_bci='664' taken='0' not_taken='0'/>
+<bc code='161' bci='447'/>
+<branch target_bci='459' taken='0' not_taken='0'/>
+<bc code='162' bci='456'/>
+<branch target_bci='552' taken='0' not_taken='0'/>
+<bc code='51' bci='557'/>
+<uncommon_trap bci='557' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='565'/>
+<uncommon_trap bci='565' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='573'/>
+<uncommon_trap bci='573' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='607'/>
+<method id='1114' holder='1093' name='isMalformed4' return='969' arguments='975 975 975' flags='10' bytes='39' iicount='1'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='607'/>
+<bc code='154' bci='610'/>
+<branch target_bci='621' taken='0' not_taken='0'/>
+<bc code='184' bci='615'/>
+<method id='1115' holder='1070' name='isSupplementaryCodePoint' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1115' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='615'/>
+<bc code='154' bci='618'/>
+<branch target_bci='632' taken='0' not_taken='0'/>
+<bc code='184' bci='641'/>
+<method id='1116' holder='1070' name='highSurrogate' return='970' arguments='975' flags='9' bytes='9' iicount='1'/>
+<call method='1116' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='641'/>
+<bc code='85' bci='644'/>
+<uncommon_trap bci='644' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='644' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='654'/>
+<method id='1117' holder='1070' name='lowSurrogate' return='970' arguments='975' flags='9' bytes='10' iicount='1'/>
+<call method='1117' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='654'/>
+<bc code='85' bci='657'/>
+<uncommon_trap bci='657' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='110'/>
+<branch target_bci='678' taken='19' not_taken='20'/>
+<bc code='184' bci='628'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='628'/>
+<bc code='163' bci='472'/>
+<branch target_bci='499' taken='0' not_taken='0'/>
+<bc code='164' bci='478'/>
+<branch target_bci='510' taken='0' not_taken='0'/>
+<bc code='51' bci='488'/>
+<uncommon_trap bci='488' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='493'/>
+<method id='1113' holder='1093' name='isMalformed4_2' return='969' arguments='975 975' flags='10' bytes='56' iicount='1'/>
+<call method='1113' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='493'/>
+<bc code='153' bci='496'/>
+<branch target_bci='510' taken='0' not_taken='0'/>
+<bc code='164' bci='513'/>
+<branch target_bci='539' taken='0' not_taken='0'/>
+<bc code='51' bci='521'/>
+<uncommon_trap bci='521' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='522'/>
+<method id='1112' holder='1093' name='isMalformed4_3' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='522'/>
+<bc code='153' bci='525'/>
+<branch target_bci='539' taken='0' not_taken='0'/>
+<bc code='184' bci='535'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='535'/>
+<bc code='184' bci='548'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='548'/>
+<bc code='184' bci='506'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='506'/>
+<bc code='184' bci='671'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='671'/>
+<bc code='184' bci='687'/>
+<call method='1109' count='19' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='687'/>
+<parse_done nodes='1385' live='1341' memory='331232' stamp='0.413'/>
+</parse>
+<loop_tree>
+<loop idx='1422' inner_loop='1' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1422' inner_loop='1' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1552' main_loop='1552' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1679' inner_loop='1' pre_loop='1552' >
+</loop>
+<loop idx='1552' inner_loop='1' main_loop='1552' >
+</loop>
+<loop idx='1587' inner_loop='1' post_loop='1552' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1679' inner_loop='1' pre_loop='1552' >
+</loop>
+<loop idx='1822' inner_loop='1' main_loop='1822' >
+</loop>
+<loop idx='1587' inner_loop='1' post_loop='1552' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1679' inner_loop='1' pre_loop='1552' >
+</loop>
+<loop idx='1900' inner_loop='1' main_loop='1900' >
+</loop>
+<loop idx='1587' inner_loop='1' post_loop='1552' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1679' inner_loop='1' pre_loop='1552' >
+</loop>
+<loop idx='1900' inner_loop='1' main_loop='1900' >
+</loop>
+<loop idx='1587' inner_loop='1' post_loop='1552' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1679' inner_loop='1' pre_loop='1552' >
+</loop>
+<loop idx='1900' inner_loop='1' main_loop='1900' >
+</loop>
+<loop idx='1587' inner_loop='1' post_loop='1552' >
+</loop>
+<loop idx='1423' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='leaf_type' ctxk='1100'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<code_cache total_blobs='1237' nmethods='718' adapters='262' free_code_cache='246766464'/>
+<task_done success='1' nmsize='4048' count='83' backedge_count='335842' stamp='0.438'/>
+</task>
+<task compile_id='728' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanStartElement ()Z' bytes='446' count='4361' backedge_count='15241' iicount='4361' stamp='0.443'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='scanStartElement' return='969' flags='4' bytes='446' compile_id='573' compiler='c1' level='3' iicount='4361'/>
+<klass id='1111' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<uncommon_trap method='1094' bci='413' reason='unloaded' action='reinterpret' index='943' debug_id='0' klass='1111'/>
+<parse method='1094' uses='4361.000000' stamp='0.443'>
+<bc code='153' bci='4'/>
+<branch target_bci='66' taken='4104' not_taken='0' cnt='4104.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='70'/>
+<branch target_bci='80' taken='4104' not_taken='0' cnt='4104.000000' prob='always'/>
+<uncommon_trap bci='70' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='85'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1103' holder='1096' name='nextElement' return='1098' flags='1' bytes='129' compile_id='574' compiler='c1' level='3' iicount='4365'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1103'/>
+<call method='1103' count='4104' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='4104.000000' stamp='0.443'>
+<uncommon_trap bci='85' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='7'/>
+<branch target_bci='37' taken='4365' not_taken='0' cnt='4365.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='190' bci='45'/>
+<uncommon_trap bci='45' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='46'/>
+<branch target_bci='112' taken='4365' not_taken='0' cnt='4365.000000' prob='always'/>
+<uncommon_trap bci='46' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='127'/>
+<uncommon_trap bci='127' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='192' live='183' memory='65048' stamp='0.444'/>
+</parse>
+<bc code='153' bci='95'/>
+<branch target_bci='116' taken='4104' not_taken='0' cnt='4104.000000' prob='always'/>
+<uncommon_trap bci='95' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='123'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1105' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1106' holder='1097' name='scanName' return='983' arguments='1105' flags='4' bytes='305' compile_id='584' compiler='c2' level='4' iicount='15150'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1106'/>
+<call method='1106' count='4104' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<direct_call bci='123'/>
+<uncommon_trap bci='123' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='135'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1098' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='585' compiler='c2' level='4' iicount='19755'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1107'/>
+<call method='1107' count='4104' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1107' uses='4104.000000' stamp='0.444'>
+<uncommon_trap bci='135' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='828' live='815' memory='168816' stamp='0.444'/>
+</parse>
+<bc code='153' bci='142'/>
+<branch target_bci='157' taken='4104' not_taken='0' cnt='4104.000000' prob='always'/>
+<uncommon_trap bci='142' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='169'/>
+<uncommon_trap bci='169' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='182'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<method id='1108' holder='1099' name='removeAllAttributes' return='977' flags='1' bytes='10' compile_id='575' compiler='c1' level='3' iicount='4365'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1108'/>
+<call method='1108' count='4104' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='4104.000000' stamp='0.444'>
+<uncommon_trap bci='182' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='1'/>
+<klass id='1124' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1156' holder='1124' name='removeAllAttributes' return='977' flags='1' bytes='6' compile_id='576' compiler='c1' level='3' iicount='4432'/>
+<call method='1156' count='4160' prof_factor='0.940206' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1156' uses='4104.000000' stamp='0.444'>
+<parse_done nodes='1071' live='1054' memory='226168' stamp='0.444'/>
+</parse>
+<parse_done nodes='1083' live='1065' memory='228784' stamp='0.444'/>
+</parse>
+<bc code='182' bci='187'/>
+<method id='1109' holder='1093' name='checkDepth' return='977' arguments='983' flags='0' bytes='100' compile_id='577' compiler='c1' level='3' iicount='4365'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<call method='1109' count='4104' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='4104.000000' stamp='0.444'>
+<bc code='180' bci='12'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='15'/>
+<klass id='1146' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<type id='975' name='int'/>
+<klass id='1159' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1160' holder='1159' name='addValue' return='977' arguments='1146 983 975' flags='1' bytes='11' compile_id='612' compiler='c2' level='4' iicount='19988'/>
+<call method='1160' count='4165' prof_factor='0.940206' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<direct_call bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='29'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1161' holder='1101' name='isOverLimit' return='969' arguments='1146 1159' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='35537'/>
+<call method='1161' count='4165' prof_factor='0.940206' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1161' uses='4104.000000' stamp='0.445'>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<klass id='1170' name='java.lang.Enum' flags='1025'/>
+<method id='1171' holder='1170' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1171' count='35296' prof_factor='0.115485' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1171' uses='4104.000000' stamp='0.445'>
+<parse_done nodes='1187' live='1165' memory='249160' stamp='0.445'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1173' holder='1101' name='isOverLimit' return='969' arguments='975 1159' flags='1' bytes='111' compile_id='594' compiler='c2' level='4' iicount='11900'/>
+<call method='1173' count='35296' prof_factor='0.115485' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1173' uses='4104.000000' stamp='0.445'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1171' count='10952' prof_factor='0.344874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1171' uses='3861.000000' stamp='0.445'>
+<parse_done nodes='1256' live='1230' memory='260952' stamp='0.445'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1171' count='10952' prof_factor='0.344874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1171' uses='3861.000000' stamp='0.445'>
+<parse_done nodes='1281' live='1253' memory='265496' stamp='0.445'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1171' count='10952' prof_factor='0.344874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1171' uses='3861.000000' stamp='0.445'>
+<parse_done nodes='1306' live='1276' memory='268984' stamp='0.445'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='45'/>
+<call method='1171' count='5416' prof_factor='0.344874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1171' uses='1910.000000' stamp='0.445'>
+<parse_done nodes='1327' live='1296' memory='271752' stamp='0.445'/>
+</parse>
+<bc code='159' bci='48'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='48' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='55'/>
+<call method='1171' count='5416' prof_factor='0.344874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1171' uses='1910.000000' stamp='0.445'>
+<parse_done nodes='1351' live='1318' memory='276728' stamp='0.445'/>
+</parse>
+<bc code='159' bci='58'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<bc code='182' bci='73'/>
+<method id='1176' holder='1159' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' compile_id='521' compiler='c1' level='3' iicount='11168'/>
+<call method='1176' count='10952' prof_factor='0.344874' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1176' uses='3861.000000' stamp='0.445'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1418' live='1381' memory='287976' stamp='0.445'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1469' live='1428' memory='295312' stamp='0.445'/>
+</parse>
+<parse_done nodes='1470' live='1428' memory='296088' stamp='0.445'/>
+</parse>
+<bc code='153' bci='32'/>
+<branch target_bci='99' taken='4365' not_taken='0' cnt='4365.000000' prob='always'/>
+<parse_done nodes='1480' live='1437' memory='297560' stamp='0.445'/>
+</parse>
+<bc code='182' bci='191'/>
+<method id='1110' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' compile_id='682' compiler='c2' level='4' iicount='17538'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1110'/>
+<call method='1110' count='4104' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='4104.000000' stamp='0.446'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='182' bci='4'/>
+<method id='1184' holder='1097' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='727' compiler='c1' level='3' iicount='26046'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1184'/>
+<call method='1184' count='17222' prof_factor='0.234006' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='12'/>
+<method id='1185' holder='1097' name='peekChar' return='975' flags='1' bytes='63' compile_id='656' compiler='c2' level='4' iicount='20109'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1185'/>
+<call method='1185' count='17222' prof_factor='0.234006' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1185' uses='4104.000000' stamp='0.446'>
+<observe trap='unstable_if' count='1' total='2'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<method id='1153' holder='1097' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='43'/>
+<call method='1153' count='1' prof_factor='0.204088' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1701' live='1649' memory='334856' stamp='0.446'/>
+</parse>
+<bc code='160' bci='19'/>
+<branch target_bci='33' taken='16601' not_taken='938' cnt='17539.000000' prob='0.946519'/>
+<bc code='182' bci='27'/>
+<method id='1189' holder='1097' name='scanChar' return='975' arguments='1105' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1189'/>
+<call method='1189' count='921' prof_factor='0.234006' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='219.000000' stamp='0.446'>
+<uncommon_trap bci='27' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<klass id='1143' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1148' holder='1097' name='checkEntityLimit' return='977' arguments='1105 1143 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<call method='1148' count='7328' prof_factor='0.028801' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='219.000000' stamp='0.447'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1945' live='1883' memory='379696' stamp='0.447'/>
+</parse>
+<parse_done nodes='1948' live='1885' memory='380728' stamp='0.447'/>
+</parse>
+<bc code='160' bci='36'/>
+<branch target_bci='90' taken='13854' not_taken='2748' cnt='16602.000000' prob='0.834478'/>
+<bc code='182' bci='44'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1189'/>
+<call method='1189' count='2698' prof_factor='0.234006' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='643.000000' stamp='0.447'>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<call method='1148' count='7328' prof_factor='0.084561' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='643.000000' stamp='0.447'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2185' live='2111' memory='485192' stamp='0.447'/>
+</parse>
+<parse_done nodes='2188' live='2113' memory='486224' stamp='0.447'/>
+</parse>
+<bc code='182' bci='57'/>
+<method id='1190' holder='1097' name='skipChar' return='969' arguments='975 1105' flags='4' bytes='285' compile_id='714' compiler='c1' level='3' iicount='9593'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1190'/>
+<call method='1190' count='2698' prof_factor='0.234006' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1190' uses='643.000000' stamp='0.447'>
+<observe trap='unstable_if' count='1' total='3'/>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='9593' not_taken='1' cnt='9594.000000' prob='0.999896'/>
+<bc code='182' bci='21'/>
+<call method='1153' count='1' prof_factor='0.067028' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='1379' not_taken='8215' cnt='9594.000000' prob='0.143736'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='8215' not_taken='0' cnt='8215.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<call method='1148' count='8149' prof_factor='0.067028' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='551.000000' stamp='0.447'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2424' live='2342' memory='536800' stamp='0.447'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='1379' not_taken='0' cnt='1379.000000' prob='always'/>
+<parse_done nodes='2437' live='2353' memory='540072' stamp='0.448'/>
+</parse>
+<bc code='154' bci='60'/>
+<branch target_bci='83' taken='2748' not_taken='0' cnt='2748.000000' prob='always'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='92'/>
+<klass id='1104' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1186' holder='1104' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' compile_id='622' compiler='c2' level='4' iicount='13862'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1186'/>
+<call method='1186' count='13604' prof_factor='0.234006' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1186' uses='3242.000000' stamp='0.448'>
+<bc code='184' bci='1'/>
+<klass id='1144' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1145' holder='1144' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='33417'/>
+<call method='1145' count='13577' prof_factor='0.233877' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1145' uses='3242.000000' stamp='0.448'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='33417' cnt='33417.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='33417' cnt='33417.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2510' live='2422' memory='551720' stamp='0.448'/>
+</parse>
+<parse_done nodes='2511' live='2422' memory='551920' stamp='0.448'/>
+</parse>
+<bc code='153' bci='95'/>
+<branch target_bci='102' taken='0' not_taken='13854' cnt='13854.000000' prob='never'/>
+<bc code='154' bci='99'/>
+<branch target_bci='134' taken='13854' not_taken='0' cnt='13854.000000' prob='always'/>
+<uncommon_trap bci='99' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='2535' live='2444' memory='555328' stamp='0.448'/>
+</parse>
+<bc code='154' bci='194'/>
+<branch target_bci='303' taken='0' not_taken='4104' cnt='4104.000000' prob='never'/>
+<uncommon_trap bci='194' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<uncommon_trap bci='217' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='217' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='222'/>
+<klass id='1113' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1122' holder='1093' name='scanAttribute' return='977' arguments='1113' flags='4' bytes='248' compile_id='614' compiler='c2' level='4' iicount='15390'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1122'/>
+<call method='1122' count='13749' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<direct_call bci='222'/>
+<bc code='198' bci='229'/>
+<branch target_bci='291' taken='0' not_taken='13749' cnt='13749.000000' prob='never'/>
+<uncommon_trap bci='229' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='240'/>
+<method id='1123' holder='1101' name='isNoLimit' return='969' arguments='975' flags='1' bytes='10' compile_id='554' compiler='c1' level='3' iicount='15641'/>
+<call method='1123' count='13749' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1123' uses='13749.000000' stamp='0.448'>
+<uncommon_trap bci='240' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='1'/>
+<branch target_bci='8' taken='15729' not_taken='0' cnt='15729.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='2686' live='2588' memory='586024' stamp='0.448'/>
+</parse>
+<bc code='154' bci='243'/>
+<branch target_bci='291' taken='0' not_taken='13749' cnt='13749.000000' prob='never'/>
+<bc code='182' bci='250'/>
+<method id='1125' holder='1124' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1125'/>
+<call method='1125' count='13749' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1125' uses='13749.000000' stamp='0.448'>
+<uncommon_trap bci='250' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='2723' live='2623' memory='594176' stamp='0.448'/>
+</parse>
+<bc code='164' bci='257'/>
+<branch target_bci='291' taken='13749' not_taken='0' cnt='13749.000000' prob='always'/>
+<uncommon_trap bci='257' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='292'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1110'/>
+<call method='1110' count='13749' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='13749.000000' stamp='0.448'>
+<observe trap='unstable_if' count='1' total='4'/>
+<bc code='182' bci='4'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1184'/>
+<call method='1184' count='17222' prof_factor='0.783955' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='12'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1185'/>
+<call method='1185' count='17222' prof_factor='0.783955' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1185' uses='13749.000000' stamp='0.448'>
+<observe trap='unstable_if' count='1' total='5'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<call method='1153' count='1' prof_factor='0.683724' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2949' live='2839' memory='632728' stamp='0.449'/>
+</parse>
+<bc code='160' bci='19'/>
+<branch target_bci='33' taken='16601' not_taken='938' cnt='17539.000000' prob='0.946519'/>
+<bc code='182' bci='27'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1189'/>
+<call method='1189' count='921' prof_factor='0.783955' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='735.000000' stamp='0.449'>
+<uncommon_trap bci='27' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<call method='1148' count='7328' prof_factor='0.096660' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='735.000000' stamp='0.449'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3189' live='3069' memory='674880' stamp='0.449'/>
+</parse>
+<parse_done nodes='3192' live='3071' memory='675912' stamp='0.449'/>
+</parse>
+<bc code='160' bci='36'/>
+<branch target_bci='90' taken='13854' not_taken='2748' cnt='16602.000000' prob='0.834478'/>
+<bc code='182' bci='44'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1189'/>
+<call method='1189' count='2698' prof_factor='0.783955' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='2154.000000' stamp='0.449'>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<call method='1148' count='7328' prof_factor='0.283272' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='2154.000000' stamp='0.450'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3428' live='3296' memory='717632' stamp='0.450'/>
+</parse>
+<parse_done nodes='3431' live='3298' memory='718664' stamp='0.450'/>
+</parse>
+<bc code='182' bci='57'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1190'/>
+<call method='1190' count='2698' prof_factor='0.783955' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1190' uses='2154.000000' stamp='0.450'>
+<observe trap='unstable_if' count='1' total='6'/>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='9593' not_taken='1' cnt='9594.000000' prob='0.999896'/>
+<bc code='182' bci='21'/>
+<call method='1153' count='1' prof_factor='0.224539' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='1379' not_taken='8215' cnt='9594.000000' prob='0.143736'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='8215' not_taken='0' cnt='8215.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<call method='1148' count='8149' prof_factor='0.224539' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='1845.000000' stamp='0.450'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3666' live='3526' memory='768208' stamp='0.450'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='1379' not_taken='0' cnt='1379.000000' prob='always'/>
+<parse_done nodes='3679' live='3537' memory='771352' stamp='0.450'/>
+</parse>
+<bc code='154' bci='60'/>
+<branch target_bci='83' taken='2748' not_taken='0' cnt='2748.000000' prob='always'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='92'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1186'/>
+<call method='1186' count='13604' prof_factor='0.783955' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1186' uses='10861.000000' stamp='0.450'>
+<bc code='184' bci='1'/>
+<call method='1145' count='13577' prof_factor='0.783509' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1145' uses='10861.000000' stamp='0.450'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='33417' cnt='33417.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='33417' cnt='33417.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3747' live='3601' memory='782616' stamp='0.450'/>
+</parse>
+<parse_done nodes='3748' live='3601' memory='784864' stamp='0.450'/>
+</parse>
+<bc code='153' bci='95'/>
+<branch target_bci='102' taken='0' not_taken='13854' cnt='13854.000000' prob='never'/>
+<bc code='154' bci='99'/>
+<branch target_bci='134' taken='13854' not_taken='0' cnt='13854.000000' prob='always'/>
+<uncommon_trap bci='99' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='3772' live='3623' memory='788520' stamp='0.450'/>
+</parse>
+<bc code='153' bci='295'/>
+<branch target_bci='217' taken='9645' not_taken='4104' cnt='13749.000000' prob='0.701506'/>
+<bc code='153' bci='307'/>
+<branch target_bci='394' taken='1137' not_taken='2967' cnt='4104.000000' prob='0.277047'/>
+<bc code='46' bci='334'/>
+<uncommon_trap bci='334' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='334' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='335'/>
+<branch target_bci='358' taken='2967' not_taken='0' cnt='2967.000000' prob='always'/>
+<uncommon_trap bci='335' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='362'/>
+<branch target_bci='383' taken='0' not_taken='2967' cnt='2967.000000' prob='never'/>
+<uncommon_trap bci='362' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='378'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser' flags='9'/>
+<klass id='1114' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1112' name='com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler' flags='1537'/>
+<method id='1118' holder='1112' name='emptyElement' return='977' arguments='1098 1113 1114' flags='1025' bytes='0' iicount='1'/>
+<call method='1118' count='2967' prof_factor='1.000000' virtual='1' inline='1' receiver='1102' receiver_count='2967'/>
+<klass id='1221' name='com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser' flags='1025'/>
+<method id='1222' holder='1221' name='emptyElement' return='977' arguments='1098 1113 1114' flags='1' bytes='14' compile_id='599' compiler='c1' level='3' iicount='3440'/>
+<call method='1222' count='2967' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='378' klass='1102'/>
+<uncommon_trap bci='378' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='378' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<klass id='1225' name='com.sun.org.apache.xerces.internal.parsers.SAXParser' flags='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1221' x='1225'/>
+<parse method='1222' uses='2967.000000' stamp='0.451'>
+<bc code='182' bci='4'/>
+<klass id='1227' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<method id='1228' holder='1227' name='startElement' return='977' arguments='1098 1113 1114' flags='1' bytes='318' compile_id='578' compiler='c1' level='3' iicount='4726'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1228'/>
+<call method='1228' count='3041' prof_factor='0.862500' inline='1'/>
+<klass id='1230' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<uncommon_trap method='1228' bci='27' reason='unloaded' action='reinterpret' index='528' debug_id='0' klass='1230'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1227' x='1225'/>
+<parse method='1228' uses='2967.000000' stamp='0.451'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<assert_null reason='field' klass='1230'/>
+<uncommon_trap bci='4' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='4'/>
+<branch target_bci='32' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<bc code='198' bci='36'/>
+<branch target_bci='302' taken='0' not_taken='4726' cnt='4726.000000' prob='never'/>
+<uncommon_trap bci='36' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='43'/>
+<branch target_bci='232' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<uncommon_trap bci='43' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='238'/>
+<uncommon_trap bci='238' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='241'/>
+<branch target_bci='251' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<uncommon_trap bci='241' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='259'/>
+<branch target_bci='269' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<uncommon_trap bci='259' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='278'/>
+<klass id='1233' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1234' holder='1233' name='setAttributes' return='977' arguments='1113' flags='1' bytes='6' compile_id='561' compiler='c1' level='1' iicount='147'/>
+<call method='1234' count='4451' prof_factor='0.627804' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1234' uses='2967.000000' stamp='0.451'>
+<uncommon_trap bci='278' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4288' live='4125' memory='984152' stamp='0.451'/>
+</parse>
+<bc code='185' bci='297'/>
+<klass id='1244' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<klass id='1235' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1231' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1236' holder='1231' name='startElement' return='977' arguments='983 983 983 1235' flags='1025' bytes='0' iicount='1'/>
+<call method='1236' count='4451' prof_factor='0.627804' virtual='1' inline='1' receiver='1244' receiver_count='4451'/>
+<method id='1247' holder='1244' name='startElement' return='977' arguments='983 983 983 1235' flags='1' bytes='3082' compile_id='595' compiler='c1' level='3' iicount='4767'/>
+<call method='1247' count='4451' prof_factor='0.627804' inline='1'/>
+<klass id='1326' name='com.sun.hotspot.tools.compiler.LogParser$LockElimination' unloaded='1'/>
+<uncommon_trap method='1247' bci='2456' reason='unloaded' action='reinterpret' index='244' debug_id='0' klass='1326'/>
+<klass id='1325' name='com.sun.hotspot.tools.compiler.UncommonTrapEvent' unloaded='1'/>
+<uncommon_trap method='1247' bci='2414' reason='unloaded' action='reinterpret' index='231' debug_id='0' klass='1325'/>
+<uncommon_trap method='1247' bci='2182' reason='unloaded' action='reinterpret' index='244' debug_id='0' klass='1326'/>
+<klass id='1343' name='com.sun.hotspot.tools.compiler.UncommonTrap' unloaded='1'/>
+<uncommon_trap method='1247' bci='2012' reason='unloaded' action='reinterpret' index='235' debug_id='0' klass='1343'/>
+<uncommon_trap method='1247' bci='1930' reason='unloaded' action='reinterpret' index='231' debug_id='0' klass='1325'/>
+<klass id='1362' name='java.lang.AssertionError' flags='1'/>
+<uncommon_trap method='1247' bci='1461' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1362'/>
+<uncommon_trap method='1247' bci='1412' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1362'/>
+<klass id='1373' name='java.lang.System' unloaded='1'/>
+<uncommon_trap method='1247' bci='1130' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1373'/>
+<uncommon_trap method='1247' bci='129' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1373'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='297' klass='1244'/>
+<uncommon_trap bci='297' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='297' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='297'/>
+<klass id='1229' name='org.xml.sax.SAXException' unloaded='1'/>
+<uncommon_trap bci='305' reason='unloaded' action='reinterpret' debug_id='0' klass='1229' comment='!loaded exception'/>
+<parse_done nodes='4371' live='4203' memory='1005040' stamp='0.453'/>
+</parse>
+<bc code='182' bci='10'/>
+<method id='1428' holder='1227' name='endElement' return='977' arguments='1098 1114' flags='1' bytes='108' compile_id='581' compiler='c1' level='3' iicount='4806'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1428'/>
+<call method='1428' count='3040' prof_factor='0.862500' inline='1'/>
+<uncommon_trap method='1428' bci='15' reason='unloaded' action='reinterpret' index='528' debug_id='0' klass='1230'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1227' x='1225'/>
+<parse method='1428' uses='2966.000000' stamp='0.453'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<assert_null reason='field' klass='1230'/>
+<uncommon_trap bci='4' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='4'/>
+<branch target_bci='20' taken='4806' not_taken='0' cnt='4806.000000' prob='always'/>
+<bc code='198' bci='24'/>
+<branch target_bci='94' taken='0' not_taken='4806' cnt='4806.000000' prob='never'/>
+<uncommon_trap bci='24' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='198' bci='36'/>
+<branch target_bci='46' taken='4806' not_taken='0' cnt='4806.000000' prob='always'/>
+<uncommon_trap bci='36' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='53'/>
+<branch target_bci='63' taken='4806' not_taken='0' cnt='4806.000000' prob='always'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='78'/>
+<method id='1429' holder='1231' name='endElement' return='977' arguments='983 983 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1429' count='4418' prof_factor='0.617145' virtual='1' inline='1' receiver='1244' receiver_count='4418'/>
+<method id='1433' holder='1244' name='endElement' return='977' arguments='983 983 983' flags='1' bytes='718' compile_id='596' compiler='c1' level='3' iicount='4826'/>
+<call method='1433' count='4418' prof_factor='0.617145' inline='1'/>
+<uncommon_trap method='1433' bci='636' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1373'/>
+<uncommon_trap method='1433' bci='572' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1373'/>
+<uncommon_trap method='1433' bci='297' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1373'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='78' klass='1244'/>
+<uncommon_trap bci='78' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='78' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='78'/>
+<uncommon_trap bci='97' reason='unloaded' action='reinterpret' debug_id='0' klass='1229' comment='!loaded exception'/>
+<bc code='153' bci='87'/>
+<branch target_bci='94' taken='4806' not_taken='0' cnt='4806.000000' prob='always'/>
+<uncommon_trap bci='87' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='4600' live='4422' memory='1048776' stamp='0.453'/>
+</parse>
+<parse_done nodes='4608' live='4429' memory='1051632' stamp='0.453'/>
+</parse>
+<bc code='182' bci='387'/>
+<method id='1117' holder='1096' name='popElement' return='1098' flags='1' bytes='59' compile_id='600' compiler='c1' level='3' iicount='4359'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<call method='1117' count='2966' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1117' uses='2966.000000' stamp='0.453'>
+<uncommon_trap bci='387' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='7'/>
+<branch target_bci='20' taken='0' not_taken='4567' cnt='4567.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='17'/>
+<branch target_bci='42' taken='4567' not_taken='0' cnt='4567.000000' prob='always'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='57'/>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='57' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='4736' live='4550' memory='1069552' stamp='0.454'/>
+</parse>
+<bc code='180' bci='395'/>
+<assert_null reason='field' klass='1111'/>
+<uncommon_trap bci='398' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='398'/>
+<branch target_bci='416' taken='1137' not_taken='0' cnt='1137.000000' prob='always'/>
+<bc code='198' bci='420'/>
+<branch target_bci='441' taken='0' not_taken='1137' cnt='1137.000000' prob='never'/>
+<uncommon_trap bci='420' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='436'/>
+<method id='1115' holder='1112' name='startElement' return='977' arguments='1098 1113 1114' flags='1025' bytes='0' iicount='1'/>
+<call method='1115' count='1137' prof_factor='1.000000' virtual='1' inline='1' receiver='1102' receiver_count='1137'/>
+<call method='1228' count='1137' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='436' klass='1102'/>
+<uncommon_trap bci='436' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='436' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1227' x='1225'/>
+<parse method='1228' uses='1137.000000' stamp='0.454'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<assert_null reason='field' klass='1230'/>
+<uncommon_trap bci='4' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='4'/>
+<branch target_bci='32' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<bc code='198' bci='36'/>
+<branch target_bci='302' taken='0' not_taken='4726' cnt='4726.000000' prob='never'/>
+<uncommon_trap bci='36' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='43'/>
+<branch target_bci='232' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<uncommon_trap bci='43' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='238'/>
+<uncommon_trap bci='238' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='241'/>
+<branch target_bci='251' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<uncommon_trap bci='241' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='259'/>
+<branch target_bci='269' taken='4726' not_taken='0' cnt='4726.000000' prob='always'/>
+<uncommon_trap bci='259' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='278'/>
+<call method='1234' count='4451' prof_factor='0.240584' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1234' uses='1137.000000' stamp='0.454'>
+<uncommon_trap bci='278' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='5165' live='4967' memory='1154232' stamp='0.454'/>
+</parse>
+<bc code='185' bci='297'/>
+<call method='1236' count='4451' prof_factor='0.240584' virtual='1' inline='1' receiver='1244' receiver_count='4451'/>
+<call method='1247' count='4451' prof_factor='0.240584' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='297' klass='1244'/>
+<uncommon_trap bci='297' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='297' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='297'/>
+<uncommon_trap bci='305' reason='unloaded' action='reinterpret' debug_id='0' klass='1229' comment='!loaded exception'/>
+<parse_done nodes='5246' live='5043' memory='1170752' stamp='0.454'/>
+</parse>
+<parse_done nodes='5258' live='5054' memory='1173496' stamp='0.454'/>
+</parse>
+<loop_tree>
+<loop idx='2957' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2957' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2957' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2957' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2957' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2957' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1221' x='1225'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1106'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1107'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1110'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1184'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1185'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1189'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1148'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1190'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1186'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1122'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1125'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1228'/>
+<dependency type='unique_concrete_method' ctxk='1102' x='1428'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<code_cache total_blobs='1334' nmethods='765' adapters='262' free_code_cache='246517120'/>
+<task_done success='1' nmsize='8968' count='7122' backedge_count='22311' inlined_bytes='3203' stamp='0.502'/>
+</task>
+<task compile_id='791' method='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager isNoLimit (I)Z' bytes='10' count='23050' iicount='23050' stamp='0.548'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1094' holder='1093' name='isNoLimit' return='969' arguments='975' flags='1' bytes='10' compile_id='554' compiler='c1' level='3' iicount='23050'/>
+<parse method='1094' uses='23050.000000' stamp='0.548'>
+<bc code='154' bci='1'/>
+<branch target_bci='8' taken='23050' not_taken='0' cnt='23050.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='40' live='38' memory='23448' stamp='0.548'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1366' nmethods='785' adapters='262' free_code_cache='246452864'/>
+<task_done success='1' nmsize='120' count='23139' stamp='0.548'/>
+</task>
+<task compile_id='933' method='java.nio.CharBuffer arrayOffset ()I' bytes='35' count='7297' iicount='7297' stamp='0.591'>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1096' name='java.nio.HeapCharBuffer' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='arrayOffset' return='975' flags='17' bytes='35' compile_id='771' compiler='c1' level='3' iicount='7300'/>
+<klass id='1097' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<uncommon_trap method='1094' bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='1097'/>
+<klass id='1098' name='java.lang.UnsupportedOperationException' flags='1'/>
+<uncommon_trap method='1094' bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0' klass='1098'/>
+<parse method='1094' uses='7300.000000' stamp='0.591'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='7300' not_taken='0' cnt='7300.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='7300' not_taken='0' cnt='7300.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='61' live='58' memory='26408' stamp='0.591'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<code_cache total_blobs='1543' nmethods='934' adapters='270' free_code_cache='246081536'/>
+<task_done success='1' nmsize='152' count='7456' stamp='0.592'/>
+</task>
+<task compile_id='953' method='java.nio.CharBuffer position (I)Ljava/nio/Buffer;' bytes='6' count='5223' iicount='5223' stamp='0.594'>
+<klass id='1093' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1096' name='java.nio.HeapCharBuffer' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='position' return='1064' arguments='975' flags='4161' bytes='6' compile_id='759' compiler='c1' level='3' iicount='5228'/>
+<parse method='1094' uses='5228.000000' stamp='0.594'>
+<bc code='182' bci='2'/>
+<method id='1097' holder='1093' name='position' return='1093' arguments='975' flags='17' bytes='8' compile_id='760' compiler='c1' level='3' iicount='5236'/>
+<call method='1097' count='5133' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<parse method='1097' uses='5228.000000' stamp='0.595'>
+<bc code='183' bci='2'/>
+<method id='1098' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='918' compiler='c2' level='4' iicount='5592'/>
+<call method='1098' count='5148' prof_factor='0.998472' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='5228.000000' stamp='0.595'>
+<bc code='164' bci='5'/>
+<branch target_bci='12' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='156' bci='14'/>
+<branch target_bci='21' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='23'/>
+<branch target_bci='32' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<bc code='164' bci='45'/>
+<branch target_bci='53' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='106' live='102' memory='35288' stamp='0.595'/>
+</parse>
+<parse_done nodes='107' live='102' memory='35624' stamp='0.595'/>
+</parse>
+<parse_done nodes='108' live='102' memory='36088' stamp='0.595'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<code_cache total_blobs='1564' nmethods='951' adapters='270' free_code_cache='246044928'/>
+<task_done success='1' nmsize='216' count='5341' inlined_bytes='63' stamp='0.595'/>
+</task>
+<task compile_id='962' method='java.lang.AbstractStringBuilder append (C)Ljava/lang/AbstractStringBuilder;' bytes='77' count='5381' iicount='5381' stamp='0.601'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<type id='970' name='char'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='970' flags='1' bytes='77' compile_id='222' compiler='c1' level='3' iicount='5388'/>
+<parse method='1093' uses='5388.000000' stamp='0.601'>
+<bc code='183' bci='7'/>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<method id='1095' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='618' compiler='c2' level='4' iicount='5517'/>
+<call method='1095' count='5129' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5388.000000' stamp='0.601'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='38' taken='4347' not_taken='1170' cnt='5517.000000' prob='0.787928'/>
+<bc code='183' bci='24'/>
+<method id='1102' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' compile_id='295' compiler='c1' level='3' iicount='1176'/>
+<call method='1102' count='1113' prof_factor='0.976618' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='1143.000000' stamp='0.601'>
+<bc code='156' bci='20'/>
+<branch target_bci='25' taken='1083' not_taken='93' cnt='1176.000000' prob='0.920918'/>
+<bc code='158' bci='35'/>
+<branch target_bci='45' taken='0' not_taken='1176' cnt='1176.000000' prob='never'/>
+<uncommon_trap bci='35' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='156' bci='42'/>
+<branch target_bci='53' taken='1176' not_taken='0' cnt='1176.000000' prob='always'/>
+<uncommon_trap bci='42' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='147' live='143' memory='41800' stamp='0.601'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1103' name='java.util.Arrays' flags='1'/>
+<method id='1104' holder='1103' name='copyOf' return='1085' arguments='1085 975' flags='9' bytes='19' iicount='1415'/>
+<call method='1104' count='1113' prof_factor='0.976618' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='1143.000000' stamp='0.601'>
+<bc code='190' bci='9'/>
+<uncommon_trap bci='9' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='11'/>
+<klass id='1108' name='java.lang.Math' flags='17'/>
+<method id='1109' holder='1108' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='22167'/>
+<call method='1109' count='1235' prof_factor='0.807774' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='184' bci='14'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1110' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1110' count='1235' prof_factor='0.807774' inline='1'/>
+<uncommon_trap bci='1' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='53'/>
+<parse_done nodes='284' live='277' memory='68920' stamp='0.602'/>
+</parse>
+<parse_done nodes='442' live='434' memory='89832' stamp='0.602'/>
+</parse>
+<bc code='182' bci='11'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='15083'/>
+<call method='1096' count='5129' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='5388.000000' stamp='0.602'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='15302' cnt='15302.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='0' not_taken='15302' cnt='15302.000000' prob='never'/>
+<uncommon_trap bci='10' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='484' live='474' memory='97368' stamp='0.602'/>
+</parse>
+<bc code='153' bci='14'/>
+<branch target_bci='45' taken='0' not_taken='5388' cnt='5388.000000' prob='never'/>
+<bc code='184' bci='18'/>
+<klass id='1100' name='java.lang.StringLatin1' flags='16'/>
+<method id='1101' holder='1100' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='17588'/>
+<call method='1101' count='5129' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5388.000000' stamp='0.602'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='17588' cnt='17588.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='522' live='510' memory='112912' stamp='0.602'/>
+</parse>
+<bc code='153' bci='21'/>
+<branch target_bci='45' taken='0' not_taken='5388' cnt='5388.000000' prob='never'/>
+<bc code='84' bci='41'/>
+<uncommon_trap bci='41' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='41' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='581' live='566' memory='121728' stamp='0.602'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1594' nmethods='973' adapters='270' free_code_cache='245955584'/>
+<task_done success='1' nmsize='1176' count='5864' inlined_bytes='156' stamp='0.607'/>
+</task>
+</compilation_log>
+<compilation_log thread='25164'>
+<start_compile_thread name='C2 CompilerThread6' thread='25164' process='25109' stamp='0.107'/>
+<task compile_id='320' method='java.lang.String equals (Ljava/lang/Object;)Z' bytes='65' count='5536' iicount='5536' stamp='0.249'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='8' compiler='c1' level='3' iicount='5536'/>
+<parse method='1093' uses='5536.000000' stamp='0.249'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4513' not_taken='1023' cnt='5536.000000' prob='0.81521'/>
+<bc code='193' bci='8'/>
+<uncommon_trap bci='8' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4512' cnt='4513.000000' prob='0.000221582'/>
+<bc code='192' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='15' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='14209'/>
+<call method='1095' count='4173' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='4512.000000' stamp='0.249'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='14209' cnt='14209.000000' prob='never'/>
+<parse_done nodes='132' live='127' memory='38536' stamp='0.249'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1095' count='4173' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='4512.000000' stamp='0.249'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='14209' cnt='14209.000000' prob='never'/>
+<parse_done nodes='156' live='150' memory='42144' stamp='0.249'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4512' cnt='4512.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1096' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='22345'/>
+<call method='1096' count='4173' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='4512.000000' stamp='0.249'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='22345' cnt='22345.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='22344' cnt='22345.000000' prob='4.47527e-05'/>
+<parse_done nodes='201' live='193' memory='49312' stamp='0.249'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4512' cnt='4512.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1099' name='java.lang.StringLatin1' flags='16'/>
+<method id='1100' holder='1099' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4481'/>
+<call method='1100' count='4173' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_equalsL' nodes='15'/>
+<parse_done nodes='242' live='231' memory='54232' stamp='0.249'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='721' nmethods='323' adapters='239' free_code_cache='248158976'/>
+<task_done success='1' nmsize='504' count='5588' inlined_bytes='85' stamp='0.250'/>
+</task>
+<task compile_id='582' method='com.sun.org.apache.xerces.internal.util.SymbolTable hash ([CII)I' bytes='53' count='2428' backedge_count='20446' iicount='2428' stamp='0.341'>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='533' compiler='c1' level='3' iicount='2429'/>
+<parse method='1094' uses='2429.000000' stamp='0.342'>
+<bc code='199' bci='4'/>
+<branch target_bci='45' taken='0' not_taken='2179' cnt='2179.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='2179' not_taken='18404' cnt='20583.000000' prob='0.105864'/>
+<uncommon_trap bci='19' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='29' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='2179' not_taken='18404' cnt='18404.000000' prob='0.105864'/>
+<parse_done nodes='155' live='149' memory='44392' stamp='0.342'/>
+</parse>
+<loop_tree>
+<loop idx='162' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='271' inner_loop='1' main_loop='271' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='232' inner_loop='1' pre_loop='162' >
+</loop>
+<loop idx='315' inner_loop='1' main_loop='315' >
+</loop>
+<loop idx='204' inner_loop='1' post_loop='162' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='232' inner_loop='1' pre_loop='162' >
+</loop>
+<loop idx='315' inner_loop='1' main_loop='315' >
+</loop>
+<loop idx='204' inner_loop='1' post_loop='162' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='232' inner_loop='1' pre_loop='162' >
+</loop>
+<loop idx='315' inner_loop='1' main_loop='315' >
+</loop>
+<loop idx='204' inner_loop='1' post_loop='162' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1032' nmethods='584' adapters='261' free_code_cache='247451904'/>
+<task_done success='1' nmsize='440' count='3668' backedge_count='31151' stamp='0.347'/>
+</task>
+<task compile_id='598' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanChar (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)I' bytes='236' count='6821' iicount='6821' stamp='0.347'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanChar' return='975' arguments='1094' flags='4' bytes='236' compile_id='524' compiler='c1' level='3' iicount='6821'/>
+<parse method='1095' uses='6821.000000' stamp='0.347'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6821' not_taken='0' cnt='6821.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='6821' cnt='6821.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='6821' not_taken='0' cnt='6821.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='6821' cnt='6821.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1098' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<call method='1098' count='6545' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='6821.000000' stamp='0.348'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='238' live='229' memory='57000' stamp='0.348'/>
+</parse>
+<parse_done nodes='241' live='231' memory='57648' stamp='0.348'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<code_cache total_blobs='1042' nmethods='590' adapters='261' free_code_cache='247435392'/>
+<task_done success='1' nmsize='440' count='7604' inlined_bytes='50' stamp='0.350'/>
+</task>
+<task compile_id='609' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (ILjava/lang/String;I)V' bytes='260' count='5588' iicount='5588' stamp='0.352'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1094' holder='1093' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='5588'/>
+<parse method='1094' uses='5588.000000' stamp='0.352'>
+<bc code='182' bci='4'/>
+<klass id='1098' name='java.lang.Enum' flags='1025'/>
+<method id='1099' holder='1098' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1099' count='5312' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5588.000000' stamp='0.352'>
+<parse_done nodes='40' live='39' memory='23720' stamp='0.352'/>
+</parse>
+<bc code='159' bci='7'/>
+<branch target_bci='50' taken='0' not_taken='5588' cnt='5588.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='14'/>
+<call method='1099' count='5312' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5588.000000' stamp='0.352'>
+<parse_done nodes='66' live='63' memory='29592' stamp='0.353'/>
+</parse>
+<bc code='159' bci='17'/>
+<branch target_bci='50' taken='0' not_taken='5588' cnt='5588.000000' prob='never'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='24'/>
+<call method='1099' count='5312' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5588.000000' stamp='0.353'>
+<parse_done nodes='91' live='86' memory='33144' stamp='0.353'/>
+</parse>
+<bc code='159' bci='27'/>
+<branch target_bci='50' taken='0' not_taken='5588' cnt='5588.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='34'/>
+<call method='1099' count='5312' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5588.000000' stamp='0.353'>
+<parse_done nodes='116' live='109' memory='38440' stamp='0.353'/>
+</parse>
+<bc code='159' bci='37'/>
+<branch target_bci='50' taken='0' not_taken='5588' cnt='5588.000000' prob='never'/>
+<uncommon_trap bci='37' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='44'/>
+<call method='1099' count='5312' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5588.000000' stamp='0.353'>
+<parse_done nodes='141' live='132' memory='44360' stamp='0.353'/>
+</parse>
+<bc code='160' bci='47'/>
+<branch target_bci='61' taken='5588' not_taken='0' cnt='5588.000000' prob='always'/>
+<uncommon_trap bci='47' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='65'/>
+<call method='1099' count='5312' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5588.000000' stamp='0.353'>
+<parse_done nodes='166' live='155' memory='47960' stamp='0.353'/>
+</parse>
+<bc code='159' bci='68'/>
+<branch target_bci='81' taken='517' not_taken='5071' cnt='5588.000000' prob='0.0925197'/>
+<bc code='182' bci='75'/>
+<call method='1099' count='4821' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='5071.000000' stamp='0.353'>
+<parse_done nodes='187' live='175' memory='51272' stamp='0.353'/>
+</parse>
+<bc code='160' bci='78'/>
+<branch target_bci='96' taken='117' not_taken='4955' cnt='5072.000000' prob='0.0230678'/>
+<bc code='50' bci='101'/>
+<uncommon_trap bci='101' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='101' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='102'/>
+<branch target_bci='127' taken='117' not_taken='0' cnt='117.000000' prob='always'/>
+<uncommon_trap bci='102' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='132'/>
+<uncommon_trap bci='132' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='185' bci='141'/>
+<klass id='1097' name='java.util.HashMap' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1100' name='java.util.Map' flags='1537'/>
+<method id='1102' holder='1100' name='containsKey' return='969' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1102' count='111' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='111'/>
+<method id='1119' holder='1097' name='containsKey' return='969' arguments='982' flags='1' bytes='18' compile_id='71' compiler='c1' level='3' iicount='903'/>
+<call method='1119' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='141' klass='1097'/>
+<uncommon_trap bci='141' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='141' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1119' uses='117.000000' stamp='0.353'>
+<bc code='184' bci='2'/>
+<method id='1120' holder='1097' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='8400'/>
+<call method='1120' count='-1' prof_factor='0.129568' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='-1.000000' stamp='0.353'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8400' not_taken='0' cnt='8400.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<method id='1128' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6267'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1128'/>
+<call method='1128' count='8131' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1128' uses='8400.000000' stamp='0.353'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<method id='1129' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='57390'/>
+<call method='1129' count='2283' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1129' uses='2403.000000' stamp='0.353'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='57390' cnt='57390.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='57389' cnt='57390.000000' prob='1.74246e-05'/>
+<parse_done nodes='431' live='410' memory='95144' stamp='0.353'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1132' name='java.lang.StringLatin1' flags='16'/>
+<method id='1133' holder='1132' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='19' compiler='c2' level='4' iicount='1851'/>
+<call method='1133' count='2283' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1133' uses='2403.000000' stamp='0.353'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='569' live='542' memory='125920' stamp='0.353'/>
+</parse>
+<parse_done nodes='576' live='548' memory='127504' stamp='0.353'/>
+</parse>
+<parse_done nodes='581' live='552' memory='128504' stamp='0.353'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1121' name='java.util.HashMap$Node' flags='8'/>
+<method id='1122' holder='1097' name='getNode' return='1121' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='4265'/>
+<call method='1122' count='-1' prof_factor='0.129568' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='6'/>
+<parse_done nodes='611' live='581' memory='134648' stamp='0.354'/>
+</parse>
+<bc code='153' bci='146'/>
+<branch target_bci='185' taken='0' not_taken='117' cnt='117.000000' prob='never'/>
+<uncommon_trap bci='146' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='154'/>
+<method id='1142' holder='1097' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='3325'/>
+<call method='1142' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1142' uses='117.000000' stamp='0.354'>
+<bc code='184' bci='2'/>
+<call method='1120' count='3053' prof_factor='0.035188' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='117.000000' stamp='0.354'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8400' not_taken='0' cnt='8400.000000' prob='always'/>
+<bc code='182' bci='9'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1128'/>
+<call method='1128' count='8131' prof_factor='0.013929' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1128' uses='117.000000' stamp='0.354'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1129' count='2283' prof_factor='0.018669' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1129' uses='45.000000' stamp='0.354'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='57390' cnt='57390.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='57389' cnt='57390.000000' prob='1.74246e-05'/>
+<parse_done nodes='736' live='703' memory='154496' stamp='0.354'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<call method='1133' count='2283' prof_factor='0.018669' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1133' uses='45.000000' stamp='0.354'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='869' live='830' memory='177880' stamp='0.354'/>
+</parse>
+<parse_done nodes='876' live='836' memory='179976' stamp='0.354'/>
+</parse>
+<parse_done nodes='880' live='839' memory='180880' stamp='0.354'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1122' count='3053' prof_factor='0.035188' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='117.000000' stamp='0.354'>
+<bc code='198' bci='6'/>
+<branch target_bci='146' taken='513' not_taken='3752' cnt='4265.000000' prob='0.120281'/>
+<bc code='158' bci='14'/>
+<branch target_bci='146' taken='0' not_taken='3752' cnt='3752.000000' prob='never'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='50' bci='24'/>
+<uncommon_trap bci='24' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='146' taken='451' not_taken='3301' cnt='3752.000000' prob='0.120203'/>
+<bc code='160' bci='37'/>
+<branch target_bci='68' taken='659' not_taken='2642' cnt='3301.000000' prob='0.199636'/>
+<bc code='165' bci='49'/>
+<branch target_bci='65' taken='2634' not_taken='9' cnt='2643.000000' prob='0.996595'/>
+<bc code='198' bci='53'/>
+<branch target_bci='68' taken='0' not_taken='9'/>
+<bc code='182' bci='59'/>
+<method id='1147' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<call method='1147' count='8' prof_factor='0.027433' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='59'/>
+<bc code='153' bci='62'/>
+<branch target_bci='68' taken='0' not_taken='9'/>
+<bc code='198' bci='76'/>
+<branch target_bci='146' taken='173' not_taken='485' cnt='658.000000' prob='0.262918'/>
+<bc code='153' bci='84'/>
+<branch target_bci='98' taken='485' not_taken='0' cnt='485.000000' prob='always'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='98' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='98' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='100'/>
+<uncommon_trap bci='100' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='104'/>
+<branch target_bci='135' taken='139' not_taken='447' cnt='586.000000' prob='0.237201'/>
+<bc code='165' bci='116'/>
+<branch target_bci='132' taken='446' not_taken='1' cnt='447.000000' prob='0.997763'/>
+<bc code='198' bci='120'/>
+<branch target_bci='135' taken='0' not_taken='1'/>
+<bc code='182' bci='126'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<call method='1147' count='1' prof_factor='0.027433' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='126'/>
+<bc code='153' bci='129'/>
+<branch target_bci='135' taken='0' not_taken='1'/>
+<bc code='199' bci='143'/>
+<branch target_bci='98' taken='101' not_taken='38' cnt='139.000000' prob='0.726619'/>
+<parse_done nodes='1181' live='1131' memory='249944' stamp='0.354'/>
+</parse>
+<bc code='199' bci='11'/>
+<branch target_bci='18' taken='2483' not_taken='842' cnt='3325.000000' prob='0.746767'/>
+<parse_done nodes='1198' live='1147' memory='252744' stamp='0.354'/>
+</parse>
+<bc code='192' bci='159'/>
+<uncommon_trap bci='159' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='159' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='162'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1107' holder='1076' name='intValue' return='975' flags='1' bytes='5' iicount='49'/>
+<call method='1107' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1107' uses='117.000000' stamp='0.354'>
+<parse_done nodes='1251' live='1197' memory='264024' stamp='0.354'/>
+</parse>
+<bc code='184' bci='173'/>
+<method id='1103' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='178'/>
+<call method='1103' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='117.000000' stamp='0.355'>
+<bc code='50' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='183' bci='28'/>
+<method id='1152' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='262'/>
+<call method='1152' count='-1' prof_factor='0.657303' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1152' uses='-1.000000' stamp='0.355'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1158' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='900'/>
+<call method='1158' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1158' uses='-1.000000' stamp='0.355'>
+<bc code='183' bci='1'/>
+<method id='1160' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='24567'/>
+<call method='1160' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1160' uses='-1.000000' stamp='0.355'>
+<parse_done nodes='1375' live='1318' memory='290608' stamp='0.355'/>
+</parse>
+<parse_done nodes='1378' live='1320' memory='291584' stamp='0.355'/>
+</parse>
+<parse_done nodes='1387' live='1328' memory='293616' stamp='0.355'/>
+</parse>
+<parse_done nodes='1387' live='1327' memory='293616' stamp='0.355'/>
+</parse>
+<bc code='185' bci='176'/>
+<method id='1163' holder='1097' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='3406'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1163'/>
+<call method='1163' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1163' uses='117.000000' stamp='0.355'>
+<bc code='184' bci='2'/>
+<call method='1120' count='3070' prof_factor='0.034351' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='117.000000' stamp='0.355'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8400' not_taken='0' cnt='8400.000000' prob='always'/>
+<bc code='182' bci='9'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1128'/>
+<call method='1128' count='8131' prof_factor='0.013929' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1128' uses='117.000000' stamp='0.355'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1129' count='2283' prof_factor='0.018669' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1129' uses='45.000000' stamp='0.355'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='57390' cnt='57390.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='57389' cnt='57390.000000' prob='1.74246e-05'/>
+<parse_done nodes='1504' live='1442' memory='312600' stamp='0.355'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<call method='1133' count='2283' prof_factor='0.018669' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1133' uses='45.000000' stamp='0.355'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='1641' live='1573' memory='337064' stamp='0.355'/>
+</parse>
+<parse_done nodes='1648' live='1579' memory='338456' stamp='0.355'/>
+</parse>
+<parse_done nodes='1652' live='1582' memory='339360' stamp='0.355'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1164' holder='1097' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='4214'/>
+<call method='1164' count='3070' prof_factor='0.034351' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1164' uses='117.000000' stamp='0.355'>
+<bc code='198' bci='7'/>
+<branch target_bci='19' taken='638' not_taken='3576' cnt='4214.000000' prob='0.1514'/>
+<bc code='154' bci='16'/>
+<branch target_bci='29' taken='3576' not_taken='0' cnt='3576.000000' prob='always'/>
+<uncommon_trap bci='16' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='20'/>
+<klass id='1138' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1167' holder='1097' name='resize' return='1138' flags='16' bytes='356' compile_id='138' compiler='c1' level='3' iicount='730'/>
+<call method='1167' count='589' prof_factor='0.027765' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='20'/>
+<bc code='190' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='40'/>
+<uncommon_trap bci='40' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='44'/>
+<branch target_bci='63' taken='1368' not_taken='2846' cnt='4214.000000' prob='0.324632'/>
+<bc code='182' bci='56'/>
+<method id='1170' holder='1097' name='newNode' return='1121' arguments='975 982 982 1121' flags='0' bytes='13' compile_id='76' compiler='c1' level='3' iicount='3731'/>
+<call method='1170' count='2627' prof_factor='0.027765' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1170' uses='79.000000' stamp='0.356'>
+<bc code='183' bci='9'/>
+<method id='1176' holder='1121' name='&lt;init&gt;' return='977' arguments='975 982 982 1121' flags='0' bytes='26' compile_id='75' compiler='c1' level='3' iicount='3937'/>
+<call method='1176' count='3353' prof_factor='0.021174' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1176' uses='79.000000' stamp='0.356'>
+<bc code='183' bci='1'/>
+<call method='1160' count='3571' prof_factor='0.020066' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1160' uses='79.000000' stamp='0.356'>
+<parse_done nodes='1834' live='1760' memory='374952' stamp='0.356'/>
+</parse>
+<parse_done nodes='2168' live='2093' memory='476880' stamp='0.356'/>
+</parse>
+<parse_done nodes='2168' live='2092' memory='477008' stamp='0.356'/>
+</parse>
+<bc code='83' bci='59'/>
+<uncommon_trap bci='59' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='59' reason='array_check' action='maybe_recompile' debug_id='0' klass='1138'/>
+<cast_up reason='monomorphic_array' from='1138' to='(exact)'/>
+<bc code='160' bci='69'/>
+<branch target_bci='104' taken='1075' not_taken='294' cnt='1369.000000' prob='0.785245'/>
+<bc code='165' bci='81'/>
+<branch target_bci='97' taken='294' not_taken='0' cnt='294.000000' prob='always'/>
+<uncommon_trap bci='81' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='109'/>
+<branch target_bci='131' taken='1075' not_taken='0' cnt='1075.000000' prob='always'/>
+<uncommon_trap bci='109' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='287' not_taken='1054' cnt='1341.000000' prob='0.214019'/>
+<uncommon_trap bci='175' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='175' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='177'/>
+<uncommon_trap bci='177' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='181'/>
+<branch target_bci='212' taken='266' not_taken='21' cnt='287.000000' prob='0.926829'/>
+<bc code='165' bci='193'/>
+<branch target_bci='222' taken='21' not_taken='0'/>
+<bc code='198' bci='197'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='182' bci='203'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<call method='1147' count='0' prof_factor='0.027765' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='203'/>
+<bc code='153' bci='206'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='287' not_taken='1054' cnt='266.000000' prob='0.214019'/>
+<bc code='182' bci='152'/>
+<call method='1170' count='973' prof_factor='0.027765' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1170' uses='29.000000' stamp='0.356'>
+<bc code='183' bci='9'/>
+<call method='1176' count='3353' prof_factor='0.007773' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1176' uses='29.000000' stamp='0.356'>
+<bc code='183' bci='1'/>
+<call method='1160' count='3571' prof_factor='0.007366' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1160' uses='29.000000' stamp='0.356'>
+<parse_done nodes='2616' live='2532' memory='561368' stamp='0.356'/>
+</parse>
+<parse_done nodes='2938' live='2853' memory='613360' stamp='0.356'/>
+</parse>
+<parse_done nodes='2938' live='2852' memory='613488' stamp='0.356'/>
+</parse>
+<bc code='161' bci='162'/>
+<branch target_bci='222' taken='1054' not_taken='0' cnt='1054.000000' prob='always'/>
+<uncommon_trap bci='162' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='224'/>
+<branch target_bci='259' taken='1054' not_taken='314' cnt='1368.000000' prob='0.770468'/>
+<bc code='153' bci='236'/>
+<branch target_bci='244' taken='311' not_taken='3' cnt='314.000000' prob='0.990446'/>
+<bc code='182' bci='253'/>
+<method id='1169' holder='1097' name='afterNodeAccess' return='977' arguments='1121' flags='0' bytes='1' iicount='290'/>
+<call method='1169' count='290' prof_factor='0.027765' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1169' uses='9.000000' stamp='0.357'>
+<parse_done nodes='3282' live='3194' memory='667160' stamp='0.357'/>
+</parse>
+<bc code='164' bci='284'/>
+<branch target_bci='292' taken='3806' not_taken='94' cnt='3900.000000' prob='0.975897'/>
+<bc code='182' bci='288'/>
+<call method='1167' count='87' prof_factor='0.027765' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='288'/>
+<bc code='182' bci='295'/>
+<method id='1168' holder='1097' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='134' compiler='c1' level='1' iicount='1527'/>
+<call method='1168' count='3600' prof_factor='0.027765' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1168' uses='108.000000' stamp='0.357'>
+<parse_done nodes='3346' live='3256' memory='682136' stamp='0.357'/>
+</parse>
+<parse_done nodes='3351' live='3260' memory='683560' stamp='0.357'/>
+</parse>
+<parse_done nodes='3360' live='3268' memory='685784' stamp='0.357'/>
+</parse>
+<bc code='46' bci='205'/>
+<uncommon_trap bci='205' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='205' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='206'/>
+<branch target_bci='224' taken='0' not_taken='117' cnt='117.000000' prob='never'/>
+<uncommon_trap bci='206' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='79' bci='216'/>
+<uncommon_trap bci='216' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='83' bci='223'/>
+<uncommon_trap bci='223' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='223' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='228'/>
+<call method='1099' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='117.000000' stamp='0.357'>
+<parse_done nodes='3663' live='3564' memory='740048' stamp='0.357'/>
+</parse>
+<bc code='159' bci='231'/>
+<branch target_bci='244' taken='117' not_taken='0' cnt='117.000000' prob='always'/>
+<uncommon_trap bci='231' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='251'/>
+<call method='1099' count='111' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1099' uses='117.000000' stamp='0.357'>
+<parse_done nodes='3700' live='3599' memory='747856' stamp='0.357'/>
+</parse>
+<bc code='46' bci='255'/>
+<uncommon_trap bci='255' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='255' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='258'/>
+<uncommon_trap bci='258' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='87'/>
+<uncommon_trap bci='87' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='87' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='94'/>
+<uncommon_trap bci='94' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='94' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='3841' live='3731' memory='775264' stamp='0.357'/>
+</parse>
+<loop_tree>
+<loop idx='3958' >
+</loop>
+<loop idx='3964' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='3970' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3958' inner_loop='1' >
+</loop>
+<loop idx='3964' inner_loop='1' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='3970' inner_loop='1' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3958' inner_loop='1' >
+</loop>
+<loop idx='3964' inner_loop='1' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='3970' inner_loop='1' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4271' inner_loop='1' main_loop='4271' >
+</loop>
+<loop idx='4350' inner_loop='1' main_loop='4350' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='4430' inner_loop='1' main_loop='4430' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4238' inner_loop='1' pre_loop='3958' >
+</loop>
+<loop idx='4271' inner_loop='1' main_loop='4271' >
+</loop>
+<loop idx='4211' inner_loop='1' post_loop='3958' >
+</loop>
+<loop idx='4317' inner_loop='1' pre_loop='3964' >
+</loop>
+<loop idx='4350' inner_loop='1' main_loop='4350' >
+</loop>
+<loop idx='4290' inner_loop='1' post_loop='3964' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='4397' inner_loop='1' pre_loop='3970' >
+</loop>
+<loop idx='4430' inner_loop='1' main_loop='4430' >
+</loop>
+<loop idx='4370' inner_loop='1' post_loop='3970' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4238' inner_loop='1' pre_loop='3958' >
+</loop>
+<loop idx='4681' inner_loop='1' main_loop='4681' >
+</loop>
+<loop idx='4211' inner_loop='1' post_loop='3958' >
+</loop>
+<loop idx='4317' inner_loop='1' pre_loop='3964' >
+</loop>
+<loop idx='4711' inner_loop='1' main_loop='4711' >
+</loop>
+<loop idx='4290' inner_loop='1' post_loop='3964' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='4397' inner_loop='1' pre_loop='3970' >
+</loop>
+<loop idx='4742' inner_loop='1' main_loop='4742' >
+</loop>
+<loop idx='4370' inner_loop='1' post_loop='3970' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4238' inner_loop='1' pre_loop='3958' >
+</loop>
+<loop idx='4681' inner_loop='1' main_loop='4681' >
+</loop>
+<loop idx='4211' inner_loop='1' post_loop='3958' >
+</loop>
+<loop idx='4317' inner_loop='1' pre_loop='3964' >
+</loop>
+<loop idx='4711' inner_loop='1' main_loop='4711' >
+</loop>
+<loop idx='4290' inner_loop='1' post_loop='3964' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='4397' inner_loop='1' pre_loop='3970' >
+</loop>
+<loop idx='4742' inner_loop='1' main_loop='4742' >
+</loop>
+<loop idx='4370' inner_loop='1' post_loop='3970' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4238' inner_loop='1' pre_loop='3958' >
+</loop>
+<loop idx='4681' inner_loop='1' main_loop='4681' >
+</loop>
+<loop idx='4211' inner_loop='1' post_loop='3958' >
+</loop>
+<loop idx='4317' inner_loop='1' pre_loop='3964' >
+</loop>
+<loop idx='4711' inner_loop='1' main_loop='4711' >
+</loop>
+<loop idx='4290' inner_loop='1' post_loop='3964' >
+</loop>
+<loop idx='3950' inner_loop='1' >
+</loop>
+<loop idx='4397' inner_loop='1' pre_loop='3970' >
+</loop>
+<loop idx='4742' inner_loop='1' main_loop='4742' >
+</loop>
+<loop idx='4370' inner_loop='1' post_loop='3970' >
+</loop>
+<loop idx='3952' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1128'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1163'/>
+<code_cache total_blobs='1167' nmethods='678' adapters='262' free_code_cache='246984832'/>
+<task_done success='1' nmsize='7760' count='18632' inlined_bytes='1054' stamp='0.420'/>
+</task>
+<task compile_id='622' method='com.sun.org.apache.xerces.internal.impl.XMLScanner isValidNameStartChar (I)Z' bytes='5' count='12585' iicount='12585' stamp='0.420'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1094' holder='1093' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' compile_id='539' compiler='c1' level='3' iicount='12588'/>
+<parse method='1094' uses='12588.000000' stamp='0.420'>
+<bc code='184' bci='1'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1097' holder='1096' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='30947'/>
+<call method='1097' count='12309' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1097' uses='12588.000000' stamp='0.420'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='30945' cnt='30945.000000' prob='never'/>
+<uncommon_trap bci='3' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='10'/>
+<uncommon_trap bci='10' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='30945' cnt='30945.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='91' live='87' memory='31656' stamp='0.421'/>
+</parse>
+<parse_done nodes='92' live='87' memory='31920' stamp='0.421'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1170' nmethods='679' adapters='262' free_code_cache='246983680'/>
+<task_done success='1' nmsize='184' count='12715' inlined_bytes='22' stamp='0.421'/>
+</task>
+<task compile_id='625' method='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer clear ()V' bytes='41' count='12716' iicount='12716' stamp='0.421'>
+<type id='977' name='void'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer' flags='0'/>
+<method id='1094' holder='1093' name='clear' return='977' flags='1' bytes='41' compile_id='551' compiler='c1' level='3' iicount='12720'/>
+<parse method='1094' uses='12720.000000' stamp='0.421'>
+<bc code='162' bci='9'/>
+<branch target_bci='35' taken='12720' not_taken='0' cnt='12720.000000' prob='always'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='49' live='47' memory='24680' stamp='0.421'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1173' nmethods='680' adapters='262' free_code_cache='246982912'/>
+<task_done success='1' nmsize='152' count='12814' stamp='0.421'/>
+</task>
+<task compile_id='669' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl next ()I' bytes='10' count='10641' iicount='10641' stamp='0.421'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='next' return='975' flags='1' bytes='10' compile_id='546' compiler='c1' level='3' iicount='10641'/>
+<parse method='1094' uses='10641.000000' stamp='0.422'>
+<bc code='185' bci='4'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$ContentDriver' flags='4'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$Driver' flags='1548'/>
+<method id='1099' holder='1097' name='next' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1099' count='10245' prof_factor='1.000000' virtual='1' inline='1' receiver='1096' receiver_count='10245'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver' flags='4'/>
+<method id='1102' holder='1101' name='next' return='975' flags='1' bytes='2277' compile_id='547' compiler='c1' level='3' iicount='10657'/>
+<call method='1102' count='10245' prof_factor='1.000000' inline='1'/>
+<klass id='1139' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<uncommon_trap method='1102' bci='1247' reason='unloaded' action='reinterpret' index='174' debug_id='0' klass='1139'/>
+<uncommon_trap method='1102' bci='816' reason='unloaded' action='reinterpret' index='174' debug_id='0' klass='1139'/>
+<klass id='1154' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<uncommon_trap method='1102' bci='2249' reason='unloaded' action='reinterpret' index='86' debug_id='0' klass='1154'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='4' klass='1096'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='4' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='4'/>
+<parse_done nodes='81' live='78' memory='30376' stamp='0.422'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1186' nmethods='689' adapters='262' free_code_cache='246972544'/>
+<task_done success='1' nmsize='200' count='10955' stamp='0.423'/>
+</task>
+<task compile_id='670' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='10960' iicount='10960' stamp='0.423'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver' flags='4'/>
+<method id='1094' holder='1093' name='next' return='975' flags='1' bytes='2277' compile_id='547' compiler='c1' level='3' iicount='10967'/>
+<klass id='1135' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<uncommon_trap method='1094' bci='1247' reason='unloaded' action='reinterpret' index='174' debug_id='0' klass='1135'/>
+<uncommon_trap method='1094' bci='816' reason='unloaded' action='reinterpret' index='174' debug_id='0' klass='1135'/>
+<klass id='1150' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<uncommon_trap method='1094' bci='2249' reason='unloaded' action='reinterpret' index='86' debug_id='0' klass='1150'/>
+<parse method='1094' uses='10967.000000' stamp='0.424'>
+<observe that='has_exception_handlers'/>
+<uncommon_trap bci='0' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='0' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='0' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='0' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='9'/>
+<branch target_bci='94' taken='6748' not_taken='4212' cnt='10960.000000' prob='0.615693'/>
+<bc code='182' bci='19'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1120' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='656' compiler='c2' level='4' iicount='20109'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='4055' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='4212.000000' stamp='0.424'>
+<observe trap='unstable_if' count='1' total='1'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1152' holder='1096' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='37'/>
+<call method='1152' count='1' prof_factor='0.209458' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='297' live='284' memory='183864' stamp='0.424'/>
+</parse>
+<bc code='160' bci='26'/>
+<branch target_bci='53' taken='4212' not_taken='0' cnt='4212.000000' prob='always'/>
+<uncommon_trap bci='26' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='56'/>
+<branch target_bci='85' taken='4212' not_taken='0' cnt='4212.000000' prob='always'/>
+<uncommon_trap bci='56' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='91'/>
+<type id='977' name='void'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1105' holder='1100' name='setScannerState' return='977' arguments='975' flags='20' bytes='6' compile_id='511' compiler='c1' level='1' iicount='157'/>
+<call method='1105' count='4055' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='4212.000000' stamp='0.424'>
+<uncommon_trap bci='91' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='378' live='361' memory='196344' stamp='0.424'/>
+</parse>
+<bc code='180' bci='98'/>
+<uncommon_trap bci='98' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='103'/>
+<branch target_bci='110' taken='10961' not_taken='0' cnt='10961.000000' prob='always'/>
+<uncommon_trap bci='103' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='117'/>
+<branch target_bci='258' taken='10961' not_taken='0' cnt='10961.000000' prob='always'/>
+<uncommon_trap bci='117' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='187' bci='2249'/>
+<uncommon_trap bci='2249' reason='unloaded' action='reinterpret' index='86' debug_id='0'/>
+<bc code='182' bci='2206'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1102' holder='1098' name='clear' return='977' flags='1' bytes='11' compile_id='564' compiler='c1' level='3' iicount='4362'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='2206'/>
+<uncommon_trap bci='2206' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2217'/>
+<uncommon_trap bci='2217' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2221'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1114' holder='1103' name='scanCharReferenceValue' return='975' arguments='1098 1098' flags='4' bytes='763' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1114'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<klass id='1049' name='java.lang.StringBuffer' flags='17'/>
+<uncommon_trap method='1114' bci='562' reason='unloaded' action='reinterpret' index='196' debug_id='0' klass='1049'/>
+<uncommon_trap method='1114' bci='706' reason='uninitialized' action='reinterpret' debug_id='0'/>
+<uncommon_trap method='1114' bci='481' reason='unloaded' action='reinterpret' index='196' debug_id='0' klass='1049'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2221'/>
+<bc code='180' bci='2230'/>
+<uncommon_trap bci='2230' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2244'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.425'>
+<parse_done nodes='742' live='716' memory='266472' stamp='0.425'/>
+</parse>
+<bc code='153' bci='1265'/>
+<branch target_bci='1308' taken='836' not_taken='2537' cnt='3373.000000' prob='0.247851'/>
+<bc code='182' bci='1282'/>
+<call method='1105' count='2442' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='2537.000000' stamp='0.425'>
+<uncommon_trap bci='1282' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='802' live='773' memory='275936' stamp='0.425'/>
+</parse>
+<bc code='180' bci='1289'/>
+<uncommon_trap bci='1289' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='1292'/>
+<branch target_bci='1306' taken='2537' not_taken='0' cnt='2537.000000' prob='always'/>
+<uncommon_trap bci='1292' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1312'/>
+<method id='1148' holder='1100' name='scanEndElement' return='975' flags='4' bytes='170' compile_id='675' compiler='c1' level='3' iicount='842'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1148'/>
+<call method='1148' count='805' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1148' bci='162' reason='unloaded' action='reinterpret' index='943' debug_id='0' klass='1135'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='836.000000' stamp='0.425'>
+<uncommon_trap bci='1312' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='4'/>
+<klass id='1174' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<klass id='1175' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1176' holder='1174' name='popElement' return='1175' flags='1' bytes='59' compile_id='600' compiler='c1' level='3' iicount='3580'/>
+<dependency type='unique_concrete_method' ctxk='1174' x='1176'/>
+<call method='1176' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='9'/>
+<uncommon_trap bci='9' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='21'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1117' holder='1096' name='skipString' return='969' arguments='983' flags='4' bytes='122' compile_id='676' compiler='c1' level='3' iicount='837'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<call method='1117' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='83' bci='38'/>
+<observe that='!need_range_check'/>
+<bc code='182' bci='39'/>
+<klass id='1141' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1143' holder='1103' name='reportFatalError' return='977' arguments='983 1141' flags='4' bytes='18' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1143'/>
+<call method='1143' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='39'/>
+<bc code='182' bci='46'/>
+<method id='1177' holder='1096' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='648' compiler='c2' level='4' iicount='23867'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1177'/>
+<call method='1177' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='46'/>
+<uncommon_trap bci='46' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='59'/>
+<klass id='1108' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1109' holder='1096' name='skipChar' return='969' arguments='975 1108' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='59'/>
+<uncommon_trap bci='59' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='83' bci='76'/>
+<observe that='!need_range_check'/>
+<bc code='182' bci='77'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1143'/>
+<call method='1143' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='77'/>
+<bc code='46' bci='114'/>
+<uncommon_trap bci='114' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='114' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='83' bci='128'/>
+<observe that='!need_range_check'/>
+<bc code='182' bci='129'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1143'/>
+<call method='1143' count='-1' prof_factor='0.992874' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='129'/>
+<bc code='185' bci='145'/>
+<klass id='1180' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1178' name='com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler' flags='1537'/>
+<method id='1181' holder='1178' name='endElement' return='977' arguments='1175 1180' flags='1025' bytes='0' iicount='1'/>
+<call method='1181' count='-1' prof_factor='0.992874' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='145'/>
+<bc code='180' bci='151'/>
+<assert_null reason='field' klass='1135'/>
+<uncommon_trap bci='154' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<parse_done nodes='1335' live='1293' memory='403992' stamp='0.426'/>
+</parse>
+<bc code='154' bci='1315'/>
+<branch target_bci='1327' taken='836' not_taken='0' cnt='836.000000' prob='always'/>
+<uncommon_trap bci='1315' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1333'/>
+<call method='1105' count='805' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='836.000000' stamp='0.426'>
+<uncommon_trap bci='1333' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1436' live='1391' memory='425096' stamp='0.426'/>
+</parse>
+<bc code='182' bci='427'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl' flags='1'/>
+<method id='1147' holder='1100' name='scanStartElement' return='969' flags='4' bytes='446' compile_id='573' compiler='c1' level='3' iicount='3446'/>
+<call method='1147' count='3250' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='3250'/>
+<call method='1147' count='3250' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1147' bci='413' reason='unloaded' action='reinterpret' index='943' debug_id='0' klass='1135'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='427' klass='1097'/>
+<uncommon_trap bci='427' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='427'/>
+<bc code='180' bci='437'/>
+<uncommon_trap bci='437' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='440'/>
+<branch target_bci='455' taken='839' not_taken='2536' cnt='3375.000000' prob='0.248593'/>
+<bc code='182' bci='449'/>
+<call method='1105' count='2441' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='2536.000000' stamp='0.427'>
+<uncommon_trap bci='449' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1560' live='1510' memory='446168' stamp='0.427'/>
+</parse>
+<bc code='182' bci='461'/>
+<call method='1105' count='808' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='839.000000' stamp='0.427'>
+<uncommon_trap bci='461' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1591' live='1539' memory='452664' stamp='0.427'/>
+</parse>
+<bc code='154' bci='477'/>
+<branch target_bci='500' taken='0' not_taken='4212' cnt='4212.000000' prob='never'/>
+<uncommon_trap bci='477' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='487'/>
+<branch target_bci='500' taken='0' not_taken='4212' cnt='4212.000000' prob='never'/>
+<uncommon_trap bci='487' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='497'/>
+<branch target_bci='504' taken='4212' not_taken='0' cnt='4212.000000' prob='always'/>
+<uncommon_trap bci='497' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='512'/>
+<uncommon_trap bci='512' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='515'/>
+<branch target_bci='583' taken='4212' not_taken='0' cnt='4212.000000' prob='always'/>
+<uncommon_trap bci='515' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='590'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='4055' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='4212.000000' stamp='0.427'>
+<uncommon_trap bci='590' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1739' live='1679' memory='477192' stamp='0.427'/>
+</parse>
+<bc code='181' bci='601'/>
+<uncommon_trap bci='601' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='618'/>
+<klass id='1126' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1132' holder='1096' name='scanContent' return='975' arguments='1126' flags='4' bytes='690' compile_id='592' compiler='c1' level='3' iicount='4293'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1132'/>
+<call method='1132' count='4055' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='618'/>
+<uncommon_trap bci='618' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='626'/>
+<uncommon_trap bci='626' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='632'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='4055' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='4212.000000' stamp='0.427'>
+<uncommon_trap bci='632' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6243' not_taken='0' cnt='6243.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='605' not_taken='5638' cnt='6243.000000' prob='0.0969085'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='5638' not_taken='0' cnt='5638.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<klass id='1119' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1191' holder='1096' name='checkEntityLimit' return='977' arguments='1108 1119 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1191'/>
+<call method='1191' count='5400' prof_factor='0.674676' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1191' uses='3804.000000' stamp='0.428'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2060' live='1990' memory='593192' stamp='0.428'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='605' not_taken='0' cnt='605.000000' prob='always'/>
+<parse_done nodes='2071' live='1999' memory='596736' stamp='0.428'/>
+</parse>
+<bc code='153' bci='635'/>
+<branch target_bci='827' taken='0' not_taken='4212' cnt='4212.000000' prob='never'/>
+<uncommon_trap bci='635' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='180' bci='642'/>
+<uncommon_trap bci='642' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='650'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='4055' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='4212.000000' stamp='0.428'>
+<uncommon_trap bci='650' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6243' not_taken='0' cnt='6243.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='605' not_taken='5638' cnt='6243.000000' prob='0.0969085'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='5638' not_taken='0' cnt='5638.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1191'/>
+<call method='1191' count='5400' prof_factor='0.674676' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1191' uses='3804.000000' stamp='0.428'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2311' live='2230' memory='648112' stamp='0.428'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='605' not_taken='0' cnt='605.000000' prob='always'/>
+<parse_done nodes='2322' live='2239' memory='650664' stamp='0.428'/>
+</parse>
+<bc code='153' bci='653'/>
+<branch target_bci='689' taken='3376' not_taken='836' cnt='4212.000000' prob='0.801519'/>
+<bc code='180' bci='661'/>
+<uncommon_trap bci='661' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='683'/>
+<call method='1105' count='805' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='836.000000' stamp='0.428'>
+<uncommon_trap bci='683' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='2393' live='2307' memory='668200' stamp='0.428'/>
+</parse>
+<bc code='180' bci='693'/>
+<uncommon_trap bci='693' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='696'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='3250' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='3376.000000' stamp='0.428'>
+<observe trap='unstable_if' count='1' total='2'/>
+<uncommon_trap bci='696' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<call method='1152' count='1' prof_factor='0.167885' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2582' live='2487' memory='708856' stamp='0.428'/>
+</parse>
+<bc code='184' bci='699'/>
+<klass id='1138' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1146' holder='1138' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='31836'/>
+<call method='1146' count='3250' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1146' uses='3376.000000' stamp='0.428'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='32627' cnt='32627.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='32627' cnt='32627.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2648' live='2551' memory='721304' stamp='0.429'/>
+</parse>
+<bc code='153' bci='702'/>
+<branch target_bci='738' taken='0' not_taken='3376' cnt='3376.000000' prob='never'/>
+<bc code='180' bci='710'/>
+<uncommon_trap bci='710' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='732'/>
+<call method='1105' count='3250' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='3376.000000' stamp='0.429'>
+<uncommon_trap bci='732' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='2719' live='2619' memory='739480' stamp='0.429'/>
+</parse>
+<bc code='180' bci='779'/>
+<uncommon_trap bci='779' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='782'/>
+<branch target_bci='792' taken='4210' not_taken='2' cnt='4212.000000' prob='0.999525'/>
+<bc code='184' bci='789'/>
+<method id='1133' holder='1100' name='access$100' return='977' arguments='1100' flags='4104' bytes='5' iicount='17'/>
+<call method='1133' count='2' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1133' uses='2.000000' stamp='0.429'>
+<bc code='183' bci='1'/>
+<method id='1234' holder='1100' name='bufferContent' return='977' flags='2' bytes='25' iicount='21'/>
+<call method='1234' count='-1' prof_factor='0.117647' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='1'/>
+<parse_done nodes='2784' live='2682' memory='752640' stamp='0.430'/>
+</parse>
+<bc code='180' bci='796'/>
+<uncommon_trap bci='796' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<assert_null reason='field' klass='1135'/>
+<uncommon_trap bci='799' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='799'/>
+<branch target_bci='825' taken='4212' not_taken='0' cnt='4212.000000' prob='always'/>
+<bc code='182' bci='1907'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<call method='1117' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1907'/>
+<uncommon_trap bci='1907' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1910'/>
+<branch target_bci='2145' taken='0' not_taken='0'/>
+<bc code='180' bci='1918'/>
+<uncommon_trap bci='1918' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1937'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1937'/>
+<uncommon_trap bci='1937' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1940'/>
+<method id='1121' holder='1103' name='isValidNameChar' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='0.000000' stamp='0.430'>
+<bc code='184' bci='1'/>
+<method id='1237' holder='1138' name='isName' return='969' arguments='975' flags='9' bytes='23' iicount='1'/>
+<call method='1237' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='3022' live='2913' memory='793016' stamp='0.430'/>
+</parse>
+<bc code='153' bci='1943'/>
+<branch target_bci='2137' taken='0' not_taken='0'/>
+<bc code='180' bci='1950'/>
+<uncommon_trap bci='1950' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1953'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1953'/>
+<uncommon_trap bci='1953' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1960'/>
+<uncommon_trap bci='1960' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1965'/>
+<method id='1124' holder='1098' name='append' return='977' arguments='983' flags='1' bytes='103' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1124'/>
+<call method='1124' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1965'/>
+<uncommon_trap bci='1965' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1972'/>
+<uncommon_trap bci='1972' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1975'/>
+<branch target_bci='2023' taken='0' not_taken='0'/>
+<bc code='182' bci='1989'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1989'/>
+<uncommon_trap bci='1989' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1992'/>
+<method id='1131' holder='1103' name='isValidNCName' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1131'/>
+<call method='1131' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='0.000000' stamp='0.430'>
+<bc code='184' bci='1'/>
+<method id='1241' holder='1138' name='isNCName' return='969' arguments='975' flags='9' bytes='24' iicount='1'/>
+<call method='1241' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='3291' live='3175' memory='837944' stamp='0.430'/>
+</parse>
+<bc code='153' bci='1995'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<uncommon_trap bci='1998' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='1998' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2002'/>
+<uncommon_trap bci='2002' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2013'/>
+<method id='1129' holder='1096' name='scanChar' return='975' arguments='1108' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1129'/>
+<call method='1129' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2013'/>
+<uncommon_trap bci='2013' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2017'/>
+<type id='970' name='char'/>
+<method id='1130' holder='1098' name='append' return='977' arguments='970' flags='1' bytes='87' iicount='215'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1130'/>
+<call method='1130' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2017'/>
+<uncommon_trap bci='2017' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1986'/>
+<uncommon_trap bci='1986' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1989'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1989'/>
+<uncommon_trap bci='1989' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1992'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1131'/>
+<call method='1131' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='0.000000' stamp='0.431'>
+<bc code='184' bci='1'/>
+<call method='1241' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='3567' live='3443' memory='880752' stamp='0.431'/>
+</parse>
+<bc code='153' bci='1995'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<bc code='182' bci='2034'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2034'/>
+<uncommon_trap bci='2034' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2037'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='0.000000' stamp='0.431'>
+<bc code='184' bci='1'/>
+<call method='1237' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='3681' live='3555' memory='898600' stamp='0.431'/>
+</parse>
+<bc code='153' bci='2040'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<uncommon_trap bci='2043' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2043' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2047'/>
+<uncommon_trap bci='2047' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2058'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1129'/>
+<call method='1129' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2058'/>
+<uncommon_trap bci='2058' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2062'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1130'/>
+<call method='1130' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2062'/>
+<uncommon_trap bci='2062' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2031'/>
+<uncommon_trap bci='2031' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2034'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2034'/>
+<uncommon_trap bci='2034' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2037'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='0.000000' stamp='0.431'>
+<bc code='184' bci='1'/>
+<call method='1237' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='3955' live='3821' memory='940728' stamp='0.431'/>
+</parse>
+<bc code='153' bci='2040'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<bc code='180' bci='2072'/>
+<uncommon_trap bci='2072' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2082'/>
+<uncommon_trap bci='2082' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2105'/>
+<klass id='1125' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1127' holder='1125' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='4925'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1127'/>
+<call method='1127' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='2105'/>
+<uncommon_trap bci='2105' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2113'/>
+<uncommon_trap bci='2113' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2116'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='2116'/>
+<uncommon_trap bci='2116' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2128'/>
+<uncommon_trap bci='2128' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2131'/>
+<method id='1128' holder='1100' name='scanPIData' return='977' arguments='983 1098' flags='4' bytes='22' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1128'/>
+<call method='1128' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='2131'/>
+<bc code='182' bci='2142'/>
+<method id='1122' holder='1100' name='scanXMLDeclOrTextDecl' return='977' arguments='969' flags='4' bytes='183' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1122'/>
+<call method='1122' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2142'/>
+<uncommon_trap bci='2142' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2149'/>
+<uncommon_trap bci='2149' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2152'/>
+<uncommon_trap bci='2152' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='181' bci='2156'/>
+<uncommon_trap bci='2156' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2165'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.432'>
+<parse_done nodes='4343' live='4198' memory='1086272' stamp='0.432'/>
+</parse>
+<bc code='153' bci='1398'/>
+<branch target_bci='1458' taken='0' not_taken='0'/>
+<bc code='154' bci='1408'/>
+<branch target_bci='1431' taken='0' not_taken='0'/>
+<bc code='154' bci='1418'/>
+<branch target_bci='1431' taken='0' not_taken='0'/>
+<bc code='180' bci='1425'/>
+<uncommon_trap bci='1425' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1428'/>
+<branch target_bci='1458' taken='0' not_taken='0'/>
+<bc code='181' bci='1436'/>
+<uncommon_trap bci='1436' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1462'/>
+<uncommon_trap bci='1462' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1465'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1465'/>
+<uncommon_trap bci='1465' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='181' bci='1473'/>
+<uncommon_trap bci='1473' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1488'/>
+<method id='1115' holder='1100' name='scanCDATASection' return='969' arguments='1098 969' flags='4' bytes='126' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1115'/>
+<call method='1115' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1488'/>
+<bc code='182' bci='1498'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.432'>
+<uncommon_trap bci='1498' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4623' live='4471' memory='1140048' stamp='0.432'/>
+</parse>
+<bc code='153' bci='1508'/>
+<branch target_bci='1522' taken='0' not_taken='0'/>
+<bc code='153' bci='1529'/>
+<branch target_bci='1554' taken='0' not_taken='0'/>
+<bc code='154' bci='1539'/>
+<branch target_bci='1551' taken='0' not_taken='0'/>
+<bc code='182' bci='1548'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.432'>
+<parse_done nodes='4705' live='4552' memory='1166920' stamp='0.432'/>
+</parse>
+<bc code='153' bci='1584'/>
+<branch target_bci='1644' taken='0' not_taken='0'/>
+<bc code='154' bci='1594'/>
+<branch target_bci='1617' taken='0' not_taken='0'/>
+<bc code='154' bci='1604'/>
+<branch target_bci='1617' taken='0' not_taken='0'/>
+<bc code='180' bci='1611'/>
+<uncommon_trap bci='1611' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1614'/>
+<branch target_bci='1644' taken='0' not_taken='0'/>
+<bc code='181' bci='1622'/>
+<uncommon_trap bci='1622' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1648'/>
+<uncommon_trap bci='1648' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1651'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1651'/>
+<uncommon_trap bci='1651' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='181' bci='1659'/>
+<uncommon_trap bci='1659' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1674'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1674'/>
+<uncommon_trap bci='1674' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1677'/>
+<branch target_bci='1730' taken='0' not_taken='0'/>
+<bc code='180' bci='1688'/>
+<uncommon_trap bci='1688' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1692'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1114'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1692'/>
+<bc code='180' bci='1701'/>
+<uncommon_trap bci='1701' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='1716'/>
+<branch target_bci='1878' taken='0' not_taken='0'/>
+<bc code='182' bci='1725'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.433'>
+<parse_done nodes='5111' live='4947' memory='1245232' stamp='0.433'/>
+</parse>
+<bc code='180' bci='1738'/>
+<uncommon_trap bci='1738' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1741'/>
+<method id='1110' holder='1100' name='scanEntityReference' return='977' arguments='1098' flags='4' bytes='377' iicount='2'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1741'/>
+<bc code='180' bci='1748'/>
+<uncommon_trap bci='1748' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='1753'/>
+<branch target_bci='1798' taken='0' not_taken='0'/>
+<bc code='154' bci='1763'/>
+<branch target_bci='1798' taken='0' not_taken='0'/>
+<bc code='182' bci='1772'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.433'>
+<parse_done nodes='5228' live='5060' memory='1262272' stamp='0.433'/>
+</parse>
+<bc code='153' bci='1782'/>
+<branch target_bci='1796' taken='0' not_taken='0'/>
+<bc code='180' bci='1802'/>
+<uncommon_trap bci='1802' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='1807'/>
+<branch target_bci='1821' taken='0' not_taken='0'/>
+<bc code='160' bci='1830'/>
+<branch target_bci='1878' taken='0' not_taken='0'/>
+<bc code='182' bci='1839'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.433'>
+<parse_done nodes='5333' live='5161' memory='1278864' stamp='0.433'/>
+</parse>
+<bc code='153' bci='1849'/>
+<branch target_bci='1875' taken='0' not_taken='0'/>
+<bc code='184' bci='1863'/>
+<method id='1112' holder='1100' name='access$200' return='983' arguments='1100' flags='4104' bytes='5' iicount='1'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1112' uses='0.000000' stamp='0.433'>
+<parse_done nodes='5382' live='5209' memory='1286008' stamp='0.433'/>
+</parse>
+<bc code='182' bci='1866'/>
+<klass id='1111' name='com.sun.xml.internal.stream.XMLEntityStorage' flags='1'/>
+<method id='1113' holder='1111' name='isDeclaredEntity' return='969' arguments='983' flags='1' bytes='24' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1111' x='1113'/>
+<call method='1113' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1866'/>
+<uncommon_trap bci='1866' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1869'/>
+<branch target_bci='1875' taken='0' not_taken='0'/>
+<bc code='182' bci='1884'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.434'>
+<uncommon_trap bci='1884' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='5471' live='5294' memory='1300328' stamp='0.434'/>
+</parse>
+<bc code='182' bci='1342'/>
+<method id='1107' holder='1100' name='scanComment' return='977' flags='4' bytes='31' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1107'/>
+<call method='1107' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1342'/>
+<bc code='182' bci='1351'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.434'>
+<uncommon_trap bci='1351' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='5550' live='5371' memory='1312336' stamp='0.434'/>
+</parse>
+<bc code='182' bci='2172'/>
+<method id='1106' holder='1093' name='scanRootElementHook' return='969' flags='4' bytes='2' iicount='1'/>
+<call method='1106' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='2172'/>
+<bc code='153' bci='2175'/>
+<branch target_bci='2188' taken='0' not_taken='0'/>
+<bc code='181' bci='2183'/>
+<uncommon_trap bci='2183' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2194'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.434'>
+<uncommon_trap bci='2194' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='5640' live='5456' memory='1325576' stamp='0.434'/>
+</parse>
+<bc code='182' bci='1363'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1363'/>
+<uncommon_trap bci='1363' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1374'/>
+<uncommon_trap bci='1374' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1377'/>
+<method id='1104' holder='1103' name='scanPI' return='977' arguments='1098' flags='4' bytes='39' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1104'/>
+<call method='1104' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1377'/>
+<bc code='182' bci='1386'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.434'>
+<uncommon_trap bci='1386' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='5777' live='5588' memory='1347472' stamp='0.434'/>
+</parse>
+<bc code='182' bci='2272'/>
+<klass id='1099' name='java.io.EOFException' flags='1'/>
+<method id='1101' holder='1093' name='endOfFileHook' return='977' arguments='1099' flags='4' bytes='21' iicount='1'/>
+<call method='1101' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='2272'/>
+<parse_done nodes='5803' live='5611' memory='1355456' stamp='0.434'/>
+</parse>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<method id='1243' holder='1125' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='582' compiler='c2' level='4' iicount='3668'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1243'/>
+<method id='1288' holder='1125' name='rebalance' return='977' flags='4' bytes='32' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1288'/>
+<method id='1294' holder='1125' name='hash' return='975' arguments='983' flags='1' bytes='21' iicount='75'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1294'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1243'/>
+<method id='1302' holder='1125' name='rehash' return='977' flags='4' bytes='14' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1302'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1294'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1243'/>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2931' >
+<loop idx='2932' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1114'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1148'/>
+<dependency type='unique_concrete_method' ctxk='1174' x='1176'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1143'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1177'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1132'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1191'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1124'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1131'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1129'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1130'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1127'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1128'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1122'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1115'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<dependency type='unique_concrete_method' ctxk='1111' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1107'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1243'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1288'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1294'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1302'/>
+<code_cache total_blobs='1288' nmethods='741' adapters='262' free_code_cache='246643072'/>
+<task_done success='1' nmsize='8552' count='18090' inlined_bytes='1142' stamp='0.469'/>
+</task>
+<task compile_id='752' method='jdk.internal.math.FloatingDecimal readJavaFormatString (Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;' bytes='826' count='3198' backedge_count='15990' iicount='3198' stamp='0.474'>
+<klass id='1094' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter' flags='1544'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal' flags='1'/>
+<method id='1095' holder='1093' name='readJavaFormatString' return='1094' arguments='983' flags='8' bytes='826' compile_id='626' compiler='c1' level='3' iicount='3198'/>
+<klass id='1103' name='java.lang.NumberFormatException' flags='1'/>
+<uncommon_trap method='1095' bci='794' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1103'/>
+<uncommon_trap method='1095' bci='381' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1103'/>
+<uncommon_trap method='1095' bci='271' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1103'/>
+<uncommon_trap method='1095' bci='20' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1103'/>
+<uncommon_trap method='1095' bci='794' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1103'/>
+<parse method='1095' uses='3198.000000' stamp='0.474'>
+<observe that='has_exception_handlers'/>
+<bc code='182' bci='5'/>
+<method id='1098' holder='983' name='trim' return='983' flags='1' bytes='35' compile_id='628' compiler='c1' level='3' iicount='3210'/>
+<call method='1098' count='3072' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='3072.000000' stamp='0.475'>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1108' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='97773'/>
+<call method='1108' count='2769' prof_factor='0.957009' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='3072.000000' stamp='0.475'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='97773' cnt='97773.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='97772' cnt='97773.000000' prob='1.02278e-05'/>
+<parse_done nodes='83' live='81' memory='80792' stamp='0.475'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='17' taken='0' not_taken='3210' cnt='3210.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='11'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1111' name='java.lang.StringLatin1' flags='16'/>
+<method id='1112' holder='1111' name='trim' return='983' arguments='1085' flags='9' bytes='76' compile_id='629' compiler='c1' level='3' iicount='3210'/>
+<call method='1112' count='2769' prof_factor='0.957009' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1112' uses='3072.000000' stamp='0.475'>
+<bc code='190' bci='1'/>
+<uncommon_trap bci='1' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='7'/>
+<branch target_bci='28' taken='0' not_taken='3210' cnt='3210.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='12'/>
+<uncommon_trap bci='12' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='163' bci='19'/>
+<branch target_bci='28' taken='3210' not_taken='0' cnt='3210.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='30'/>
+<branch target_bci='53' taken='0' not_taken='3210' cnt='3210.000000' prob='never'/>
+<uncommon_trap bci='30' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<uncommon_trap bci='33' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='33' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='37'/>
+<uncommon_trap bci='37' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='163' bci='44'/>
+<branch target_bci='53' taken='3210' not_taken='0' cnt='3210.000000' prob='always'/>
+<uncommon_trap bci='44' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='157' bci='54'/>
+<branch target_bci='63' taken='0' not_taken='3210' cnt='3210.000000' prob='never'/>
+<uncommon_trap bci='54' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='60'/>
+<branch target_bci='74' taken='3210' not_taken='0' cnt='3210.000000' prob='always'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='333' live='316' memory='128832' stamp='0.475'/>
+</parse>
+<bc code='199' bci='26'/>
+<branch target_bci='33' taken='0' not_taken='3210' cnt='3210.000000' prob='never'/>
+<parse_done nodes='342' live='324' memory='130128' stamp='0.475'/>
+</parse>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1099' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='36684'/>
+<call method='1099' count='3072' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='3072.000000' stamp='0.475'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1118' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='61372'/>
+<call method='1118' count='36423' prof_factor='0.083742' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1118' uses='3072.000000' stamp='0.475'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61372' cnt='61372.000000' prob='never'/>
+<parse_done nodes='394' live='374' memory='138496' stamp='0.475'/>
+</parse>
+<parse_done nodes='395' live='374' memory='139560' stamp='0.475'/>
+</parse>
+<bc code='154' bci='17'/>
+<branch target_bci='30' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='36'/>
+<type id='970' name='char'/>
+<method id='1100' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='81624'/>
+<call method='1100' count='3072' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='3072.000000' stamp='0.475'>
+<bc code='183' bci='1'/>
+<call method='1108' count='81157' prof_factor='0.037636' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='3072.000000' stamp='0.475'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='97773' cnt='97773.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='97772' cnt='97773.000000' prob='1.02278e-05'/>
+<parse_done nodes='449' live='426' memory='148792' stamp='0.475'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='81624' cnt='81624.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<method id='1122' holder='1111' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='80477'/>
+<call method='1122' count='81157' prof_factor='0.037636' inline='1'/>
+<klass id='1097' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1122' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1097'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='3072.000000' stamp='0.475'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80477' cnt='80477.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80477' not_taken='0' cnt='80477.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='540' live='512' memory='178728' stamp='0.475'/>
+</parse>
+<parse_done nodes='541' live='512' memory='178928' stamp='0.475'/>
+</parse>
+<bc code='182' bci='74'/>
+<call method='1100' count='3072' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='3072.000000' stamp='0.475'>
+<bc code='183' bci='1'/>
+<call method='1108' count='81157' prof_factor='0.037636' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='3072.000000' stamp='0.475'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='97773' cnt='97773.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='97772' cnt='97773.000000' prob='1.02278e-05'/>
+<parse_done nodes='625' live='595' memory='190320' stamp='0.476'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='81624' cnt='81624.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1122' count='81157' prof_factor='0.037636' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='3072.000000' stamp='0.476'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80477' cnt='80477.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80477' not_taken='0' cnt='80477.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='713' live='678' memory='208496' stamp='0.476'/>
+</parse>
+<parse_done nodes='714' live='678' memory='208696' stamp='0.476'/>
+</parse>
+<bc code='160' bci='83'/>
+<branch target_bci='117' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='83' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='121'/>
+<branch target_bci='165' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='121' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='169'/>
+<branch target_bci='210' taken='0' not_taken='3072' cnt='3072.000000' prob='never'/>
+<uncommon_trap bci='169' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='164' bci='178'/>
+<branch target_bci='210' taken='0' not_taken='3072' cnt='3072.000000' prob='never'/>
+<uncommon_trap bci='178' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='186'/>
+<call method='1100' count='3072' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='3072.000000' stamp='0.476'>
+<bc code='183' bci='1'/>
+<call method='1108' count='81157' prof_factor='0.037636' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='3072.000000' stamp='0.476'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='97773' cnt='97773.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='97772' cnt='97773.000000' prob='1.02278e-05'/>
+<parse_done nodes='810' live='769' memory='224248' stamp='0.476'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='81624' cnt='81624.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1122' count='81157' prof_factor='0.037636' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='3072.000000' stamp='0.476'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80477' cnt='80477.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80477' not_taken='0' cnt='80477.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='904' live='858' memory='240800' stamp='0.476'/>
+</parse>
+<parse_done nodes='905' live='858' memory='241000' stamp='0.476'/>
+</parse>
+<bc code='159' bci='195'/>
+<branch target_bci='205' taken='0' not_taken='3072' cnt='3072.000000' prob='never'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='202'/>
+<branch target_bci='210' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='202' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='188' bci='212'/>
+<uncommon_trap bci='792' reason='unloaded' action='reinterpret' debug_id='0' klass='1097' comment='!loaded exception'/>
+<bc code='162' bci='235'/>
+<branch target_bci='301' taken='0' not_taken='9216' cnt='9216.000000' prob='never'/>
+<uncommon_trap bci='235' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<uncommon_trap bci='238' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='238' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='241'/>
+<call method='1100' count='9216' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='9216.000000' stamp='0.476'>
+<bc code='183' bci='1'/>
+<call method='1108' count='81157' prof_factor='0.112908' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='9216.000000' stamp='0.476'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='97773' cnt='97773.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='97772' cnt='97773.000000' prob='1.02278e-05'/>
+<parse_done nodes='1103' live='1048' memory='296552' stamp='0.476'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='81624' cnt='81624.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1122' count='81157' prof_factor='0.112908' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='9216.000000' stamp='0.476'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80477' cnt='80477.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80477' not_taken='0' cnt='80477.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1198' live='1137' memory='313376' stamp='0.476'/>
+</parse>
+<parse_done nodes='1201' live='1139' memory='313992' stamp='0.476'/>
+</parse>
+<bc code='160' bci='250'/>
+<branch target_bci='259' taken='6144' not_taken='3072' cnt='9216.000000' prob='0.666667'/>
+<bc code='160' bci='263'/>
+<branch target_bci='301' taken='3072' not_taken='3072' cnt='6144.000000' prob='0.5'/>
+<bc code='153' bci='268'/>
+<branch target_bci='281' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='268' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='286'/>
+<branch target_bci='292' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='286' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='235'/>
+<branch target_bci='301' taken='0' not_taken='9216' cnt='6144.000000' prob='never'/>
+<uncommon_trap bci='235' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='305'/>
+<branch target_bci='411' taken='3072' not_taken='9216' cnt='12288.000000' prob='0.25'/>
+<uncommon_trap bci='308' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='308' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='311'/>
+<call method='1100' count='9216' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='9216.000000' stamp='0.476'>
+<bc code='183' bci='1'/>
+<call method='1108' count='81157' prof_factor='0.112908' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='9216.000000' stamp='0.477'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='97773' cnt='97773.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='97772' cnt='97773.000000' prob='1.02278e-05'/>
+<parse_done nodes='1367' live='1299' memory='347272' stamp='0.477'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='81624' cnt='81624.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1122' count='81157' prof_factor='0.112908' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='9216.000000' stamp='0.477'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80477' cnt='80477.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80477' not_taken='0' cnt='80477.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1462' live='1388' memory='365512' stamp='0.477'/>
+</parse>
+<parse_done nodes='1465' live='1390' memory='366128' stamp='0.477'/>
+</parse>
+<bc code='161' bci='320'/>
+<branch target_bci='346' taken='491' not_taken='8725' cnt='9216.000000' prob='0.0532769'/>
+<bc code='163' bci='327'/>
+<branch target_bci='346' taken='0' not_taken='8725' cnt='8725.000000' prob='never'/>
+<uncommon_trap bci='327' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='85' bci='339'/>
+<uncommon_trap bci='339' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='350'/>
+<branch target_bci='369' taken='0' not_taken='491' cnt='491.000000' prob='never'/>
+<uncommon_trap bci='350' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='85' bci='362'/>
+<uncommon_trap bci='362' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='305'/>
+<branch target_bci='411' taken='3072' not_taken='9216' cnt='9216.000000' prob='0.25'/>
+<bc code='154' bci='420'/>
+<branch target_bci='427' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='420' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='432'/>
+<branch target_bci='443' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<bc code='153' bci='445'/>
+<branch target_bci='457' taken='0' not_taken='3072' cnt='3072.000000' prob='never'/>
+<uncommon_trap bci='445' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='467'/>
+<branch target_bci='696' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='467' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='700'/>
+<branch target_bci='759' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<uncommon_trap bci='700' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='761'/>
+<branch target_bci='778' taken='3072' not_taken='0' cnt='3072.000000' prob='always'/>
+<bc code='187' bci='778'/>
+<uncommon_trap bci='792' reason='unloaded' action='reinterpret' debug_id='0' klass='1097' comment='!loaded exception'/>
+<bc code='183' bci='788'/>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1101' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer' flags='8'/>
+<method id='1102' holder='1101' name='&lt;init&gt;' return='977' arguments='969 975 1082 975' flags='0' bytes='26' compile_id='644' compiler='c1' level='3' iicount='3198'/>
+<call method='1102' count='3072' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='3072.000000' stamp='0.477'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1125' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='40583'/>
+<call method='1125' count='2766' prof_factor='0.960600' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1125' uses='3072.000000' stamp='0.477'>
+<parse_done nodes='1728' live='1642' memory='418944' stamp='0.477'/>
+</parse>
+<parse_done nodes='1745' live='1658' memory='422320' stamp='0.477'/>
+</parse>
+<parse_done nodes='1755' live='1667' memory='425056' stamp='0.477'/>
+</parse>
+<loop_tree>
+<loop idx='1837' >
+</loop>
+<loop idx='1843' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1837' inner_loop='1' >
+</loop>
+<loop idx='1843' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1837' inner_loop='1' >
+</loop>
+<loop idx='1843' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1837' inner_loop='1' >
+</loop>
+<loop idx='2174' inner_loop='1' main_loop='2174' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1837' inner_loop='1' >
+</loop>
+<loop idx='2051' inner_loop='1' pre_loop='1843' >
+</loop>
+<loop idx='2174' inner_loop='1' main_loop='2174' >
+</loop>
+<loop idx='1936' inner_loop='1' post_loop='1843' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1837' inner_loop='1' >
+</loop>
+<loop idx='2051' inner_loop='1' pre_loop='1843' >
+</loop>
+<loop idx='2174' inner_loop='1' main_loop='2174' >
+</loop>
+<loop idx='1936' inner_loop='1' post_loop='1843' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1837' inner_loop='1' >
+</loop>
+<loop idx='2051' inner_loop='1' pre_loop='1843' >
+</loop>
+<loop idx='2174' inner_loop='1' main_loop='2174' >
+</loop>
+<loop idx='1936' inner_loop='1' post_loop='1843' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1313' nmethods='750' adapters='262' free_code_cache='246605824'/>
+<task_done success='1' nmsize='3064' count='3692' backedge_count='18460' inlined_bytes='543' stamp='0.491'/>
+</task>
+<task compile_id='781' method='java.lang.AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;' bytes='45' count='6163' iicount='6163' stamp='0.541'>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='6163'/>
+<parse method='1093' uses='6163.000000' stamp='0.541'>
+<bc code='199' bci='1'/>
+<branch target_bci='9' taken='6163' not_taken='0' cnt='6163.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='39819'/>
+<call method='1095' count='6148' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='6163.000000' stamp='0.541'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1099' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='65271'/>
+<call method='1099' count='39544' prof_factor='0.154775' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='6163.000000' stamp='0.541'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='65271' cnt='65271.000000' prob='never'/>
+<parse_done nodes='95' live='92' memory='32216' stamp='0.542'/>
+</parse>
+<parse_done nodes='96' live='92' memory='32512' stamp='0.542'/>
+</parse>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<method id='1096' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='618' compiler='c2' level='4' iicount='5517'/>
+<call method='1096' count='6148' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='6163.000000' stamp='0.542'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='38' taken='4347' not_taken='1170' cnt='5517.000000' prob='0.787928'/>
+<bc code='183' bci='24'/>
+<method id='1103' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' compile_id='295' compiler='c1' level='3' iicount='1176'/>
+<call method='1103' count='1113' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='1170.000000' stamp='0.542'>
+<bc code='156' bci='20'/>
+<branch target_bci='25' taken='1083' not_taken='93' cnt='1176.000000' prob='0.920918'/>
+<bc code='158' bci='35'/>
+<branch target_bci='45' taken='0' not_taken='1176' cnt='1176.000000' prob='never'/>
+<uncommon_trap bci='35' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='156' bci='42'/>
+<branch target_bci='53' taken='1176' not_taken='0' cnt='1176.000000' prob='always'/>
+<uncommon_trap bci='42' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='209' live='201' memory='51128' stamp='0.542'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1104' name='java.util.Arrays' flags='1'/>
+<method id='1105' holder='1104' name='copyOf' return='1085' arguments='1085 975' flags='9' bytes='19' iicount='1410'/>
+<call method='1105' count='1113' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='1170.000000' stamp='0.542'>
+<bc code='190' bci='9'/>
+<uncommon_trap bci='9' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='11'/>
+<klass id='1109' name='java.lang.Math' flags='17'/>
+<method id='1110' holder='1109' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='19605'/>
+<call method='1110' count='1230' prof_factor='0.829787' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='184' bci='14'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1111' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1111' count='1230' prof_factor='0.829787' inline='1'/>
+<uncommon_trap bci='1' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='53'/>
+<parse_done nodes='346' live='335' memory='79208' stamp='0.542'/>
+</parse>
+<parse_done nodes='504' live='492' memory='100784' stamp='0.542'/>
+</parse>
+<bc code='183' bci='30'/>
+<method id='1097' holder='1048' name='putStringAt' return='977' arguments='975 983' flags='18' bytes='29' compile_id='180' compiler='c1' level='3' iicount='6163'/>
+<call method='1097' count='6148' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1097' uses='6163.000000' stamp='0.542'>
+<bc code='182' bci='1'/>
+<method id='1113' holder='1048' name='getCoder' return='973' flags='16' bytes='15' compile_id='181' compiler='c1' level='3' iicount='6174'/>
+<call method='1113' count='5915' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1113' uses='6163.000000' stamp='0.543'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='6174' cnt='6174.000000' prob='never'/>
+<parse_done nodes='545' live='532' memory='117144' stamp='0.543'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1099' count='5915' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='6163.000000' stamp='0.543'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='65271' cnt='65271.000000' prob='never'/>
+<parse_done nodes='571' live='557' memory='121248' stamp='0.543'/>
+</parse>
+<bc code='159' bci='8'/>
+<branch target_bci='15' taken='6163' not_taken='0' cnt='6163.000000' prob='always'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='25'/>
+<method id='1114' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' compile_id='751' compiler='c2' level='4' iicount='5392'/>
+<call method='1114' count='5915' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1114' uses='6163.000000' stamp='0.543'>
+<bc code='182' bci='1'/>
+<call method='1099' count='5133' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5392.000000' stamp='0.543'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='65271' cnt='65271.000000' prob='never'/>
+<parse_done nodes='625' live='609' memory='130720' stamp='0.543'/>
+</parse>
+<bc code='160' bci='5'/>
+<branch target_bci='28' taken='0' not_taken='5392' cnt='5392.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='22'/>
+<call method='1111' count='5133' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='22' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='22' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='73'/>
+<parse_done nodes='737' live='716' memory='151776' stamp='0.543'/>
+</parse>
+<parse_done nodes='741' live='719' memory='152928' stamp='0.543'/>
+</parse>
+<parse_done nodes='754' live='731' memory='156160' stamp='0.543'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1380' nmethods='795' adapters='264' free_code_cache='246425856'/>
+<task_done success='1' nmsize='1496' count='6206' inlined_bytes='268' stamp='0.551'/>
+</task>
+<task compile_id='951' method='java.io.PrintStream ensureOpen ()V' bytes='18' count='5385' iicount='5385' stamp='0.593'>
+<type id='977' name='void'/>
+<klass id='1093' name='java.io.PrintStream' flags='1'/>
+<method id='1094' holder='1093' name='ensureOpen' return='977' flags='2' bytes='18' compile_id='821' compiler='c1' level='3' iicount='5389'/>
+<klass id='1098' name='java.io.IOException' flags='1'/>
+<uncommon_trap method='1094' bci='7' reason='unloaded' action='reinterpret' index='32' debug_id='0' klass='1098'/>
+<parse method='1094' uses='5389.000000' stamp='0.593'>
+<bc code='199' bci='4'/>
+<branch target_bci='17' taken='5389' not_taken='0' cnt='5389.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='41' live='39' memory='23488' stamp='0.593'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1554' nmethods='943' adapters='270' free_code_cache='246069120'/>
+<task_done success='1' nmsize='120' count='5491' stamp='0.593'/>
+</task>
+</compilation_log>
+<compilation_log thread='25163'>
+<start_compile_thread name='C2 CompilerThread5' thread='25163' process='25109' stamp='0.106'/>
+<task compile_id='19' method='java.lang.StringLatin1 hashCode ([B)I' bytes='42' count='783' backedge_count='18648' iicount='783' stamp='0.131'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='3' compiler='c1' level='3' iicount='783'/>
+<parse method='1094' uses='783.000000' stamp='0.131'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='669' not_taken='16406' cnt='17075.000000' prob='0.0391801'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='669' not_taken='16406' cnt='16406.000000' prob='0.0391801'/>
+<parse_done nodes='137' live='132' memory='40872' stamp='0.132'/>
+</parse>
+<loop_tree>
+<loop idx='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='239' inner_loop='1' main_loop='239' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='206' inner_loop='1' pre_loop='146' >
+</loop>
+<loop idx='275' inner_loop='1' main_loop='275' >
+</loop>
+<loop idx='180' inner_loop='1' post_loop='146' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='330' nmethods='29' adapters='158' free_code_cache='248723840'/>
+<task_done success='1' nmsize='312' count='1851' backedge_count='57491' stamp='0.134'/>
+</task>
+<task compile_id='81' method='java.lang.String hashCode ()I' bytes='49' count='5436' iicount='5436' stamp='0.150'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='10' compiler='c1' level='3' iicount='5440'/>
+<parse method='1093' uses='5440.000000' stamp='0.150'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='2977' not_taken='2463' cnt='5440.000000' prob='0.547243'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2413' cnt='2464.000000' prob='0.0206981'/>
+<bc code='183' bci='19'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='6133'/>
+<call method='1095' count='2281' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='2413.000000' stamp='0.150'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='6133' cnt='6133.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='6132' cnt='6133.000000' prob='0.000163052'/>
+<parse_done nodes='101' live='99' memory='32696' stamp='0.150'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2413' cnt='2413.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='19' compiler='c2' level='4' iicount='1851'/>
+<call method='1099' count='2281' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='2413.000000' stamp='0.150'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='241' live='233' memory='56072' stamp='0.151'/>
+</parse>
+<parse_done nodes='248' live='239' memory='57464' stamp='0.151'/>
+</parse>
+<loop_tree>
+<loop idx='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='349' inner_loop='1' main_loop='349' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='316' inner_loop='1' pre_loop='259' >
+</loop>
+<loop idx='388' inner_loop='1' main_loop='388' >
+</loop>
+<loop idx='289' inner_loop='1' post_loop='259' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='411' nmethods='102' adapters='162' free_code_cache='248591232'/>
+<task_done success='1' nmsize='440' count='6267' inlined_bytes='61' stamp='0.153'/>
+</task>
+<task compile_id='590' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner peekChar ()I' bytes='63' count='5403' iicount='5403' stamp='0.342'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='peekChar' return='975' flags='1' bytes='63' compile_id='515' compiler='c1' level='3' iicount='5410'/>
+<parse method='1094' uses='5410.000000' stamp='0.343'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='5458' not_taken='0' cnt='5458.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='5459' cnt='5459.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='5459' cnt='5459.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='152' live='145' memory='42352' stamp='0.344'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1023' nmethods='579' adapters='261' free_code_cache='247450112'/>
+<task_done success='1' nmsize='280' count='7224' stamp='0.346'/>
+</task>
+<task compile_id='597' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='14093' iicount='14093' decompiles='1' unstable_if_traps='1' stamp='0.346'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='checkBeforeLoad' return='975' arguments='1094 975 975' flags='4' bytes='140' compile_id='588' compiler='c1' level='3' iicount='14093'/>
+<parse method='1095' uses='14093.000000' stamp='0.346'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='180' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='18'/>
+<branch target_bci='137' taken='14092' not_taken='2' cnt='14094.000000' prob='0.999858'/>
+<bc code='159' bci='35'/>
+<branch target_bci='51' taken='0' not_taken='2'/>
+<bc code='182' bci='61'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1098' holder='1093' name='checkLimit' return='977' arguments='1097 1094 975 975' flags='4' bytes='253' compile_id='538' compiler='c1' level='3' iicount='3465'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<call method='1098' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='61'/>
+<bc code='182' bci='67'/>
+<method id='1099' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='10'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<call method='1099' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='67'/>
+<bc code='190' bci='76'/>
+<uncommon_trap bci='76' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='77'/>
+<branch target_bci='122' taken='2' not_taken='0'/>
+<bc code='184' bci='100'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1100' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1100' count='0' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='86' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='86' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='79'/>
+<bc code='184' bci='134'/>
+<call method='1100' count='2' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='134' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='77'/>
+<parse_done nodes='531' live='525' memory='113336' stamp='0.347'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<code_cache total_blobs='1055' nmethods='595' adapters='261' free_code_cache='247419264'/>
+<task_done success='1' nmsize='1176' count='28118' stamp='0.353'/>
+</task>
+<task compile_id='614' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='5464' iicount='5465' stamp='0.356'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='scanAttribute' return='977' arguments='1094' flags='4' bytes='248' compile_id='541' compiler='c1' level='3' iicount='5465'/>
+<parse method='1095' uses='5465.000000' stamp='0.356'>
+<bc code='153' bci='4'/>
+<branch target_bci='25' taken='5465' not_taken='0' cnt='5465.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='32'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1103' holder='1097' name='scanName' return='983' arguments='1102' flags='4' bytes='305' compile_id='534' compiler='c1' level='3' iicount='6258'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1103'/>
+<call method='1103' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='5465.000000' stamp='0.356'>
+<uncommon_trap bci='32' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6197' not_taken='0' cnt='6197.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='41'/>
+<uncommon_trap bci='41' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='41' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='42'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1123' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1124' holder='1123' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='12708'/>
+<call method='1124' count='6197' prof_factor='0.873282' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1124' uses='5412.000000' stamp='0.357'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='12764' cnt='12764.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='12764' cnt='12764.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='213' live='205' memory='51968' stamp='0.357'/>
+</parse>
+<bc code='153' bci='45'/>
+<branch target_bci='227' taken='0' not_taken='6197' cnt='6197.000000' prob='never'/>
+<bc code='160' bci='69'/>
+<branch target_bci='141' taken='6197' not_taken='0' cnt='6197.000000' prob='always'/>
+<uncommon_trap bci='69' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='144' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='144' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='148'/>
+<uncommon_trap bci='148' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='158'/>
+<uncommon_trap bci='158' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='158' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='165'/>
+<branch target_bci='179' taken='0' not_taken='52579' cnt='52579.000000' prob='never'/>
+<uncommon_trap bci='165' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='173'/>
+<uncommon_trap bci='173' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='188'/>
+<branch target_bci='194' taken='46382' not_taken='6197' cnt='52579.000000' prob='0.882139'/>
+<bc code='182' bci='201'/>
+<klass id='1122' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1131' holder='1097' name='checkBeforeLoad' return='975' arguments='1122 975 975' flags='4' bytes='140' compile_id='597' compiler='c2' level='4' iicount='28118'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1131'/>
+<call method='1131' count='46382' prof_factor='0.873282' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='40505.000000' stamp='0.357'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='160' bci='18'/>
+<branch target_bci='137' taken='28114' not_taken='5' cnt='28119.000000' prob='0.999822'/>
+<bc code='159' bci='35'/>
+<branch target_bci='51' taken='0' not_taken='5'/>
+<bc code='182' bci='61'/>
+<klass id='1125' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1126' holder='1097' name='checkLimit' return='977' arguments='1125 1122 975 975' flags='4' bytes='253' compile_id='538' compiler='c1' level='3' iicount='6415'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1126'/>
+<call method='1126' count='5' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='61'/>
+<bc code='182' bci='67'/>
+<method id='1133' holder='1097' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='17'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1133'/>
+<call method='1133' count='5' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='67'/>
+<bc code='190' bci='76'/>
+<uncommon_trap bci='76' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='77'/>
+<branch target_bci='122' taken='5' not_taken='0'/>
+<bc code='184' bci='100'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1141' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1141' count='0' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='86' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='86' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='79'/>
+<bc code='184' bci='134'/>
+<call method='1141' count='5' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='134' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='77'/>
+<parse_done nodes='896' live='875' memory='174864' stamp='0.358'/>
+</parse>
+<bc code='158' bci='206'/>
+<branch target_bci='224' taken='46375' not_taken='7' cnt='46382.000000' prob='0.999849'/>
+<bc code='182' bci='215'/>
+<method id='1132' holder='1097' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='17'/>
+<call method='1132' count='7' prof_factor='0.873282' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='215'/>
+<bc code='153' bci='218'/>
+<branch target_bci='224' taken='7' not_taken='0'/>
+<bc code='180' bci='231'/>
+<uncommon_trap bci='231' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='251'/>
+<branch target_bci='299' taken='0' not_taken='6197' cnt='6197.000000' prob='never'/>
+<uncommon_trap bci='251' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='264'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1126'/>
+<call method='1126' count='6197' prof_factor='0.873282' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1126' uses='5412.000000' stamp='0.360'>
+<bc code='182' bci='11'/>
+<klass id='1145' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1146' holder='1145' name='addValue' return='977' arguments='1125 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='7774'/>
+<call method='1146' count='7183' prof_factor='0.843648' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1146' uses='6060.000000' stamp='0.360'>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<klass id='1171' name='java.lang.Enum' flags='1025'/>
+<method id='1172' holder='1171' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1172' count='7878' prof_factor='0.779521' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.360'>
+<parse_done nodes='1049' live='1024' memory='219016' stamp='0.360'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1173' holder='1145' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='8152'/>
+<call method='1173' count='7878' prof_factor='0.779521' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1173' uses='6141.000000' stamp='0.360'>
+<bc code='182' bci='4'/>
+<call method='1172' count='7876' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.360'>
+<parse_done nodes='1075' live='1049' memory='225072' stamp='0.360'/>
+</parse>
+<bc code='159' bci='7'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='14'/>
+<call method='1172' count='7876' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.360'>
+<parse_done nodes='1102' live='1074' memory='231960' stamp='0.360'/>
+</parse>
+<bc code='159' bci='17'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='24'/>
+<call method='1172' count='7876' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.360'>
+<parse_done nodes='1129' live='1099' memory='237272' stamp='0.360'/>
+</parse>
+<bc code='159' bci='27'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='34'/>
+<call method='1172' count='7876' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.360'>
+<parse_done nodes='1156' live='1124' memory='242632' stamp='0.360'/>
+</parse>
+<bc code='159' bci='37'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='37' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='44'/>
+<call method='1172' count='7876' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.361'>
+<parse_done nodes='1183' live='1149' memory='247432' stamp='0.361'/>
+</parse>
+<bc code='160' bci='47'/>
+<branch target_bci='61' taken='8152' not_taken='0' cnt='8152.000000' prob='always'/>
+<uncommon_trap bci='47' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='65'/>
+<call method='1172' count='7876' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6141.000000' stamp='0.361'>
+<parse_done nodes='1210' live='1174' memory='254728' stamp='0.361'/>
+</parse>
+<bc code='159' bci='68'/>
+<branch target_bci='81' taken='750' not_taken='7402' cnt='8152.000000' prob='0.092002'/>
+<bc code='182' bci='75'/>
+<call method='1172' count='7151' prof_factor='0.753312' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5576.000000' stamp='0.361'>
+<parse_done nodes='1232' live='1195' memory='259032' stamp='0.361'/>
+</parse>
+<bc code='160' bci='78'/>
+<branch target_bci='96' taken='143' not_taken='7259' cnt='7402.000000' prob='0.0193191'/>
+<bc code='79' bci='87'/>
+<uncommon_trap bci='87' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='87' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='94'/>
+<uncommon_trap bci='94' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='94' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1316' live='1274' memory='278136' stamp='0.361'/>
+</parse>
+<parse_done nodes='1319' live='1276' memory='279048' stamp='0.361'/>
+</parse>
+<bc code='182' bci='23'/>
+<klass id='1147' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1148' holder='1147' name='isOverLimit' return='969' arguments='1125 1145' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='14809'/>
+<call method='1148' count='7183' prof_factor='0.843648' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='6060.000000' stamp='0.361'>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<call method='1172' count='15264' prof_factor='0.409211' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6246.000000' stamp='0.361'>
+<parse_done nodes='1363' live='1318' memory='287448' stamp='0.361'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1192' holder='1147' name='isOverLimit' return='969' arguments='975 1145' flags='1' bytes='111' compile_id='594' compiler='c2' level='4' iicount='11900'/>
+<call method='1192' count='15264' prof_factor='0.409211' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1192' uses='6246.000000' stamp='0.361'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1172' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5877.000000' stamp='0.361'>
+<parse_done nodes='1437' live='1388' memory='301176' stamp='0.361'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1172' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5877.000000' stamp='0.361'>
+<parse_done nodes='1464' live='1413' memory='308392' stamp='0.361'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1172' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5877.000000' stamp='0.361'>
+<parse_done nodes='1491' live='1438' memory='314072' stamp='0.362'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='45'/>
+<call method='1172' count='5416' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='2906.000000' stamp='0.362'>
+<parse_done nodes='1514' live='1460' memory='320536' stamp='0.362'/>
+</parse>
+<bc code='159' bci='48'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='48' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='55'/>
+<call method='1172' count='5416' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='2906.000000' stamp='0.362'>
+<parse_done nodes='1541' live='1485' memory='326216' stamp='0.362'/>
+</parse>
+<bc code='159' bci='58'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='58' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='65'/>
+<call method='1172' count='5416' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='2906.000000' stamp='0.362'>
+<parse_done nodes='1568' live='1510' memory='331552' stamp='0.362'/>
+</parse>
+<bc code='160' bci='68'/>
+<branch target_bci='91' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<bc code='182' bci='73'/>
+<method id='1194' holder='1145' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' compile_id='521' compiler='c1' level='3' iicount='11168'/>
+<call method='1194' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1194' uses='5877.000000' stamp='0.362'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1638' live='1576' memory='346992' stamp='0.362'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1689' live='1623' memory='357720' stamp='0.362'/>
+</parse>
+<parse_done nodes='1693' live='1626' memory='358736' stamp='0.362'/>
+</parse>
+<bc code='153' bci='26'/>
+<branch target_bci='162' taken='7183' not_taken='0' cnt='7183.000000' prob='always'/>
+<bc code='182' bci='173'/>
+<call method='1148' count='7183' prof_factor='0.843648' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='6060.000000' stamp='0.363'>
+<uncommon_trap bci='173' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<call method='1172' count='15264' prof_factor='0.409211' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='6246.000000' stamp='0.363'>
+<parse_done nodes='1745' live='1676' memory='372616' stamp='0.363'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1192' count='15264' prof_factor='0.409211' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1192' uses='6246.000000' stamp='0.363'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1172' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5877.000000' stamp='0.363'>
+<parse_done nodes='1819' live='1746' memory='388008' stamp='0.363'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1172' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5877.000000' stamp='0.363'>
+<parse_done nodes='1846' live='1771' memory='394072' stamp='0.363'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1172' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1172' uses='5877.000000' stamp='0.363'>
+<parse_done nodes='1873' live='1796' memory='399304' stamp='0.363'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='73'/>
+<call method='1194' count='10952' prof_factor='0.524874' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1194' uses='5877.000000' stamp='0.363'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1944' live='1863' memory='412448' stamp='0.364'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1995' live='1910' memory='423176' stamp='0.364'/>
+</parse>
+<parse_done nodes='1999' live='1913' memory='424192' stamp='0.364'/>
+</parse>
+<bc code='153' bci='176'/>
+<branch target_bci='252' taken='7183' not_taken='0' cnt='7183.000000' prob='always'/>
+<parse_done nodes='2010' live='1923' memory='430504' stamp='0.364'/>
+</parse>
+<bc code='182' bci='275'/>
+<method id='1127' holder='1097' name='checkEntityLimit' return='977' arguments='1102 1122 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1127'/>
+<call method='1127' count='6197' prof_factor='0.873282' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1127' uses='5412.000000' stamp='0.364'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2056' live='1966' memory='493288' stamp='0.365'/>
+</parse>
+<bc code='180' bci='286'/>
+<uncommon_trap bci='286' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='291'/>
+<klass id='1128' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1129' holder='1128' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='4925'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1129'/>
+<call method='1129' count='6197' prof_factor='0.873282' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1129' uses='5412.000000' stamp='0.366'>
+<uncommon_trap bci='291' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='7'/>
+<method id='1200' holder='1128' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='582' compiler='c2' level='4' iicount='3668'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1200'/>
+<call method='1200' count='4656' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1200' uses='4656.000000' stamp='0.366'>
+<bc code='199' bci='4'/>
+<branch target_bci='45' taken='0' not_taken='3410' cnt='3410.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='3410' not_taken='29013' cnt='32423.000000' prob='0.105172'/>
+<uncommon_trap bci='19' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='29' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='3410' not_taken='29013' cnt='29013.000000' prob='0.105172'/>
+<parse_done nodes='2244' live='2146' memory='531504' stamp='0.367'/>
+</parse>
+<bc code='112' bci='14'/>
+<uncommon_trap bci='14' reason='div0_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='23'/>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='23' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='7' not_taken='5595' cnt='5602.000000' prob='0.00124955'/>
+<uncommon_trap bci='31' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='31' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='34'/>
+<uncommon_trap bci='34' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='37'/>
+<uncommon_trap bci='37' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='38'/>
+<branch target_bci='85' taken='946' not_taken='4649' cnt='5595.000000' prob='0.16908'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='4649' not_taken='39473' cnt='44122.000000' prob='0.105367'/>
+<uncommon_trap bci='50' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='50' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='55'/>
+<uncommon_trap bci='55' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='55' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='52' bci='63'/>
+<uncommon_trap bci='63' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='63' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='64'/>
+<branch target_bci='73' taken='39473' not_taken='0' cnt='39473.000000' prob='always'/>
+<uncommon_trap bci='64' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='4649' not_taken='39473' cnt='39473.000000' prob='0.105367'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='7' not_taken='5595' cnt='946.000000' prob='0.00124955'/>
+<bc code='183' bci='106'/>
+<method id='1203' holder='1128' name='addSymbol0' return='983' arguments='1082 975 975 975 975' flags='2' bytes='103' iicount='84'/>
+<call method='1203' count='7' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='106'/>
+<parse_done nodes='2584' live='2470' memory='609496' stamp='0.368'/>
+</parse>
+<parse_done nodes='2592' live='2477' memory='612408' stamp='0.368'/>
+</parse>
+<bc code='182' bci='44'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1104' holder='1098' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='585' compiler='c2' level='4' iicount='6168'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<call method='1104' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='5465.000000' stamp='0.368'>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3043' live='2926' memory='689304' stamp='0.368'/>
+</parse>
+<bc code='182' bci='51'/>
+<method id='1105' holder='1097' name='skipSpaces' return='969' flags='4' bytes='350' iicount='9428'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1105'/>
+<call method='1105' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='51'/>
+<uncommon_trap bci='51' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='64'/>
+<method id='1106' holder='1097' name='skipChar' return='969' arguments='975 1102' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1106'/>
+<call method='1106' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='5465.000000' stamp='0.369'>
+<uncommon_trap bci='64' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6243' not_taken='0' cnt='6243.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='605' not_taken='5638' cnt='6243.000000' prob='0.0969085'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='5638' not_taken='0' cnt='5638.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1127'/>
+<call method='1127' count='5400' prof_factor='0.875380' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1127' uses='4936.000000' stamp='0.369'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3295' live='3170' memory='728520' stamp='0.369'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='605' not_taken='0' cnt='605.000000' prob='always'/>
+<parse_done nodes='3306' live='3179' memory='730144' stamp='0.369'/>
+</parse>
+<bc code='154' bci='67'/>
+<branch target_bci='100' taken='5465' not_taken='0' cnt='5465.000000' prob='always'/>
+<uncommon_trap bci='67' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='104'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1105'/>
+<call method='1105' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='104'/>
+<uncommon_trap bci='104' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='114'/>
+<branch target_bci='128' taken='5465' not_taken='0' cnt='5465.000000' prob='always'/>
+<uncommon_trap bci='114' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='131'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1108' holder='1093' name='getString' return='1107' flags='4' bytes='76' compile_id='617' compiler='c2' level='4' iicount='5496'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<call method='1108' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='5465.000000' stamp='0.369'>
+<bc code='161' bci='8'/>
+<branch target_bci='25' taken='3053' not_taken='3227' cnt='6280.000000' prob='0.486147'/>
+<bc code='182' bci='19'/>
+<klass id='1160' name='java.util.ArrayList' flags='1'/>
+<method id='1161' holder='1160' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1161'/>
+<call method='1161' count='3227' prof_factor='0.994360' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1161' uses='3209.000000' stamp='0.369'>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3424' live='3292' memory='748440' stamp='0.369'/>
+</parse>
+<bc code='162' bci='22'/>
+<branch target_bci='47' taken='2' not_taken='3225' cnt='3227.000000' prob='0.000619771'/>
+<bc code='183' bci='51'/>
+<method id='1214' holder='1107' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='83'/>
+<call method='1214' count='2' prof_factor='0.994360' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1214' uses='2.000000' stamp='0.370'>
+<bc code='183' bci='1'/>
+<method id='1220' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='25652'/>
+<call method='1220' count='-1' prof_factor='0.024096' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1220' uses='-1.000000' stamp='0.370'>
+<parse_done nodes='3491' live='3358' memory='762304' stamp='0.370'/>
+</parse>
+<parse_done nodes='3495' live='3361' memory='764192' stamp='0.370'/>
+</parse>
+<bc code='182' bci='70'/>
+<method id='1215' holder='1160' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='758'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1215'/>
+<call method='1215' count='2' prof_factor='0.994360' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1215' uses='2.000000' stamp='0.370'>
+<uncommon_trap bci='70' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='20'/>
+<klass id='1116' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1223' holder='1160' name='add' return='977' arguments='982 1116 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='769'/>
+<call method='1223' count='-1' prof_factor='0.002639' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1223' uses='-1.000000' stamp='0.370'>
+<bc code='190' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='7'/>
+<method id='1225' holder='1160' name='grow' return='1116' flags='2' bytes='11' iicount='146'/>
+<call method='1225' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='7'/>
+<bc code='83' bci='14'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='14' reason='array_check' action='maybe_recompile' debug_id='0' klass='1116'/>
+<cast_up reason='monomorphic_array' from='1116' to='(exact)'/>
+<parse_done nodes='3814' live='3674' memory='827512' stamp='0.371'/>
+</parse>
+<parse_done nodes='3827' live='3686' memory='832888' stamp='0.371'/>
+</parse>
+<bc code='182' bci='40'/>
+<method id='1162' holder='1160' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='526' compiler='c1' level='3' iicount='6316'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1162'/>
+<call method='1162' count='6278' prof_factor='0.994360' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1162' uses='6243.000000' stamp='0.372'>
+<uncommon_trap bci='40' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='5'/>
+<klass id='1230' name='java.util.Objects' flags='17'/>
+<method id='1231' holder='1230' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='7100'/>
+<call method='1231' count='6628' prof_factor='0.988442' inline='1'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1231' uses='6551.000000' stamp='0.373'>
+<bc code='184' bci='3'/>
+<klass id='1235' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1234' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1236' holder='1234' name='checkIndex' return='975' arguments='975 975 1235' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='7100'/>
+<call method='1236' count='6841' prof_factor='0.922676' inline='1'/>
+<uncommon_trap bci='3' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='3' reason='range_check' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_Preconditions_checkIndex' nodes='25'/>
+<parse_done nodes='3912' live='3766' memory='854216' stamp='0.373'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1232' holder='1160' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='6903'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1232'/>
+<call method='1232' count='6628' prof_factor='0.988442' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1232' uses='6551.000000' stamp='0.373'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='3962' live='3813' memory='870936' stamp='0.373'/>
+</parse>
+<parse_done nodes='3963' live='3813' memory='871720' stamp='0.373'/>
+</parse>
+<bc code='192' bci='43'/>
+<uncommon_trap bci='43' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='43' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3997' live='3844' memory='878432' stamp='0.373'/>
+</parse>
+<bc code='180' bci='147'/>
+<uncommon_trap bci='147' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='157'/>
+<uncommon_trap bci='157' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='161'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1109' holder='1101' name='scanAttributeValue' return='977' arguments='1107 1107 983 1094 975 969 983 969' flags='4' bytes='991' compile_id='543' compiler='c1' level='3' iicount='5495'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<call method='1109' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='161'/>
+<bc code='185' bci='165'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<method id='1110' holder='1094' name='getLength' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' count='5140' prof_factor='1.000000' virtual='1' inline='1' receiver='1100' receiver_count='5140'/>
+<klass id='1271' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1272' holder='1271' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<call method='1272' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<predicted_call bci='165' klass='1100'/>
+<uncommon_trap bci='165' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='165' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1272' uses='5465.000000' stamp='0.376'>
+<parse_done nodes='4100' live='3942' memory='983680' stamp='0.377'/>
+</parse>
+<bc code='185' bci='181'/>
+<method id='1276' holder='1271' name='addAttribute' return='975' arguments='1098 983 983' flags='1' bytes='9' compile_id='544' compiler='c1' level='3' iicount='7455'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1276'/>
+<call method='1276' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1276' uses='5465.000000' stamp='0.377'>
+<bc code='182' bci='5'/>
+<method id='1277' holder='1271' name='addAttribute' return='975' arguments='1098 983 983 1107' flags='1' bytes='679' compile_id='548' compiler='c1' level='3' iicount='7455'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1277'/>
+<call method='1277' count='7071' prof_factor='0.733065' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='5'/>
+<parse_done nodes='4132' live='3973' memory='989520' stamp='0.379'/>
+</parse>
+<bc code='185' bci='190'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1272'/>
+<call method='1272' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1272' uses='5465.000000' stamp='0.379'>
+<parse_done nodes='4147' live='3987' memory='992632' stamp='0.379'/>
+</parse>
+<bc code='160' bci='195'/>
+<branch target_bci='229' taken='5465' not_taken='0' cnt='5465.000000' prob='always'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='234'/>
+<method id='1291' holder='1271' name='setValue' return='977' arguments='975 983 1107' flags='1' bytes='27' compile_id='552' compiler='c1' level='3' iicount='7548'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1291'/>
+<call method='1291' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1291' uses='5465.000000' stamp='0.379'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='181' bci='11'/>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4477' live='4312' memory='1046368' stamp='0.379'/>
+</parse>
+<bc code='185' bci='242'/>
+<method id='1293' holder='1271' name='setSpecified' return='977' arguments='975 969' flags='1' bytes='11' compile_id='553' compiler='c1' level='3' iicount='7603'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1293'/>
+<call method='1293' count='5140' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1293' uses='5465.000000' stamp='0.379'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='181' bci='7'/>
+<uncommon_trap bci='7' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4546' live='4377' memory='1061840' stamp='0.379'/>
+</parse>
+<parse_done nodes='4553' live='4383' memory='1063872' stamp='0.379'/>
+</parse>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2475' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2481' >
+</loop>
+</loop_tree>
+<method id='1208' holder='1128' name='rebalance' return='977' flags='4' bytes='32' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1208'/>
+<method id='1306' holder='1128' name='hash' return='975' arguments='983' flags='1' bytes='21' iicount='75'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1306'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1200'/>
+<method id='1209' holder='1128' name='rehash' return='977' flags='4' bytes='14' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1209'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1306'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1200'/>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2475' inner_loop='1' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2481' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2475' inner_loop='1' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2481' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2926' inner_loop='1' main_loop='2926' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='3038' inner_loop='1' main_loop='3038' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2887' inner_loop='1' pre_loop='2475' >
+</loop>
+<loop idx='2926' inner_loop='1' main_loop='2926' >
+</loop>
+<loop idx='2859' inner_loop='1' post_loop='2475' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2991' inner_loop='1' pre_loop='2481' >
+</loop>
+<loop idx='3038' inner_loop='1' main_loop='3038' >
+</loop>
+<loop idx='2953' inner_loop='1' post_loop='2481' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2887' inner_loop='1' pre_loop='2475' >
+</loop>
+<loop idx='2926' inner_loop='1' main_loop='2926' >
+</loop>
+<loop idx='2859' inner_loop='1' post_loop='2475' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2991' inner_loop='1' pre_loop='2481' >
+</loop>
+<loop idx='3038' inner_loop='1' main_loop='3038' >
+</loop>
+<loop idx='2953' inner_loop='1' post_loop='2481' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2887' inner_loop='1' pre_loop='2475' >
+</loop>
+<loop idx='3353' inner_loop='1' main_loop='3353' >
+</loop>
+<loop idx='2859' inner_loop='1' post_loop='2475' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2991' inner_loop='1' pre_loop='2481' >
+</loop>
+<loop idx='3401' inner_loop='1' main_loop='3401' >
+</loop>
+<loop idx='2953' inner_loop='1' post_loop='2481' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2887' inner_loop='1' pre_loop='2475' >
+</loop>
+<loop idx='3353' inner_loop='1' main_loop='3353' >
+</loop>
+<loop idx='2859' inner_loop='1' post_loop='2475' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2991' inner_loop='1' pre_loop='2481' >
+</loop>
+<loop idx='3401' inner_loop='1' main_loop='3401' >
+</loop>
+<loop idx='2953' inner_loop='1' post_loop='2481' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2466' inner_loop='1' >
+</loop>
+<loop idx='2887' inner_loop='1' pre_loop='2475' >
+</loop>
+<loop idx='3353' inner_loop='1' main_loop='3353' >
+</loop>
+<loop idx='2859' inner_loop='1' post_loop='2475' >
+</loop>
+<loop idx='2468' inner_loop='1' >
+</loop>
+<loop idx='2991' inner_loop='1' pre_loop='2481' >
+</loop>
+<loop idx='3401' inner_loop='1' main_loop='3401' >
+</loop>
+<loop idx='2953' inner_loop='1' post_loop='2481' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1131'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1126'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1133'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1127'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1129'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1200'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1105'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1106'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1161'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1215'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1162'/>
+<dependency type='unique_concrete_method' ctxk='1160' x='1232'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1276'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1277'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1272'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1291'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1293'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1208'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1306'/>
+<dependency type='unique_concrete_method' ctxk='1128' x='1209'/>
+<code_cache total_blobs='1246' nmethods='721' adapters='262' free_code_cache='246750208'/>
+<task_done success='1' nmsize='7616' count='15390' inlined_bytes='2140' stamp='0.440'/>
+</task>
+<task compile_id='732' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipSpaces ()Z' bytes='350' count='28987' backedge_count='7649' iicount='28987' decompiles='2' unstable_if_traps='2' stamp='0.453'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1094' holder='1093' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='727' compiler='c1' level='3' iicount='29025'/>
+<parse method='1094' uses='29025.000000' stamp='0.453'>
+<observe trap='unstable_if' count='2' total='2'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='29024' not_taken='2' cnt='29026.000000' prob='0.999931'/>
+<bc code='182' bci='21'/>
+<type id='975' name='int'/>
+<method id='1101' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='46'/>
+<call method='1101' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='199' bci='29'/>
+<branch target_bci='34' taken='29026' not_taken='0' cnt='29026.000000' prob='always'/>
+<uncommon_trap bci='29' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='48'/>
+<uncommon_trap bci='48' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='48' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='61'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1098' holder='1097' name='isSpace' return='969' arguments='975' flags='9' bytes='22' compile_id='620' compiler='c2' level='4' iicount='36837'/>
+<call method='1098' count='28747' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='29026.000000' stamp='0.453'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='28384' not_taken='8453' cnt='36837.000000' prob='0.77053'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='8453' cnt='8453.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='209' live='203' memory='50776' stamp='0.453'/>
+</parse>
+<bc code='153' bci='64'/>
+<branch target_bci='348' taken='20433' not_taken='8593' cnt='29026.000000' prob='0.703955'/>
+<uncommon_trap bci='67' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='67' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='72'/>
+<branch target_bci='88' taken='0' not_taken='8638' cnt='8638.000000' prob='never'/>
+<uncommon_trap bci='72' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='79'/>
+<branch target_bci='232' taken='0' not_taken='8638' cnt='8638.000000' prob='never'/>
+<uncommon_trap bci='79' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='85'/>
+<branch target_bci='232' taken='8638' not_taken='0' cnt='8638.000000' prob='always'/>
+<uncommon_trap bci='85' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='237'/>
+<uncommon_trap bci='237' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='261'/>
+<type id='977' name='void'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1096' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1100' holder='1093' name='checkEntityLimit' return='977' arguments='1099 1096 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<call method='1100' count='8555' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='8638.000000' stamp='0.454'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='367' live='353' memory='79272' stamp='0.454'/>
+</parse>
+<bc code='180' bci='268'/>
+<uncommon_trap bci='268' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='273'/>
+<branch target_bci='289' taken='0' not_taken='8638' cnt='8638.000000' prob='never'/>
+<bc code='160' bci='303'/>
+<branch target_bci='323' taken='8637' not_taken='1' cnt='8638.000000' prob='0.999884'/>
+<bc code='182' bci='310'/>
+<call method='1101' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='310'/>
+<bc code='199' bci='318'/>
+<branch target_bci='323' taken='1' not_taken='0'/>
+<bc code='180' bci='327'/>
+<uncommon_trap bci='327' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='337'/>
+<uncommon_trap bci='337' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='337' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='340'/>
+<call method='1098' count='8555' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='8638.000000' stamp='0.454'>
+<bc code='163' bci='3'/>
+<branch target_bci='20' taken='28384' not_taken='8453' cnt='36837.000000' prob='0.77053'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='8453' cnt='8453.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='566' live='545' memory='119328' stamp='0.454'/>
+</parse>
+<bc code='154' bci='343'/>
+<branch target_bci='67' taken='45' not_taken='8594' cnt='8639.000000' prob='0.00520894'/>
+<parse_done nodes='582' live='559' memory='122792' stamp='0.454'/>
+</parse>
+<loop_tree>
+<loop idx='610' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='610' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='610' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='610' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='610' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<code_cache total_blobs='1259' nmethods='728' adapters='262' free_code_cache='246711680'/>
+<task_done success='1' nmsize='952' count='30911' backedge_count='8199' inlined_bytes='94' stamp='0.457'/>
+</task>
+<task compile_id='741' method='java.util.HashMap get (Ljava/lang/Object;)Ljava/lang/Object;' bytes='23' count='6419' iicount='6419' stamp='0.462'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='6420'/>
+<parse method='1094' uses='6420.000000' stamp='0.462'>
+<bc code='184' bci='2'/>
+<type id='975' name='int'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='12718'/>
+<call method='1096' count='6148' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='6420.000000' stamp='0.462'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='12718' not_taken='0' cnt='12718.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1101' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1099' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1099' count='12440' prof_factor='0.504796' virtual='1' inline='1' receiver='983' receiver_count='10048' receiver2='1101' receiver2_count='139'/>
+<intrinsic id='_hashCode' virtual='1' nodes='55'/>
+<parse_done nodes='111' live='109' memory='34984' stamp='0.462'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1097' name='java.util.HashMap$Node' flags='8'/>
+<method id='1098' holder='1093' name='getNode' return='1097' arguments='975 982' flags='16' bytes='148' compile_id='701' compiler='c2' level='4' iicount='6718'/>
+<call method='1098' count='6148' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='6420.000000' stamp='0.462'>
+<bc code='198' bci='6'/>
+<branch target_bci='146' taken='506' not_taken='6212' cnt='6718.000000' prob='0.07532'/>
+<bc code='158' bci='14'/>
+<branch target_bci='146' taken='0' not_taken='6212' cnt='6212.000000' prob='never'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='50' bci='24'/>
+<uncommon_trap bci='24' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='146' taken='962' not_taken='5250' cnt='6212.000000' prob='0.154862'/>
+<bc code='160' bci='37'/>
+<branch target_bci='68' taken='971' not_taken='4279' cnt='5250.000000' prob='0.184952'/>
+<bc code='165' bci='49'/>
+<branch target_bci='65' taken='2960' not_taken='1319' cnt='4279.000000' prob='0.69175'/>
+<bc code='198' bci='53'/>
+<branch target_bci='68' taken='0' not_taken='1319' cnt='1319.000000' prob='never'/>
+<bc code='182' bci='59'/>
+<type id='969' name='boolean'/>
+<method id='1104' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='136'/>
+<call method='1104' count='1266' prof_factor='0.955642' virtual='1' inline='1' receiver='983' receiver_count='1266'/>
+<method id='1110' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1110' count='1266' prof_factor='0.955642' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='59' klass='983'/>
+<uncommon_trap bci='59' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1110' uses='1261.000000' stamp='0.463'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='193' bci='8'/>
+<uncommon_trap bci='8' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='192' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='15' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1111' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='59817'/>
+<call method='1111' count='4199' prof_factor='0.225662' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1111' uses='1024.000000' stamp='0.463'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='59817' cnt='59817.000000' prob='never'/>
+<parse_done nodes='358' live='348' memory='78416' stamp='0.463'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1111' count='4199' prof_factor='0.225662' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1111' uses='1024.000000' stamp='0.463'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='59817' cnt='59817.000000' prob='never'/>
+<parse_done nodes='382' live='371' memory='81576' stamp='0.463'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1112' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='93610'/>
+<call method='1112' count='4199' prof_factor='0.225662' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1112' uses='1024.000000' stamp='0.463'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='93610' cnt='93610.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='93609' cnt='93610.000000' prob='1.06826e-05'/>
+<parse_done nodes='426' live='413' memory='87800' stamp='0.463'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1115' name='java.lang.StringLatin1' flags='16'/>
+<method id='1116' holder='1115' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4507'/>
+<call method='1116' count='4199' prof_factor='0.225662' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='465' live='449' memory='94288' stamp='0.463'/>
+</parse>
+<bc code='153' bci='62'/>
+<branch target_bci='68' taken='0' not_taken='1319' cnt='1319.000000' prob='never'/>
+<uncommon_trap bci='62' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='198' bci='76'/>
+<branch target_bci='146' taken='322' not_taken='649' cnt='971.000000' prob='0.331617'/>
+<bc code='153' bci='84'/>
+<branch target_bci='98' taken='649' not_taken='0' cnt='649.000000' prob='always'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='98' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='98' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='100'/>
+<uncommon_trap bci='100' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='104'/>
+<branch target_bci='135' taken='170' not_taken='602' cnt='772.000000' prob='0.220207'/>
+<bc code='165' bci='116'/>
+<branch target_bci='132' taken='437' not_taken='166' cnt='603.000000' prob='0.72471'/>
+<bc code='198' bci='120'/>
+<branch target_bci='135' taken='0' not_taken='166' cnt='166.000000' prob='never'/>
+<bc code='182' bci='126'/>
+<klass id='1107' name='java.util.jar.Attributes$Name' flags='9'/>
+<call method='1104' count='159' prof_factor='0.955642' virtual='1' inline='1' receiver='983' receiver_count='158' receiver2='1107' receiver2_count='1'/>
+<call method='1110' count='159' prof_factor='0.955642' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<method id='1121' holder='1107' name='equals' return='969' arguments='982' flags='1' bytes='39' iicount='1'/>
+<call method='1121' count='159' prof_factor='0.955642' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<predicted_call bci='126' klass='983'/>
+<virtual_call bci='126'/>
+<parse method='1110' uses='158.000000' stamp='0.464'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='193' bci='8'/>
+<uncommon_trap bci='8' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='192' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='15' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='20'/>
+<call method='1111' count='4199' prof_factor='0.028275' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1111' uses='128.000000' stamp='0.464'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='59817' cnt='59817.000000' prob='never'/>
+<parse_done nodes='724' live='697' memory='141600' stamp='0.464'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1111' count='4199' prof_factor='0.028275' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1111' uses='128.000000' stamp='0.464'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='59817' cnt='59817.000000' prob='never'/>
+<parse_done nodes='748' live='720' memory='145912' stamp='0.464'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1112' count='4199' prof_factor='0.028275' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1112' uses='128.000000' stamp='0.464'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='93610' cnt='93610.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='93609' cnt='93610.000000' prob='1.06826e-05'/>
+<parse_done nodes='792' live='762' memory='152904' stamp='0.464'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1116' count='4199' prof_factor='0.028275' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='831' live='798' memory='158368' stamp='0.464'/>
+</parse>
+<bc code='153' bci='129'/>
+<branch target_bci='135' taken='0' not_taken='166' cnt='166.000000' prob='never'/>
+<uncommon_trap bci='129' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='199' bci='143'/>
+<branch target_bci='98' taken='123' not_taken='47' cnt='170.000000' prob='0.723529'/>
+<parse_done nodes='870' live='834' memory='165296' stamp='0.464'/>
+</parse>
+<bc code='199' bci='11'/>
+<branch target_bci='18' taken='4660' not_taken='1760' cnt='6420.000000' prob='0.725857'/>
+<parse_done nodes='892' live='855' memory='169632' stamp='0.464'/>
+</parse>
+<loop_tree>
+<loop idx='989' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='989' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='989' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='989' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='989' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1291' nmethods='742' adapters='262' free_code_cache='246636032'/>
+<task_done success='1' nmsize='1560' count='6623' inlined_bytes='360' stamp='0.469'/>
+</task>
+<task compile_id='747' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser endElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='108' count='5523' iicount='5523' stamp='0.469'>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.parsers.SAXParser' flags='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1099'/>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<method id='1096' holder='1093' name='endElement' return='977' arguments='1094 1095' flags='1' bytes='108' compile_id='581' compiler='c1' level='3' iicount='5523'/>
+<klass id='1101' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<uncommon_trap method='1096' bci='15' reason='unloaded' action='reinterpret' index='528' debug_id='0' klass='1101'/>
+<parse method='1096' uses='5523.000000' stamp='0.469'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<assert_null reason='field' klass='1101'/>
+<uncommon_trap bci='4' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='4'/>
+<branch target_bci='20' taken='5523' not_taken='0' cnt='5523.000000' prob='always'/>
+<bc code='198' bci='24'/>
+<branch target_bci='94' taken='0' not_taken='5523' cnt='5523.000000' prob='never'/>
+<uncommon_trap bci='24' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='180' bci='33'/>
+<uncommon_trap bci='33' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='36'/>
+<branch target_bci='46' taken='5523' not_taken='0' cnt='5523.000000' prob='always'/>
+<uncommon_trap bci='36' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='53'/>
+<branch target_bci='63' taken='5523' not_taken='0' cnt='5523.000000' prob='always'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='78'/>
+<klass id='1098' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1102' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1104' holder='1102' name='endElement' return='977' arguments='983 983 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1104' count='5127' prof_factor='1.000000' virtual='1' inline='1' receiver='1098' receiver_count='5127'/>
+<method id='1109' holder='1098' name='endElement' return='977' arguments='983 983 983' flags='1' bytes='718' compile_id='596' compiler='c1' level='3' iicount='5529'/>
+<call method='1109' count='5127' prof_factor='1.000000' inline='1'/>
+<klass id='1143' name='java.lang.System' unloaded='1'/>
+<uncommon_trap method='1109' bci='636' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1143'/>
+<uncommon_trap method='1109' bci='572' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1143'/>
+<uncommon_trap method='1109' bci='297' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1143'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='78' klass='1098'/>
+<uncommon_trap bci='78' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='78' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='78'/>
+<klass id='1100' name='org.xml.sax.SAXException' unloaded='1'/>
+<uncommon_trap bci='97' reason='unloaded' action='reinterpret' debug_id='0' klass='1100' comment='!loaded exception'/>
+<bc code='153' bci='87'/>
+<branch target_bci='94' taken='5523' not_taken='0' cnt='5523.000000' prob='always'/>
+<uncommon_trap bci='87' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='368' live='357' memory='78000' stamp='0.470'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1099'/>
+<code_cache total_blobs='1300' nmethods='745' adapters='262' free_code_cache='246630272'/>
+<task_done success='1' nmsize='712' count='5644' stamp='0.472'/>
+</task>
+<task compile_id='768' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='8442' backedge_count='67574' iicount='8442' decompiles='1' unstable_if_traps='1' stamp='0.505'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanLiteral' return='975' arguments='975 1094 969' flags='4' bytes='755' compile_id='754' compiler='c1' level='3' iicount='8448'/>
+<parse method='1095' uses='8448.000000' stamp='0.505'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='28' taken='8152' not_taken='11' cnt='8163.000000' prob='0.998652'/>
+<bc code='182' bci='21'/>
+<method id='1106' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='63'/>
+<call method='1106' count='11' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='160' bci='44'/>
+<branch target_bci='94' taken='8151' not_taken='2' cnt='8153.000000' prob='0.999755'/>
+<bc code='182' bci='49'/>
+<type id='977' name='void'/>
+<method id='1107' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='64'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<call method='1107' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='49'/>
+<bc code='180' bci='56'/>
+<uncommon_trap bci='56' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='76'/>
+<uncommon_trap bci='76' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='76' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='85' bci='77'/>
+<uncommon_trap bci='77' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='82'/>
+<call method='1106' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='82'/>
+<bc code='181' bci='91'/>
+<uncommon_trap bci='91' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='98'/>
+<uncommon_trap bci='98' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='112'/>
+<uncommon_trap bci='112' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='112' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='122'/>
+<branch target_bci='130' taken='0' not_taken='8164' cnt='8164.000000' prob='never'/>
+<uncommon_trap bci='122' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='134'/>
+<branch target_bci='151' taken='0' not_taken='8164' cnt='8164.000000' prob='never'/>
+<uncommon_trap bci='134' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='141'/>
+<branch target_bci='501' taken='8164' not_taken='0' cnt='8164.000000' prob='always'/>
+<uncommon_trap bci='141' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='515'/>
+<branch target_bci='617' taken='11' not_taken='73818' cnt='73829.000000' prob='0.000148993'/>
+<uncommon_trap bci='518' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='518' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='522'/>
+<uncommon_trap bci='522' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='532'/>
+<uncommon_trap bci='532' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='532' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='538'/>
+<branch target_bci='558' taken='65775' not_taken='8043' cnt='73818.000000' prob='0.891043'/>
+<bc code='153' bci='548'/>
+<branch target_bci='617' taken='8043' not_taken='0' cnt='8043.000000' prob='always'/>
+<uncommon_trap bci='548' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='159' bci='562'/>
+<branch target_bci='617' taken='0' not_taken='65775' cnt='65775.000000' prob='never'/>
+<uncommon_trap bci='562' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='567'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1104' holder='1103' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='591' compiler='c2' level='4' iicount='72710'/>
+<call method='1104' count='65775' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='65775.000000' stamp='0.506'>
+<bc code='162' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='73350' cnt='73350.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='154' bci='14'/>
+<branch target_bci='29' taken='67206' not_taken='6144' cnt='73350.000000' prob='0.916237'/>
+<bc code='163' bci='20'/>
+<branch target_bci='33' taken='6144' not_taken='0' cnt='6144.000000' prob='always'/>
+<parse_done nodes='586' live='566' memory='152816' stamp='0.506'/>
+</parse>
+<bc code='154' bci='570'/>
+<branch target_bci='576' taken='65665' not_taken='110' cnt='65775.000000' prob='0.998328'/>
+<bc code='153' bci='580'/>
+<branch target_bci='601' taken='0' not_taken='65665' cnt='65665.000000' prob='never'/>
+<uncommon_trap bci='580' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='587'/>
+<branch target_bci='601' taken='65665' not_taken='0' cnt='65665.000000' prob='always'/>
+<uncommon_trap bci='587' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='606'/>
+<uncommon_trap bci='606' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='515'/>
+<branch target_bci='617' taken='11' not_taken='73818' cnt='65665.000000' prob='0.000148993'/>
+<bc code='180' bci='621'/>
+<uncommon_trap bci='621' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='656'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1099' holder='1093' name='checkEntityLimit' return='977' arguments='1098 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<call method='1099' count='8164' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='8164.000000' stamp='0.506'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='748' live='721' memory='184368' stamp='0.506'/>
+</parse>
+<bc code='153' bci='660'/>
+<branch target_bci='678' taken='8164' not_taken='0' cnt='8164.000000' prob='always'/>
+<uncommon_trap bci='660' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='683'/>
+<uncommon_trap bci='683' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='690'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1100' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='583' compiler='c2' level='4' iicount='14328'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<call method='1100' count='8164' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='8164.000000' stamp='0.506'>
+<uncommon_trap bci='690' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='974' live='943' memory='219632' stamp='0.506'/>
+</parse>
+<bc code='180' bci='697'/>
+<uncommon_trap bci='697' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='707'/>
+<branch target_bci='749' taken='11' not_taken='8153' cnt='8164.000000' prob='0.00134738'/>
+<bc code='52' bci='724'/>
+<uncommon_trap bci='724' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='724' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='730'/>
+<branch target_bci='752' taken='110' not_taken='8043' cnt='8153.000000' prob='0.013492'/>
+<bc code='153' bci='740'/>
+<branch target_bci='752' taken='8043' not_taken='0' cnt='8043.000000' prob='always'/>
+<uncommon_trap bci='740' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1097' live='1061' memory='261248' stamp='0.507'/>
+</parse>
+<loop_tree>
+<loop idx='1113' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1113' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1113' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1113' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1288' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1288' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1513' inner_loop='1' main_loop='1513' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1438' inner_loop='1' pre_loop='1288' >
+</loop>
+<loop idx='1513' inner_loop='1' main_loop='1513' >
+</loop>
+<loop idx='1372' inner_loop='1' post_loop='1288' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1438' inner_loop='1' pre_loop='1288' >
+</loop>
+<loop idx='1513' inner_loop='1' main_loop='1513' >
+</loop>
+<loop idx='1372' inner_loop='1' post_loop='1288' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<code_cache total_blobs='1345' nmethods='772' adapters='262' free_code_cache='246502272'/>
+<task_done success='1' nmsize='1896' count='10279' backedge_count='79951' inlined_bytes='101' stamp='0.516'/>
+</task>
+<task compile_id='808' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5889' iicount='5889' decompiles='1' class_check_traps='5' stamp='0.558'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$BmpCharProperty' flags='10'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='55' iicount='5889'/>
+<parse method='1096' uses='5889.000000' stamp='0.558'>
+<observe trap='class_check' count='5' total='5'/>
+<bc code='180' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='5'/>
+<branch target_bci='48' taken='0' not_taken='5889' cnt='5889.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='14'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<method id='1106' holder='1095' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1106' count='5377' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='5377'/>
+<method id='1110' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='94178'/>
+<call method='1110' count='5377' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='14' klass='983'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1110' uses='5889.000000' stamp='0.558'>
+<bc code='183' bci='1'/>
+<method id='1111' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='111807'/>
+<call method='1111' count='93666' prof_factor='0.062531' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1111' uses='5889.000000' stamp='0.558'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='111807' cnt='111807.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='111806' cnt='111807.000000' prob='8.94398e-06'/>
+<parse_done nodes='139' live='134' memory='41352' stamp='0.558'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='94178' cnt='94178.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1114' name='java.lang.StringLatin1' flags='16'/>
+<method id='1115' holder='1114' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='92840'/>
+<call method='1115' count='93666' prof_factor='0.062531' inline='1'/>
+<klass id='1119' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1115' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1119'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1115' uses='5889.000000' stamp='0.558'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='92840' cnt='92840.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='92840' not_taken='0' cnt='92840.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='236' live='225' memory='56656' stamp='0.558'/>
+</parse>
+<parse_done nodes='237' live='225' memory='56856' stamp='0.558'/>
+</parse>
+<bc code='185' bci='19'/>
+<klass id='1099' name='java.util.regex.Pattern$$Lambda$1/6738746' flags='4112'/>
+<klass id='1101' name='java.util.regex.Pattern$$Lambda$13/1273765644' flags='4112'/>
+<klass id='1104' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<method id='1107' holder='1104' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1107' count='5379' prof_factor='1.000000' virtual='1' inline='1' receiver='1099' receiver_count='5375' receiver2='1101' receiver2_count='2'/>
+<method id='1121' holder='1099' name='is' return='969' arguments='975' flags='1' bytes='9' compile_id='634' compiler='c1' level='3' iicount='5887'/>
+<call method='1121' count='5379' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='19' klass='1099'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<virtual_call bci='19'/>
+<parse method='1121' uses='5891.000000' stamp='0.559'>
+<bc code='184' bci='5'/>
+<klass id='1122' name='java.util.regex.Pattern' flags='17'/>
+<method id='1123' holder='1122' name='lambda$Single$8' return='969' arguments='975 975' flags='4106' bytes='11' compile_id='637' compiler='c1' level='3' iicount='5887'/>
+<call method='1123' count='5375' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1123' uses='5887.000000' stamp='0.559'>
+<bc code='160' bci='2'/>
+<branch target_bci='9' taken='5619' not_taken='268' cnt='5887.000000' prob='0.954476'/>
+<parse_done nodes='308' live='294' memory='72856' stamp='0.559'/>
+</parse>
+<parse_done nodes='309' live='294' memory='73120' stamp='0.559'/>
+</parse>
+<bc code='153' bci='24'/>
+<branch target_bci='46' taken='5621' not_taken='271' cnt='5892.000000' prob='0.954005'/>
+<bc code='182' bci='36'/>
+<klass id='1102' name='java.util.regex.Pattern$LastNode' flags='8'/>
+<klass id='1103' name='java.util.regex.Pattern$Branch' flags='24'/>
+<klass id='1108' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1109' holder='1108' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1109' count='250' prof_factor='1.000000' virtual='1' inline='1' receiver='1102' receiver_count='244' receiver2='1103' receiver2_count='2'/>
+<method id='1126' holder='1102' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='45' compile_id='722' compiler='c1' level='3' iicount='271'/>
+<call method='1126' count='250' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='36' klass='1102'/>
+<uncommon_trap bci='36' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<virtual_call bci='36'/>
+<parse method='1126' uses='274.000000' stamp='0.559'>
+<bc code='79' bci='32'/>
+<uncommon_trap bci='32' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='32' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='42'/>
+<uncommon_trap bci='42' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='468' live='447' memory='99544' stamp='0.559'/>
+</parse>
+<bc code='153' bci='39'/>
+<branch target_bci='46' taken='0' not_taken='274' cnt='274.000000' prob='never'/>
+<uncommon_trap bci='39' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='504' live='481' memory='106896' stamp='0.559'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1411' nmethods='818' adapters='270' free_code_cache='246340864'/>
+<task_done success='1' nmsize='824' count='6093' inlined_bytes='85' stamp='0.562'/>
+</task>
+<task compile_id='919' method='sun.nio.cs.UTF_8$Encoder encodeArrayLoop (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;' bytes='489' count='1527' backedge_count='19584' iicount='1527' stamp='0.584'>
+<klass id='1094' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1099' name='java.nio.HeapCharBuffer' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1095' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Encoder' flags='26'/>
+<method id='1097' holder='1093' name='encodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='489' compile_id='835' compiler='c1' level='3' iicount='1529'/>
+<klass id='1113' name='sun.nio.cs.Surrogate$Parser' unloaded='1'/>
+<uncommon_trap method='1097' bci='264' reason='unloaded' action='reinterpret' index='22' debug_id='0' klass='1113'/>
+<uncommon_trap method='1097' bci='243' reason='unloaded' action='reinterpret' index='22' debug_id='0' klass='1113'/>
+<parse method='1097' uses='1529.000000' stamp='0.584'>
+<bc code='182' bci='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1101' holder='1094' name='array' return='1082' flags='17' bytes='35' compile_id='818' compiler='c1' level='3' iicount='1699'/>
+<call method='1101' count='1301' prof_factor='1.000000' inline='1'/>
+<klass id='1115' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<uncommon_trap method='1101' bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='1115'/>
+<klass id='1116' name='java.lang.UnsupportedOperationException' flags='1'/>
+<uncommon_trap method='1101' bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0' klass='1116'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<parse method='1101' uses='1301.000000' stamp='0.584'>
+<uncommon_trap bci='1' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='1699' not_taken='0' cnt='1699.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='1699' not_taken='0' cnt='1699.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='88' live='84' memory='48832' stamp='0.584'/>
+</parse>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1102' holder='1094' name='arrayOffset' return='975' flags='17' bytes='35' compile_id='771' compiler='c1' level='3' iicount='4963'/>
+<call method='1102' count='1301' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1102' bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='1115'/>
+<uncommon_trap method='1102' bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0' klass='1116'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<parse method='1102' uses='1301.000000' stamp='0.584'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='4963' not_taken='0' cnt='4963.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='4963' not_taken='0' cnt='4963.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='133' live='126' memory='58016' stamp='0.584'/>
+</parse>
+<bc code='182' bci='10'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1103' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1103' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1103' uses='1301.000000' stamp='0.584'>
+<parse_done nodes='147' live='139' memory='60744' stamp='0.584'/>
+</parse>
+<bc code='182' bci='17'/>
+<call method='1102' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<parse method='1102' uses='1301.000000' stamp='0.584'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='4963' not_taken='0' cnt='4963.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='4963' not_taken='0' cnt='4963.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='192' live='181' memory='67128' stamp='0.584'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1104' holder='1064' name='limit' return='975' flags='17' bytes='5' compile_id='481' compiler='c1' level='1' iicount='147'/>
+<call method='1104' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1104' uses='1301.000000' stamp='0.584'>
+<parse_done nodes='206' live='194' memory='69152' stamp='0.584'/>
+</parse>
+<bc code='182' bci='28'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1105' holder='1095' name='array' return='1085' flags='17' bytes='35' compile_id='807' compiler='c1' level='3' iicount='3307'/>
+<call method='1105' count='1301' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1105' bci='22' reason='unloaded' action='reinterpret' index='27' debug_id='0' klass='1115'/>
+<uncommon_trap method='1105' bci='7' reason='unloaded' action='reinterpret' index='34' debug_id='0' klass='1116'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='1301.000000' stamp='0.584'>
+<uncommon_trap bci='28' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='3392' not_taken='0' cnt='3392.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='3392' not_taken='0' cnt='3392.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='265' live='249' memory='83528' stamp='0.584'/>
+</parse>
+<bc code='182' bci='34'/>
+<method id='1106' holder='1095' name='arrayOffset' return='975' flags='17' bytes='35' compile_id='739' compiler='c1' level='3' iicount='6573'/>
+<call method='1106' count='1301' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1106' bci='22' reason='unloaded' action='reinterpret' index='27' debug_id='0' klass='1115'/>
+<uncommon_trap method='1106' bci='7' reason='unloaded' action='reinterpret' index='34' debug_id='0' klass='1116'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='1301.000000' stamp='0.584'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='6784' not_taken='0' cnt='6784.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='6784' not_taken='0' cnt='6784.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='309' live='290' memory='90696' stamp='0.585'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1103' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1103' uses='1301.000000' stamp='0.585'>
+<parse_done nodes='322' live='302' memory='93584' stamp='0.585'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1106' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='1301.000000' stamp='0.585'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='6784' not_taken='0' cnt='6784.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='6784' not_taken='0' cnt='6784.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='367' live='344' memory='99576' stamp='0.585'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1104' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1104' uses='1301.000000' stamp='0.585'>
+<parse_done nodes='380' live='356' memory='101760' stamp='0.585'/>
+</parse>
+<bc code='184' bci='67'/>
+<klass id='1107' name='java.lang.Math' flags='17'/>
+<method id='1108' holder='1107' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='21147'/>
+<call method='1108' count='1301' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='162' bci='77'/>
+<branch target_bci='109' taken='1301' not_taken='16535' cnt='17836.000000' prob='0.0729424'/>
+<uncommon_trap bci='80' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='80' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='83'/>
+<uncommon_trap bci='83' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='87'/>
+<branch target_bci='109' taken='0' not_taken='16535' cnt='16535.000000' prob='never'/>
+<uncommon_trap bci='87' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='52' bci='103'/>
+<uncommon_trap bci='103' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='84' bci='105'/>
+<uncommon_trap bci='105' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='77'/>
+<branch target_bci='109' taken='1301' not_taken='16535' cnt='16535.000000' prob='0.0729424'/>
+<bc code='162' bci='113'/>
+<branch target_bci='476' taken='1301' not_taken='0' cnt='1301.000000' prob='always'/>
+<uncommon_trap bci='113' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='184' bci='482'/>
+<type id='977' name='void'/>
+<klass id='1109' name='sun.nio.cs.UTF_8' flags='0'/>
+<method id='1110' holder='1109' name='access$200' return='977' arguments='1064 975 1064 975' flags='4104' bytes='8' compile_id='819' compiler='c1' level='3' iicount='1702'/>
+<call method='1110' count='1301' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='1301.000000' stamp='0.585'>
+<bc code='184' bci='4'/>
+<method id='1123' holder='1109' name='updatePositions' return='977' arguments='1064 975 1064 975' flags='26' bytes='23' compile_id='822' compiler='c1' level='3' iicount='1828'/>
+<call method='1123' count='1795' prof_factor='0.764395' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1123' uses='1372.000000' stamp='0.585'>
+<bc code='182' bci='3'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1102'/>
+<call method='1102' count='1797' prof_factor='0.750547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<parse method='1102' uses='1372.000000' stamp='0.585'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='4963' not_taken='0' cnt='4963.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='4963' not_taken='0' cnt='4963.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='614' live='580' memory='159584' stamp='0.585'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1128' holder='1094' name='position' return='1064' arguments='975' flags='4161' bytes='6' compile_id='759' compiler='c1' level='3' iicount='3644'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1128'/>
+<call method='1128' count='1797' prof_factor='0.750547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<parse method='1128' uses='1372.000000' stamp='0.585'>
+<bc code='182' bci='2'/>
+<method id='1129' holder='1094' name='position' return='1094' arguments='975' flags='17' bytes='8' compile_id='760' compiler='c1' level='3' iicount='3656'/>
+<call method='1129' count='3556' prof_factor='0.376509' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<parse method='1129' uses='1372.000000' stamp='0.585'>
+<bc code='183' bci='2'/>
+<method id='1126' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='918' compiler='c2' level='4' iicount='5592'/>
+<call method='1126' count='3567' prof_factor='0.375274' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1126' uses='1372.000000' stamp='0.585'>
+<bc code='164' bci='5'/>
+<branch target_bci='12' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='156' bci='14'/>
+<branch target_bci='21' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='23'/>
+<branch target_bci='32' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<bc code='164' bci='45'/>
+<branch target_bci='53' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='706' live='668' memory='176328' stamp='0.585'/>
+</parse>
+<parse_done nodes='708' live='669' memory='176872' stamp='0.585'/>
+</parse>
+<parse_done nodes='710' live='670' memory='178056' stamp='0.585'/>
+</parse>
+<bc code='182' bci='14'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1106'/>
+<call method='1106' count='1797' prof_factor='0.750547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='1372.000000' stamp='0.585'>
+<bc code='199' bci='4'/>
+<branch target_bci='15' taken='6784' not_taken='0' cnt='6784.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='19'/>
+<branch target_bci='30' taken='6784' not_taken='0' cnt='6784.000000' prob='always'/>
+<uncommon_trap bci='19' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='756' live='713' memory='185576' stamp='0.585'/>
+</parse>
+<bc code='182' bci='18'/>
+<klass id='1100' name='java.nio.HeapByteBuffer' flags='0'/>
+<call method='1126' count='1797' prof_factor='0.750547' virtual='1' inline='1' receiver='1100' receiver_count='1661' receiver2='1099' receiver2_count='136'/>
+<method id='1135' holder='1095' name='position' return='1064' arguments='975' flags='4161' bytes='6' compile_id='814' compiler='c1' level='3' iicount='1900'/>
+<call method='1135' count='1797' prof_factor='0.750547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='18' klass='1100'/>
+<uncommon_trap bci='18' reason='speculate_class_check' action='maybe_recompile' debug_id='0'/>
+<parse method='1135' uses='1372.000000' stamp='0.586'>
+<bc code='182' bci='2'/>
+<method id='1136' holder='1095' name='position' return='1095' arguments='975' flags='1' bytes='8' compile_id='486' compiler='c1' level='3' iicount='2341'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1136'/>
+<call method='1136' count='1645' prof_factor='0.722105' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1136' uses='1372.000000' stamp='0.586'>
+<bc code='183' bci='2'/>
+<call method='1126' count='2074' prof_factor='0.586074' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1126' uses='1372.000000' stamp='0.586'>
+<bc code='164' bci='5'/>
+<branch target_bci='12' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='156' bci='14'/>
+<branch target_bci='21' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='23'/>
+<branch target_bci='32' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<bc code='164' bci='45'/>
+<branch target_bci='53' taken='5592' not_taken='0' cnt='5592.000000' prob='always'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='866' live='818' memory='205056' stamp='0.586'/>
+</parse>
+<parse_done nodes='868' live='819' memory='205600' stamp='0.586'/>
+</parse>
+<parse_done nodes='870' live='820' memory='206272' stamp='0.586'/>
+</parse>
+<parse_done nodes='872' live='821' memory='207936' stamp='0.586'/>
+</parse>
+<parse_done nodes='874' live='822' memory='208512' stamp='0.586'/>
+</parse>
+<parse_done nodes='878' live='825' memory='209216' stamp='0.586'/>
+</parse>
+<loop_tree>
+<loop idx='902' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1089' inner_loop='1' main_loop='1089' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1034' inner_loop='1' pre_loop='902' >
+</loop>
+<loop idx='1151' inner_loop='1' main_loop='1151' >
+</loop>
+<loop idx='990' inner_loop='1' post_loop='902' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1034' inner_loop='1' pre_loop='902' >
+</loop>
+<loop idx='1151' inner_loop='1' main_loop='1151' >
+</loop>
+<loop idx='990' inner_loop='1' post_loop='902' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1034' inner_loop='1' pre_loop='902' >
+</loop>
+<loop idx='1151' inner_loop='1' main_loop='1151' >
+</loop>
+<loop idx='990' inner_loop='1' post_loop='902' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1034' inner_loop='1' pre_loop='902' >
+</loop>
+<loop idx='1151' inner_loop='1' main_loop='1151' >
+</loop>
+<loop idx='990' inner_loop='1' post_loop='902' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1094' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1128'/>
+<dependency type='unique_concrete_method' ctxk='1095' x='1106'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1136'/>
+<code_cache total_blobs='1539' nmethods='932' adapters='270' free_code_cache='246083584'/>
+<task_done success='1' nmsize='1336' count='2368' backedge_count='29833' inlined_bytes='529' stamp='0.592'/>
+</task>
+<task compile_id='961' method='java.lang.AbstractStringBuilder &lt;init&gt; (I)V' bytes='39' count='5130' iicount='5130' stamp='0.599'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1093' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='5130'/>
+<parse method='1093' uses='5130.000000' stamp='0.599'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1095' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='55568'/>
+<call method='1095' count='5121' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5130.000000' stamp='0.599'>
+<bc code='177' bci='0'/>
+<dependency type='no_finalizable_subclasses' ctxk='1048'/>
+<parse_done nodes='31' live='30' memory='21664' stamp='0.599'/>
+</parse>
+<bc code='153' bci='7'/>
+<branch target_bci='25' taken='0' not_taken='5130' cnt='5130.000000' prob='never'/>
+<parse_done nodes='249' live='247' memory='54072' stamp='0.599'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<dependency type='no_finalizable_subclasses' ctxk='1048'/>
+<code_cache total_blobs='1575' nmethods='958' adapters='270' free_code_cache='246029952'/>
+<task_done success='1' nmsize='536' count='5250' inlined_bytes='1' stamp='0.600'/>
+</task>
+</compilation_log>
+<compilation_log thread='25162'>
+<start_compile_thread name='C2 CompilerThread4' thread='25162' process='25109' stamp='0.106'/>
+<task compile_id='580' method='com.sun.org.apache.xerces.internal.util.SymbolTable addSymbol ([CII)Ljava/lang/String;' bytes='110' count='2186' backedge_count='18232' iicount='2186' stamp='0.340'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<method id='1094' holder='1093' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='535' compiler='c1' level='3' iicount='2191'/>
+<parse method='1094' uses='2191.000000' stamp='0.340'>
+<bc code='182' bci='7'/>
+<method id='1096' holder='1093' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='533' compiler='c1' level='3' iicount='2208'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<call method='1096' count='1928' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='1928.000000' stamp='0.340'>
+<bc code='199' bci='4'/>
+<branch target_bci='45' taken='0' not_taken='1999' cnt='1999.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='1999' not_taken='16876' cnt='18875.000000' prob='0.105907'/>
+<uncommon_trap bci='19' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='29' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='1999' not_taken='16876' cnt='16876.000000' prob='0.105907'/>
+<parse_done nodes='166' live='160' memory='47152' stamp='0.341'/>
+</parse>
+<bc code='112' bci='14'/>
+<uncommon_trap bci='14' reason='div0_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='23'/>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='23' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='7' not_taken='2217' cnt='2224.000000' prob='0.00314748'/>
+<uncommon_trap bci='31' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='31' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='34'/>
+<uncommon_trap bci='34' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='37'/>
+<uncommon_trap bci='37' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='38'/>
+<branch target_bci='85' taken='297' not_taken='1920' cnt='2217.000000' prob='0.133965'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='1920' not_taken='16208' cnt='18128.000000' prob='0.105914'/>
+<uncommon_trap bci='50' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='50' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='55'/>
+<uncommon_trap bci='55' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='55' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='52' bci='63'/>
+<uncommon_trap bci='63' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='63' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='64'/>
+<branch target_bci='73' taken='16208' not_taken='0' cnt='16208.000000' prob='always'/>
+<uncommon_trap bci='64' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='1920' not_taken='16208' cnt='16208.000000' prob='0.105914'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='7' not_taken='2217' cnt='297.000000' prob='0.00314748'/>
+<bc code='183' bci='106'/>
+<method id='1099' holder='1093' name='addSymbol0' return='983' arguments='1082 975 975 975 975' flags='2' bytes='103' iicount='61'/>
+<call method='1099' count='7' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='106'/>
+<parse_done nodes='487' live='465' memory='103680' stamp='0.341'/>
+</parse>
+<loop_tree>
+<loop idx='506' >
+</loop>
+<loop idx='499' inner_loop='1' >
+</loop>
+<loop idx='512' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='506' inner_loop='1' >
+</loop>
+<loop idx='499' inner_loop='1' >
+</loop>
+<loop idx='512' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='674' inner_loop='1' main_loop='674' >
+</loop>
+<loop idx='499' inner_loop='1' >
+</loop>
+<loop idx='786' inner_loop='1' main_loop='786' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='635' inner_loop='1' pre_loop='506' >
+</loop>
+<loop idx='853' inner_loop='1' main_loop='853' >
+</loop>
+<loop idx='607' inner_loop='1' post_loop='506' >
+</loop>
+<loop idx='499' inner_loop='1' >
+</loop>
+<loop idx='739' inner_loop='1' pre_loop='512' >
+</loop>
+<loop idx='898' inner_loop='1' main_loop='898' >
+</loop>
+<loop idx='701' inner_loop='1' post_loop='512' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='635' inner_loop='1' pre_loop='506' >
+</loop>
+<loop idx='853' inner_loop='1' main_loop='853' >
+</loop>
+<loop idx='607' inner_loop='1' post_loop='506' >
+</loop>
+<loop idx='499' inner_loop='1' >
+</loop>
+<loop idx='739' inner_loop='1' pre_loop='512' >
+</loop>
+<loop idx='898' inner_loop='1' main_loop='898' >
+</loop>
+<loop idx='701' inner_loop='1' post_loop='512' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='635' inner_loop='1' pre_loop='506' >
+</loop>
+<loop idx='853' inner_loop='1' main_loop='853' >
+</loop>
+<loop idx='607' inner_loop='1' post_loop='506' >
+</loop>
+<loop idx='499' inner_loop='1' >
+</loop>
+<loop idx='739' inner_loop='1' pre_loop='512' >
+</loop>
+<loop idx='898' inner_loop='1' main_loop='898' >
+</loop>
+<loop idx='701' inner_loop='1' post_loop='512' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<code_cache total_blobs='1048' nmethods='592' adapters='261' free_code_cache='247431936'/>
+<task_done success='1' nmsize='1192' count='4925' backedge_count='42224' inlined_bytes='53' stamp='0.352'/>
+</task>
+<task compile_id='612' method='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer addValue (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Ljava/lang/String;I)V' bytes='11' count='6434' iicount='6435' stamp='0.354'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1095' holder='1093' name='addValue' return='977' arguments='1094 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='6443'/>
+<parse method='1095' uses='6443.000000' stamp='0.355'>
+<bc code='182' bci='2'/>
+<klass id='1097' name='java.lang.Enum' flags='1025'/>
+<method id='1098' holder='1097' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1098' count='6188' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='53' live='51' memory='25848' stamp='0.355'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1099' holder='1093' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='6471'/>
+<call method='1099' count='6188' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='6442.000000' stamp='0.355'>
+<bc code='182' bci='4'/>
+<call method='1098' count='6253' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<parse_done nodes='78' live='75' memory='30976' stamp='0.355'/>
+</parse>
+<bc code='159' bci='7'/>
+<branch target_bci='50' taken='0' not_taken='6471' cnt='6471.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='14'/>
+<call method='1098' count='6253' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<parse_done nodes='104' live='99' memory='35456' stamp='0.355'/>
+</parse>
+<bc code='159' bci='17'/>
+<branch target_bci='50' taken='0' not_taken='6471' cnt='6471.000000' prob='never'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='24'/>
+<call method='1098' count='6253' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<parse_done nodes='129' live='122' memory='42384' stamp='0.355'/>
+</parse>
+<bc code='159' bci='27'/>
+<branch target_bci='50' taken='0' not_taken='6471' cnt='6471.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='34'/>
+<call method='1098' count='6253' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<parse_done nodes='154' live='145' memory='46000' stamp='0.355'/>
+</parse>
+<bc code='159' bci='37'/>
+<branch target_bci='50' taken='0' not_taken='6471' cnt='6471.000000' prob='never'/>
+<uncommon_trap bci='37' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='44'/>
+<call method='1098' count='6253' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<parse_done nodes='179' live='168' memory='49552' stamp='0.355'/>
+</parse>
+<bc code='160' bci='47'/>
+<branch target_bci='61' taken='6471' not_taken='0' cnt='6471.000000' prob='always'/>
+<uncommon_trap bci='47' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='65'/>
+<call method='1098' count='6253' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='6442.000000' stamp='0.355'>
+<parse_done nodes='204' live='191' memory='54528' stamp='0.355'/>
+</parse>
+<bc code='159' bci='68'/>
+<branch target_bci='81' taken='601' not_taken='5870' cnt='6471.000000' prob='0.0928759'/>
+<bc code='182' bci='75'/>
+<call method='1098' count='5672' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='5843.000000' stamp='0.355'>
+<parse_done nodes='225' live='211' memory='59376' stamp='0.355'/>
+</parse>
+<bc code='160' bci='78'/>
+<branch target_bci='96' taken='130' not_taken='5739' cnt='5869.000000' prob='0.0221503'/>
+<bc code='50' bci='101'/>
+<uncommon_trap bci='101' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='101' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='102'/>
+<branch target_bci='127' taken='130' not_taken='0' cnt='130.000000' prob='always'/>
+<uncommon_trap bci='102' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='132'/>
+<uncommon_trap bci='132' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='185' bci='141'/>
+<klass id='1109' name='java.util.HashMap' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1101' name='java.util.Map' flags='1537'/>
+<method id='1103' holder='1101' name='containsKey' return='969' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' count='126' prof_factor='0.995518' virtual='1' inline='1' receiver='1109' receiver_count='126'/>
+<method id='1121' holder='1109' name='containsKey' return='969' arguments='982' flags='1' bytes='18' compile_id='71' compiler='c1' level='3' iicount='921'/>
+<call method='1121' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='141' klass='1109'/>
+<uncommon_trap bci='141' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='141' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1121' uses='130.000000' stamp='0.356'>
+<bc code='184' bci='2'/>
+<method id='1122' holder='1109' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='8486'/>
+<call method='1122' count='-1' prof_factor='0.141151' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='-1.000000' stamp='0.356'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8486' not_taken='0' cnt='8486.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<method id='1130' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6267'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1130'/>
+<call method='1130' count='8207' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1130' uses='8486.000000' stamp='0.356'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<method id='1131' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='57711'/>
+<call method='1131' count='2283' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='2403.000000' stamp='0.356'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='57711' cnt='57711.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='57710' cnt='57711.000000' prob='1.73277e-05'/>
+<parse_done nodes='467' live='444' memory='100304' stamp='0.356'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1134' name='java.lang.StringLatin1' flags='16'/>
+<method id='1135' holder='1134' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='19' compiler='c2' level='4' iicount='1851'/>
+<call method='1135' count='2283' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1135' uses='2403.000000' stamp='0.356'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='605' live='576' memory='134568' stamp='0.356'/>
+</parse>
+<parse_done nodes='612' live='582' memory='136152' stamp='0.356'/>
+</parse>
+<parse_done nodes='617' live='586' memory='137152' stamp='0.356'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1123' name='java.util.HashMap$Node' flags='8'/>
+<method id='1124' holder='1109' name='getNode' return='1123' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='4302'/>
+<call method='1124' count='-1' prof_factor='0.141151' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='6'/>
+<parse_done nodes='647' live='615' memory='142552' stamp='0.357'/>
+</parse>
+<bc code='153' bci='146'/>
+<branch target_bci='185' taken='0' not_taken='130' cnt='130.000000' prob='never'/>
+<uncommon_trap bci='146' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='154'/>
+<method id='1144' holder='1109' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='3338'/>
+<call method='1144' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1144' uses='130.000000' stamp='0.357'>
+<bc code='184' bci='2'/>
+<call method='1122' count='3071' prof_factor='0.038945' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='130.000000' stamp='0.357'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8486' not_taken='0' cnt='8486.000000' prob='always'/>
+<bc code='182' bci='9'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1130'/>
+<call method='1130' count='8207' prof_factor='0.015319' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1130' uses='130.000000' stamp='0.357'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1131' count='2283' prof_factor='0.020744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='50.000000' stamp='0.357'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='57711' cnt='57711.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='57710' cnt='57711.000000' prob='1.73277e-05'/>
+<parse_done nodes='772' live='737' memory='161832' stamp='0.357'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<call method='1135' count='2283' prof_factor='0.020744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1135' uses='50.000000' stamp='0.357'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='905' live='864' memory='185152' stamp='0.357'/>
+</parse>
+<parse_done nodes='912' live='870' memory='187248' stamp='0.357'/>
+</parse>
+<parse_done nodes='916' live='873' memory='188152' stamp='0.357'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1124' count='3071' prof_factor='0.038945' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1124' uses='130.000000' stamp='0.357'>
+<bc code='198' bci='6'/>
+<branch target_bci='146' taken='513' not_taken='3789' cnt='4302.000000' prob='0.119247'/>
+<bc code='158' bci='14'/>
+<branch target_bci='146' taken='0' not_taken='3789' cnt='3789.000000' prob='never'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='50' bci='24'/>
+<uncommon_trap bci='24' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='146' taken='451' not_taken='3338' cnt='3789.000000' prob='0.119029'/>
+<bc code='160' bci='37'/>
+<branch target_bci='68' taken='658' not_taken='2680' cnt='3338.000000' prob='0.197124'/>
+<bc code='165' bci='49'/>
+<branch target_bci='65' taken='2671' not_taken='9' cnt='2680.000000' prob='0.996642'/>
+<bc code='198' bci='53'/>
+<branch target_bci='68' taken='0' not_taken='9'/>
+<bc code='182' bci='59'/>
+<method id='1149' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1149'/>
+<call method='1149' count='8' prof_factor='0.030219' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='59'/>
+<bc code='153' bci='62'/>
+<branch target_bci='68' taken='0' not_taken='9'/>
+<bc code='198' bci='76'/>
+<branch target_bci='146' taken='173' not_taken='485' cnt='658.000000' prob='0.262918'/>
+<bc code='153' bci='84'/>
+<branch target_bci='98' taken='485' not_taken='0' cnt='485.000000' prob='always'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='98' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='98' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='100'/>
+<uncommon_trap bci='100' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='104'/>
+<branch target_bci='135' taken='139' not_taken='447' cnt='586.000000' prob='0.237201'/>
+<bc code='165' bci='116'/>
+<branch target_bci='132' taken='446' not_taken='1' cnt='447.000000' prob='0.997763'/>
+<bc code='198' bci='120'/>
+<branch target_bci='135' taken='0' not_taken='1'/>
+<bc code='182' bci='126'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1149'/>
+<call method='1149' count='1' prof_factor='0.030219' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='126'/>
+<bc code='153' bci='129'/>
+<branch target_bci='135' taken='0' not_taken='1'/>
+<bc code='199' bci='143'/>
+<branch target_bci='98' taken='101' not_taken='38' cnt='139.000000' prob='0.726619'/>
+<parse_done nodes='1217' live='1165' memory='257952' stamp='0.358'/>
+</parse>
+<bc code='199' bci='11'/>
+<branch target_bci='18' taken='2498' not_taken='840' cnt='3338.000000' prob='0.748352'/>
+<parse_done nodes='1234' live='1181' memory='261264' stamp='0.358'/>
+</parse>
+<bc code='192' bci='159'/>
+<uncommon_trap bci='159' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='159' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='162'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1108' holder='1076' name='intValue' return='975' flags='1' bytes='5' iicount='49'/>
+<call method='1108' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1108' uses='130.000000' stamp='0.358'>
+<parse_done nodes='1287' live='1231' memory='270600' stamp='0.358'/>
+</parse>
+<bc code='184' bci='173'/>
+<method id='1104' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='193'/>
+<call method='1104' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='130.000000' stamp='0.358'>
+<bc code='50' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='183' bci='28'/>
+<method id='1154' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='275'/>
+<call method='1154' count='-1' prof_factor='0.673575' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1154' uses='-1.000000' stamp='0.360'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1160' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1020'/>
+<call method='1160' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1160' uses='-1.000000' stamp='0.360'>
+<bc code='183' bci='1'/>
+<method id='1162' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='25084'/>
+<call method='1162' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1162' uses='-1.000000' stamp='0.360'>
+<parse_done nodes='1411' live='1352' memory='297200' stamp='0.360'/>
+</parse>
+<parse_done nodes='1414' live='1354' memory='298176' stamp='0.360'/>
+</parse>
+<parse_done nodes='1423' live='1362' memory='300208' stamp='0.360'/>
+</parse>
+<parse_done nodes='1423' live='1361' memory='300208' stamp='0.360'/>
+</parse>
+<bc code='185' bci='176'/>
+<method id='1165' holder='1109' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='3472'/>
+<dependency type='unique_concrete_method' ctxk='1109' x='1165'/>
+<call method='1165' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1165' uses='130.000000' stamp='0.360'>
+<bc code='184' bci='2'/>
+<call method='1122' count='3136' prof_factor='0.037442' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='130.000000' stamp='0.360'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8486' not_taken='0' cnt='8486.000000' prob='always'/>
+<bc code='182' bci='9'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1130'/>
+<call method='1130' count='8207' prof_factor='0.015319' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1130' uses='130.000000' stamp='0.360'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1131' count='2283' prof_factor='0.020744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='50.000000' stamp='0.360'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='57711' cnt='57711.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='57710' cnt='57711.000000' prob='1.73277e-05'/>
+<parse_done nodes='1540' live='1476' memory='320152' stamp='0.360'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<call method='1135' count='2283' prof_factor='0.020744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1135' uses='50.000000' stamp='0.360'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='1677' live='1607' memory='344488' stamp='0.360'/>
+</parse>
+<parse_done nodes='1684' live='1613' memory='345880' stamp='0.360'/>
+</parse>
+<parse_done nodes='1688' live='1616' memory='346784' stamp='0.360'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1166' holder='1109' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='4280'/>
+<call method='1166' count='3136' prof_factor='0.037442' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1166' uses='130.000000' stamp='0.361'>
+<bc code='198' bci='7'/>
+<branch target_bci='19' taken='639' not_taken='3641' cnt='4280.000000' prob='0.149299'/>
+<bc code='154' bci='16'/>
+<branch target_bci='29' taken='3641' not_taken='0' cnt='3641.000000' prob='always'/>
+<uncommon_trap bci='16' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='20'/>
+<klass id='1140' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1169' holder='1109' name='resize' return='1140' flags='16' bytes='356' compile_id='138' compiler='c1' level='3' iicount='731'/>
+<call method='1169' count='589' prof_factor='0.030374' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='20'/>
+<bc code='190' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='40'/>
+<uncommon_trap bci='40' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='44'/>
+<branch target_bci='63' taken='1394' not_taken='2886' cnt='4280.000000' prob='0.325701'/>
+<bc code='182' bci='56'/>
+<method id='1172' holder='1109' name='newNode' return='1123' arguments='975 982 982 1123' flags='0' bytes='13' compile_id='76' compiler='c1' level='3' iicount='3731'/>
+<call method='1172' count='2662' prof_factor='0.030374' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1172' uses='88.000000' stamp='0.361'>
+<bc code='183' bci='9'/>
+<method id='1178' holder='1123' name='&lt;init&gt;' return='977' arguments='975 982 982 1123' flags='0' bytes='26' compile_id='75' compiler='c1' level='3' iicount='3978'/>
+<call method='1178' count='3353' prof_factor='0.023586' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1178' uses='88.000000' stamp='0.361'>
+<bc code='183' bci='1'/>
+<call method='1162' count='3612' prof_factor='0.022122' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1162' uses='88.000000' stamp='0.361'>
+<parse_done nodes='1870' live='1794' memory='383104' stamp='0.361'/>
+</parse>
+<parse_done nodes='2204' live='2127' memory='482568' stamp='0.362'/>
+</parse>
+<parse_done nodes='2204' live='2126' memory='482696' stamp='0.362'/>
+</parse>
+<bc code='83' bci='59'/>
+<uncommon_trap bci='59' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='59' reason='array_check' action='maybe_recompile' debug_id='0' klass='1140'/>
+<cast_up reason='monomorphic_array' from='1140' to='(exact)'/>
+<bc code='160' bci='69'/>
+<branch target_bci='104' taken='1087' not_taken='307' cnt='1394.000000' prob='0.77977'/>
+<bc code='165' bci='81'/>
+<branch target_bci='97' taken='307' not_taken='0' cnt='307.000000' prob='always'/>
+<uncommon_trap bci='81' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='109'/>
+<branch target_bci='131' taken='1087' not_taken='0' cnt='1087.000000' prob='always'/>
+<uncommon_trap bci='109' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='287' not_taken='1067' cnt='1354.000000' prob='0.211965'/>
+<uncommon_trap bci='175' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='175' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='177'/>
+<uncommon_trap bci='177' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='181'/>
+<branch target_bci='212' taken='267' not_taken='21' cnt='288.000000' prob='0.927083'/>
+<bc code='165' bci='193'/>
+<branch target_bci='222' taken='21' not_taken='0'/>
+<bc code='198' bci='197'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='182' bci='203'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1149'/>
+<call method='1149' count='0' prof_factor='0.030374' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='203'/>
+<bc code='153' bci='206'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='287' not_taken='1067' cnt='267.000000' prob='0.211965'/>
+<bc code='182' bci='152'/>
+<call method='1172' count='984' prof_factor='0.030374' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1172' uses='32.000000' stamp='0.363'>
+<bc code='183' bci='9'/>
+<call method='1178' count='3353' prof_factor='0.008577' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1178' uses='32.000000' stamp='0.363'>
+<bc code='183' bci='1'/>
+<call method='1162' count='3612' prof_factor='0.008044' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1162' uses='32.000000' stamp='0.363'>
+<parse_done nodes='2652' live='2566' memory='566528' stamp='0.363'/>
+</parse>
+<parse_done nodes='2974' live='2887' memory='618464' stamp='0.364'/>
+</parse>
+<parse_done nodes='2974' live='2886' memory='618592' stamp='0.364'/>
+</parse>
+<bc code='161' bci='162'/>
+<branch target_bci='222' taken='1067' not_taken='0' cnt='1067.000000' prob='always'/>
+<uncommon_trap bci='162' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='224'/>
+<branch target_bci='259' taken='1067' not_taken='327' cnt='1394.000000' prob='0.765423'/>
+<bc code='153' bci='236'/>
+<branch target_bci='244' taken='324' not_taken='3' cnt='327.000000' prob='0.990826'/>
+<bc code='182' bci='253'/>
+<method id='1171' holder='1109' name='afterNodeAccess' return='977' arguments='1123' flags='0' bytes='1' iicount='302'/>
+<call method='1171' count='302' prof_factor='0.030374' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1171' uses='10.000000' stamp='0.366'>
+<parse_done nodes='3318' live='3228' memory='672272' stamp='0.366'/>
+</parse>
+<bc code='164' bci='284'/>
+<branch target_bci='292' taken='3857' not_taken='95' cnt='3952.000000' prob='0.975962'/>
+<bc code='182' bci='288'/>
+<call method='1169' count='88' prof_factor='0.030374' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='288'/>
+<bc code='182' bci='295'/>
+<method id='1170' holder='1109' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='134' compiler='c1' level='1' iicount='1527'/>
+<call method='1170' count='3646' prof_factor='0.030374' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1170' uses='120.000000' stamp='0.366'>
+<parse_done nodes='3382' live='3290' memory='687248' stamp='0.366'/>
+</parse>
+<parse_done nodes='3387' live='3294' memory='688792' stamp='0.367'/>
+</parse>
+<parse_done nodes='3396' live='3302' memory='691016' stamp='0.367'/>
+</parse>
+<bc code='46' bci='205'/>
+<uncommon_trap bci='205' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='205' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='206'/>
+<branch target_bci='224' taken='0' not_taken='130' cnt='130.000000' prob='never'/>
+<uncommon_trap bci='206' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='79' bci='216'/>
+<uncommon_trap bci='216' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='83' bci='223'/>
+<uncommon_trap bci='223' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='223' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='228'/>
+<call method='1098' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='130.000000' stamp='0.367'>
+<parse_done nodes='3699' live='3598' memory='745576' stamp='0.367'/>
+</parse>
+<bc code='159' bci='231'/>
+<branch target_bci='244' taken='130' not_taken='0' cnt='130.000000' prob='always'/>
+<uncommon_trap bci='231' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='251'/>
+<call method='1098' count='126' prof_factor='0.995518' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1098' uses='130.000000' stamp='0.367'>
+<parse_done nodes='3736' live='3633' memory='755432' stamp='0.367'/>
+</parse>
+<bc code='46' bci='255'/>
+<uncommon_trap bci='255' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='255' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='258'/>
+<uncommon_trap bci='258' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='87'/>
+<uncommon_trap bci='87' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='87' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='94'/>
+<uncommon_trap bci='94' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='94' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='3877' live='3765' memory='783296' stamp='0.368'/>
+</parse>
+<parse_done nodes='3887' live='3774' memory='785560' stamp='0.368'/>
+</parse>
+<loop_tree>
+<loop idx='4006' >
+</loop>
+<loop idx='4012' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4018' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4006' inner_loop='1' >
+</loop>
+<loop idx='4012' inner_loop='1' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4018' inner_loop='1' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4006' inner_loop='1' >
+</loop>
+<loop idx='4012' inner_loop='1' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4018' inner_loop='1' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4319' inner_loop='1' main_loop='4319' >
+</loop>
+<loop idx='4398' inner_loop='1' main_loop='4398' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4478' inner_loop='1' main_loop='4478' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4286' inner_loop='1' pre_loop='4006' >
+</loop>
+<loop idx='4319' inner_loop='1' main_loop='4319' >
+</loop>
+<loop idx='4259' inner_loop='1' post_loop='4006' >
+</loop>
+<loop idx='4365' inner_loop='1' pre_loop='4012' >
+</loop>
+<loop idx='4398' inner_loop='1' main_loop='4398' >
+</loop>
+<loop idx='4338' inner_loop='1' post_loop='4012' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4445' inner_loop='1' pre_loop='4018' >
+</loop>
+<loop idx='4478' inner_loop='1' main_loop='4478' >
+</loop>
+<loop idx='4418' inner_loop='1' post_loop='4018' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4286' inner_loop='1' pre_loop='4006' >
+</loop>
+<loop idx='4729' inner_loop='1' main_loop='4729' >
+</loop>
+<loop idx='4259' inner_loop='1' post_loop='4006' >
+</loop>
+<loop idx='4365' inner_loop='1' pre_loop='4012' >
+</loop>
+<loop idx='4759' inner_loop='1' main_loop='4759' >
+</loop>
+<loop idx='4338' inner_loop='1' post_loop='4012' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4445' inner_loop='1' pre_loop='4018' >
+</loop>
+<loop idx='4790' inner_loop='1' main_loop='4790' >
+</loop>
+<loop idx='4418' inner_loop='1' post_loop='4018' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4286' inner_loop='1' pre_loop='4006' >
+</loop>
+<loop idx='4729' inner_loop='1' main_loop='4729' >
+</loop>
+<loop idx='4259' inner_loop='1' post_loop='4006' >
+</loop>
+<loop idx='4365' inner_loop='1' pre_loop='4012' >
+</loop>
+<loop idx='4759' inner_loop='1' main_loop='4759' >
+</loop>
+<loop idx='4338' inner_loop='1' post_loop='4012' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4445' inner_loop='1' pre_loop='4018' >
+</loop>
+<loop idx='4790' inner_loop='1' main_loop='4790' >
+</loop>
+<loop idx='4418' inner_loop='1' post_loop='4018' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='4286' inner_loop='1' pre_loop='4006' >
+</loop>
+<loop idx='4729' inner_loop='1' main_loop='4729' >
+</loop>
+<loop idx='4259' inner_loop='1' post_loop='4006' >
+</loop>
+<loop idx='4365' inner_loop='1' pre_loop='4012' >
+</loop>
+<loop idx='4759' inner_loop='1' main_loop='4759' >
+</loop>
+<loop idx='4338' inner_loop='1' post_loop='4012' >
+</loop>
+<loop idx='3998' inner_loop='1' >
+</loop>
+<loop idx='4445' inner_loop='1' pre_loop='4018' >
+</loop>
+<loop idx='4790' inner_loop='1' main_loop='4790' >
+</loop>
+<loop idx='4418' inner_loop='1' post_loop='4018' >
+</loop>
+<loop idx='4000' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1130'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1149'/>
+<dependency type='unique_concrete_method' ctxk='1109' x='1165'/>
+<code_cache total_blobs='1166' nmethods='677' adapters='262' free_code_cache='246977408'/>
+<task_done success='1' nmsize='6544' count='18550' inlined_bytes='1319' stamp='0.419'/>
+</task>
+<task compile_id='677' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getValue (Ljava/lang/String;)Ljava/lang/String;' bytes='56' count='9882' iicount='9882' stamp='0.419'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='567' compiler='c1' level='3' iicount='9888'/>
+<parse method='1094' uses='9888.000000' stamp='0.419'>
+<bc code='182' bci='2'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1093' name='getIndex' return='975' arguments='983' flags='1' bytes='51' compile_id='565' compiler='c1' level='3' iicount='9894'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<call method='1098' count='9628' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='9888.000000' stamp='0.419'>
+<bc code='162' bci='7'/>
+<branch target_bci='49' taken='3623' not_taken='30613' cnt='34236.000000' prob='0.105824'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='18'/>
+<uncommon_trap bci='18' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='24'/>
+<branch target_bci='43' taken='0' not_taken='30613' cnt='30613.000000' prob='never'/>
+<uncommon_trap bci='24' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1103' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1103' count='30613' prof_factor='0.999394' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='30594.000000' stamp='0.419'>
+<uncommon_trap bci='35' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1106' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='48893'/>
+<call method='1106' count='4199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='4537.000000' stamp='0.420'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='48893' cnt='48893.000000' prob='never'/>
+<parse_done nodes='264' live='254' memory='63608' stamp='0.420'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1106' count='4199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='4537.000000' stamp='0.420'>
+<uncommon_trap bci='24' reason='speculate_null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='48893' cnt='48893.000000' prob='never'/>
+<parse_done nodes='300' live='288' memory='68704' stamp='0.420'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1107' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='71494'/>
+<call method='1107' count='4199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1107' uses='4537.000000' stamp='0.420'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='71494' cnt='71494.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='71493' cnt='71494.000000' prob='1.39872e-05'/>
+<parse_done nodes='344' live='330' memory='75376' stamp='0.420'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1110' name='java.lang.StringLatin1' flags='16'/>
+<method id='1111' holder='1110' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4507'/>
+<call method='1111' count='4199' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='383' live='366' memory='81288' stamp='0.420'/>
+</parse>
+<bc code='153' bci='38'/>
+<branch target_bci='43' taken='24529' not_taken='6084' cnt='30613.000000' prob='0.801261'/>
+<bc code='162' bci='7'/>
+<branch target_bci='49' taken='3623' not_taken='30613' cnt='24529.000000' prob='0.105824'/>
+<parse_done nodes='407' live='388' memory='85184' stamp='0.420'/>
+</parse>
+<bc code='160' bci='8'/>
+<branch target_bci='13' taken='6189' not_taken='3699' cnt='9888.000000' prob='0.62591'/>
+<bc code='50' bci='18'/>
+<uncommon_trap bci='18' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='18' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='19'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='199' bci='22'/>
+<branch target_bci='46' taken='262' not_taken='5927' cnt='6189.000000' prob='0.0423332'/>
+<bc code='50' bci='30'/>
+<uncommon_trap bci='30' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='50' bci='36'/>
+<uncommon_trap bci='36' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='37'/>
+<uncommon_trap bci='37' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='40'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1101' holder='1097' name='toString' return='983' flags='1' bytes='32' compile_id='608' compiler='c1' level='3' iicount='6125'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1101'/>
+<call method='1101' count='5771' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5927.000000' stamp='0.420'>
+<uncommon_trap bci='40' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='4'/>
+<branch target_bci='29' taken='0' not_taken='6125' cnt='6125.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='23'/>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1117' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975' flags='1' bytes='14' compile_id='562' compiler='c1' level='3' iicount='6364'/>
+<call method='1117' count='6053' prof_factor='0.967673' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1117' uses='5927.000000' stamp='0.420'>
+<bc code='184' bci='7'/>
+<klass id='1119' name='java.lang.Void' flags='17'/>
+<method id='1120' holder='983' name='rangeCheck' return='1119' arguments='1082 975 975' flags='10' bytes='9' compile_id='563' compiler='c1' level='3' iicount='6397'/>
+<call method='1120' count='6140' prof_factor='0.931332' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='5927.000000' stamp='0.420'>
+<bc code='190' bci='3'/>
+<uncommon_trap bci='3' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='4'/>
+<method id='1123' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' compile_id='587' compiler='c1' level='3' iicount='6496'/>
+<call method='1123' count='6142' prof_factor='0.926528' inline='1'/>
+<klass id='1125' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1123' bci='15' reason='unloaded' action='reinterpret' index='39' debug_id='0' klass='1125'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1123' uses='5926.000000' stamp='0.421'>
+<bc code='155' bci='1'/>
+<branch target_bci='15' taken='0' not_taken='6496' cnt='6496.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='155' bci='5'/>
+<branch target_bci='15' taken='0' not_taken='6496' cnt='6496.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='164' bci='12'/>
+<branch target_bci='60' taken='6496' not_taken='0' cnt='6496.000000' prob='always'/>
+<uncommon_trap bci='12' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='702' live='669' memory='145584' stamp='0.421'/>
+</parse>
+<parse_done nodes='706' live='672' memory='146672' stamp='0.421'/>
+</parse>
+<bc code='183' bci='10'/>
+<method id='1121' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1119' flags='0' bytes='74' compile_id='527' compiler='c1' level='3' iicount='6606'/>
+<call method='1121' count='6140' prof_factor='0.931332' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='5927.000000' stamp='0.421'>
+<bc code='183' bci='1'/>
+<method id='1127' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='33784'/>
+<call method='1127' count='6394' prof_factor='0.897215' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1127' uses='5927.000000' stamp='0.421'>
+<parse_done nodes='745' live='710' memory='153416' stamp='0.421'/>
+</parse>
+<bc code='154' bci='5'/>
+<branch target_bci='27' taken='6606' not_taken='0' cnt='6606.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='30'/>
+<branch target_bci='58' taken='0' not_taken='6606' cnt='6606.000000' prob='never'/>
+<bc code='184' bci='36'/>
+<klass id='1108' name='java.lang.StringUTF16' flags='16'/>
+<method id='1129' holder='1108' name='compress' return='1085' arguments='1082 975 975' flags='9' bytes='20' compile_id='529' compiler='c1' level='3' iicount='6644'/>
+<call method='1129' count='6394' prof_factor='0.897215' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1129' uses='5927.000000' stamp='0.421'>
+<bc code='184' bci='9'/>
+<method id='1132' holder='1108' name='compress' return='975' arguments='1082 975 1085 975 975' flags='9' bytes='50' compile_id='638' compiler='c2' level='4' iicount='5952'/>
+<call method='1132' count='6404' prof_factor='0.892083' inline='1'/>
+<uncommon_trap bci='9' reason='intrinsic_or_type_checked_inlining' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_compressStringC' nodes='37'/>
+<bc code='160' bci='13'/>
+<branch target_bci='18' taken='0' not_taken='6644' cnt='6644.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='866' live='827' memory='178352' stamp='0.421'/>
+</parse>
+<bc code='198' bci='43'/>
+<branch target_bci='58' taken='0' not_taken='6606' cnt='6606.000000' prob='never'/>
+<parse_done nodes='1039' live='999' memory='218632' stamp='0.421'/>
+</parse>
+<parse_done nodes='1041' live='1000' memory='219800' stamp='0.421'/>
+</parse>
+<parse_done nodes='1054' live='1012' memory='223960' stamp='0.421'/>
+</parse>
+<bc code='181' bci='43'/>
+<uncommon_trap bci='43' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='51'/>
+<uncommon_trap bci='51' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='51' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='52'/>
+<uncommon_trap bci='52' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1271' live='1224' memory='254008' stamp='0.421'/>
+</parse>
+<loop_tree>
+<loop idx='1357' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1357' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1357' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1357' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1722' inner_loop='1' main_loop='1722' >
+</loop>
+<loop idx='1357' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1652' inner_loop='1' pre_loop='1493' >
+</loop>
+<loop idx='1722' inner_loop='1' main_loop='1722' >
+</loop>
+<loop idx='1592' inner_loop='1' post_loop='1493' >
+</loop>
+<loop idx='1357' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1652' inner_loop='1' pre_loop='1493' >
+</loop>
+<loop idx='1722' inner_loop='1' main_loop='1722' >
+</loop>
+<loop idx='1592' inner_loop='1' post_loop='1493' >
+</loop>
+<loop idx='1357' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1101'/>
+<code_cache total_blobs='1223' nmethods='712' adapters='262' free_code_cache='246779776'/>
+<task_done success='1' nmsize='2680' count='13274' inlined_bytes='462' stamp='0.433'/>
+</task>
+<task compile_id='721' method='java.util.regex.Pattern$BmpCharProperty match (Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z' bytes='55' count='5658' iicount='5658' stamp='0.436'>
+<type id='969' name='boolean'/>
+<klass id='1094' name='java.util.regex.Matcher' flags='17'/>
+<type id='975' name='int'/>
+<klass id='1095' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1093' name='java.util.regex.Pattern$BmpCharProperty' flags='10'/>
+<method id='1096' holder='1093' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='55' compile_id='633' compiler='c1' level='3' iicount='5658'/>
+<parse method='1096' uses='5658.000000' stamp='0.436'>
+<bc code='180' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='5'/>
+<branch target_bci='48' taken='0' not_taken='5658' cnt='5658.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='14'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<method id='1103' holder='1095' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' count='5146' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='5146'/>
+<method id='1107' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='67163'/>
+<call method='1107' count='5146' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='14' klass='983'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1107' uses='5658.000000' stamp='0.437'>
+<bc code='183' bci='1'/>
+<method id='1108' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='81972'/>
+<call method='1108' count='66672' prof_factor='0.084243' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='5658.000000' stamp='0.437'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='81972' cnt='81972.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='81971' cnt='81972.000000' prob='1.21993e-05'/>
+<parse_done nodes='139' live='134' memory='41352' stamp='0.437'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='67163' cnt='67163.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1111' name='java.lang.StringLatin1' flags='16'/>
+<method id='1112' holder='1111' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='65990'/>
+<call method='1112' count='66672' prof_factor='0.084243' inline='1'/>
+<klass id='1116' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1112' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1116'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1112' uses='5658.000000' stamp='0.437'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='65990' cnt='65990.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='65990' not_taken='0' cnt='65990.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='236' live='225' memory='56656' stamp='0.437'/>
+</parse>
+<parse_done nodes='237' live='225' memory='56856' stamp='0.437'/>
+</parse>
+<bc code='185' bci='19'/>
+<klass id='1099' name='java.util.regex.Pattern$$Lambda$1/6738746' flags='4112'/>
+<klass id='1101' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<method id='1104' holder='1101' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1104' count='5146' prof_factor='1.000000' virtual='1' inline='1' receiver='1099' receiver_count='5146'/>
+<method id='1118' holder='1099' name='is' return='969' arguments='975' flags='1' bytes='9' compile_id='634' compiler='c1' level='3' iicount='5676'/>
+<call method='1118' count='5146' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='19' klass='1099'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1118' uses='5658.000000' stamp='0.437'>
+<bc code='184' bci='5'/>
+<klass id='1119' name='java.util.regex.Pattern' flags='17'/>
+<method id='1120' holder='1119' name='lambda$Single$8' return='969' arguments='975 975' flags='4106' bytes='11' compile_id='637' compiler='c1' level='3' iicount='5676'/>
+<call method='1120' count='5164' prof_factor='0.996829' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='5658.000000' stamp='0.437'>
+<bc code='160' bci='2'/>
+<branch target_bci='9' taken='5420' not_taken='256' cnt='5676.000000' prob='0.954898'/>
+<parse_done nodes='302' live='287' memory='71376' stamp='0.437'/>
+</parse>
+<parse_done nodes='303' live='287' memory='71640' stamp='0.437'/>
+</parse>
+<bc code='153' bci='24'/>
+<branch target_bci='46' taken='5405' not_taken='253' cnt='5658.000000' prob='0.955285'/>
+<bc code='182' bci='36'/>
+<klass id='1100' name='java.util.regex.Pattern$LastNode' flags='8'/>
+<klass id='1105' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1106' holder='1105' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='27' iicount='1'/>
+<call method='1106' count='230' prof_factor='1.000000' virtual='1' inline='1' receiver='1100' receiver_count='230'/>
+<method id='1123' holder='1100' name='match' return='969' arguments='1094 975 1095' flags='0' bytes='45' compile_id='722' compiler='c1' level='3' iicount='260'/>
+<call method='1123' count='230' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='36' klass='1100'/>
+<uncommon_trap bci='36' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='36' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1123' uses='253.000000' stamp='0.437'>
+<bc code='79' bci='32'/>
+<uncommon_trap bci='32' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='32' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='42'/>
+<uncommon_trap bci='42' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='450' live='427' memory='95544' stamp='0.437'/>
+</parse>
+<bc code='153' bci='39'/>
+<branch target_bci='46' taken='0' not_taken='253' cnt='253.000000' prob='never'/>
+<uncommon_trap bci='39' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='470' live='445' memory='99416' stamp='0.437'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='1242' nmethods='719' adapters='262' free_code_cache='246745472'/>
+<task_done success='1' nmsize='696' count='5885' inlined_bytes='85' stamp='0.440'/>
+</task>
+<task compile_id='726' method='sun.nio.cs.UTF_8$Decoder decodeArrayLoop (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;' bytes='691' count='85' backedge_count='335922' iicount='85' stamp='0.440'>
+<klass id='1095' name='java.nio.CharBuffer' flags='1025'/>
+<klass id='1100' name='java.nio.HeapCharBuffer' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<klass id='1096' name='java.nio.charset.CoderResult' flags='1'/>
+<klass id='1094' name='java.nio.ByteBuffer' flags='1025'/>
+<klass id='1093' name='sun.nio.cs.UTF_8$Decoder' flags='10'/>
+<method id='1097' holder='1093' name='decodeArrayLoop' return='1096' arguments='1094 1095' flags='2' bytes='691' compile_id='642' compiler='c1' level='3' iicount='85'/>
+<parse method='1097' uses='85.000000' stamp='0.440'>
+<bc code='182' bci='1'/>
+<klass id='1085' name='[B' flags='1041'/>
+<method id='1101' holder='1094' name='array' return='1085' flags='17' bytes='35' iicount='139'/>
+<call method='1101' count='63' prof_factor='1.000000' inline='1'/>
+<klass id='1122' name='java.nio.ReadOnlyBufferException' unloaded='1'/>
+<uncommon_trap method='1101' bci='22' reason='unloaded' action='reinterpret' index='27' debug_id='0' klass='1122'/>
+<klass id='1123' name='java.lang.UnsupportedOperationException' flags='1'/>
+<uncommon_trap method='1101' bci='7' reason='unloaded' action='reinterpret' index='34' debug_id='0' klass='1123'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='1'/>
+<uncommon_trap bci='1' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='975' name='int'/>
+<method id='1102' holder='1094' name='arrayOffset' return='975' flags='17' bytes='35' iicount='333'/>
+<call method='1102' count='63' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1102' bci='22' reason='unloaded' action='reinterpret' index='27' debug_id='0' klass='1122'/>
+<uncommon_trap method='1102' bci='7' reason='unloaded' action='reinterpret' index='34' debug_id='0' klass='1123'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='63.000000' stamp='0.440'>
+<bc code='187' bci='7'/>
+<uncommon_trap bci='7' reason='unloaded' action='reinterpret' index='34' debug_id='0'/>
+<bc code='187' bci='22'/>
+<uncommon_trap bci='22' reason='unloaded' action='reinterpret' index='27' debug_id='0'/>
+<parse_done nodes='105' live='101' memory='53256' stamp='0.440'/>
+</parse>
+<bc code='182' bci='10'/>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<method id='1103' holder='1064' name='position' return='975' flags='17' bytes='5' compile_id='483' compiler='c1' level='1' iicount='140'/>
+<call method='1103' count='63' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1103' uses='63.000000' stamp='0.440'>
+<parse_done nodes='119' live='114' memory='55800' stamp='0.440'/>
+</parse>
+<bc code='182' bci='17'/>
+<call method='1102' count='63' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='63.000000' stamp='0.440'>
+<bc code='187' bci='7'/>
+<uncommon_trap bci='7' reason='unloaded' action='reinterpret' index='34' debug_id='0'/>
+<bc code='187' bci='22'/>
+<uncommon_trap bci='22' reason='unloaded' action='reinterpret' index='27' debug_id='0'/>
+<parse_done nodes='165' live='157' memory='65576' stamp='0.440'/>
+</parse>
+<bc code='182' bci='21'/>
+<method id='1104' holder='1064' name='limit' return='975' flags='17' bytes='5' compile_id='481' compiler='c1' level='1' iicount='147'/>
+<call method='1104' count='63' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1104' uses='63.000000' stamp='0.440'>
+<parse_done nodes='179' live='170' memory='68008' stamp='0.440'/>
+</parse>
+<bc code='182' bci='28'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1105' holder='1095' name='array' return='1082' flags='17' bytes='35' iicount='97'/>
+<call method='1105' count='63' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1105' bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='1122'/>
+<uncommon_trap method='1105' bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0' klass='1123'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='28'/>
+<uncommon_trap bci='28' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='34'/>
+<method id='1106' holder='1095' name='arrayOffset' return='975' flags='17' bytes='35' iicount='291'/>
+<call method='1106' count='63' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1106' bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='1122'/>
+<uncommon_trap method='1106' bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0' klass='1123'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<parse method='1106' uses='63.000000' stamp='0.441'>
+<bc code='187' bci='7'/>
+<uncommon_trap bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0'/>
+<bc code='187' bci='22'/>
+<uncommon_trap bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0'/>
+<parse_done nodes='259' live='246' memory='85792' stamp='0.441'/>
+</parse>
+<bc code='182' bci='38'/>
+<call method='1103' count='63' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1103' uses='63.000000' stamp='0.441'>
+<parse_done nodes='272' live='258' memory='88240' stamp='0.441'/>
+</parse>
+<bc code='182' bci='45'/>
+<call method='1106' count='63' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<parse method='1106' uses='63.000000' stamp='0.441'>
+<bc code='187' bci='7'/>
+<uncommon_trap bci='7' reason='unloaded' action='reinterpret' index='40' debug_id='0'/>
+<bc code='187' bci='22'/>
+<uncommon_trap bci='22' reason='unloaded' action='reinterpret' index='30' debug_id='0'/>
+<parse_done nodes='318' live='301' memory='96608' stamp='0.441'/>
+</parse>
+<bc code='182' bci='49'/>
+<call method='1104' count='63' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1104' uses='63.000000' stamp='0.441'>
+<parse_done nodes='331' live='313' memory='98928' stamp='0.441'/>
+</parse>
+<bc code='184' bci='67'/>
+<klass id='1107' name='java.lang.Math' flags='17'/>
+<method id='1108' holder='1107' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='11410'/>
+<call method='1108' count='63' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='162' bci='77'/>
+<branch target_bci='106' taken='62' not_taken='254359' cnt='254421.000000' prob='0.000243691'/>
+<uncommon_trap bci='80' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='80' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='83'/>
+<uncommon_trap bci='83' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='83' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='155' bci='84'/>
+<branch target_bci='106' taken='0' not_taken='254359' cnt='254359.000000' prob='never'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='100'/>
+<uncommon_trap bci='100' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='85' bci='102'/>
+<uncommon_trap bci='102' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='102' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='77'/>
+<branch target_bci='106' taken='62' not_taken='254359' cnt='254359.000000' prob='0.000243691'/>
+<bc code='162' bci='110'/>
+<branch target_bci='678' taken='31' not_taken='31' cnt='62.000000' prob='0.5'/>
+<uncommon_trap bci='113' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='113' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='116'/>
+<uncommon_trap bci='116' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='116' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='155' bci='121'/>
+<branch target_bci='161' taken='0' not_taken='31'/>
+<bc code='161' bci='128'/>
+<branch target_bci='144' taken='0' not_taken='31'/>
+<bc code='184' bci='140'/>
+<method id='1109' holder='1093' name='xflow' return='1096' arguments='1064 975 975 1064 975 975' flags='10' bytes='31' iicount='85'/>
+<call method='1109' count='31' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='140'/>
+<bc code='85' bci='154'/>
+<uncommon_trap bci='154' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='154' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='167'/>
+<branch target_bci='261' taken='0' not_taken='0'/>
+<bc code='153' bci='175'/>
+<branch target_bci='261' taken='0' not_taken='0'/>
+<bc code='161' bci='184'/>
+<branch target_bci='194' taken='0' not_taken='0'/>
+<bc code='161' bci='191'/>
+<branch target_bci='207' taken='0' not_taken='0'/>
+<bc code='51' bci='212'/>
+<uncommon_trap bci='212' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='217'/>
+<type id='969' name='boolean'/>
+<method id='1121' holder='1093' name='isNotContinuation' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='217'/>
+<bc code='153' bci='220'/>
+<branch target_bci='234' taken='0' not_taken='0'/>
+<bc code='184' bci='230'/>
+<method id='1111' holder='1093' name='malformedForLength' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='13' iicount='1'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='230'/>
+<bc code='85' bci='254'/>
+<uncommon_trap bci='254' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='254' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='203'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='203'/>
+<bc code='160' bci='267'/>
+<branch target_bci='428' taken='0' not_taken='0'/>
+<bc code='161' bci='280'/>
+<branch target_bci='290' taken='0' not_taken='0'/>
+<bc code='161' bci='287'/>
+<branch target_bci='334' taken='0' not_taken='0'/>
+<bc code='51' bci='339'/>
+<uncommon_trap bci='339' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='347'/>
+<uncommon_trap bci='347' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='356'/>
+<method id='1119' holder='1093' name='isMalformed3' return='969' arguments='975 975 975' flags='10' bytes='45' iicount='1'/>
+<call method='1119' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='356'/>
+<bc code='153' bci='359'/>
+<branch target_bci='373' taken='0' not_taken='0'/>
+<bc code='184' bci='369'/>
+<method id='1110' holder='1093' name='malformed' return='1096' arguments='1094 975 1095 975 975' flags='10' bytes='29' iicount='1'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='369'/>
+<bc code='184' bci='395'/>
+<type id='970' name='char'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1120' holder='1070' name='isSurrogate' return='969' arguments='970' flags='9' bytes='18' iicount='43'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='395'/>
+<bc code='153' bci='398'/>
+<branch target_bci='412' taken='0' not_taken='0'/>
+<bc code='184' bci='408'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='408'/>
+<bc code='85' bci='421'/>
+<uncommon_trap bci='421' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='421' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='293'/>
+<branch target_bci='321' taken='0' not_taken='0'/>
+<bc code='51' bci='303'/>
+<uncommon_trap bci='303' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='304'/>
+<method id='1118' holder='1093' name='isMalformed3_2' return='969' arguments='975 975' flags='10' bytes='34' iicount='1'/>
+<call method='1118' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='304'/>
+<bc code='153' bci='307'/>
+<branch target_bci='321' taken='0' not_taken='0'/>
+<bc code='184' bci='317'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='317'/>
+<bc code='184' bci='330'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='330'/>
+<bc code='160' bci='434'/>
+<branch target_bci='664' taken='0' not_taken='0'/>
+<bc code='161' bci='447'/>
+<branch target_bci='459' taken='0' not_taken='0'/>
+<bc code='162' bci='456'/>
+<branch target_bci='552' taken='0' not_taken='0'/>
+<bc code='51' bci='557'/>
+<uncommon_trap bci='557' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='565'/>
+<uncommon_trap bci='565' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='573'/>
+<uncommon_trap bci='573' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='607'/>
+<method id='1114' holder='1093' name='isMalformed4' return='969' arguments='975 975 975' flags='10' bytes='39' iicount='1'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='607'/>
+<bc code='154' bci='610'/>
+<branch target_bci='621' taken='0' not_taken='0'/>
+<bc code='184' bci='615'/>
+<method id='1115' holder='1070' name='isSupplementaryCodePoint' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1115' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='615'/>
+<bc code='154' bci='618'/>
+<branch target_bci='632' taken='0' not_taken='0'/>
+<bc code='184' bci='641'/>
+<method id='1116' holder='1070' name='highSurrogate' return='970' arguments='975' flags='9' bytes='9' iicount='1'/>
+<call method='1116' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='641'/>
+<bc code='85' bci='644'/>
+<uncommon_trap bci='644' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='644' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='654'/>
+<method id='1117' holder='1070' name='lowSurrogate' return='970' arguments='975' flags='9' bytes='10' iicount='1'/>
+<call method='1117' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='654'/>
+<bc code='85' bci='657'/>
+<uncommon_trap bci='657' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='110'/>
+<branch target_bci='678' taken='31' not_taken='31' cnt='62.000000' prob='0.5'/>
+<bc code='184' bci='628'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='628'/>
+<bc code='163' bci='472'/>
+<branch target_bci='499' taken='0' not_taken='0'/>
+<bc code='164' bci='478'/>
+<branch target_bci='510' taken='0' not_taken='0'/>
+<bc code='51' bci='488'/>
+<uncommon_trap bci='488' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='493'/>
+<method id='1113' holder='1093' name='isMalformed4_2' return='969' arguments='975 975' flags='10' bytes='56' iicount='1'/>
+<call method='1113' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='493'/>
+<bc code='153' bci='496'/>
+<branch target_bci='510' taken='0' not_taken='0'/>
+<bc code='164' bci='513'/>
+<branch target_bci='539' taken='0' not_taken='0'/>
+<bc code='51' bci='521'/>
+<uncommon_trap bci='521' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='522'/>
+<method id='1112' holder='1093' name='isMalformed4_3' return='969' arguments='975' flags='10' bytes='17' iicount='1'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='522'/>
+<bc code='153' bci='525'/>
+<branch target_bci='539' taken='0' not_taken='0'/>
+<bc code='184' bci='535'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='535'/>
+<bc code='184' bci='548'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='548'/>
+<bc code='184' bci='506'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='506'/>
+<bc code='184' bci='671'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<direct_call bci='671'/>
+<bc code='184' bci='687'/>
+<call method='1109' count='31' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='687'/>
+<parse_done nodes='1572' live='1511' memory='368728' stamp='0.442'/>
+</parse>
+<loop_tree>
+<loop idx='1599' >
+</loop>
+<loop idx='1593' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1599' inner_loop='1' >
+</loop>
+<loop idx='1593' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1777' inner_loop='1' main_loop='1777' >
+</loop>
+<loop idx='1593' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1722' inner_loop='1' pre_loop='1599' >
+</loop>
+<loop idx='1850' inner_loop='1' main_loop='1850' >
+</loop>
+<loop idx='1678' inner_loop='1' post_loop='1599' >
+</loop>
+<loop idx='1593' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1722' inner_loop='1' pre_loop='1599' >
+</loop>
+<loop idx='1850' inner_loop='1' main_loop='1850' >
+</loop>
+<loop idx='1678' inner_loop='1' post_loop='1599' >
+</loop>
+<loop idx='1593' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1722' inner_loop='1' pre_loop='1599' >
+</loop>
+<loop idx='1850' inner_loop='1' main_loop='1850' >
+</loop>
+<loop idx='1678' inner_loop='1' post_loop='1599' >
+</loop>
+<loop idx='1593' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1095' x='1100'/>
+<code_cache total_blobs='1268' nmethods='731' adapters='262' free_code_cache='246700544'/>
+<task_done success='1' nmsize='4144' count='95' backedge_count='377889' inlined_bytes='171' stamp='0.459'/>
+</task>
+<task compile_id='745' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser startElement (Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='318' count='5404' iicount='5404' stamp='0.467'>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.parsers.SAXParser' flags='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1101'/>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<method id='1097' holder='1093' name='startElement' return='977' arguments='1094 1095 1096' flags='1' bytes='318' compile_id='578' compiler='c1' level='3' iicount='5404'/>
+<klass id='1103' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<uncommon_trap method='1097' bci='27' reason='unloaded' action='reinterpret' index='528' debug_id='0' klass='1103'/>
+<parse method='1097' uses='5404.000000' stamp='0.467'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<assert_null reason='field' klass='1103'/>
+<uncommon_trap bci='4' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='4'/>
+<branch target_bci='32' taken='5404' not_taken='0' cnt='5404.000000' prob='always'/>
+<bc code='198' bci='36'/>
+<branch target_bci='302' taken='0' not_taken='5404' cnt='5404.000000' prob='never'/>
+<uncommon_trap bci='36' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='43'/>
+<branch target_bci='232' taken='5404' not_taken='0' cnt='5404.000000' prob='always'/>
+<uncommon_trap bci='43' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='238'/>
+<uncommon_trap bci='238' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='241'/>
+<branch target_bci='251' taken='5404' not_taken='0' cnt='5404.000000' prob='always'/>
+<uncommon_trap bci='241' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='259'/>
+<branch target_bci='269' taken='5404' not_taken='0' cnt='5404.000000' prob='always'/>
+<uncommon_trap bci='259' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='278'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1106' holder='1099' name='setAttributes' return='977' arguments='1095' flags='1' bytes='6' compile_id='561' compiler='c1' level='1' iicount='147'/>
+<call method='1106' count='5121' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1106' uses='5404.000000' stamp='0.467'>
+<uncommon_trap bci='278' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='461' live='453' memory='89456' stamp='0.467'/>
+</parse>
+<bc code='185' bci='297'/>
+<klass id='1100' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1107' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1104' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1108' holder='1104' name='startElement' return='977' arguments='983 983 983 1107' flags='1025' bytes='0' iicount='1'/>
+<call method='1108' count='5121' prof_factor='1.000000' virtual='1' inline='1' receiver='1100' receiver_count='5121'/>
+<method id='1120' holder='1100' name='startElement' return='977' arguments='983 983 983 1107' flags='1' bytes='3082' compile_id='595' compiler='c1' level='3' iicount='5427'/>
+<call method='1120' count='5121' prof_factor='1.000000' inline='1'/>
+<klass id='1199' name='com.sun.hotspot.tools.compiler.LogParser$LockElimination' unloaded='1'/>
+<uncommon_trap method='1120' bci='2456' reason='unloaded' action='reinterpret' index='244' debug_id='0' klass='1199'/>
+<klass id='1198' name='com.sun.hotspot.tools.compiler.UncommonTrapEvent' unloaded='1'/>
+<uncommon_trap method='1120' bci='2414' reason='unloaded' action='reinterpret' index='231' debug_id='0' klass='1198'/>
+<uncommon_trap method='1120' bci='2182' reason='unloaded' action='reinterpret' index='244' debug_id='0' klass='1199'/>
+<klass id='1216' name='com.sun.hotspot.tools.compiler.UncommonTrap' unloaded='1'/>
+<uncommon_trap method='1120' bci='2012' reason='unloaded' action='reinterpret' index='235' debug_id='0' klass='1216'/>
+<uncommon_trap method='1120' bci='1930' reason='unloaded' action='reinterpret' index='231' debug_id='0' klass='1198'/>
+<klass id='1235' name='java.lang.AssertionError' flags='1'/>
+<uncommon_trap method='1120' bci='1461' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1235'/>
+<uncommon_trap method='1120' bci='1412' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1235'/>
+<klass id='1246' name='java.lang.System' unloaded='1'/>
+<uncommon_trap method='1120' bci='1130' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1246'/>
+<uncommon_trap method='1120' bci='129' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1246'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='297' klass='1100'/>
+<uncommon_trap bci='297' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='297' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='297'/>
+<klass id='1102' name='org.xml.sax.SAXException' unloaded='1'/>
+<uncommon_trap bci='305' reason='unloaded' action='reinterpret' debug_id='0' klass='1102' comment='!loaded exception'/>
+<parse_done nodes='546' live='533' memory='114096' stamp='0.468'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1101'/>
+<code_cache total_blobs='1297' nmethods='744' adapters='262' free_code_cache='246632064'/>
+<task_done success='1' nmsize='1096' count='5616' inlined_bytes='6' stamp='0.471'/>
+</task>
+<task compile_id='756' method='java.util.ArrayList get (I)Ljava/lang/Object;' bytes='15' count='7425' iicount='7425' stamp='0.494'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='526' compiler='c1' level='3' iicount='7425'/>
+<parse method='1094' uses='7425.000000' stamp='0.494'>
+<bc code='184' bci='5'/>
+<klass id='1096' name='java.util.Objects' flags='17'/>
+<method id='1097' holder='1096' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='7640'/>
+<call method='1097' count='7168' prof_factor='1.000000' inline='1'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1097' uses='7425.000000' stamp='0.494'>
+<bc code='184' bci='3'/>
+<klass id='1102' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1101' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1103' holder='1101' name='checkIndex' return='975' arguments='975 975 1102' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='7641'/>
+<call method='1103' count='7382' prof_factor='0.971859' inline='1'/>
+<uncommon_trap bci='3' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='3' reason='range_check' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_Preconditions_checkIndex' nodes='27'/>
+<parse_done nodes='65' live='62' memory='28448' stamp='0.494'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1098' holder='1093' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='7443'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<call method='1098' count='7168' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='7425.000000' stamp='0.494'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='119' live='113' memory='36768' stamp='0.494'/>
+</parse>
+<parse_done nodes='119' live='112' memory='36896' stamp='0.494'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<code_cache total_blobs='1318' nmethods='753' adapters='262' free_code_cache='246595712'/>
+<task_done success='1' nmsize='248' count='7429' inlined_bytes='26' stamp='0.495'/>
+</task>
+<task compile_id='776' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1027' backedge_count='20540' iicount='1027' stamp='0.516'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='search' return='969' arguments='975' flags='0' bytes='154' compile_id='667' compiler='c1' level='3' iicount='1027'/>
+<parse method='1094' uses='1027.000000' stamp='0.516'>
+<bc code='156' bci='11'/>
+<branch target_bci='18' taken='822' not_taken='0' cnt='822.000000' prob='always'/>
+<uncommon_trap bci='11' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='156' bci='30'/>
+<branch target_bci='37' taken='482' not_taken='340' cnt='822.000000' prob='0.586375'/>
+<bc code='190' bci='51'/>
+<uncommon_trap bci='51' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='52'/>
+<branch target_bci='68' taken='822' not_taken='16440' cnt='17262.000000' prob='0.047619'/>
+<uncommon_trap bci='55' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='55' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='79' bci='61'/>
+<uncommon_trap bci='61' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='61' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='52'/>
+<branch target_bci='68' taken='822' not_taken='16440' cnt='16440.000000' prob='0.047619'/>
+<bc code='190' bci='75'/>
+<uncommon_trap bci='75' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='76'/>
+<branch target_bci='103' taken='822' not_taken='0' cnt='822.000000' prob='always'/>
+<uncommon_trap bci='76' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='112'/>
+<uncommon_trap bci='112' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='121'/>
+<klass id='1096' name='java.util.regex.Pattern$Start' flags='8'/>
+<klass id='1101' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1100' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1102' holder='1100' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='27' iicount='1'/>
+<call method='1102' count='822' prof_factor='1.000000' virtual='1' inline='1' receiver='1096' receiver_count='822'/>
+<method id='1104' holder='1096' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='90' compile_id='688' compiler='c1' level='3' iicount='1027'/>
+<call method='1104' count='822' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='121' klass='1096'/>
+<uncommon_trap bci='121' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='121' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1104' uses='822.000000' stamp='0.517'>
+<bc code='164' bci='10'/>
+<branch target_bci='20' taken='738' not_taken='0' cnt='738.000000' prob='always'/>
+<uncommon_trap bci='10' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='163' bci='34'/>
+<branch target_bci='83' taken='301' not_taken='8874' cnt='9175.000000' prob='0.0328065'/>
+<uncommon_trap bci='37' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='37' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='44'/>
+<klass id='1106' name='java.util.regex.Pattern$BmpCharProperty' flags='10'/>
+<call method='1102' count='8874' prof_factor='0.800389' virtual='1' inline='1' receiver='1106' receiver_count='8874'/>
+<method id='1107' holder='1106' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='55' compile_id='721' compiler='c2' level='4' iicount='5885'/>
+<call method='1107' count='8874' prof_factor='0.800389' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='44' klass='1106'/>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='44' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1107' uses='7103.000000' stamp='0.517'>
+<bc code='162' bci='5'/>
+<branch target_bci='48' taken='0' not_taken='5885' cnt='5885.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='14'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<method id='1110' holder='1101' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' count='5373' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='5373'/>
+<method id='1116' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='89980'/>
+<call method='1116' count='5373' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='14' klass='983'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1116' uses='5885.000000' stamp='0.517'>
+<bc code='183' bci='1'/>
+<method id='1117' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='107117'/>
+<call method='1117' count='89468' prof_factor='0.065403' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1117' uses='5885.000000' stamp='0.517'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='107117' cnt='107117.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='107116' cnt='107117.000000' prob='9.33559e-06'/>
+<parse_done nodes='542' live='522' memory='125760' stamp='0.517'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='89980' cnt='89980.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1120' name='java.lang.StringLatin1' flags='16'/>
+<method id='1121' holder='1120' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='88788'/>
+<call method='1121' count='89468' prof_factor='0.065403' inline='1'/>
+<klass id='1125' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1121' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1125'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='5885.000000' stamp='0.517'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='88788' cnt='88788.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='88788' not_taken='0' cnt='88788.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='643' live='617' memory='147928' stamp='0.517'/>
+</parse>
+<parse_done nodes='650' live='623' memory='149248' stamp='0.517'/>
+</parse>
+<bc code='185' bci='19'/>
+<klass id='1114' name='java.util.regex.Pattern$$Lambda$1/6738746' flags='4112'/>
+<klass id='1108' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<method id='1111' holder='1108' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' count='5373' prof_factor='1.000000' virtual='1' inline='1' receiver='1114' receiver_count='5373'/>
+<method id='1127' holder='1114' name='is' return='969' arguments='975' flags='1' bytes='9' compile_id='634' compiler='c1' level='3' iicount='5885'/>
+<call method='1127' count='5373' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='19' klass='1114'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1127' uses='5885.000000' stamp='0.517'>
+<bc code='184' bci='5'/>
+<klass id='1099' name='java.util.regex.Pattern' flags='17'/>
+<method id='1128' holder='1099' name='lambda$Single$8' return='969' arguments='975 975' flags='4106' bytes='11' compile_id='637' compiler='c1' level='3' iicount='5885'/>
+<call method='1128' count='5373' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1128' uses='5885.000000' stamp='0.517'>
+<bc code='160' bci='2'/>
+<branch target_bci='9' taken='5618' not_taken='267' cnt='5885.000000' prob='0.95463'/>
+<parse_done nodes='721' live='691' memory='161680' stamp='0.517'/>
+</parse>
+<parse_done nodes='728' live='697' memory='163064' stamp='0.517'/>
+</parse>
+<bc code='153' bci='24'/>
+<branch target_bci='46' taken='5618' not_taken='267' cnt='5885.000000' prob='0.95463'/>
+<bc code='182' bci='36'/>
+<klass id='1115' name='java.util.regex.Pattern$LastNode' flags='8'/>
+<call method='1102' count='244' prof_factor='1.000000' virtual='1' inline='1' receiver='1115' receiver_count='244'/>
+<method id='1131' holder='1115' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='45' compile_id='722' compiler='c1' level='3' iicount='269'/>
+<call method='1131' count='244' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='36' klass='1115'/>
+<uncommon_trap bci='36' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='36' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1131' uses='267.000000' stamp='0.517'>
+<bc code='79' bci='32'/>
+<uncommon_trap bci='32' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='32' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='42'/>
+<uncommon_trap bci='42' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='877' live='839' memory='195360' stamp='0.518'/>
+</parse>
+<bc code='153' bci='39'/>
+<branch target_bci='46' taken='0' not_taken='267' cnt='267.000000' prob='never'/>
+<uncommon_trap bci='39' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='902' live='862' memory='199896' stamp='0.518'/>
+</parse>
+<bc code='153' bci='47'/>
+<branch target_bci='77' taken='8437' not_taken='437' cnt='8874.000000' prob='0.950755'/>
+<bc code='79' bci='64'/>
+<uncommon_trap bci='64' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='64' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='74'/>
+<uncommon_trap bci='74' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='163' bci='34'/>
+<branch target_bci='83' taken='301' not_taken='8874' cnt='8437.000000' prob='0.0328065'/>
+<parse_done nodes='1006' live='961' memory='220456' stamp='0.518'/>
+</parse>
+<bc code='154' bci='126'/>
+<branch target_bci='134' taken='482' not_taken='340' cnt='822.000000' prob='0.586375'/>
+<parse_done nodes='1039' live='993' memory='248904' stamp='0.518'/>
+</parse>
+<loop_tree>
+<loop idx='1128' inner_loop='1' >
+</loop>
+<loop idx='1139' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1222' >
+</loop>
+<loop idx='1139' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1222' inner_loop='1' >
+</loop>
+<loop idx='1139' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1139' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1500' inner_loop='1' main_loop='1500' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1443' inner_loop='1' pre_loop='1139' >
+</loop>
+<loop idx='1563' inner_loop='1' main_loop='1563' >
+</loop>
+<loop idx='1398' inner_loop='1' post_loop='1139' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1443' inner_loop='1' pre_loop='1139' >
+</loop>
+<loop idx='1563' inner_loop='1' main_loop='1563' >
+</loop>
+<loop idx='1398' inner_loop='1' post_loop='1139' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1443' inner_loop='1' pre_loop='1139' >
+</loop>
+<loop idx='1563' inner_loop='1' main_loop='1563' >
+</loop>
+<loop idx='1398' inner_loop='1' post_loop='1139' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1351' nmethods='776' adapters='262' free_code_cache='246480512'/>
+<task_done success='1' nmsize='1304' count='1103' backedge_count='22060' inlined_bytes='139' stamp='0.525'/>
+</task>
+<task compile_id='784' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='18710' backedge_count='106736' iicount='18710' decompiles='1' unstable_if_traps='2' stamp='0.543'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanName' return='983' arguments='1094' flags='4' bytes='305' compile_id='780' compiler='c1' level='3' iicount='18710'/>
+<parse method='1095' uses='18710.000000' stamp='0.543'>
+<observe trap='unstable_if' count='2' total='2'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='18445' not_taken='0' cnt='18445.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='41'/>
+<uncommon_trap bci='41' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='41' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='42'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1100' holder='1099' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='41010'/>
+<call method='1100' count='18445' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='18445.000000' stamp='0.543'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='41010' cnt='41010.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='41010' cnt='41010.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='168' live='162' memory='45000' stamp='0.543'/>
+</parse>
+<bc code='153' bci='45'/>
+<branch target_bci='227' taken='0' not_taken='18445' cnt='18445.000000' prob='never'/>
+<bc code='160' bci='69'/>
+<branch target_bci='141' taken='18444' not_taken='3' cnt='18447.000000' prob='0.999837'/>
+<bc code='182' bci='74'/>
+<type id='977' name='void'/>
+<method id='1108' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='79'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<call method='1108' count='3' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='74'/>
+<bc code='180' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='93'/>
+<uncommon_trap bci='93' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='93' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='85' bci='94'/>
+<uncommon_trap bci='94' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='101'/>
+<method id='1107' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='78'/>
+<call method='1107' count='3' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='101'/>
+<bc code='153' bci='104'/>
+<branch target_bci='141' taken='3' not_taken='0'/>
+<bc code='180' bci='112'/>
+<uncommon_trap bci='112' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='133'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1104' holder='1097' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='4925'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1104'/>
+<call method='1104' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='133'/>
+<uncommon_trap bci='133' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='144' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='144' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='148'/>
+<uncommon_trap bci='148' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='158'/>
+<uncommon_trap bci='158' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='158' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='165'/>
+<branch target_bci='179' taken='0' not_taken='123248' cnt='123248.000000' prob='never'/>
+<uncommon_trap bci='165' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='173'/>
+<uncommon_trap bci='173' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='188'/>
+<branch target_bci='194' taken='104801' not_taken='18447' cnt='123248.000000' prob='0.850326'/>
+<bc code='182' bci='201'/>
+<klass id='1098' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1106' holder='1093' name='checkBeforeLoad' return='975' arguments='1098 975 975' flags='4' bytes='140' compile_id='597' compiler='c2' level='4' iicount='28118'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1106'/>
+<call method='1106' count='104801' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='104801.000000' stamp='0.544'>
+<observe trap='unstable_if' count='1' total='3'/>
+<bc code='160' bci='18'/>
+<branch target_bci='137' taken='28114' not_taken='5' cnt='28119.000000' prob='0.999822'/>
+<bc code='159' bci='35'/>
+<branch target_bci='51' taken='0' not_taken='5'/>
+<bc code='182' bci='61'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1102' holder='1093' name='checkLimit' return='977' arguments='1101 1098 975 975' flags='4' bytes='253' compile_id='610' compiler='c2' level='4' iicount='15167'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<call method='1102' count='5' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='61'/>
+<bc code='182' bci='67'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<call method='1108' count='5' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='67'/>
+<bc code='190' bci='76'/>
+<uncommon_trap bci='76' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='77'/>
+<branch target_bci='122' taken='5' not_taken='0'/>
+<bc code='184' bci='100'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1129' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1129' count='0' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='86' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='86' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='79'/>
+<bc code='184' bci='134'/>
+<call method='1129' count='5' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='134' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='77'/>
+<parse_done nodes='1037' live='1012' memory='217096' stamp='0.544'/>
+</parse>
+<bc code='158' bci='206'/>
+<branch target_bci='224' taken='104788' not_taken='13' cnt='104801.000000' prob='0.999876'/>
+<bc code='182' bci='215'/>
+<call method='1107' count='13' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='215'/>
+<bc code='153' bci='218'/>
+<branch target_bci='224' taken='13' not_taken='0'/>
+<bc code='180' bci='231'/>
+<uncommon_trap bci='231' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='251'/>
+<branch target_bci='299' taken='0' not_taken='18447' cnt='18447.000000' prob='never'/>
+<uncommon_trap bci='251' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='264'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<call method='1102' count='18447' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<direct_call bci='264'/>
+<bc code='182' bci='275'/>
+<method id='1103' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1098 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<call method='1103' count='18447' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='18447.000000' stamp='0.545'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1188' live='1158' memory='246288' stamp='0.545'/>
+</parse>
+<bc code='180' bci='286'/>
+<uncommon_trap bci='286' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='291'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1104'/>
+<call method='1104' count='18447' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='18447.000000' stamp='0.545'>
+<observe trap='unstable_if' count='1' total='4'/>
+<uncommon_trap bci='291' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='7'/>
+<method id='1123' holder='1097' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='582' compiler='c2' level='4' iicount='3668'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<call method='1123' count='4656' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1123' uses='4656.000000' stamp='0.545'>
+<bc code='199' bci='4'/>
+<branch target_bci='45' taken='0' not_taken='3410' cnt='3410.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='3410' not_taken='29013' cnt='32423.000000' prob='0.105172'/>
+<uncommon_trap bci='19' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='29' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='3410' not_taken='29013' cnt='29013.000000' prob='0.105172'/>
+<parse_done nodes='1363' live='1325' memory='276608' stamp='0.545'/>
+</parse>
+<bc code='112' bci='14'/>
+<uncommon_trap bci='14' reason='div0_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='23'/>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='23' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='8' not_taken='5595' cnt='5603.000000' prob='0.00142781'/>
+<uncommon_trap bci='31' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='31' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='34'/>
+<uncommon_trap bci='34' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='37'/>
+<uncommon_trap bci='37' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='38'/>
+<branch target_bci='85' taken='946' not_taken='4649' cnt='5595.000000' prob='0.16908'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='4649' not_taken='39473' cnt='44122.000000' prob='0.105367'/>
+<uncommon_trap bci='50' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='50' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='55'/>
+<uncommon_trap bci='55' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='55' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='52' bci='63'/>
+<uncommon_trap bci='63' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='63' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='64'/>
+<branch target_bci='73' taken='39473' not_taken='1' cnt='39474.000000' prob='0.999975'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='4649' not_taken='39473' cnt='39473.000000' prob='0.105367'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='8' not_taken='5595' cnt='947.000000' prob='0.00142781'/>
+<bc code='183' bci='106'/>
+<method id='1126' holder='1097' name='addSymbol0' return='983' arguments='1082 975 975 975 975' flags='2' bytes='103' iicount='94'/>
+<call method='1126' count='8' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='106'/>
+<parse_done nodes='1682' live='1629' memory='328648' stamp='0.545'/>
+</parse>
+<parse_done nodes='1687' live='1633' memory='329720' stamp='0.545'/>
+</parse>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1726' >
+</loop>
+<loop idx='1719' >
+<loop idx='1732' >
+</loop>
+</loop>
+</loop_tree>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<method id='1155' holder='1097' name='rebalance' return='977' flags='4' bytes='32' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1155'/>
+<method id='1169' holder='1097' name='hash' return='975' arguments='983' flags='1' bytes='21' iicount='75'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1169'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<method id='1156' holder='1097' name='rehash' return='977' flags='4' bytes='14' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1156'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1169'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1155'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1169'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1156'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1169'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1726' inner_loop='1' >
+</loop>
+<loop idx='1719' >
+<loop idx='1732' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1726' inner_loop='1' >
+</loop>
+<loop idx='1719' >
+<loop idx='1732' inner_loop='1' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1940' inner_loop='1' main_loop='1940' >
+</loop>
+<loop idx='1719' >
+<loop idx='2046' inner_loop='1' main_loop='2046' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1901' inner_loop='1' pre_loop='1726' >
+</loop>
+<loop idx='2125' inner_loop='1' main_loop='2125' >
+</loop>
+<loop idx='1873' inner_loop='1' post_loop='1726' >
+</loop>
+<loop idx='1719' >
+<loop idx='2002' inner_loop='1' pre_loop='1732' >
+</loop>
+<loop idx='2172' inner_loop='1' main_loop='2172' >
+</loop>
+<loop idx='1967' inner_loop='1' post_loop='1732' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1901' inner_loop='1' pre_loop='1726' >
+</loop>
+<loop idx='2125' inner_loop='1' main_loop='2125' >
+</loop>
+<loop idx='1873' inner_loop='1' post_loop='1726' >
+</loop>
+<loop idx='1719' >
+<loop idx='2002' inner_loop='1' pre_loop='1732' >
+</loop>
+<loop idx='2172' inner_loop='1' main_loop='2172' >
+</loop>
+<loop idx='1967' inner_loop='1' post_loop='1732' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1901' inner_loop='1' pre_loop='1726' >
+</loop>
+<loop idx='2125' inner_loop='1' main_loop='2125' >
+</loop>
+<loop idx='1873' inner_loop='1' post_loop='1726' >
+</loop>
+<loop idx='1719' >
+<loop idx='2002' inner_loop='1' pre_loop='1732' >
+</loop>
+<loop idx='2172' inner_loop='1' main_loop='2172' >
+</loop>
+<loop idx='1967' inner_loop='1' post_loop='1732' >
+</loop>
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1717' inner_loop='1' >
+</loop>
+<loop idx='1901' inner_loop='1' pre_loop='1726' >
+</loop>
+<loop idx='2125' inner_loop='1' main_loop='2125' >
+</loop>
+<loop idx='1873' inner_loop='1' post_loop='1726' >
+</loop>
+<loop idx='1719' >
+<loop idx='2002' inner_loop='1' pre_loop='1732' >
+</loop>
+<loop idx='2172' inner_loop='1' main_loop='2172' >
+</loop>
+<loop idx='1967' inner_loop='1' post_loop='1732' >
+</loop>
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1106'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1155'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1169'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1156'/>
+<code_cache total_blobs='1426' nmethods='831' adapters='270' free_code_cache='246320128'/>
+<task_done success='1' nmsize='3376' count='20089' backedge_count='113640' inlined_bytes='375' stamp='0.564'/>
+</task>
+<task compile_id='917' method='java.util.regex.Matcher reset ()Ljava/util/regex/Matcher;' bytes='128' count='855' backedge_count='18984' iicount='855' stamp='0.583'>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='reset' return='1093' flags='1' bytes='128' compile_id='686' compiler='c1' level='3' iicount='855'/>
+<parse method='1094' uses='855.000000' stamp='0.583'>
+<bc code='190' bci='22'/>
+<uncommon_trap bci='22' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='23'/>
+<branch target_bci='39' taken='729' not_taken='14580' cnt='15309.000000' prob='0.047619'/>
+<uncommon_trap bci='26' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='26' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='79' bci='32'/>
+<uncommon_trap bci='32' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='32' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='23'/>
+<branch target_bci='39' taken='729' not_taken='14580' cnt='14580.000000' prob='0.047619'/>
+<bc code='190' bci='46'/>
+<uncommon_trap bci='46' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='47'/>
+<branch target_bci='63' taken='729' not_taken='1896' cnt='2625.000000' prob='0.277714'/>
+<uncommon_trap bci='50' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='50' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='79' bci='56'/>
+<uncommon_trap bci='56' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='56' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='47'/>
+<branch target_bci='63' taken='729' not_taken='1896' cnt='1896.000000' prob='0.277714'/>
+<bc code='190' bci='70'/>
+<uncommon_trap bci='70' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='71'/>
+<branch target_bci='98' taken='729' not_taken='0' cnt='729.000000' prob='always'/>
+<uncommon_trap bci='71' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='110'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1093' name='getTextLength' return='975' flags='0' bytes='10' compile_id='855' compiler='c1' level='3' iicount='1016'/>
+<call method='1098' count='729' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='729.000000' stamp='0.583'>
+<bc code='185' bci='4'/>
+<klass id='1100' name='java.lang.CharSequence' flags='1537'/>
+<method id='1101' holder='1100' name='length' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1101' count='-1' prof_factor='0.717520' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='4'/>
+<parse_done nodes='388' live='375' memory='85528' stamp='0.584'/>
+</parse>
+<parse_done nodes='400' live='386' memory='88320' stamp='0.584'/>
+</parse>
+<loop_tree>
+<loop idx='406' inner_loop='1' >
+</loop>
+<loop idx='407' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='422' >
+</loop>
+<loop idx='428' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='422' inner_loop='1' >
+</loop>
+<loop idx='428' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1521' nmethods='918' adapters='270' free_code_cache='246140928'/>
+<task_done success='1' nmsize='408' count='919' backedge_count='20648' inlined_bytes='10' stamp='0.586'/>
+</task>
+<task compile_id='993' method='java.lang.StringBuilder &lt;init&gt; ()V' bytes='7' count='5129' iicount='5129' stamp='0.607'>
+<type id='977' name='void'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1093' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='5131'/>
+<parse method='1093' uses='5131.000000' stamp='0.607'>
+<bc code='183' bci='3'/>
+<type id='975' name='int'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='961' compiler='c2' level='4' iicount='5250'/>
+<call method='1095' count='5124' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5131.000000' stamp='0.607'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='58066'/>
+<call method='1096' count='5241' prof_factor='0.977333' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='5131.000000' stamp='0.607'>
+<parse_done nodes='59' live='58' memory='25824' stamp='0.607'/>
+</parse>
+<bc code='153' bci='7'/>
+<branch target_bci='25' taken='0' not_taken='5250' cnt='5250.000000' prob='never'/>
+<parse_done nodes='265' live='263' memory='60456' stamp='0.607'/>
+</parse>
+<parse_done nodes='271' live='268' memory='62792' stamp='0.607'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1606' nmethods='983' adapters='270' free_code_cache='245913600'/>
+<task_done success='1' nmsize='472' count='5289' inlined_bytes='40' stamp='0.609'/>
+</task>
+</compilation_log>
+<compilation_log thread='25161'>
+<start_compile_thread name='C2 CompilerThread3' thread='25161' process='25109' stamp='0.106'/>
+<task compile_id='128' method='java.util.ImmutableCollections$SetN$1 hasNext ()Z' bytes='47' count='5441' backedge_count='2632' iicount='5441' stamp='0.158'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.ImmutableCollections$SetN$1' flags='0'/>
+<method id='1094' holder='1093' name='hasNext' return='969' flags='1' bytes='47' compile_id='56' compiler='c1' level='3' iicount='5441'/>
+<parse method='1094' uses='5441.000000' stamp='0.158'>
+<bc code='180' bci='8'/>
+<uncommon_trap bci='8' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='11'/>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='12'/>
+<branch target_bci='45' taken='176' not_taken='7900' cnt='8076.000000' prob='0.021793'/>
+<uncommon_trap bci='15' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='19'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='26' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='27'/>
+<branch target_bci='32' taken='2635' not_taken='5265' cnt='7900.000000' prob='0.333544'/>
+<bc code='162' bci='12'/>
+<branch target_bci='45' taken='176' not_taken='7900' cnt='2635.000000' prob='0.021793'/>
+<parse_done nodes='209' live='200' memory='49896' stamp='0.158'/>
+</parse>
+<loop_tree>
+<loop idx='218' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='228' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='444' nmethods='131' adapters='162' free_code_cache='248551552'/>
+<task_done success='1' nmsize='216' count='6694' backedge_count='3244' stamp='0.159'/>
+</task>
+<task compile_id='326' method='java.lang.StringLatin1 indexOf ([BII)I' bytes='61' count='915' backedge_count='18096' iicount='915' stamp='0.250'>
+<type id='975' name='int'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='indexOf' return='975' arguments='1085 975 975' flags='9' bytes='61' compile_id='117' compiler='c1' level='3' iicount='915'/>
+<parse method='1094' uses='915.000000' stamp='0.250'>
+<bc code='184' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1096' holder='1093' name='canEncode' return='969' arguments='975' flags='9' bytes='13' compile_id='50' compiler='c1' level='3' iicount='4245'/>
+<call method='1096' count='788' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='788.000000' stamp='0.250'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='4245' cnt='4245.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='54' live='52' memory='26032' stamp='0.250'/>
+</parse>
+<bc code='154' bci='4'/>
+<branch target_bci='9' taken='788' not_taken='0' cnt='788.000000' prob='always'/>
+<bc code='190' bci='10'/>
+<uncommon_trap bci='10' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='156' bci='13'/>
+<branch target_bci='21' taken='788' not_taken='0' cnt='788.000000' prob='always'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='161' bci='23'/>
+<branch target_bci='28' taken='703' not_taken='85' cnt='788.000000' prob='0.892132'/>
+<bc code='162' bci='38'/>
+<branch target_bci='59' taken='558' not_taken='16607' cnt='17165.000000' prob='0.032508'/>
+<uncommon_trap bci='41' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='41' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='44'/>
+<uncommon_trap bci='44' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='47'/>
+<branch target_bci='53' taken='16462' not_taken='145' cnt='16607.000000' prob='0.991269'/>
+<bc code='162' bci='38'/>
+<branch target_bci='59' taken='558' not_taken='16607' cnt='16462.000000' prob='0.032508'/>
+<parse_done nodes='191' live='181' memory='49120' stamp='0.250'/>
+</parse>
+<loop_tree>
+<loop idx='199' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='286' inner_loop='1' main_loop='286' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='252' inner_loop='1' pre_loop='199' >
+</loop>
+<loop idx='329' inner_loop='1' main_loop='329' >
+</loop>
+<loop idx='224' inner_loop='1' post_loop='199' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='252' inner_loop='1' pre_loop='199' >
+</loop>
+<loop idx='393' inner_loop='1' main_loop='393' >
+</loop>
+<loop idx='224' inner_loop='1' post_loop='199' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='252' inner_loop='1' pre_loop='199' >
+</loop>
+<loop idx='393' inner_loop='1' main_loop='393' >
+</loop>
+<loop idx='224' inner_loop='1' post_loop='199' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='252' inner_loop='1' pre_loop='199' >
+</loop>
+<loop idx='393' inner_loop='1' main_loop='393' >
+</loop>
+<loop idx='224' inner_loop='1' post_loop='199' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='742' nmethods='342' adapters='239' free_code_cache='248112640'/>
+<task_done success='1' nmsize='440' count='964' backedge_count='19872' inlined_bytes='13' stamp='0.254'/>
+</task>
+<task compile_id='372' method='java.util.Objects requireNonNull (Ljava/lang/Object;)Ljava/lang/Object;' bytes='14' count='5403' iicount='5403' stamp='0.262'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.Objects' flags='17'/>
+<method id='1094' holder='1093' name='requireNonNull' return='982' arguments='982' flags='9' bytes='14' compile_id='20' compiler='c1' level='3' iicount='5407'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<uncommon_trap method='1094' bci='4' reason='unloaded' action='reinterpret' index='12' debug_id='0' klass='1089'/>
+<parse method='1094' uses='5407.000000' stamp='0.262'>
+<bc code='199' bci='1'/>
+<branch target_bci='12' taken='5407' not_taken='0' cnt='5407.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='37' live='35' memory='23176' stamp='0.262'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='777' nmethods='373' adapters='241' free_code_cache='248001280'/>
+<task_done success='1' nmsize='88' count='5411' stamp='0.262'/>
+</task>
+<task compile_id='506' compile_kind='osr' method='java.util.Arrays fill ([BIIB)V' bytes='28' count='401' backedge_count='58038' iicount='401' osr_bci='10' stamp='0.319'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<type id='973' name='byte'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1094' holder='1093' name='fill' return='977' arguments='1085 975 975 973' flags='9' bytes='28' compile_id='505' compiler='c1' level='3' iicount='401'/>
+<parse method='1094' uses='401.000000' osr_bci='10' stamp='0.319'>
+<uncommon_trap bci='10' reason='constraint' action='reinterpret' debug_id='0'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='27' taken='105' not_taken='59535' cnt='59640.000000' prob='0.00176056'/>
+<bc code='84' bci='20'/>
+<uncommon_trap bci='20' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='20' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='159' live='153' memory='44640' stamp='0.320'/>
+</parse>
+<loop_tree>
+<loop idx='169' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='225' main_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='343' inner_loop='1' main_loop='343' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='343' inner_loop='1' main_loop='343' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='383' inner_loop='1' main_loop='383' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='427' inner_loop='1' main_loop='427' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='497' inner_loop='1' main_loop='497' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='497' inner_loop='1' main_loop='497' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='682' inner_loop='1' main_loop='682' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='715' inner_loop='1' main_loop='715' >
+</loop>
+<loop idx='654' inner_loop='1' post_loop='497' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='762' inner_loop='1' main_loop='762' >
+</loop>
+<loop idx='654' inner_loop='1' post_loop='497' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='282' inner_loop='1' pre_loop='225' >
+</loop>
+<loop idx='762' inner_loop='1' main_loop='762' >
+</loop>
+<loop idx='654' inner_loop='1' post_loop='497' >
+</loop>
+<loop idx='239' inner_loop='1' post_loop='225' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='939' nmethods='514' adapters='254' free_code_cache='247738880'/>
+<task_done success='1' nmsize='504' count='401' backedge_count='63239' stamp='0.324'/>
+</task>
+<task compile_id='560' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkEntityLimit (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='50' count='5454' iicount='5456' stamp='0.334'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1095' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1096' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1095 975 975' flags='4' bytes='50' compile_id='510' compiler='c1' level='3' iicount='5458'/>
+<parse method='1096' uses='5458.000000' stamp='0.334'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='5458' cnt='5458.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='5458' cnt='5458.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='58' live='55' memory='26640' stamp='0.334'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='993' nmethods='556' adapters='260' free_code_cache='247610240'/>
+<task_done success='1' nmsize='184' count='6153' stamp='0.335'/>
+</task>
+<task compile_id='589' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanLiteral (ILcom/sun/org/apache/xerces/internal/xni/XMLString;Z)I' bytes='755' count='2208' backedge_count='18620' iicount='2209' stamp='0.342'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanLiteral' return='975' arguments='975 1094 969' flags='4' bytes='755' compile_id='540' compiler='c1' level='3' iicount='2216'/>
+<parse method='1095' uses='2216.000000' stamp='0.342'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='28' taken='1923' not_taken='4' cnt='1927.000000' prob='0.997924'/>
+<bc code='182' bci='21'/>
+<method id='1106' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='8'/>
+<call method='1106' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='160' bci='44'/>
+<branch target_bci='94' taken='1923' not_taken='0' cnt='1923.000000' prob='always'/>
+<uncommon_trap bci='44' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='95'/>
+<uncommon_trap bci='95' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='98'/>
+<uncommon_trap bci='98' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='112'/>
+<uncommon_trap bci='112' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='112' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='122'/>
+<branch target_bci='130' taken='0' not_taken='1927' cnt='1927.000000' prob='never'/>
+<uncommon_trap bci='122' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='134'/>
+<branch target_bci='151' taken='0' not_taken='1927' cnt='1927.000000' prob='never'/>
+<uncommon_trap bci='134' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='141'/>
+<branch target_bci='501' taken='1927' not_taken='0' cnt='1927.000000' prob='always'/>
+<uncommon_trap bci='141' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='515'/>
+<branch target_bci='617' taken='4' not_taken='18625' cnt='18629.000000' prob='0.000214719'/>
+<uncommon_trap bci='518' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='518' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='522'/>
+<uncommon_trap bci='522' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='532'/>
+<uncommon_trap bci='532' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='532' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='538'/>
+<branch target_bci='558' taken='16748' not_taken='1877' cnt='18625.000000' prob='0.899221'/>
+<bc code='153' bci='548'/>
+<branch target_bci='617' taken='1877' not_taken='0' cnt='1877.000000' prob='always'/>
+<uncommon_trap bci='548' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='159' bci='562'/>
+<branch target_bci='617' taken='0' not_taken='16748' cnt='16748.000000' prob='never'/>
+<uncommon_trap bci='562' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='567'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1104' holder='1103' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='509' compiler='c1' level='3' iicount='20092'/>
+<call method='1104' count='16748' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='16748.000000' stamp='0.345'>
+<bc code='162' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='24983' cnt='24983.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='154' bci='14'/>
+<branch target_bci='29' taken='24557' not_taken='426' cnt='24983.000000' prob='0.982948'/>
+<bc code='163' bci='20'/>
+<branch target_bci='33' taken='426' not_taken='0' cnt='426.000000' prob='always'/>
+<parse_done nodes='457' live='440' memory='116336' stamp='0.345'/>
+</parse>
+<bc code='154' bci='570'/>
+<branch target_bci='576' taken='16702' not_taken='46' cnt='16748.000000' prob='0.997253'/>
+<bc code='153' bci='580'/>
+<branch target_bci='601' taken='0' not_taken='16702' cnt='16702.000000' prob='never'/>
+<uncommon_trap bci='580' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='587'/>
+<branch target_bci='601' taken='16702' not_taken='0' cnt='16702.000000' prob='always'/>
+<uncommon_trap bci='587' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='606'/>
+<uncommon_trap bci='606' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='515'/>
+<branch target_bci='617' taken='4' not_taken='18625' cnt='16702.000000' prob='0.000214719'/>
+<bc code='180' bci='621'/>
+<uncommon_trap bci='621' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='656'/>
+<type id='977' name='void'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1099' holder='1093' name='checkEntityLimit' return='977' arguments='1098 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<call method='1099' count='1927' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='1927.000000' stamp='0.346'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='621' live='597' memory='160992' stamp='0.346'/>
+</parse>
+<bc code='153' bci='660'/>
+<branch target_bci='678' taken='1927' not_taken='0' cnt='1927.000000' prob='always'/>
+<uncommon_trap bci='660' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='683'/>
+<uncommon_trap bci='683' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='690'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1100' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='583' compiler='c2' level='4' iicount='2592'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<call method='1100' count='1927' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='1927.000000' stamp='0.346'>
+<uncommon_trap bci='690' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='847' live='819' memory='198240' stamp='0.346'/>
+</parse>
+<bc code='180' bci='697'/>
+<uncommon_trap bci='697' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='707'/>
+<branch target_bci='749' taken='4' not_taken='1923' cnt='1927.000000' prob='0.00207577'/>
+<bc code='52' bci='724'/>
+<uncommon_trap bci='724' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='724' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='730'/>
+<branch target_bci='752' taken='46' not_taken='1877' cnt='1923.000000' prob='0.023921'/>
+<bc code='153' bci='740'/>
+<branch target_bci='752' taken='1877' not_taken='0' cnt='1877.000000' prob='always'/>
+<uncommon_trap bci='740' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='970' live='937' memory='220240' stamp='0.347'/>
+</parse>
+<loop_tree>
+<loop idx='986' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='986' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='986' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='986' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1164' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1164' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1398' inner_loop='1' main_loop='1398' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1325' inner_loop='1' pre_loop='1164' >
+</loop>
+<loop idx='1398' inner_loop='1' main_loop='1398' >
+</loop>
+<loop idx='1259' inner_loop='1' post_loop='1164' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1325' inner_loop='1' pre_loop='1164' >
+</loop>
+<loop idx='1398' inner_loop='1' main_loop='1398' >
+</loop>
+<loop idx='1259' inner_loop='1' post_loop='1164' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1100'/>
+<code_cache total_blobs='1061' nmethods='597' adapters='261' free_code_cache='247414528'/>
+<task_done success='1' nmsize='1608' count='6421' backedge_count='53518' inlined_bytes='101' stamp='0.358'/>
+</task>
+<task compile_id='617' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getString ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='76' count='6338' iicount='6338' stamp='0.358'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='getString' return='1094' flags='4' bytes='76' compile_id='542' compiler='c1' level='3' iicount='6338'/>
+<parse method='1095' uses='6338.000000' stamp='0.358'>
+<bc code='161' bci='8'/>
+<branch target_bci='25' taken='2936' not_taken='3402' cnt='6338.000000' prob='0.463238'/>
+<bc code='182' bci='19'/>
+<klass id='1097' name='java.util.ArrayList' flags='1'/>
+<type id='975' name='int'/>
+<method id='1100' holder='1097' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1100'/>
+<call method='1100' count='3200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1100' uses='3402.000000' stamp='0.358'>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='71' live='69' memory='29120' stamp='0.358'/>
+</parse>
+<bc code='162' bci='22'/>
+<branch target_bci='47' taken='2' not_taken='3400' cnt='3402.000000' prob='0.000587889'/>
+<bc code='183' bci='51'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1094' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='83'/>
+<call method='1101' count='2' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='2.000000' stamp='0.359'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1106' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='25049'/>
+<call method='1106' count='-1' prof_factor='0.024096' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='-1.000000' stamp='0.359'>
+<parse_done nodes='139' live='136' memory='42600' stamp='0.359'/>
+</parse>
+<parse_done nodes='143' live='139' memory='44104' stamp='0.359'/>
+</parse>
+<bc code='182' bci='70'/>
+<type id='969' name='boolean'/>
+<method id='1102' holder='1097' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='698'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1102'/>
+<call method='1102' count='2' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='2.000000' stamp='0.359'>
+<uncommon_trap bci='70' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='20'/>
+<klass id='1109' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1110' holder='1097' name='add' return='977' arguments='982 1109 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='698'/>
+<call method='1110' count='-1' prof_factor='0.002865' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='-1.000000' stamp='0.359'>
+<bc code='190' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='7'/>
+<method id='1112' holder='1097' name='grow' return='1109' flags='2' bytes='11' iicount='122'/>
+<call method='1112' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='7'/>
+<bc code='83' bci='14'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='14' reason='array_check' action='maybe_recompile' debug_id='0' klass='1109'/>
+<cast_up reason='monomorphic_array' from='1109' to='(exact)'/>
+<parse_done nodes='478' live='468' memory='105312' stamp='0.359'/>
+</parse>
+<parse_done nodes='491' live='480' memory='109152' stamp='0.359'/>
+</parse>
+<bc code='182' bci='40'/>
+<method id='1099' holder='1097' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='526' compiler='c1' level='3' iicount='6541'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1099'/>
+<call method='1099' count='5960' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='6336.000000' stamp='0.359'>
+<uncommon_trap bci='40' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='5'/>
+<klass id='1117' name='java.util.Objects' flags='17'/>
+<method id='1118' holder='1117' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='6769'/>
+<call method='1118' count='6297' prof_factor='0.968659' inline='1'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1118' uses='6336.000000' stamp='0.359'>
+<bc code='184' bci='3'/>
+<klass id='1122' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1121' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1123' holder='1121' name='checkIndex' return='975' arguments='975 975 1122' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='6769'/>
+<call method='1123' count='6510' prof_factor='0.936032' inline='1'/>
+<uncommon_trap bci='3' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='3' reason='range_check' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_Preconditions_checkIndex' nodes='26'/>
+<parse_done nodes='577' live='561' memory='133424' stamp='0.359'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1119' holder='1097' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='6572'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1119'/>
+<call method='1119' count='6297' prof_factor='0.968659' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1119' uses='6336.000000' stamp='0.359'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='627' live='608' memory='141184' stamp='0.359'/>
+</parse>
+<parse_done nodes='628' live='608' memory='141520' stamp='0.359'/>
+</parse>
+<bc code='192' bci='43'/>
+<uncommon_trap bci='43' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='43' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='663' live='640' memory='146504' stamp='0.359'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1100'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1119'/>
+<code_cache total_blobs='1069' nmethods='600' adapters='262' free_code_cache='247393536'/>
+<task_done success='1' nmsize='1000' count='6656' inlined_bytes='100' stamp='0.368'/>
+</task>
+<task compile_id='623' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl addAttribute (Lcom/sun/org/apache/xerces/internal/xni/QName;Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='679' count='6659' backedge_count='36' iicount='6659' stamp='0.368'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1096' holder='1093' name='addAttribute' return='975' arguments='1094 983 983 1095' flags='1' bytes='679' compile_id='548' compiler='c1' level='3' iicount='6659'/>
+<parse method='1096' uses='6659.000000' stamp='0.369'>
+<bc code='162' bci='6'/>
+<branch target_bci='152' taken='5' not_taken='6653' cnt='6658.000000' prob='0.000750976'/>
+<bc code='180' bci='10'/>
+<uncommon_trap bci='10' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='13'/>
+<branch target_bci='41' taken='6653' not_taken='0' cnt='6653.000000' prob='always'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='46'/>
+<method id='1104' holder='1093' name='getIndexFast' return='975' arguments='983' flags='1' bytes='38' compile_id='593' compiler='c2' level='4' iicount='3612'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1104'/>
+<call method='1104' count='6271' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='6653.000000' stamp='0.369'>
+<bc code='162' bci='7'/>
+<branch target_bci='36' taken='3170' not_taken='21476' cnt='24646.000000' prob='0.128621'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='18'/>
+<uncommon_trap bci='18' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='25'/>
+<branch target_bci='30' taken='21476' not_taken='0' cnt='21476.000000' prob='always'/>
+<uncommon_trap bci='25' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='7'/>
+<branch target_bci='36' taken='3170' not_taken='21476' cnt='21476.000000' prob='0.128621'/>
+<parse_done nodes='240' live='230' memory='74064' stamp='0.369'/>
+</parse>
+<bc code='160' bci='54'/>
+<branch target_bci='609' taken='0' not_taken='6653' cnt='6653.000000' prob='never'/>
+<bc code='190' bci='78'/>
+<uncommon_trap bci='78' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='79'/>
+<branch target_bci='609' taken='6653' not_taken='0' cnt='6653.000000' prob='always'/>
+<uncommon_trap bci='79' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='153'/>
+<uncommon_trap bci='153' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='156'/>
+<branch target_bci='188' taken='5' not_taken='0'/>
+<bc code='182' bci='163'/>
+<method id='1111' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='17716'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='163'/>
+<uncommon_trap bci='163' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='166'/>
+<branch target_bci='188' taken='0' not_taken='0'/>
+<bc code='182' bci='178'/>
+<method id='1112' holder='1093' name='getIndexFast' return='975' arguments='983 983' flags='1' bytes='52' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='178'/>
+<bc code='160' bci='185'/>
+<branch target_bci='609' taken='0' not_taken='0'/>
+<bc code='153' bci='192'/>
+<branch target_bci='224' taken='1' not_taken='4'/>
+<bc code='159' bci='201'/>
+<branch target_bci='224' taken='3' not_taken='1'/>
+<bc code='164' bci='210'/>
+<branch target_bci='233' taken='0' not_taken='1'/>
+<bc code='164' bci='221'/>
+<branch target_bci='233' taken='1' not_taken='0'/>
+<bc code='182' bci='225'/>
+<type id='977' name='void'/>
+<method id='1101' holder='1093' name='prepareAndPopulateTableView' return='977' flags='4' bytes='9' iicount='4'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1101'/>
+<call method='1101' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='225'/>
+<bc code='182' bci='238'/>
+<method id='1102' holder='1093' name='getTableViewBucket' return='975' arguments='983' flags='4' bytes='14' iicount='85'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<call method='1102' count='5' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='238'/>
+<bc code='46' bci='249'/>
+<uncommon_trap bci='249' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='249' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='254'/>
+<branch target_bci='388' taken='0' not_taken='5'/>
+<bc code='190' bci='278'/>
+<uncommon_trap bci='278' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='279'/>
+<branch target_bci='349' taken='4' not_taken='1'/>
+<bc code='190' bci='306'/>
+<uncommon_trap bci='306' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='307'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1109' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1109' count='1' prof_factor='1.000000' inline='1'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl$Attribute' flags='8'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<uncommon_trap bci='289' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<intrinsic id='_arraycopy' nodes='48'/>
+<bc code='190' bci='314'/>
+<uncommon_trap bci='314' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='322'/>
+<branch target_bci='343' taken='1' not_taken='21'/>
+<uncommon_trap bci='325' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='325' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='333'/>
+<method id='1110' holder='1099' name='&lt;init&gt;' return='977' flags='0' bytes='27' iicount='48'/>
+<call method='1110' count='20' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='21.000000' stamp='0.372'>
+<bc code='183' bci='1'/>
+<method id='1118' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='25899'/>
+<call method='1118' count='-1' prof_factor='0.437500' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1118' uses='-1.000000' stamp='0.372'>
+<parse_done nodes='810' live='787' memory='193080' stamp='0.372'/>
+</parse>
+<bc code='183' bci='9'/>
+<method id='1119' holder='1094' name='&lt;init&gt;' return='977' flags='1' bytes='9' iicount='160'/>
+<call method='1119' count='-1' prof_factor='0.437500' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1119' uses='-1.000000' stamp='0.372'>
+<bc code='183' bci='1'/>
+<call method='1118' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1118' uses='-1.000000' stamp='0.372'>
+<parse_done nodes='878' live='854' memory='211040' stamp='0.373'/>
+</parse>
+<bc code='182' bci='5'/>
+<method id='1123' holder='1094' name='clear' return='977' flags='1' bytes='21' iicount='162'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1123'/>
+<call method='1123' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1123' uses='-1.000000' stamp='0.373'>
+<parse_done nodes='926' live='901' memory='218664' stamp='0.373'/>
+</parse>
+<parse_done nodes='939' live='913' memory='222360' stamp='0.373'/>
+</parse>
+<bc code='183' bci='20'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl' flags='1'/>
+<method id='1120' holder='1100' name='&lt;init&gt;' return='977' flags='1' bytes='17' iicount='49'/>
+<call method='1120' count='-1' prof_factor='0.437500' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='-1.000000' stamp='0.373'>
+<bc code='183' bci='1'/>
+<call method='1118' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1118' uses='-1.000000' stamp='0.373'>
+<parse_done nodes='1154' live='1127' memory='275536' stamp='0.374'/>
+</parse>
+<bc code='183' bci='10'/>
+<klass id='1126' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$SmallContainer' flags='0'/>
+<method id='1127' holder='1126' name='&lt;init&gt;' return='977' arguments='1100' flags='0' bytes='25' iicount='49'/>
+<call method='1127' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1127' uses='-1.000000' stamp='0.374'>
+<bc code='183' bci='7'/>
+<klass id='1128' name='com.sun.org.apache.xerces.internal.util.AugmentationsImpl$AugmentationsItemsContainer' flags='1024'/>
+<method id='1130' holder='1128' name='&lt;init&gt;' return='977' arguments='1100' flags='0' bytes='10' iicount='49'/>
+<call method='1130' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1128' x='1126'/>
+<parse method='1130' uses='-1.000000' stamp='0.374'>
+<bc code='183' bci='6'/>
+<call method='1118' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1118' uses='-1.000000' stamp='0.374'>
+<parse_done nodes='1240' live='1212' memory='296152' stamp='0.374'/>
+</parse>
+<parse_done nodes='1262' live='1233' memory='300112' stamp='0.374'/>
+</parse>
+<parse_done nodes='1448' live='1418' memory='328400' stamp='0.375'/>
+</parse>
+<bc code='181' bci='13'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1128' x='1126'/>
+<parse_done nodes='1610' live='1579' memory='353936' stamp='0.376'/>
+</parse>
+<parse_done nodes='1763' live='1731' memory='378208' stamp='0.376'/>
+</parse>
+<bc code='83' bci='336'/>
+<uncommon_trap bci='336' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='322'/>
+<branch target_bci='343' taken='1' not_taken='21'/>
+<bc code='79' bci='359'/>
+<uncommon_trap bci='359' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='359' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='50' bci='366'/>
+<uncommon_trap bci='366' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='366' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='181' bci='368'/>
+<uncommon_trap bci='368' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='383'/>
+<uncommon_trap bci='383' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='383' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='83' bci='384'/>
+<uncommon_trap bci='384' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='384' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<bc code='50' bci='397'/>
+<uncommon_trap bci='397' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='397' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='402'/>
+<branch target_bci='436' taken='0' not_taken='0'/>
+<uncommon_trap bci='405' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='405' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='407'/>
+<uncommon_trap bci='407' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='410'/>
+<uncommon_trap bci='410' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='417'/>
+<branch target_bci='423' taken='0' not_taken='0'/>
+<bc code='198' bci='402'/>
+<branch target_bci='436' taken='0' not_taken='0'/>
+<bc code='199' bci='438'/>
+<branch target_bci='599' taken='0' not_taken='0'/>
+<bc code='190' bci='462'/>
+<uncommon_trap bci='462' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='463'/>
+<branch target_bci='533' taken='0' not_taken='0'/>
+<bc code='190' bci='490'/>
+<uncommon_trap bci='490' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='491'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<uncommon_trap bci='473' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<intrinsic id='_arraycopy' nodes='45'/>
+<bc code='190' bci='498'/>
+<uncommon_trap bci='498' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='506'/>
+<branch target_bci='527' taken='0' not_taken='0'/>
+<uncommon_trap bci='509' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='509' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='517'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='517'/>
+<bc code='83' bci='520'/>
+<uncommon_trap bci='520' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='506'/>
+<branch target_bci='527' taken='0' not_taken='0'/>
+<bc code='161' bci='537'/>
+<branch target_bci='565' taken='0' not_taken='0'/>
+<bc code='50' bci='546'/>
+<uncommon_trap bci='546' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='546' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='547'/>
+<uncommon_trap bci='547' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='551'/>
+<method id='1105' holder='1094' name='setValues' return='977' arguments='1094' flags='1' bytes='33' compile_id='549' compiler='c1' level='3' iicount='6667'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='551'/>
+<uncommon_trap bci='551' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='559'/>
+<method id='1108' holder='1093' name='rebalanceTableView' return='977' arguments='975' flags='2' bytes='28' iicount='1'/>
+<call method='1108' count='0' prof_factor='1.000000' inline='1'/>
+<klass id='1133' name='com.sun.org.apache.xerces.internal.util.PrimeNumberSequenceGenerator' unloaded='1'/>
+<uncommon_trap method='1108' bci='19' reason='unloaded' action='reinterpret' index='278' debug_id='0' klass='1133'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='559'/>
+<bc code='50' bci='571'/>
+<uncommon_trap bci='571' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='571' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='50' bci='578'/>
+<uncommon_trap bci='578' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='578' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='181' bci='579'/>
+<uncommon_trap bci='579' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='594'/>
+<uncommon_trap bci='594' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='594' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='83' bci='595'/>
+<uncommon_trap bci='595' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='595' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<bc code='182' bci='604'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1104'/>
+<call method='1104' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='604'/>
+<bc code='180' bci='610'/>
+<uncommon_trap bci='610' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='615'/>
+<uncommon_trap bci='615' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='615' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='620'/>
+<uncommon_trap bci='620' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='624'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<call method='1105' count='6276' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='6658.000000' stamp='0.379'>
+<uncommon_trap bci='624' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4566' live='4491' memory='987768' stamp='0.380'/>
+</parse>
+<bc code='198' bci='663'/>
+<branch target_bci='676' taken='0' not_taken='6658' cnt='6658.000000' prob='never'/>
+<uncommon_trap bci='663' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='671'/>
+<klass id='1106' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<method id='1107' holder='1106' name='removeAllItems' return='977' flags='1025' bytes='0' iicount='1'/>
+<call method='1107' count='6276' prof_factor='1.000000' virtual='1' inline='1' receiver='1100' receiver_count='6276'/>
+<method id='1136' holder='1100' name='removeAllItems' return='977' flags='1' bytes='8' compile_id='550' compiler='c1' level='3' iicount='7672'/>
+<call method='1136' count='6276' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='671' klass='1100'/>
+<uncommon_trap bci='671' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='671' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1136' uses='6658.000000' stamp='0.380'>
+<bc code='180' bci='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1128' x='1126'/>
+<bc code='182' bci='4'/>
+<method id='1139' holder='1126' name='clear' return='977' flags='1' bytes='41' compile_id='551' compiler='c1' level='3' iicount='7682'/>
+<dependency type='unique_concrete_method' ctxk='1126' x='1139'/>
+<call method='1139' count='7168' prof_factor='0.867831' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='6658.000000' stamp='0.380'>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='9'/>
+<branch target_bci='35' taken='7682' not_taken='0' cnt='7682.000000' prob='always'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='5379' live='5298' memory='1134832' stamp='0.381'/>
+</parse>
+<parse_done nodes='5395' live='5313' memory='1138000' stamp='0.381'/>
+</parse>
+<parse_done nodes='5415' live='5332' memory='1142088' stamp='0.381'/>
+</parse>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' >
+</loop>
+<loop idx='5470' >
+</loop>
+<loop idx='5476' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' inner_loop='1' >
+</loop>
+<loop idx='5470' inner_loop='1' >
+</loop>
+<loop idx='5476' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' inner_loop='1' >
+</loop>
+<loop idx='5470' inner_loop='1' >
+</loop>
+<loop idx='5476' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' inner_loop='1' >
+</loop>
+<loop idx='5470' inner_loop='1' >
+</loop>
+<loop idx='5921' inner_loop='1' main_loop='5921' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' inner_loop='1' >
+</loop>
+<loop idx='5470' inner_loop='1' >
+</loop>
+<loop idx='5860' inner_loop='1' pre_loop='5476' >
+</loop>
+<loop idx='5921' inner_loop='1' main_loop='5921' >
+</loop>
+<loop idx='5809' inner_loop='1' post_loop='5476' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' inner_loop='1' >
+</loop>
+<loop idx='5470' inner_loop='1' >
+</loop>
+<loop idx='5860' inner_loop='1' pre_loop='5476' >
+</loop>
+<loop idx='5921' inner_loop='1' main_loop='5921' >
+</loop>
+<loop idx='5809' inner_loop='1' post_loop='5476' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='5455' inner_loop='1' >
+</loop>
+<loop idx='5464' inner_loop='1' >
+</loop>
+<loop idx='5470' inner_loop='1' >
+</loop>
+<loop idx='5860' inner_loop='1' pre_loop='5476' >
+</loop>
+<loop idx='5921' inner_loop='1' main_loop='5921' >
+</loop>
+<loop idx='5809' inner_loop='1' post_loop='5476' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='leaf_type' ctxk='1099'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1128' x='1126'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1112'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1101'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1105'/>
+<dependency type='unique_concrete_method' ctxk='1126' x='1139'/>
+<code_cache total_blobs='1253' nmethods='726' adapters='262' free_code_cache='246717952'/>
+<task_done success='1' nmsize='11792' count='16523' backedge_count='36' inlined_bytes='225' stamp='0.451'/>
+</task>
+<task compile_id='734' method='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser characters (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V' bytes='78' count='6414' iicount='6414' stamp='0.457'>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.parsers.SAXParser' flags='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1099'/>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<method id='1096' holder='1093' name='characters' return='977' arguments='1094 1095' flags='1' bytes='78' compile_id='568' compiler='c1' level='3' iicount='6414'/>
+<klass id='1101' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<uncommon_trap method='1096' bci='31' reason='unloaded' action='reinterpret' index='528' debug_id='0' klass='1101'/>
+<parse method='1096' uses='6414.000000' stamp='0.457'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<uncommon_trap bci='1' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='4'/>
+<branch target_bci='8' taken='6414' not_taken='0' cnt='6414.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='9'/>
+<assert_null reason='field' klass='1101'/>
+<uncommon_trap bci='12' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='12'/>
+<branch target_bci='36' taken='6414' not_taken='0' cnt='6414.000000' prob='always'/>
+<bc code='198' bci='40'/>
+<branch target_bci='64' taken='0' not_taken='6414' cnt='6414.000000' prob='never'/>
+<uncommon_trap bci='40' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='59'/>
+<klass id='1098' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1102' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1103' holder='1102' name='characters' return='977' arguments='1082 975 975' flags='1025' bytes='0' iicount='1'/>
+<call method='1103' count='6155' prof_factor='1.000000' virtual='1' inline='1' receiver='1098' receiver_count='6155'/>
+<klass id='1107' name='org.xml.sax.helpers.DefaultHandler' flags='1'/>
+<method id='1108' holder='1107' name='characters' return='977' arguments='1082 975 975' flags='1' bytes='1' compile_id='569' compiler='c1' level='3' iicount='6420'/>
+<call method='1108' count='6155' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='59' klass='1098'/>
+<uncommon_trap bci='59' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='59' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1108' uses='6414.000000' stamp='0.457'>
+<parse_done nodes='152' live='145' memory='43464' stamp='0.457'/>
+</parse>
+<parse_done nodes='155' live='147' memory='43840' stamp='0.457'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1099'/>
+<code_cache total_blobs='1262' nmethods='729' adapters='262' free_code_cache='246710656'/>
+<task_done success='1' nmsize='280' count='6474' stamp='0.458'/>
+</task>
+<task compile_id='743' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack nextElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='129' count='5378' iicount='5378' stamp='0.466'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1095' holder='1093' name='nextElement' return='1094' flags='1' bytes='129' compile_id='574' compiler='c1' level='3' iicount='5380'/>
+<parse method='1095' uses='5380.000000' stamp='0.466'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='7'/>
+<branch target_bci='37' taken='5380' not_taken='0' cnt='5380.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='190' bci='45'/>
+<uncommon_trap bci='45' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='46'/>
+<branch target_bci='112' taken='5380' not_taken='0' cnt='5380.000000' prob='always'/>
+<uncommon_trap bci='46' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='127'/>
+<uncommon_trap bci='127' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='132' live='126' memory='39304' stamp='0.466'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1283' nmethods='739' adapters='262' free_code_cache='246654976'/>
+<task_done success='1' nmsize='248' count='5416' stamp='0.467'/>
+</task>
+<task compile_id='748' method='com.sun.hotspot.tools.compiler.LogParser endElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='718' count='5537' iicount='5537' stamp='0.470'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1094' holder='1093' name='endElement' return='977' arguments='983 983 983' flags='1' bytes='718' compile_id='596' compiler='c1' level='3' iicount='5537'/>
+<klass id='1129' name='java.lang.System' unloaded='1'/>
+<uncommon_trap method='1094' bci='636' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1129'/>
+<uncommon_trap method='1094' bci='572' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1129'/>
+<uncommon_trap method='1094' bci='297' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1129'/>
+<parse method='1094' uses='5537.000000' stamp='0.470'>
+<observe that='has_exception_handlers'/>
+<bc code='182' bci='4'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1099' count='5125' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5537.000000' stamp='0.470'>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1139' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='60789'/>
+<call method='1139' count='4199' prof_factor='0.990873' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4495.000000' stamp='0.470'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='102' live='99' memory='49992' stamp='0.470'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1139' count='4199' prof_factor='0.990873' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4495.000000' stamp='0.470'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='124' live='120' memory='53008' stamp='0.470'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1140' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='96126'/>
+<call method='1140' count='4199' prof_factor='0.990873' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1140' uses='4495.000000' stamp='0.470'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96126' cnt='96126.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96125' cnt='96126.000000' prob='1.0403e-05'/>
+<parse_done nodes='170' live='164' memory='62304' stamp='0.470'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1143' name='java.lang.StringLatin1' flags='16'/>
+<method id='1144' holder='1143' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4507'/>
+<call method='1144' count='4199' prof_factor='0.990873' inline='1'/>
+<intrinsic id='_equalsL' nodes='16'/>
+<parse_done nodes='210' live='202' memory='67704' stamp='0.471'/>
+</parse>
+<bc code='153' bci='7'/>
+<branch target_bci='40' taken='5277' not_taken='260' cnt='5537.000000' prob='0.953043'/>
+<bc code='185' bci='14'/>
+<klass id='1096' name='java.util.ArrayDeque' flags='1'/>
+<klass id='1109' name='java.util.Deque' flags='1537'/>
+<method id='1111' holder='1109' name='pop' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' count='241' prof_factor='1.000000' virtual='1' inline='1' receiver='1096' receiver_count='241'/>
+<method id='1151' holder='1096' name='pop' return='982' flags='1' bytes='5' compile_id='678' compiler='c1' level='3' iicount='1445'/>
+<call method='1151' count='241' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='14' klass='1096'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1151' uses='260.000000' stamp='0.471'>
+<bc code='182' bci='1'/>
+<method id='1152' holder='1096' name='removeFirst' return='982' flags='1' bytes='19' compile_id='679' compiler='c1' level='3' iicount='1445'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1152'/>
+<call method='1152' count='-1' prof_factor='0.179931' inline='1'/>
+<klass id='1155' name='java.util.NoSuchElementException' unloaded='1'/>
+<uncommon_trap method='1152' bci='9' reason='unloaded' action='reinterpret' index='32' debug_id='0' klass='1155'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1152' uses='-1.000000' stamp='0.471'>
+<bc code='182' bci='1'/>
+<method id='1154' holder='1096' name='pollFirst' return='982' flags='1' bytes='36' compile_id='665' compiler='c1' level='3' iicount='1542'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1154'/>
+<call method='1154' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1'/>
+<bc code='187' bci='9'/>
+<uncommon_trap bci='9' reason='unloaded' action='reinterpret' index='32' debug_id='0'/>
+<parse_done nodes='305' live='293' memory='86936' stamp='0.471'/>
+</parse>
+<parse_done nodes='307' live='294' memory='88248' stamp='0.471'/>
+</parse>
+<bc code='185' bci='24'/>
+<type id='975' name='int'/>
+<method id='1110' holder='1109' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' count='241' prof_factor='1.000000' virtual='1' inline='1' receiver='1096' receiver_count='241'/>
+<method id='1159' holder='1096' name='size' return='975' flags='1' bytes='17' compile_id='694' compiler='c1' level='3' iicount='490'/>
+<call method='1159' count='241' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='24' klass='1096'/>
+<uncommon_trap bci='24' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='24' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1159' uses='260.000000' stamp='0.471'>
+<bc code='190' bci='12'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='13'/>
+<method id='1160' holder='1096' name='sub' return='975' arguments='975 975 975' flags='24' bytes='14' compile_id='695' compiler='c1' level='3' iicount='490'/>
+<call method='1160' count='-1' prof_factor='0.530612' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1160' uses='-1.000000' stamp='0.471'>
+<parse_done nodes='419' live='402' memory='105984' stamp='0.471'/>
+</parse>
+<parse_done nodes='419' live='401' memory='106624' stamp='0.471'/>
+</parse>
+<bc code='154' bci='29'/>
+<branch target_bci='703' taken='153' not_taken='107' cnt='260.000000' prob='0.588462'/>
+<bc code='182' bci='43'/>
+<call method='1099' count='4884' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5277.000000' stamp='0.471'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1139' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4284.000000' stamp='0.471'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='488' live='468' memory='118248' stamp='0.471'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1139' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4284.000000' stamp='0.471'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='510' live='489' memory='121008' stamp='0.471'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1140' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1140' uses='4284.000000' stamp='0.471'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96126' cnt='96126.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96125' cnt='96126.000000' prob='1.0403e-05'/>
+<parse_done nodes='555' live='532' memory='136760' stamp='0.471'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1144' count='4199' prof_factor='0.944345' inline='1'/>
+<intrinsic id='_equalsL' nodes='15'/>
+<parse_done nodes='593' live='568' memory='141208' stamp='0.471'/>
+</parse>
+<bc code='153' bci='46'/>
+<branch target_bci='57' taken='5277' not_taken='0' cnt='5277.000000' prob='always'/>
+<uncommon_trap bci='46' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='60'/>
+<method id='1104' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' compile_id='502' compiler='c1' level='3' iicount='7138'/>
+<call method='1104' count='4884' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='5277.000000' stamp='0.471'>
+<bc code='182' bci='3'/>
+<method id='1165' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' compile_id='713' compiler='c2' level='4' iicount='7630'/>
+<call method='1165' count='7047' prof_factor='0.739283' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1165' uses='5277.000000' stamp='0.471'>
+<bc code='155' bci='1'/>
+<branch target_bci='17' taken='0' not_taken='7630' cnt='7630.000000' prob='never'/>
+<bc code='182' bci='6'/>
+<method id='1167' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='36456'/>
+<call method='1167' count='7431' prof_factor='0.691612' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1167' uses='5277.000000' stamp='0.472'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<call method='1139' count='36202' prof_factor='0.144750' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='5277.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='684' live='656' memory='156320' stamp='0.472'/>
+</parse>
+<parse_done nodes='685' live='656' memory='157576' stamp='0.472'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1167' count='7431' prof_factor='0.691612' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1167' uses='5277.000000' stamp='0.472'>
+<bc code='182' bci='6'/>
+<call method='1139' count='36202' prof_factor='0.144750' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='5277.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='722' live='692' memory='164936' stamp='0.472'/>
+</parse>
+<parse_done nodes='723' live='692' memory='165136' stamp='0.472'/>
+</parse>
+<bc code='164' bci='14'/>
+<branch target_bci='19' taken='2570' not_taken='5060' cnt='7630.000000' prob='0.336828'/>
+<bc code='182' bci='39'/>
+<call method='1139' count='2503' prof_factor='0.691612' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='1777.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='763' live='731' memory='170728' stamp='0.472'/>
+</parse>
+<bc code='182' bci='43'/>
+<call method='1139' count='2503' prof_factor='0.691612' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='1777.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='785' live='752' memory='173664' stamp='0.472'/>
+</parse>
+<bc code='160' bci='46'/>
+<branch target_bci='95' taken='0' not_taken='2570' cnt='2570.000000' prob='never'/>
+<uncommon_trap bci='46' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='50'/>
+<call method='1140' count='2503' prof_factor='0.691612' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1140' uses='1777.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96126' cnt='96126.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96125' cnt='96126.000000' prob='1.0403e-05'/>
+<parse_done nodes='830' live='795' memory='181248' stamp='0.472'/>
+</parse>
+<bc code='153' bci='53'/>
+<branch target_bci='60' taken='0' not_taken='2570' cnt='2570.000000' prob='never'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='69'/>
+<branch target_bci='92' taken='381' not_taken='7150' cnt='7531.000000' prob='0.0505909'/>
+<uncommon_trap bci='72' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='72' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='78'/>
+<uncommon_trap bci='78' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='78' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='86'/>
+<uncommon_trap bci='86' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='87'/>
+<branch target_bci='65' taken='4961' not_taken='2189' cnt='7150.000000' prob='0.693846'/>
+<bc code='162' bci='69'/>
+<branch target_bci='92' taken='381' not_taken='7150' cnt='7531.000000' prob='0.0505909'/>
+<parse_done nodes='971' live='927' memory='202576' stamp='0.472'/>
+</parse>
+<parse_done nodes='972' live='927' memory='202776' stamp='0.472'/>
+</parse>
+<bc code='153' bci='63'/>
+<branch target_bci='74' taken='5277' not_taken='0' cnt='5277.000000' prob='always'/>
+<uncommon_trap bci='63' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='77'/>
+<call method='1099' count='4884' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5277.000000' stamp='0.472'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1139' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4284.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='1040' live='992' memory='228360' stamp='0.472'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1139' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4284.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='1062' live='1013' memory='231208' stamp='0.472'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1140' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1140' uses='4284.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96126' cnt='96126.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96125' cnt='96126.000000' prob='1.0403e-05'/>
+<parse_done nodes='1107' live='1056' memory='239256' stamp='0.472'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1144' count='4199' prof_factor='0.944345' inline='1'/>
+<intrinsic id='_equalsL' nodes='15'/>
+<parse_done nodes='1145' live='1092' memory='244824' stamp='0.472'/>
+</parse>
+<bc code='153' bci='80'/>
+<branch target_bci='675' taken='5277' not_taken='0' cnt='5277.000000' prob='always'/>
+<uncommon_trap bci='80' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='678'/>
+<call method='1099' count='4884' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5277.000000' stamp='0.472'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1139' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4284.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='1213' live='1157' memory='255576' stamp='0.472'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1139' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='4284.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60789' cnt='60789.000000' prob='never'/>
+<parse_done nodes='1235' live='1178' memory='258848' stamp='0.472'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1140' count='4199' prof_factor='0.944345' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1140' uses='4284.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96126' cnt='96126.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96125' cnt='96126.000000' prob='1.0403e-05'/>
+<parse_done nodes='1280' live='1221' memory='267496' stamp='0.473'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1144' count='4199' prof_factor='0.944345' inline='1'/>
+<intrinsic id='_equalsL' nodes='15'/>
+<parse_done nodes='1318' live='1257' memory='271752' stamp='0.473'/>
+</parse>
+<bc code='153' bci='681'/>
+<branch target_bci='703' taken='5170' not_taken='107' cnt='5277.000000' prob='0.979723'/>
+<bc code='182' bci='688'/>
+<klass id='1097' name='java.util.HashMap' flags='1'/>
+<method id='1107' holder='1097' name='clear' return='977' flags='1' bytes='50' compile_id='700' compiler='c1' level='3' iicount='203'/>
+<call method='1107' count='99' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='99'/>
+<call method='1107' count='99' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='688' klass='1097'/>
+<uncommon_trap bci='688' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='688' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1107' uses='107.000000' stamp='0.473'>
+<uncommon_trap bci='39' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='83' bci='42'/>
+<uncommon_trap bci='42' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1558' live='1491' memory='311968' stamp='0.473'/>
+</parse>
+<bc code='182' bci='695'/>
+<call method='1107' count='99' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='99'/>
+<call method='1107' count='99' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='695' klass='1097'/>
+<uncommon_trap bci='695' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='695' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1107' uses='107.000000' stamp='0.473'>
+<uncommon_trap bci='39' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='83' bci='42'/>
+<uncommon_trap bci='42' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1782' live='1709' memory='351984' stamp='0.473'/>
+</parse>
+<bc code='183' bci='714'/>
+<klass id='992' name='java.lang.Exception' flags='1'/>
+<method id='1101' holder='1093' name='reportInternalError' return='977' arguments='983 992' flags='2' bytes='110' iicount='1'/>
+<call method='1101' count='0' prof_factor='1.000000' inline='1'/>
+<klass id='990' name='java.lang.Error' flags='1'/>
+<uncommon_trap method='1101' bci='101' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='990'/>
+<uncommon_trap method='1101' bci='91' reason='unloaded' action='reinterpret' index='30' debug_id='0' klass='990'/>
+<klass id='1178' name='org.xml.sax.Locator' flags='1537'/>
+<uncommon_trap method='1101' bci='27' reason='unloaded' action='reinterpret' index='757' debug_id='0' klass='1178'/>
+<inline_fail reason='too big'/>
+<direct_call bci='714'/>
+<uncommon_trap bci='714' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1899' live='1824' memory='372168' stamp='0.473'/>
+</parse>
+<loop_tree>
+<loop idx='2029' >
+</loop>
+<loop idx='2039' >
+</loop>
+<loop idx='2045' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2029' inner_loop='1' >
+</loop>
+<loop idx='2039' inner_loop='1' >
+</loop>
+<loop idx='2045' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2226' inner_loop='1' >
+</loop>
+<loop idx='2405' inner_loop='1' main_loop='2405' >
+</loop>
+<loop idx='2588' inner_loop='1' main_loop='2588' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2226' inner_loop='1' >
+</loop>
+<loop idx='2335' inner_loop='1' pre_loop='2039' >
+</loop>
+<loop idx='2405' inner_loop='1' main_loop='2405' >
+</loop>
+<loop idx='2273' inner_loop='1' post_loop='2039' >
+</loop>
+<loop idx='2520' inner_loop='1' pre_loop='2045' >
+</loop>
+<loop idx='2588' inner_loop='1' main_loop='2588' >
+</loop>
+<loop idx='2460' inner_loop='1' post_loop='2045' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2694' inner_loop='1' >
+</loop>
+<loop idx='2335' inner_loop='1' pre_loop='2039' >
+</loop>
+<loop idx='2405' inner_loop='1' main_loop='2405' >
+</loop>
+<loop idx='2273' inner_loop='1' post_loop='2039' >
+</loop>
+<loop idx='2520' inner_loop='1' pre_loop='2045' >
+</loop>
+<loop idx='2588' inner_loop='1' main_loop='2588' >
+</loop>
+<loop idx='2460' inner_loop='1' post_loop='2045' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2849' inner_loop='1' >
+</loop>
+<loop idx='2335' inner_loop='1' pre_loop='2039' >
+</loop>
+<loop idx='2405' inner_loop='1' main_loop='2405' >
+</loop>
+<loop idx='2273' inner_loop='1' post_loop='2039' >
+</loop>
+<loop idx='2520' inner_loop='1' pre_loop='2045' >
+</loop>
+<loop idx='2588' inner_loop='1' main_loop='2588' >
+</loop>
+<loop idx='2460' inner_loop='1' post_loop='2045' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2335' inner_loop='1' pre_loop='2039' >
+</loop>
+<loop idx='2405' inner_loop='1' main_loop='2405' >
+</loop>
+<loop idx='2273' inner_loop='1' post_loop='2039' >
+</loop>
+<loop idx='2520' inner_loop='1' pre_loop='2045' >
+</loop>
+<loop idx='2588' inner_loop='1' main_loop='2588' >
+</loop>
+<loop idx='2460' inner_loop='1' post_loop='2045' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2335' inner_loop='1' pre_loop='2039' >
+</loop>
+<loop idx='2405' inner_loop='1' main_loop='2405' >
+</loop>
+<loop idx='2273' inner_loop='1' post_loop='2039' >
+</loop>
+<loop idx='2520' inner_loop='1' pre_loop='2045' >
+</loop>
+<loop idx='2588' inner_loop='1' main_loop='2588' >
+</loop>
+<loop idx='2460' inner_loop='1' post_loop='2045' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1152'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1154'/>
+<code_cache total_blobs='1310' nmethods='749' adapters='262' free_code_cache='246612096'/>
+<task_done success='1' nmsize='3288' count='6426' inlined_bytes='979' stamp='0.488'/>
+</task>
+<task compile_id='757' method='java.util.Arrays copyOfRange ([BII)[B' bytes='63' count='5147' iicount='5147' stamp='0.494'>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.Arrays' flags='1'/>
+<method id='1094' holder='1093' name='copyOfRange' return='1085' arguments='1085 975 975' flags='9' bytes='63' compile_id='188' compiler='c1' level='3' iicount='5147'/>
+<klass id='1099' name='java.lang.IllegalArgumentException' flags='1'/>
+<uncommon_trap method='1094' bci='8' reason='unloaded' action='reinterpret' index='2' debug_id='0' klass='1099'/>
+<parse method='1094' uses='5147.000000' stamp='0.494'>
+<bc code='156' bci='5'/>
+<branch target_bci='39' taken='5147' not_taken='0' cnt='5147.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='190' bci='50'/>
+<uncommon_trap bci='50' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='54'/>
+<klass id='1096' name='java.lang.Math' flags='17'/>
+<method id='1097' holder='1096' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='15611'/>
+<call method='1097' count='5121' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='184' bci='57'/>
+<type id='977' name='void'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1098' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' count='5121' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='40' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='64'/>
+<parse_done nodes='178' live='174' memory='48896' stamp='0.494'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1321' nmethods='754' adapters='262' free_code_cache='246594432'/>
+<task_done success='1' nmsize='568' count='5175' inlined_bytes='11' stamp='0.496'/>
+</task>
+<task compile_id='779' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver next ()I' bytes='2277' count='23996' iicount='23996' decompiles='1' stamp='0.524'>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver' flags='4'/>
+<method id='1094' holder='1093' name='next' return='975' flags='1' bytes='2277' compile_id='755' compiler='c1' level='3' iicount='23996'/>
+<klass id='1135' name='com.sun.xml.internal.stream.dtd.DTDGrammarUtil' unloaded='1'/>
+<uncommon_trap method='1094' bci='1247' reason='unloaded' action='reinterpret' index='174' debug_id='0' klass='1135'/>
+<uncommon_trap method='1094' bci='816' reason='unloaded' action='reinterpret' index='174' debug_id='0' klass='1135'/>
+<klass id='1150' name='com.sun.org.apache.xerces.internal.xni.XNIException' unloaded='1'/>
+<uncommon_trap method='1094' bci='2249' reason='unloaded' action='reinterpret' index='86' debug_id='0' klass='1150'/>
+<parse method='1094' uses='23996.000000' stamp='0.524'>
+<observe that='has_exception_handlers'/>
+<uncommon_trap bci='0' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='0' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='0' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='0' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='9'/>
+<branch target_bci='94' taken='14551' not_taken='9445' cnt='23996.000000' prob='0.606393'/>
+<bc code='182' bci='19'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1120' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='656' compiler='c2' level='4' iicount='20109'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='9277' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='9445.000000' stamp='0.525'>
+<observe trap='unstable_if' count='1' total='1'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<type id='969' name='boolean'/>
+<method id='1152' holder='1096' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='71'/>
+<call method='1152' count='1' prof_factor='0.469690' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='297' live='284' memory='183864' stamp='0.525'/>
+</parse>
+<bc code='160' bci='26'/>
+<branch target_bci='53' taken='9445' not_taken='0' cnt='9445.000000' prob='always'/>
+<uncommon_trap bci='26' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='56'/>
+<branch target_bci='85' taken='9445' not_taken='0' cnt='9445.000000' prob='always'/>
+<uncommon_trap bci='56' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='91'/>
+<type id='977' name='void'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1105' holder='1100' name='setScannerState' return='977' arguments='975' flags='20' bytes='6' compile_id='511' compiler='c1' level='1' iicount='157'/>
+<call method='1105' count='9277' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='9445.000000' stamp='0.525'>
+<uncommon_trap bci='91' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='378' live='361' memory='196344' stamp='0.525'/>
+</parse>
+<bc code='180' bci='98'/>
+<uncommon_trap bci='98' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='103'/>
+<branch target_bci='110' taken='23996' not_taken='0' cnt='23996.000000' prob='always'/>
+<uncommon_trap bci='103' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='117'/>
+<branch target_bci='258' taken='23996' not_taken='0' cnt='23996.000000' prob='always'/>
+<uncommon_trap bci='117' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='187' bci='2249'/>
+<uncommon_trap bci='2249' reason='unloaded' action='reinterpret' index='86' debug_id='0'/>
+<bc code='182' bci='2206'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1102' holder='1098' name='clear' return='977' flags='1' bytes='11' compile_id='758' compiler='c1' level='1' iicount='9057'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='2206'/>
+<uncommon_trap bci='2206' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2217'/>
+<uncommon_trap bci='2217' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2221'/>
+<klass id='1103' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1114' holder='1103' name='scanCharReferenceValue' return='975' arguments='1098 1098' flags='4' bytes='763' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1114'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<klass id='1049' name='java.lang.StringBuffer' flags='17'/>
+<uncommon_trap method='1114' bci='562' reason='unloaded' action='reinterpret' index='196' debug_id='0' klass='1049'/>
+<uncommon_trap method='1114' bci='706' reason='uninitialized' action='reinterpret' debug_id='0'/>
+<uncommon_trap method='1114' bci='481' reason='unloaded' action='reinterpret' index='196' debug_id='0' klass='1049'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2221'/>
+<bc code='180' bci='2230'/>
+<uncommon_trap bci='2230' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2244'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.526'>
+<parse_done nodes='742' live='716' memory='266472' stamp='0.526'/>
+</parse>
+<bc code='153' bci='1265'/>
+<branch target_bci='1308' taken='2171' not_taken='5105' cnt='7276.000000' prob='0.298378'/>
+<bc code='182' bci='1282'/>
+<call method='1105' count='5014' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='5105.000000' stamp='0.526'>
+<uncommon_trap bci='1282' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='802' live='773' memory='275936' stamp='0.526'/>
+</parse>
+<bc code='180' bci='1289'/>
+<uncommon_trap bci='1289' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='1292'/>
+<branch target_bci='1306' taken='5105' not_taken='0' cnt='5105.000000' prob='always'/>
+<uncommon_trap bci='1292' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1312'/>
+<method id='1148' holder='1100' name='scanEndElement' return='975' flags='4' bytes='170' compile_id='675' compiler='c1' level='3' iicount='2156'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1148'/>
+<call method='1148' count='2132' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1148' bci='162' reason='unloaded' action='reinterpret' index='943' debug_id='0' klass='1135'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='2171.000000' stamp='0.526'>
+<uncommon_trap bci='1312' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='4'/>
+<klass id='1174' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<klass id='1175' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1176' holder='1174' name='popElement' return='1175' flags='1' bytes='59' compile_id='746' compiler='c2' level='4' iicount='5468'/>
+<dependency type='unique_concrete_method' ctxk='1174' x='1176'/>
+<call method='1176' count='2181' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1176' uses='2181.000000' stamp='0.526'>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='7'/>
+<branch target_bci='20' taken='0' not_taken='5468' cnt='5468.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='17'/>
+<branch target_bci='42' taken='5468' not_taken='0' cnt='5468.000000' prob='always'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='57'/>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='57' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='993' live='953' memory='309168' stamp='0.526'/>
+</parse>
+<bc code='180' bci='9'/>
+<uncommon_trap bci='9' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='21'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1117' holder='1096' name='skipString' return='969' arguments='983' flags='4' bytes='122' compile_id='676' compiler='c1' level='3' iicount='2531'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<call method='1117' count='2181' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1117' uses='2181.000000' stamp='0.526'>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1'/>
+<method id='1189' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='39226'/>
+<call method='1189' count='2573' prof_factor='0.861715' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='2217.000000' stamp='0.526'>
+<uncommon_trap bci='1' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1194' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='64518'/>
+<call method='1194' count='38949' prof_factor='0.056519' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1194' uses='2217.000000' stamp='0.526'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='64518' cnt='64518.000000' prob='never'/>
+<parse_done nodes='1107' live='1062' memory='360560' stamp='0.527'/>
+</parse>
+<parse_done nodes='1110' live='1064' memory='361472' stamp='0.527'/>
+</parse>
+<bc code='182' bci='8'/>
+<method id='1190' holder='1096' name='arrangeCapacity' return='969' arguments='975 969' flags='1' bytes='227' compile_id='673' compiler='c1' level='3' iicount='2588'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1190'/>
+<call method='1190' count='2573' prof_factor='0.861715' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1190' uses='2217.000000' stamp='0.527'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='16'/>
+<branch target_bci='21' taken='1' not_taken='2587' cnt='2588.000000' prob='0.000386399'/>
+<uncommon_trap bci='23' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='23' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='27'/>
+<uncommon_trap bci='27' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='39'/>
+<branch target_bci='204' taken='1' not_taken='1'/>
+<uncommon_trap bci='42' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='42' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='46'/>
+<uncommon_trap bci='46' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='49'/>
+<uncommon_trap bci='49' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='59'/>
+<branch target_bci='137' taken='0' not_taken='1'/>
+<bc code='182' bci='64'/>
+<method id='1158' holder='1096' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='72'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1158'/>
+<call method='1158' count='1' prof_factor='0.856646' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='64'/>
+<bc code='180' bci='71'/>
+<uncommon_trap bci='71' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='104'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1198' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1198' count='1' prof_factor='0.856646' inline='1'/>
+<uncommon_trap bci='104' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='104' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='89'/>
+<bc code='180' bci='115'/>
+<uncommon_trap bci='115' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='141'/>
+<uncommon_trap bci='141' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='153'/>
+<branch target_bci='23' taken='0' not_taken='1'/>
+<bc code='182' bci='168'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1158'/>
+<call method='1158' count='1' prof_factor='0.856646' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='168'/>
+<bc code='180' bci='176'/>
+<uncommon_trap bci='176' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='181'/>
+<call method='1152' count='1' prof_factor='0.856646' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='181'/>
+<bc code='181' bci='191'/>
+<uncommon_trap bci='191' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='195'/>
+<branch target_bci='201' taken='1' not_taken='0'/>
+<bc code='162' bci='39'/>
+<branch target_bci='204' taken='1' not_taken='1'/>
+<bc code='180' bci='208'/>
+<uncommon_trap bci='208' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='220'/>
+<branch target_bci='225' taken='0' not_taken='1'/>
+<parse_done nodes='1713' live='1648' memory='473152' stamp='0.527'/>
+</parse>
+<bc code='153' bci='11'/>
+<branch target_bci='120' taken='0' not_taken='2573' cnt='2573.000000' prob='never'/>
+<uncommon_trap bci='11' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='180' bci='18'/>
+<uncommon_trap bci='18' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='46'/>
+<type id='970' name='char'/>
+<method id='1191' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='91036'/>
+<call method='1191' count='12724' prof_factor='0.861715' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1191' uses='10964.000000' stamp='0.527'>
+<bc code='183' bci='1'/>
+<method id='1205' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='108425'/>
+<call method='1205' count='90664' prof_factor='0.120436' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1205' uses='10964.000000' stamp='0.528'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='108425' cnt='108425.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='108424' cnt='108425.000000' prob='9.22296e-06'/>
+<parse_done nodes='1806' live='1738' memory='490440' stamp='0.528'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='91036' cnt='91036.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1208' name='java.lang.StringLatin1' flags='16'/>
+<method id='1209' holder='1208' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='89980'/>
+<call method='1209' count='90664' prof_factor='0.120436' inline='1'/>
+<klass id='1212' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1209' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1212'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1209' uses='10964.000000' stamp='0.528'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='89980' cnt='89980.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='89980' not_taken='0' cnt='89980.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1905' live='1831' memory='511608' stamp='0.528'/>
+</parse>
+<parse_done nodes='1910' live='1835' memory='513280' stamp='0.528'/>
+</parse>
+<bc code='180' bci='53'/>
+<uncommon_trap bci='53' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='58'/>
+<uncommon_trap bci='58' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='58' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='59'/>
+<branch target_bci='120' taken='0' not_taken='12724' cnt='12724.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<uncommon_trap bci='62' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='62' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='68'/>
+<branch target_bci='40' taken='10151' not_taken='2573' cnt='12724.000000' prob='0.797784'/>
+<bc code='180' bci='79'/>
+<uncommon_trap bci='79' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='104'/>
+<branch target_bci='118' taken='0' not_taken='2573' cnt='2573.000000' prob='never'/>
+<uncommon_trap bci='104' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='115'/>
+<klass id='1108' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1119' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1192' holder='1096' name='checkEntityLimit' return='977' arguments='1108 1119 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1192'/>
+<call method='1192' count='2573' prof_factor='0.861715' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1192' uses='2217.000000' stamp='0.528'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2127' live='2041' memory='607904' stamp='0.528'/>
+</parse>
+<bc code='182' bci='46'/>
+<call method='1191' count='12724' prof_factor='0.861715' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1191' uses='10964.000000' stamp='0.528'>
+<bc code='183' bci='1'/>
+<call method='1205' count='90664' prof_factor='0.120436' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1205' uses='10964.000000' stamp='0.528'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='108425' cnt='108425.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='108424' cnt='108425.000000' prob='9.22296e-06'/>
+<parse_done nodes='2180' live='2092' memory='618864' stamp='0.528'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='91036' cnt='91036.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1209' count='90664' prof_factor='0.120436' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1209' uses='10964.000000' stamp='0.528'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='89980' cnt='89980.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='89980' not_taken='0' cnt='89980.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='2277' live='2183' memory='642704' stamp='0.528'/>
+</parse>
+<parse_done nodes='2282' live='2187' memory='643864' stamp='0.528'/>
+</parse>
+<bc code='180' bci='53'/>
+<uncommon_trap bci='53' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='58'/>
+<uncommon_trap bci='58' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='58' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='59'/>
+<branch target_bci='120' taken='0' not_taken='12724' cnt='12724.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2348' live='2249' memory='655768' stamp='0.529'/>
+</parse>
+<bc code='154' bci='24'/>
+<branch target_bci='42' taken='2181' not_taken='0' cnt='2181.000000' prob='always'/>
+<bc code='182' bci='46'/>
+<method id='1177' holder='1096' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='732' compiler='c2' level='4' iicount='30911'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1177'/>
+<call method='1177' count='2181' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='46'/>
+<uncommon_trap bci='46' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='59'/>
+<method id='1109' holder='1096' name='skipChar' return='969' arguments='975 1108' flags='4' bytes='285' compile_id='738' compiler='c2' level='4' iicount='11786'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='2181' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='2181.000000' stamp='0.529'>
+<observe trap='unstable_if' count='2' total='3'/>
+<uncommon_trap bci='59' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='11786' not_taken='2' cnt='11788.000000' prob='0.99983'/>
+<bc code='182' bci='21'/>
+<call method='1152' count='2' prof_factor='0.185050' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='2087' not_taken='9701' cnt='11788.000000' prob='0.177044'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='9701' not_taken='0' cnt='9701.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1192'/>
+<call method='1192' count='9484' prof_factor='0.185050' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1192' uses='1795.000000' stamp='0.529'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2631' live='2524' memory='707464' stamp='0.529'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='2087' not_taken='0' cnt='2087.000000' prob='always'/>
+<parse_done nodes='2644' live='2535' memory='710192' stamp='0.529'/>
+</parse>
+<bc code='154' bci='62'/>
+<branch target_bci='80' taken='2181' not_taken='0' cnt='2181.000000' prob='always'/>
+<uncommon_trap bci='62' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='46' bci='114'/>
+<uncommon_trap bci='114' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='114' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='115'/>
+<branch target_bci='132' taken='2181' not_taken='0' cnt='2181.000000' prob='always'/>
+<uncommon_trap bci='115' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='136'/>
+<branch target_bci='150' taken='0' not_taken='2181' cnt='2181.000000' prob='never'/>
+<uncommon_trap bci='136' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='145'/>
+<klass id='1186' name='com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser' flags='9'/>
+<klass id='1180' name='com.sun.org.apache.xerces.internal.xni.Augmentations' flags='1537'/>
+<klass id='1178' name='com.sun.org.apache.xerces.internal.xni.XMLDocumentHandler' flags='1537'/>
+<method id='1181' holder='1178' name='endElement' return='977' arguments='1175 1180' flags='1025' bytes='0' iicount='1'/>
+<call method='1181' count='2181' prof_factor='1.000000' virtual='1' inline='1' receiver='1186' receiver_count='2181'/>
+<klass id='1222' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser' flags='1025'/>
+<method id='1223' holder='1222' name='endElement' return='977' arguments='1175 1180' flags='1' bytes='108' compile_id='747' compiler='c2' level='4' iicount='5644'/>
+<call method='1223' count='2181' prof_factor='1.000000' inline='1'/>
+<klass id='1225' name='org.xml.sax.DocumentHandler' unloaded='1'/>
+<uncommon_trap method='1223' bci='15' reason='unloaded' action='reinterpret' index='528' debug_id='0' klass='1225'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='145' klass='1186'/>
+<uncommon_trap bci='145' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='145' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<klass id='1230' name='com.sun.org.apache.xerces.internal.parsers.SAXParser' flags='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1222' x='1230'/>
+<parse method='1223' uses='2181.000000' stamp='0.529'>
+<observe that='has_exception_handlers'/>
+<bc code='180' bci='1'/>
+<assert_null reason='field' klass='1225'/>
+<uncommon_trap bci='4' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='4'/>
+<branch target_bci='20' taken='5644' not_taken='0' cnt='5644.000000' prob='always'/>
+<bc code='198' bci='24'/>
+<branch target_bci='94' taken='0' not_taken='5644' cnt='5644.000000' prob='never'/>
+<uncommon_trap bci='24' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='198' bci='36'/>
+<branch target_bci='46' taken='5644' not_taken='0' cnt='5644.000000' prob='always'/>
+<uncommon_trap bci='36' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='53'/>
+<branch target_bci='63' taken='5644' not_taken='0' cnt='5644.000000' prob='always'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='78'/>
+<klass id='1232' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<klass id='1226' name='org.xml.sax.ContentHandler' flags='1537'/>
+<method id='1227' holder='1226' name='endElement' return='977' arguments='983 983 983' flags='1025' bytes='0' iicount='1'/>
+<call method='1227' count='5248' prof_factor='0.386428' virtual='1' inline='1' receiver='1232' receiver_count='5248'/>
+<method id='1235' holder='1232' name='endElement' return='977' arguments='983 983 983' flags='1' bytes='718' compile_id='748' compiler='c2' level='4' iicount='6426'/>
+<call method='1235' count='5248' prof_factor='0.386428' inline='1'/>
+<klass id='1269' name='java.lang.System' unloaded='1'/>
+<uncommon_trap method='1235' bci='636' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1269'/>
+<uncommon_trap method='1235' bci='572' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1269'/>
+<uncommon_trap method='1235' bci='297' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1269'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='78' klass='1232'/>
+<uncommon_trap bci='78' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='78' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='78'/>
+<klass id='1224' name='org.xml.sax.SAXException' unloaded='1'/>
+<uncommon_trap bci='97' reason='unloaded' action='reinterpret' debug_id='0' klass='1224' comment='!loaded exception'/>
+<bc code='153' bci='87'/>
+<branch target_bci='94' taken='5644' not_taken='0' cnt='5644.000000' prob='always'/>
+<uncommon_trap bci='87' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='3019' live='2893' memory='787560' stamp='0.530'/>
+</parse>
+<bc code='180' bci='151'/>
+<assert_null reason='field' klass='1135'/>
+<uncommon_trap bci='154' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='154'/>
+<branch target_bci='165' taken='2181' not_taken='0' cnt='2181.000000' prob='always'/>
+<parse_done nodes='3050' live='2922' memory='793400' stamp='0.530'/>
+</parse>
+<bc code='154' bci='1315'/>
+<branch target_bci='1327' taken='2171' not_taken='0' cnt='2171.000000' prob='always'/>
+<uncommon_trap bci='1315' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1333'/>
+<call method='1105' count='2132' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='2171.000000' stamp='0.530'>
+<uncommon_trap bci='1333' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3125' live='2994' memory='804984' stamp='0.530'/>
+</parse>
+<bc code='182' bci='427'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl' flags='1'/>
+<method id='1147' holder='1100' name='scanStartElement' return='969' flags='4' bytes='446' compile_id='728' compiler='c2' level='4' iicount='7122'/>
+<call method='1147' count='7145' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='7145'/>
+<call method='1147' count='7145' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1147' bci='413' reason='unloaded' action='reinterpret' index='943' debug_id='0' klass='1135'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='427' klass='1097'/>
+<uncommon_trap bci='427' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='427'/>
+<bc code='180' bci='437'/>
+<uncommon_trap bci='437' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='440'/>
+<branch target_bci='455' taken='2170' not_taken='5104' cnt='7274.000000' prob='0.298323'/>
+<bc code='182' bci='449'/>
+<call method='1105' count='5013' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='5104.000000' stamp='0.531'>
+<uncommon_trap bci='449' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3248' live='3112' memory='824952' stamp='0.531'/>
+</parse>
+<bc code='182' bci='461'/>
+<call method='1105' count='2131' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='2170.000000' stamp='0.531'>
+<uncommon_trap bci='461' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3279' live='3141' memory='831448' stamp='0.531'/>
+</parse>
+<bc code='154' bci='477'/>
+<branch target_bci='500' taken='0' not_taken='9445' cnt='9445.000000' prob='never'/>
+<uncommon_trap bci='477' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='487'/>
+<branch target_bci='500' taken='0' not_taken='9445' cnt='9445.000000' prob='never'/>
+<uncommon_trap bci='487' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='497'/>
+<branch target_bci='504' taken='9445' not_taken='0' cnt='9445.000000' prob='always'/>
+<uncommon_trap bci='497' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='512'/>
+<uncommon_trap bci='512' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='515'/>
+<branch target_bci='583' taken='9445' not_taken='0' cnt='9445.000000' prob='always'/>
+<uncommon_trap bci='515' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='590'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='9277' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='9445.000000' stamp='0.531'>
+<uncommon_trap bci='590' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3427' live='3281' memory='860976' stamp='0.531'/>
+</parse>
+<bc code='181' bci='601'/>
+<uncommon_trap bci='601' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='618'/>
+<klass id='1126' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1132' holder='1096' name='scanContent' return='975' arguments='1126' flags='4' bytes='690' compile_id='724' compiler='c2' level='4' iicount='6079'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1132'/>
+<call method='1132' count='9277' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='618'/>
+<uncommon_trap bci='618' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='626'/>
+<uncommon_trap bci='626' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='632'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='9277' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='9445.000000' stamp='0.531'>
+<observe trap='unstable_if' count='2' total='5'/>
+<uncommon_trap bci='632' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='11786' not_taken='2' cnt='11788.000000' prob='0.99983'/>
+<bc code='182' bci='21'/>
+<call method='1152' count='2' prof_factor='0.801374' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='2087' not_taken='9701' cnt='11788.000000' prob='0.177044'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='9701' not_taken='0' cnt='9701.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1192'/>
+<call method='1192' count='9484' prof_factor='0.801374' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1192' uses='7774.000000' stamp='0.531'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3767' live='3611' memory='920904' stamp='0.531'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='2087' not_taken='0' cnt='2087.000000' prob='always'/>
+<parse_done nodes='3780' live='3622' memory='923440' stamp='0.531'/>
+</parse>
+<bc code='153' bci='635'/>
+<branch target_bci='827' taken='0' not_taken='9445' cnt='9445.000000' prob='never'/>
+<uncommon_trap bci='635' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='180' bci='642'/>
+<uncommon_trap bci='642' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='650'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='9277' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='9445.000000' stamp='0.532'>
+<observe trap='unstable_if' count='2' total='7'/>
+<uncommon_trap bci='650' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='11786' not_taken='2' cnt='11788.000000' prob='0.99983'/>
+<bc code='182' bci='21'/>
+<call method='1152' count='2' prof_factor='0.801374' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='2087' not_taken='9701' cnt='11788.000000' prob='0.177044'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='9701' not_taken='0' cnt='9701.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1192'/>
+<call method='1192' count='9484' prof_factor='0.801374' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1192' uses='7774.000000' stamp='0.532'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='4064' live='3897' memory='979280' stamp='0.532'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='2087' not_taken='0' cnt='2087.000000' prob='always'/>
+<parse_done nodes='4077' live='3908' memory='982424' stamp='0.532'/>
+</parse>
+<bc code='153' bci='653'/>
+<branch target_bci='689' taken='7275' not_taken='2172' cnt='9447.000000' prob='0.770086'/>
+<bc code='180' bci='661'/>
+<uncommon_trap bci='661' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='683'/>
+<call method='1105' count='2133' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='2172.000000' stamp='0.532'>
+<uncommon_trap bci='683' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4168' live='3996' memory='1096632' stamp='0.532'/>
+</parse>
+<bc code='180' bci='693'/>
+<uncommon_trap bci='693' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='696'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='7145' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='7275.000000' stamp='0.532'>
+<observe trap='unstable_if' count='1' total='8'/>
+<uncommon_trap bci='696' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<call method='1152' count='1' prof_factor='0.361778' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='4357' live='4176' memory='1134288' stamp='0.532'/>
+</parse>
+<bc code='184' bci='699'/>
+<klass id='1138' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1146' holder='1138' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='36320'/>
+<call method='1146' count='7145' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1146' uses='7275.000000' stamp='0.532'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='37970' cnt='37970.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='37970' cnt='37970.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='4423' live='4240' memory='1149896' stamp='0.533'/>
+</parse>
+<bc code='153' bci='702'/>
+<branch target_bci='738' taken='0' not_taken='7275' cnt='7275.000000' prob='never'/>
+<bc code='180' bci='710'/>
+<uncommon_trap bci='710' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='732'/>
+<call method='1105' count='7145' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='7275.000000' stamp='0.533'>
+<uncommon_trap bci='732' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='4494' live='4308' memory='1168072' stamp='0.533'/>
+</parse>
+<bc code='180' bci='779'/>
+<uncommon_trap bci='779' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='782'/>
+<branch target_bci='792' taken='9441' not_taken='5' cnt='9446.000000' prob='0.999471'/>
+<bc code='184' bci='789'/>
+<method id='1133' holder='1100' name='access$100' return='977' arguments='1100' flags='4104' bytes='5' iicount='20'/>
+<call method='1133' count='5' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1133' uses='5.000000' stamp='0.533'>
+<bc code='183' bci='1'/>
+<method id='1309' holder='1100' name='bufferContent' return='977' flags='2' bytes='25' iicount='27'/>
+<call method='1309' count='-1' prof_factor='0.250000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='1'/>
+<parse_done nodes='4559' live='4371' memory='1181232' stamp='0.533'/>
+</parse>
+<bc code='180' bci='796'/>
+<uncommon_trap bci='796' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<assert_null reason='field' klass='1135'/>
+<uncommon_trap bci='799' reason='null_assert_or_unreached0' action='make_not_entrant' debug_id='0' comment='assert_null'/>
+<bc code='198' bci='799'/>
+<branch target_bci='825' taken='9446' not_taken='0' cnt='9446.000000' prob='always'/>
+<bc code='182' bci='1907'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<call method='1117' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1907'/>
+<uncommon_trap bci='1907' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1910'/>
+<branch target_bci='2145' taken='0' not_taken='0'/>
+<bc code='180' bci='1918'/>
+<uncommon_trap bci='1918' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1937'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1937'/>
+<uncommon_trap bci='1937' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1940'/>
+<method id='1121' holder='1103' name='isValidNameChar' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='0.000000' stamp='0.533'>
+<bc code='184' bci='1'/>
+<method id='1312' holder='1138' name='isName' return='969' arguments='975' flags='9' bytes='23' iicount='1'/>
+<call method='1312' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='4797' live='4602' memory='1240856' stamp='0.533'/>
+</parse>
+<bc code='153' bci='1943'/>
+<branch target_bci='2137' taken='0' not_taken='0'/>
+<bc code='180' bci='1950'/>
+<uncommon_trap bci='1950' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1953'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1953'/>
+<uncommon_trap bci='1953' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1960'/>
+<uncommon_trap bci='1960' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1965'/>
+<method id='1124' holder='1098' name='append' return='977' arguments='983' flags='1' bytes='103' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1124'/>
+<call method='1124' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1965'/>
+<uncommon_trap bci='1965' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1972'/>
+<uncommon_trap bci='1972' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1975'/>
+<branch target_bci='2023' taken='0' not_taken='0'/>
+<bc code='182' bci='1989'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1989'/>
+<uncommon_trap bci='1989' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1992'/>
+<method id='1131' holder='1103' name='isValidNCName' return='969' arguments='975' flags='4' bytes='5' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1131'/>
+<call method='1131' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='0.000000' stamp='0.533'>
+<bc code='184' bci='1'/>
+<method id='1315' holder='1138' name='isNCName' return='969' arguments='975' flags='9' bytes='24' iicount='1'/>
+<call method='1315' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='5066' live='4864' memory='1279376' stamp='0.533'/>
+</parse>
+<bc code='153' bci='1995'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<uncommon_trap bci='1998' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='1998' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2002'/>
+<uncommon_trap bci='2002' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2013'/>
+<method id='1129' holder='1096' name='scanChar' return='975' arguments='1108' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1129'/>
+<call method='1129' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2013'/>
+<uncommon_trap bci='2013' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2017'/>
+<method id='1130' holder='1098' name='append' return='977' arguments='970' flags='1' bytes='87' compile_id='730' compiler='c1' level='3' iicount='401'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1130'/>
+<call method='1130' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2017'/>
+<uncommon_trap bci='2017' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1986'/>
+<uncommon_trap bci='1986' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1989'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1989'/>
+<uncommon_trap bci='1989' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1992'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1131'/>
+<call method='1131' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='0.000000' stamp='0.534'>
+<bc code='184' bci='1'/>
+<call method='1315' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='5341' live='5131' memory='1320584' stamp='0.534'/>
+</parse>
+<bc code='153' bci='1995'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<bc code='182' bci='2034'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2034'/>
+<uncommon_trap bci='2034' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2037'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='0.000000' stamp='0.534'>
+<bc code='184' bci='1'/>
+<call method='1312' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='5455' live='5243' memory='1336872' stamp='0.534'/>
+</parse>
+<bc code='153' bci='2040'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<uncommon_trap bci='2043' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2043' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2047'/>
+<uncommon_trap bci='2047' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2058'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1129'/>
+<call method='1129' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2058'/>
+<uncommon_trap bci='2058' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2062'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1130'/>
+<call method='1130' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2062'/>
+<uncommon_trap bci='2062' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2031'/>
+<uncommon_trap bci='2031' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2034'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<call method='1120' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2034'/>
+<uncommon_trap bci='2034' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2037'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<call method='1121' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1121' uses='0.000000' stamp='0.534'>
+<bc code='184' bci='1'/>
+<call method='1312' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1'/>
+<parse_done nodes='5729' live='5509' memory='1376952' stamp='0.534'/>
+</parse>
+<bc code='153' bci='2040'/>
+<branch target_bci='2068' taken='0' not_taken='0'/>
+<bc code='180' bci='2072'/>
+<uncommon_trap bci='2072' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2082'/>
+<uncommon_trap bci='2082' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2105'/>
+<klass id='1125' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1127' holder='1125' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='4925'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1127'/>
+<call method='1127' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='2105'/>
+<uncommon_trap bci='2105' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2113'/>
+<uncommon_trap bci='2113' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2116'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='2116'/>
+<uncommon_trap bci='2116' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2128'/>
+<uncommon_trap bci='2128' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2131'/>
+<method id='1128' holder='1100' name='scanPIData' return='977' arguments='983 1098' flags='4' bytes='22' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1128'/>
+<call method='1128' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='2131'/>
+<bc code='182' bci='2142'/>
+<method id='1122' holder='1100' name='scanXMLDeclOrTextDecl' return='977' arguments='969' flags='4' bytes='183' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1122'/>
+<call method='1122' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2142'/>
+<uncommon_trap bci='2142' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2149'/>
+<uncommon_trap bci='2149' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='2152'/>
+<uncommon_trap bci='2152' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='181' bci='2156'/>
+<uncommon_trap bci='2156' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2165'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.535'>
+<parse_done nodes='6116' live='5885' memory='1445440' stamp='0.535'/>
+</parse>
+<bc code='153' bci='1398'/>
+<branch target_bci='1458' taken='0' not_taken='0'/>
+<bc code='154' bci='1408'/>
+<branch target_bci='1431' taken='0' not_taken='0'/>
+<bc code='154' bci='1418'/>
+<branch target_bci='1431' taken='0' not_taken='0'/>
+<bc code='180' bci='1425'/>
+<uncommon_trap bci='1425' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1428'/>
+<branch target_bci='1458' taken='0' not_taken='0'/>
+<bc code='181' bci='1436'/>
+<uncommon_trap bci='1436' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1462'/>
+<uncommon_trap bci='1462' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1465'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1465'/>
+<uncommon_trap bci='1465' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='181' bci='1473'/>
+<uncommon_trap bci='1473' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1488'/>
+<method id='1115' holder='1100' name='scanCDATASection' return='969' arguments='1098 969' flags='4' bytes='126' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1115'/>
+<call method='1115' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1488'/>
+<bc code='182' bci='1498'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.535'>
+<uncommon_trap bci='1498' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='6396' live='6158' memory='1490000' stamp='0.535'/>
+</parse>
+<bc code='153' bci='1508'/>
+<branch target_bci='1522' taken='0' not_taken='0'/>
+<bc code='153' bci='1529'/>
+<branch target_bci='1554' taken='0' not_taken='0'/>
+<bc code='154' bci='1539'/>
+<branch target_bci='1551' taken='0' not_taken='0'/>
+<bc code='182' bci='1548'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.536'>
+<parse_done nodes='6478' live='6239' memory='1503088' stamp='0.536'/>
+</parse>
+<bc code='153' bci='1584'/>
+<branch target_bci='1644' taken='0' not_taken='0'/>
+<bc code='154' bci='1594'/>
+<branch target_bci='1617' taken='0' not_taken='0'/>
+<bc code='154' bci='1604'/>
+<branch target_bci='1617' taken='0' not_taken='0'/>
+<bc code='180' bci='1611'/>
+<uncommon_trap bci='1611' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1614'/>
+<branch target_bci='1644' taken='0' not_taken='0'/>
+<bc code='181' bci='1622'/>
+<uncommon_trap bci='1622' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1648'/>
+<uncommon_trap bci='1648' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1651'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1651'/>
+<uncommon_trap bci='1651' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='181' bci='1659'/>
+<uncommon_trap bci='1659' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1674'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1674'/>
+<uncommon_trap bci='1674' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1677'/>
+<branch target_bci='1730' taken='0' not_taken='0'/>
+<bc code='180' bci='1688'/>
+<uncommon_trap bci='1688' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1692'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1114'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1692'/>
+<bc code='180' bci='1701'/>
+<uncommon_trap bci='1701' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='1716'/>
+<branch target_bci='1878' taken='0' not_taken='0'/>
+<bc code='182' bci='1725'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.536'>
+<parse_done nodes='6884' live='6634' memory='1582944' stamp='0.536'/>
+</parse>
+<bc code='180' bci='1738'/>
+<uncommon_trap bci='1738' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1741'/>
+<method id='1110' holder='1100' name='scanEntityReference' return='977' arguments='1098' flags='4' bytes='377' iicount='2'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1741'/>
+<bc code='180' bci='1748'/>
+<uncommon_trap bci='1748' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='1753'/>
+<branch target_bci='1798' taken='0' not_taken='0'/>
+<bc code='154' bci='1763'/>
+<branch target_bci='1798' taken='0' not_taken='0'/>
+<bc code='182' bci='1772'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.536'>
+<parse_done nodes='7001' live='6747' memory='1600288' stamp='0.536'/>
+</parse>
+<bc code='153' bci='1782'/>
+<branch target_bci='1796' taken='0' not_taken='0'/>
+<bc code='180' bci='1802'/>
+<uncommon_trap bci='1802' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='1807'/>
+<branch target_bci='1821' taken='0' not_taken='0'/>
+<bc code='160' bci='1830'/>
+<branch target_bci='1878' taken='0' not_taken='0'/>
+<bc code='182' bci='1839'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.536'>
+<parse_done nodes='7106' live='6848' memory='1617992' stamp='0.536'/>
+</parse>
+<bc code='153' bci='1849'/>
+<branch target_bci='1875' taken='0' not_taken='0'/>
+<bc code='184' bci='1863'/>
+<method id='1112' holder='1100' name='access$200' return='983' arguments='1100' flags='4104' bytes='5' iicount='1'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1112' uses='0.000000' stamp='0.536'>
+<parse_done nodes='7155' live='6896' memory='1625136' stamp='0.536'/>
+</parse>
+<bc code='182' bci='1866'/>
+<klass id='1111' name='com.sun.xml.internal.stream.XMLEntityStorage' flags='1'/>
+<method id='1113' holder='1111' name='isDeclaredEntity' return='969' arguments='983' flags='1' bytes='24' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1111' x='1113'/>
+<call method='1113' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1866'/>
+<uncommon_trap bci='1866' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='1869'/>
+<branch target_bci='1875' taken='0' not_taken='0'/>
+<bc code='182' bci='1884'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.537'>
+<uncommon_trap bci='1884' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='7244' live='6981' memory='1639480' stamp='0.537'/>
+</parse>
+<bc code='182' bci='1342'/>
+<method id='1107' holder='1100' name='scanComment' return='977' flags='4' bytes='31' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1107'/>
+<call method='1107' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='1342'/>
+<bc code='182' bci='1351'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.537'>
+<uncommon_trap bci='1351' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='7323' live='7058' memory='1652504' stamp='0.537'/>
+</parse>
+<bc code='182' bci='2172'/>
+<method id='1106' holder='1093' name='scanRootElementHook' return='969' flags='4' bytes='2' iicount='1'/>
+<call method='1106' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='2172'/>
+<bc code='153' bci='2175'/>
+<branch target_bci='2188' taken='0' not_taken='0'/>
+<bc code='181' bci='2183'/>
+<uncommon_trap bci='2183' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2194'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.537'>
+<uncommon_trap bci='2194' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='7413' live='7143' memory='1666000' stamp='0.537'/>
+</parse>
+<bc code='182' bci='1363'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<call method='1102' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='1363'/>
+<uncommon_trap bci='1363' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='1374'/>
+<uncommon_trap bci='1374' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1377'/>
+<method id='1104' holder='1103' name='scanPI' return='977' arguments='1098' flags='4' bytes='39' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1104'/>
+<call method='1104' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='1377'/>
+<bc code='182' bci='1386'/>
+<call method='1105' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1105' uses='0.000000' stamp='0.537'>
+<uncommon_trap bci='1386' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='7550' live='7275' memory='1691256' stamp='0.537'/>
+</parse>
+<bc code='182' bci='2272'/>
+<klass id='1099' name='java.io.EOFException' flags='1'/>
+<method id='1101' holder='1093' name='endOfFileHook' return='977' arguments='1099' flags='4' bytes='21' iicount='1'/>
+<call method='1101' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='2272'/>
+<parse_done nodes='7576' live='7298' memory='1698808' stamp='0.537'/>
+</parse>
+<loop_tree>
+<loop idx='3780' >
+<loop idx='3781' inner_loop='1' >
+</loop>
+<loop idx='3782' inner_loop='1' >
+</loop>
+</loop>
+<loop idx='3783' inner_loop='1' >
+</loop>
+<loop idx='3784' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3780' >
+<loop idx='3781' inner_loop='1' >
+</loop>
+<loop idx='3782' inner_loop='1' >
+</loop>
+</loop>
+<loop idx='3783' inner_loop='1' >
+</loop>
+<loop idx='3784' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3780' >
+<loop idx='3781' inner_loop='1' >
+</loop>
+<loop idx='3782' inner_loop='1' >
+</loop>
+</loop>
+<loop idx='3783' inner_loop='1' >
+</loop>
+<loop idx='4430' inner_loop='1' partial_peel_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3780' >
+<loop idx='3781' inner_loop='1' >
+</loop>
+<loop idx='3782' inner_loop='1' >
+</loop>
+</loop>
+<loop idx='3783' inner_loop='1' >
+</loop>
+<loop idx='4430' inner_loop='1' partial_peel_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3780' >
+<loop idx='3781' inner_loop='1' >
+</loop>
+<loop idx='3782' inner_loop='1' >
+</loop>
+</loop>
+<loop idx='3783' inner_loop='1' >
+</loop>
+<loop idx='4430' inner_loop='1' partial_peel_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='3780' >
+<loop idx='3781' inner_loop='1' >
+</loop>
+<loop idx='3782' inner_loop='1' >
+</loop>
+</loop>
+<loop idx='3783' inner_loop='1' >
+</loop>
+<loop idx='4430' inner_loop='1' partial_peel_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1222' x='1230'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1120'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1114'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1148'/>
+<dependency type='unique_concrete_method' ctxk='1174' x='1176'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1117'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1190'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1158'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1192'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1177'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1132'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1121'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1124'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1131'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1129'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1130'/>
+<dependency type='unique_concrete_method' ctxk='1125' x='1127'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1128'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1122'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1115'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<dependency type='unique_concrete_method' ctxk='1111' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1107'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1104'/>
+<code_cache total_blobs='1533' nmethods='928' adapters='270' free_code_cache='246093312'/>
+<task_done success='1' nmsize='11976' count='28995' inlined_bytes='2105' stamp='0.591'/>
+</task>
+</compilation_log>
+<compilation_log thread='25160'>
+<start_compile_thread name='C2 CompilerThread2' thread='25160' process='25109' stamp='0.106'/>
+<task compile_id='556' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkBeforeLoad (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)I' bytes='140' count='5438' iicount='5438' stamp='0.333'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='checkBeforeLoad' return='975' arguments='1094 975 975' flags='4' bytes='140' compile_id='512' compiler='c1' level='3' iicount='5456'/>
+<parse method='1095' uses='5456.000000' stamp='0.333'>
+<bc code='180' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='18'/>
+<branch target_bci='137' taken='5456' not_taken='0' cnt='5456.000000' prob='always'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='66' live='63' memory='29392' stamp='0.333'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='984' nmethods='549' adapters='260' free_code_cache='247618432'/>
+<task_done success='1' nmsize='184' count='6311' stamp='0.334'/>
+</task>
+<task compile_id='585' method='com.sun.org.apache.xerces.internal.xni.QName setValues (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V' bytes='22' count='2400' iicount='2400' stamp='0.341'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1094' holder='1093' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='536' compiler='c1' level='3' iicount='2495'/>
+<parse method='1094' uses='2495.000000' stamp='0.343'>
+<parse_done nodes='626' live='625' memory='123400' stamp='0.344'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1039' nmethods='589' adapters='261' free_code_cache='247436672'/>
+<task_done success='1' nmsize='1048' count='4002' stamp='0.349'/>
+</task>
+<task compile_id='607' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='5386' iicount='5386' stamp='0.350'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='skipChar' return='969' arguments='975 1094' flags='4' bytes='285' compile_id='522' compiler='c1' level='3' iicount='5386'/>
+<parse method='1095' uses='5386.000000' stamp='0.351'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='5385' not_taken='0' cnt='5385.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='520' not_taken='4865' cnt='5385.000000' prob='0.0965645'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='4865' not_taken='0' cnt='4865.000000' prob='always'/>
+<uncommon_trap bci='72' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='128'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1098' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<call method='1098' count='4634' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='4865.000000' stamp='0.351'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='227' live='220' memory='54744' stamp='0.351'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='520' not_taken='0' cnt='520.000000' prob='always'/>
+<uncommon_trap bci='136' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='243' live='233' memory='57288' stamp='0.351'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<code_cache total_blobs='1051' nmethods='593' adapters='261' free_code_cache='247430656'/>
+<task_done success='1' nmsize='408' count='6243' inlined_bytes='50' stamp='0.352'/>
+</task>
+<task compile_id='613' method='com.sun.org.apache.xerces.internal.impl.XMLScanner scanAttributeValue (Lcom/sun/org/apache/xerces/internal/xni/XMLString;Lcom/sun/org/apache/xerces/internal/xni/XMLString;Ljava/lang/String;Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;IZLjava/lang/String;Z)V' bytes='991' count='5444' backedge_count='112' iicount='5444' stamp='0.356'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1095' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1096' holder='1093' name='scanAttributeValue' return='977' arguments='1094 1094 983 1095 975 969 983 969' flags='4' bytes='991' compile_id='543' compiler='c1' level='3' iicount='5444'/>
+<parse method='1096' uses='5444.000000' stamp='0.356'>
+<bc code='182' bci='7'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1101' holder='1098' name='peekChar' return='975' flags='1' bytes='63' compile_id='590' compiler='c2' level='4' iicount='7224'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1101'/>
+<call method='1101' count='5141' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5442.000000' stamp='0.356'>
+<uncommon_trap bci='7' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7224' not_taken='0' cnt='7224.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='7224' cnt='7224.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='7224' cnt='7224.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='187' live='179' memory='98648' stamp='0.357'/>
+</parse>
+<bc code='159' bci='16'/>
+<branch target_bci='45' taken='5442' not_taken='0' cnt='5442.000000' prob='always'/>
+<uncommon_trap bci='16' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='52'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1103' holder='1098' name='scanChar' return='975' arguments='1102' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<call method='1103' count='5141' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='5442.000000' stamp='0.357'>
+<uncommon_trap bci='52' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<klass id='1135' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1147' holder='1098' name='checkEntityLimit' return='977' arguments='1102 1135 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1147'/>
+<call method='1147' count='7328' prof_factor='0.715676' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1147' uses='5442.000000' stamp='0.357'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='433' live='414' memory='143240' stamp='0.357'/>
+</parse>
+<parse_done nodes='436' live='416' memory='143888' stamp='0.357'/>
+</parse>
+<bc code='182' bci='71'/>
+<method id='1104' holder='1098' name='scanLiteral' return='975' arguments='975 1094 969' flags='4' bytes='755' compile_id='540' compiler='c1' level='3' iicount='5563'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<call method='1104' count='5141' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='71'/>
+<uncommon_trap bci='71' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='80'/>
+<branch target_bci='98' taken='5442' not_taken='0' cnt='5442.000000' prob='always'/>
+<uncommon_trap bci='80' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='102'/>
+<uncommon_trap bci='102' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='105'/>
+<branch target_bci='113' taken='5442' not_taken='0' cnt='5442.000000' prob='always'/>
+<uncommon_trap bci='105' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='159' bci='117'/>
+<branch target_bci='937' taken='5390' not_taken='52' cnt='5442.000000' prob='0.990445'/>
+<bc code='182' bci='126'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.XMLStringBuffer' flags='1'/>
+<method id='1109' holder='1093' name='getStringBuffer' return='1100' flags='0' bytes='76' iicount='52'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<call method='1109' count='49' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='126'/>
+<bc code='182' bci='133'/>
+<method id='1110' holder='1100' name='clear' return='977' flags='1' bytes='11' compile_id='564' compiler='c1' level='3' iicount='759'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<call method='1110' count='49' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='52.000000' stamp='0.357'>
+<uncommon_trap bci='133' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='580' live='554' memory='187176' stamp='0.357'/>
+</parse>
+<uncommon_trap bci='136' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='136' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='139'/>
+<method id='1111' holder='1100' name='append' return='977' arguments='1094' flags='1' bytes='17' iicount='176'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1111'/>
+<call method='1111' count='91' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='139'/>
+<bc code='160' bci='146'/>
+<branch target_bci='519' taken='7' not_taken='89' cnt='96.000000' prob='0.0729167'/>
+<bc code='182' bci='158'/>
+<method id='1121' holder='1098' name='skipChar' return='969' arguments='975 1102' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1121'/>
+<call method='1121' count='84' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='158'/>
+<uncommon_trap bci='158' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='168'/>
+<branch target_bci='187' taken='0' not_taken='89' cnt='89.000000' prob='never'/>
+<uncommon_trap bci='168' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='175'/>
+<branch target_bci='187' taken='89' not_taken='0' cnt='89.000000' prob='always'/>
+<uncommon_trap bci='175' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='196'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1121'/>
+<call method='1121' count='84' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='196'/>
+<uncommon_trap bci='196' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='199'/>
+<branch target_bci='267' taken='89' not_taken='0' cnt='89.000000' prob='always'/>
+<uncommon_trap bci='199' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='274'/>
+<method id='1122' holder='1098' name='scanName' return='983' arguments='1102' flags='4' bytes='305' compile_id='534' compiler='c1' level='3' iicount='6274'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1122'/>
+<call method='1122' count='84' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='274'/>
+<uncommon_trap bci='274' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='199' bci='281'/>
+<branch target_bci='294' taken='89' not_taken='0' cnt='89.000000' prob='always'/>
+<uncommon_trap bci='281' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='300'/>
+<branch target_bci='319' taken='0' not_taken='89' cnt='89.000000' prob='never'/>
+<uncommon_trap bci='300' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='307'/>
+<branch target_bci='319' taken='89' not_taken='0' cnt='89.000000' prob='always'/>
+<uncommon_trap bci='307' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='328'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1121'/>
+<call method='1121' count='84' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='328'/>
+<uncommon_trap bci='328' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='331'/>
+<branch target_bci='352' taken='89' not_taken='0' cnt='89.000000' prob='always'/>
+<uncommon_trap bci='331' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='358'/>
+<branch target_bci='377' taken='0' not_taken='89' cnt='89.000000' prob='never'/>
+<uncommon_trap bci='358' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='365'/>
+<branch target_bci='377' taken='89' not_taken='0' cnt='89.000000' prob='always'/>
+<uncommon_trap bci='365' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='382'/>
+<method id='1123' holder='1093' name='resolveCharacter' return='969' arguments='983 1100' flags='4' bytes='109' iicount='88'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1123'/>
+<call method='1123' count='84' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='382'/>
+<bc code='153' bci='385'/>
+<branch target_bci='407' taken='0' not_taken='89' cnt='89.000000' prob='never'/>
+<uncommon_trap bci='385' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='180' bci='394'/>
+<uncommon_trap bci='394' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='397'/>
+<uncommon_trap bci='397' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='401'/>
+<method id='1137' holder='1093' name='checkEntityLimit' return='977' arguments='969 983 975' flags='0' bytes='317' iicount='134'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='84' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1137' bci='30' reason='uninitialized' action='reinterpret' debug_id='0'/>
+<inline_fail reason='too big'/>
+<direct_call bci='401'/>
+<bc code='160' bci='523'/>
+<branch target_bci='583' taken='7' not_taken='0'/>
+<bc code='83' bci='537'/>
+<observe that='!need_range_check'/>
+<bc code='83' bci='541'/>
+<observe that='!need_range_check'/>
+<bc code='182' bci='542'/>
+<klass id='1106' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1107' holder='1093' name='reportFatalError' return='977' arguments='983 1106' flags='4' bytes='18' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<call method='1107' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='542'/>
+<bc code='182' bci='550'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<call method='1103' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='550'/>
+<uncommon_trap bci='550' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='560'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='153' bci='567'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='182' bci='577'/>
+<type id='970' name='char'/>
+<method id='1112' holder='1100' name='append' return='977' arguments='970' flags='1' bytes='87' iicount='90'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='577'/>
+<uncommon_trap bci='577' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='587'/>
+<branch target_bci='597' taken='0' not_taken='7'/>
+<bc code='160' bci='594'/>
+<branch target_bci='643' taken='7' not_taken='0'/>
+<bc code='159' bci='647'/>
+<branch target_bci='657' taken='0' not_taken='7'/>
+<bc code='160' bci='654'/>
+<branch target_bci='701' taken='7' not_taken='0'/>
+<bc code='159' bci='704'/>
+<branch target_bci='772' taken='7' not_taken='0'/>
+<bc code='184' bci='709'/>
+<klass id='1117' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1118' holder='1117' name='isHighSurrogate' return='969' arguments='975' flags='9' bytes='18' iicount='1'/>
+<call method='1118' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='709'/>
+<bc code='153' bci='712'/>
+<branch target_bci='772' taken='0' not_taken='0'/>
+<bc code='182' bci='719'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<call method='1110' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='call site not reached'/>
+<direct_call bci='719'/>
+<uncommon_trap bci='719' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='727'/>
+<method id='1119' holder='1093' name='scanSurrogates' return='969' arguments='1100' flags='4' bytes='108' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1119'/>
+<call method='1119' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='727'/>
+<bc code='153' bci='730'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='182' bci='739'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1111'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='739'/>
+<bc code='160' bci='748'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='153' bci='755'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='182' bci='766'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1111'/>
+<call method='1111' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='766'/>
+<uncommon_trap bci='766' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='775'/>
+<branch target_bci='851' taken='7' not_taken='0'/>
+<bc code='182' bci='781'/>
+<method id='1114' holder='1093' name='isInvalidLiteral' return='969' arguments='975' flags='4' bytes='5' iicount='13'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1114'/>
+<call method='1114' count='0' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1114' uses='0.000000' stamp='0.361'>
+<bc code='184' bci='1'/>
+<method id='1190' holder='1117' name='isInvalid' return='969' arguments='975' flags='9' bytes='13' iicount='13'/>
+<call method='1190' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='1'/>
+<parse_done nodes='1382' live='1333' memory='367576' stamp='0.361'/>
+</parse>
+<bc code='153' bci='784'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='83' bci='798'/>
+<observe that='!need_range_check'/>
+<bc code='83' bci='802'/>
+<observe that='!need_range_check'/>
+<bc code='184' bci='809'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1116' holder='1076' name='toString' return='983' arguments='975 975' flags='9' bytes='128' iicount='1'/>
+<call method='1116' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='809'/>
+<bc code='83' bci='812'/>
+<observe that='!need_range_check'/>
+<bc code='182' bci='813'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<call method='1107' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='never executed'/>
+<direct_call bci='813'/>
+<bc code='182' bci='821'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<call method='1103' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='821'/>
+<uncommon_trap bci='821' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='831'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='153' bci='838'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='182' bci='848'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='848'/>
+<uncommon_trap bci='848' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='662'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<call method='1103' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='662'/>
+<uncommon_trap bci='662' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='670'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='670'/>
+<bc code='160' bci='679'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='153' bci='686'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='182' bci='695'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='695'/>
+<uncommon_trap bci='695' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='602'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<call method='1103' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='602'/>
+<uncommon_trap bci='602' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='611'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='611'/>
+<bc code='160' bci='620'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='153' bci='627'/>
+<branch target_bci='851' taken='0' not_taken='0'/>
+<bc code='182' bci='637'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<call method='1112' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='637'/>
+<uncommon_trap bci='637' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='860'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<call method='1104' count='91' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='860'/>
+<uncommon_trap bci='860' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='871'/>
+<branch target_bci='889' taken='0' not_taken='96' cnt='96.000000' prob='never'/>
+<uncommon_trap bci='871' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='878'/>
+<branch target_bci='889' taken='96' not_taken='0' cnt='96.000000' prob='always'/>
+<uncommon_trap bci='878' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='893'/>
+<uncommon_trap bci='893' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='896'/>
+<branch target_bci='904' taken='96' not_taken='0' cnt='96.000000' prob='always'/>
+<uncommon_trap bci='896' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='908'/>
+<branch target_bci='136' taken='44' not_taken='52' cnt='96.000000' prob='0.458333'/>
+<bc code='160' bci='917'/>
+<branch target_bci='136' taken='0' not_taken='52' cnt='52.000000' prob='never'/>
+<uncommon_trap bci='917' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='923'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1111'/>
+<call method='1111' count='49' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='923'/>
+<bc code='182' bci='929'/>
+<method id='1108' holder='1094' name='setValues' return='977' arguments='1094' flags='1' bytes='17' iicount='52'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1108'/>
+<call method='1108' count='49' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='929'/>
+<uncommon_trap bci='929' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='941'/>
+<branch target_bci='952' taken='5443' not_taken='0' cnt='5443.000000' prob='always'/>
+<uncommon_trap bci='941' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='959'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<call method='1103' count='5142' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='5443.000000' stamp='0.363'>
+<uncommon_trap bci='959' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1147'/>
+<call method='1147' count='7328' prof_factor='0.715807' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1147' uses='5443.000000' stamp='0.365'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2311' live='2238' memory='612744' stamp='0.365'/>
+</parse>
+<parse_done nodes='2315' live='2241' memory='613664' stamp='0.365'/>
+</parse>
+<bc code='159' bci='968'/>
+<branch target_bci='990' taken='5443' not_taken='0' cnt='5443.000000' prob='always'/>
+<uncommon_trap bci='968' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='2334' live='2258' memory='618424' stamp='0.365'/>
+</parse>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2355' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1101'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1147'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1110'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1111'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1121'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1122'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1123'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1107'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1112'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1119'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1114'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1108'/>
+<code_cache total_blobs='1125' nmethods='646' adapters='262' free_code_cache='247109504'/>
+<task_done success='1' nmsize='5512' count='10772' backedge_count='268' inlined_bytes='651' stamp='0.409'/>
+</task>
+<task compile_id='638' method='java.lang.StringUTF16 compress ([CI[BII)I' bytes='50' count='5058' backedge_count='38033' iicount='5058' stamp='0.409'>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1093' name='java.lang.StringUTF16' flags='16'/>
+<method id='1094' holder='1093' name='compress' return='975' arguments='1082 975 1085 975 975' flags='9' bytes='50' compile_id='474' compiler='c1' level='3' iicount='5058'/>
+<parse method='1094' uses='5058.000000' stamp='0.409'>
+<bc code='162' bci='7'/>
+<branch target_bci='47' taken='4933' not_taken='35713' cnt='40646.000000' prob='0.121365'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='12'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='12' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='20'/>
+<branch target_bci='29' taken='35713' not_taken='0' cnt='35713.000000' prob='always'/>
+<uncommon_trap bci='20' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='84' bci='34'/>
+<uncommon_trap bci='34' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='34' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='7'/>
+<branch target_bci='47' taken='4933' not_taken='35713' cnt='35713.000000' prob='0.121365'/>
+<parse_done nodes='186' live='178' memory='51800' stamp='0.409'/>
+</parse>
+<loop_tree>
+<loop idx='197' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='380' inner_loop='1' main_loop='380' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='313' inner_loop='1' pre_loop='197' >
+</loop>
+<loop idx='475' inner_loop='1' main_loop='475' >
+</loop>
+<loop idx='256' inner_loop='1' post_loop='197' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='313' inner_loop='1' pre_loop='197' >
+</loop>
+<loop idx='475' inner_loop='1' main_loop='475' >
+</loop>
+<loop idx='256' inner_loop='1' post_loop='197' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='313' inner_loop='1' pre_loop='197' >
+</loop>
+<loop idx='475' inner_loop='1' main_loop='475' >
+</loop>
+<loop idx='256' inner_loop='1' post_loop='197' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='313' inner_loop='1' pre_loop='197' >
+</loop>
+<loop idx='475' inner_loop='1' main_loop='475' >
+</loop>
+<loop idx='256' inner_loop='1' post_loop='197' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='1153' nmethods='668' adapters='262' free_code_cache='247012096'/>
+<task_done success='1' nmsize='696' count='5952' backedge_count='44306' stamp='0.417'/>
+</task>
+<task compile_id='682' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl seekCloseOfStartTag ()Z' bytes='136' count='14787' iicount='14787' decompiles='1' unstable_if_traps='1' stamp='0.417'>
+<type id='969' name='boolean'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='seekCloseOfStartTag' return='969' flags='4' bytes='136' compile_id='621' compiler='c1' level='3' iicount='14796'/>
+<parse method='1094' uses='14796.000000' stamp='0.417'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='182' bci='4'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1099' holder='1096' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='648' compiler='c2' level='4' iicount='23867'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<call method='1099' count='14492' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='12'/>
+<type id='975' name='int'/>
+<method id='1100' holder='1096' name='peekChar' return='975' flags='1' bytes='63' compile_id='656' compiler='c2' level='4' iicount='20109'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1100'/>
+<call method='1100' count='14492' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='14790.000000' stamp='0.417'>
+<observe trap='unstable_if' count='1' total='2'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='20109' not_taken='1' cnt='20110.000000' prob='0.99995'/>
+<bc code='182' bci='21'/>
+<method id='1114' holder='1096' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='34'/>
+<call method='1114' count='1' prof_factor='0.735492' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='39'/>
+<uncommon_trap bci='39' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='39' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='45'/>
+<branch target_bci='61' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='159' bci='51'/>
+<branch target_bci='58' taken='0' not_taken='20110' cnt='20110.000000' prob='never'/>
+<uncommon_trap bci='51' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='236' live='227' memory='57320' stamp='0.418'/>
+</parse>
+<bc code='160' bci='19'/>
+<branch target_bci='33' taken='14105' not_taken='686' cnt='14791.000000' prob='0.95362'/>
+<bc code='182' bci='27'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1108' holder='1096' name='scanChar' return='975' arguments='1107' flags='4' bytes='236' compile_id='598' compiler='c2' level='4' iicount='7604'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1108'/>
+<call method='1108' count='672' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='686.000000' stamp='0.418'>
+<uncommon_trap bci='27' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<type id='977' name='void'/>
+<klass id='1110' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1113' holder='1096' name='checkEntityLimit' return='977' arguments='1107 1110 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<call method='1113' count='7328' prof_factor='0.090216' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1113' uses='686.000000' stamp='0.418'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='480' live='461' memory='100520' stamp='0.418'/>
+</parse>
+<parse_done nodes='483' live='463' memory='101168' stamp='0.418'/>
+</parse>
+<bc code='160' bci='36'/>
+<branch target_bci='90' taken='11869' not_taken='2236' cnt='14105.000000' prob='0.841475'/>
+<bc code='182' bci='44'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1108'/>
+<call method='1108' count='2191' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='2236.000000' stamp='0.418'>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='54'/>
+<uncommon_trap bci='54' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='54' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='59'/>
+<branch target_bci='75' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='59' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='65'/>
+<branch target_bci='195' taken='7604' not_taken='0' cnt='7604.000000' prob='always'/>
+<uncommon_trap bci='65' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='212'/>
+<branch target_bci='234' taken='0' not_taken='7604' cnt='7604.000000' prob='never'/>
+<uncommon_trap bci='212' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='231'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<call method='1113' count='7328' prof_factor='0.294056' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1113' uses='2236.000000' stamp='0.419'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='720' live='689' memory='145888' stamp='0.419'/>
+</parse>
+<parse_done nodes='723' live='691' memory='146536' stamp='0.419'/>
+</parse>
+<bc code='182' bci='57'/>
+<method id='1109' holder='1096' name='skipChar' return='969' arguments='975 1107' flags='4' bytes='285' compile_id='607' compiler='c2' level='4' iicount='6243'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<call method='1109' count='2191' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='2236.000000' stamp='0.419'>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='6243' not_taken='0' cnt='6243.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='605' not_taken='5638' cnt='6243.000000' prob='0.0969085'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='5638' not_taken='0' cnt='5638.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<call method='1113' count='5400' prof_factor='0.358161' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1113' uses='2019.000000' stamp='0.419'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='936' live='897' memory='183664' stamp='0.419'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='605' not_taken='0' cnt='605.000000' prob='always'/>
+<parse_done nodes='947' live='906' memory='185448' stamp='0.419'/>
+</parse>
+<bc code='154' bci='60'/>
+<branch target_bci='83' taken='2236' not_taken='0' cnt='2236.000000' prob='always'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='92'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1101' holder='1098' name='isValidNameStartChar' return='969' arguments='975' flags='4' bytes='5' compile_id='539' compiler='c1' level='3' iicount='11893'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1101'/>
+<call method='1101' count='11630' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='11869.000000' stamp='0.419'>
+<bc code='184' bci='1'/>
+<klass id='1111' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1131' holder='1111' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='30753'/>
+<call method='1131' count='12177' prof_factor='0.997982' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='12152.000000' stamp='0.419'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='30753' cnt='30753.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='30753' cnt='30753.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1020' live='975' memory='196696' stamp='0.419'/>
+</parse>
+<parse_done nodes='1021' live='975' memory='196896' stamp='0.419'/>
+</parse>
+<bc code='153' bci='95'/>
+<branch target_bci='102' taken='0' not_taken='11869' cnt='11869.000000' prob='never'/>
+<bc code='154' bci='99'/>
+<branch target_bci='134' taken='11869' not_taken='0' cnt='11869.000000' prob='always'/>
+<uncommon_trap bci='99' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1045' live='997' memory='216848' stamp='0.420'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1099'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1100'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1113'/>
+<dependency type='unique_concrete_method' ctxk='1096' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1101'/>
+<code_cache total_blobs='1194' nmethods='695' adapters='262' free_code_cache='246961536'/>
+<task_done success='1' nmsize='1560' count='17538' inlined_bytes='997' stamp='0.426'/>
+</task>
+<task compile_id='693' method='java.lang.String checkBoundsOffCount (III)V' bytes='61' count='7536' iicount='7536' stamp='0.426'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='checkBoundsOffCount' return='977' arguments='975 975 975' flags='8' bytes='61' compile_id='587' compiler='c1' level='3' iicount='7542'/>
+<klass id='1095' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1093' bci='15' reason='unloaded' action='reinterpret' index='39' debug_id='0' klass='1095'/>
+<parse method='1093' uses='7542.000000' stamp='0.426'>
+<bc code='155' bci='1'/>
+<branch target_bci='15' taken='0' not_taken='7541' cnt='7541.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='155' bci='5'/>
+<branch target_bci='15' taken='0' not_taken='7541' cnt='7541.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='164' bci='12'/>
+<branch target_bci='60' taken='7541' not_taken='0' cnt='7541.000000' prob='always'/>
+<uncommon_trap bci='12' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='62' live='58' memory='27000' stamp='0.426'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1201' nmethods='700' adapters='262' free_code_cache='246953984'/>
+<task_done success='1' nmsize='152' count='7719' stamp='0.427'/>
+</task>
+<task compile_id='646' method='java.lang.CharacterData of (I)Ljava/lang/CharacterData;' bytes='120' count='10202' iicount='10202' stamp='0.427'>
+<klass id='1093' name='java.lang.CharacterData' flags='1024'/>
+<klass id='1096' name='java.lang.CharacterDataLatin1' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<type id='975' name='int'/>
+<method id='1094' holder='1093' name='of' return='1093' arguments='975' flags='24' bytes='120' compile_id='124' compiler='c1' level='3' iicount='10206'/>
+<klass id='1097' name='java.lang.CharacterData00' unloaded='1'/>
+<uncommon_trap method='1094' bci='96' reason='unloaded' action='reinterpret' index='56' debug_id='0' klass='1097'/>
+<klass id='1098' name='java.lang.CharacterData01' unloaded='1'/>
+<uncommon_trap method='1094' bci='100' reason='unloaded' action='reinterpret' index='58' debug_id='0' klass='1098'/>
+<klass id='1099' name='java.lang.CharacterData02' unloaded='1'/>
+<uncommon_trap method='1094' bci='104' reason='unloaded' action='reinterpret' index='60' debug_id='0' klass='1099'/>
+<klass id='1100' name='java.lang.CharacterData0E' unloaded='1'/>
+<uncommon_trap method='1094' bci='108' reason='unloaded' action='reinterpret' index='61' debug_id='0' klass='1100'/>
+<klass id='1101' name='java.lang.CharacterDataPrivateUse' unloaded='1'/>
+<uncommon_trap method='1094' bci='112' reason='unloaded' action='reinterpret' index='62' debug_id='0' klass='1101'/>
+<klass id='1102' name='java.lang.CharacterDataUndefined' unloaded='1'/>
+<uncommon_trap method='1094' bci='116' reason='unloaded' action='reinterpret' index='63' debug_id='0' klass='1102'/>
+<parse method='1094' uses='10206.000000' stamp='0.427'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='10206' cnt='10206.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='41' live='39' memory='23728' stamp='0.427'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1093' x='1096'/>
+<code_cache total_blobs='1204' nmethods='701' adapters='262' free_code_cache='246953344'/>
+<task_done success='1' nmsize='120' count='10284' stamp='0.428'/>
+</task>
+<task compile_id='713' method='java.lang.String startsWith (Ljava/lang/String;I)Z' bytes='138' count='7408' backedge_count='7162' iicount='7408' stamp='0.428'>
+<type id='969' name='boolean'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='975' name='int'/>
+<method id='1093' holder='983' name='startsWith' return='969' arguments='983 975' flags='1' bytes='138' compile_id='501' compiler='c1' level='3' iicount='7408'/>
+<parse method='1093' uses='7408.000000' stamp='0.428'>
+<bc code='155' bci='1'/>
+<branch target_bci='17' taken='0' not_taken='7408' cnt='7408.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='6'/>
+<method id='1095' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='31203'/>
+<call method='1095' count='7210' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='7408.000000' stamp='0.428'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1096' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='53523'/>
+<call method='1096' count='30967' prof_factor='0.237413' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='7408.000000' stamp='0.428'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='53522' cnt='53522.000000' prob='never'/>
+<parse_done nodes='95' live='92' memory='32824' stamp='0.428'/>
+</parse>
+<parse_done nodes='96' live='92' memory='33120' stamp='0.428'/>
+</parse>
+<bc code='182' bci='10'/>
+<call method='1095' count='7210' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='7408.000000' stamp='0.428'>
+<uncommon_trap bci='10' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<call method='1096' count='30967' prof_factor='0.237413' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='7408.000000' stamp='0.428'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='53522' cnt='53522.000000' prob='never'/>
+<parse_done nodes='159' live='152' memory='45128' stamp='0.428'/>
+</parse>
+<parse_done nodes='160' live='152' memory='45424' stamp='0.428'/>
+</parse>
+<bc code='164' bci='14'/>
+<branch target_bci='19' taken='2561' not_taken='4847' cnt='7408.000000' prob='0.345707'/>
+<bc code='182' bci='39'/>
+<call method='1096' count='2493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='2561.000000' stamp='0.428'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='53522' cnt='53522.000000' prob='never'/>
+<parse_done nodes='202' live='193' memory='50664' stamp='0.428'/>
+</parse>
+<bc code='182' bci='43'/>
+<call method='1096' count='2493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='2561.000000' stamp='0.428'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='53522' cnt='53522.000000' prob='never'/>
+<parse_done nodes='226' live='216' memory='54352' stamp='0.428'/>
+</parse>
+<bc code='160' bci='46'/>
+<branch target_bci='95' taken='0' not_taken='2561' cnt='2561.000000' prob='never'/>
+<uncommon_trap bci='46' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='50'/>
+<method id='1097' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='78545'/>
+<call method='1097' count='2493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1097' uses='2561.000000' stamp='0.429'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='78784' cnt='78784.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='78783' cnt='78784.000000' prob='1.26929e-05'/>
+<parse_done nodes='270' live='258' memory='66432' stamp='0.429'/>
+</parse>
+<bc code='153' bci='53'/>
+<branch target_bci='60' taken='0' not_taken='2561' cnt='2561.000000' prob='never'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='69'/>
+<branch target_bci='92' taken='381' not_taken='7145' cnt='7526.000000' prob='0.0506245'/>
+<uncommon_trap bci='72' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='72' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='78'/>
+<uncommon_trap bci='78' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='78' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='51' bci='86'/>
+<uncommon_trap bci='86' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='87'/>
+<branch target_bci='65' taken='4965' not_taken='2180' cnt='7145.000000' prob='0.694892'/>
+<bc code='162' bci='69'/>
+<branch target_bci='92' taken='381' not_taken='7145' cnt='7526.000000' prob='0.0506245'/>
+<parse_done nodes='419' live='398' memory='89040' stamp='0.429'/>
+</parse>
+<loop_tree>
+<loop idx='426' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='426' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='561' inner_loop='1' main_loop='561' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='522' inner_loop='1' pre_loop='426' >
+</loop>
+<loop idx='561' inner_loop='1' main_loop='561' >
+</loop>
+<loop idx='489' inner_loop='1' post_loop='426' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='522' inner_loop='1' pre_loop='426' >
+</loop>
+<loop idx='561' inner_loop='1' main_loop='561' >
+</loop>
+<loop idx='489' inner_loop='1' post_loop='426' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='522' inner_loop='1' pre_loop='426' >
+</loop>
+<loop idx='561' inner_loop='1' main_loop='561' >
+</loop>
+<loop idx='489' inner_loop='1' post_loop='426' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='1222' nmethods='711' adapters='262' free_code_cache='246770304'/>
+<task_done success='1' nmsize='568' count='7630' backedge_count='7172' inlined_bytes='101' stamp='0.433'/>
+</task>
+<task compile_id='719' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkNodeCount (Lcom/sun/xml/internal/stream/Entity$ScannedEntity;)V' bytes='22' count='5176' iicount='5176' stamp='0.435'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='checkNodeCount' return='977' arguments='1094' flags='4' bytes='22' compile_id='586' compiler='c1' level='3' iicount='5178'/>
+<parse method='1095' uses='5178.000000' stamp='0.435'>
+<bc code='198' bci='1'/>
+<branch target_bci='21' taken='0' not_taken='5178' cnt='5178.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='8'/>
+<branch target_bci='21' taken='5178' not_taken='0' cnt='5178.000000' prob='always'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='55' live='52' memory='25704' stamp='0.435'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1229' nmethods='714' adapters='262' free_code_cache='246777984'/>
+<task_done success='1' nmsize='152' count='5204' stamp='0.436'/>
+</task>
+<task compile_id='720' method='com.sun.hotspot.tools.compiler.LogParser search (Lorg/xml/sax/Attributes;Ljava/lang/String;)Ljava/lang/String;' bytes='39' count='6284' iicount='6284' stamp='0.436'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='search' return='983' arguments='1094 983' flags='0' bytes='39' compile_id='624' compiler='c1' level='3' iicount='6285'/>
+<parse method='1095' uses='6285.000000' stamp='0.436'>
+<bc code='185' bci='2'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1098' holder='1094' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1098' count='6162' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='6162'/>
+<method id='1104' holder='1097' name='getValue' return='983' arguments='983' flags='1' bytes='11' compile_id='566' compiler='c1' level='3' iicount='13675'/>
+<call method='1104' count='6162' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='2' klass='1097'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1104' uses='6285.000000' stamp='0.436'>
+<bc code='185' bci='5'/>
+<klass id='1108' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<klass id='1105' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1106' holder='1105' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1106' count='13434' prof_factor='0.459598' virtual='1' inline='1' receiver='1108' receiver_count='13434'/>
+<klass id='1109' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1110' holder='1109' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='677' compiler='c2' level='4' iicount='13274'/>
+<call method='1110' count='13434' prof_factor='0.459598' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1108'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='125' live='120' memory='38920' stamp='0.436'/>
+</parse>
+<bc code='198' bci='9'/>
+<branch target_bci='14' taken='0' not_taken='6285' cnt='6285.000000' prob='never'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='142' live='135' memory='43832' stamp='0.436'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1236' nmethods='717' adapters='262' free_code_cache='246758912'/>
+<task_done success='1' nmsize='296' count='6377' stamp='0.437'/>
+</task>
+<task compile_id='725' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl getCharacterData ()Lcom/sun/org/apache/xerces/internal/xni/XMLString;' bytes='17' count='5390' iicount='5390' stamp='0.440'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='getCharacterData' return='1094' flags='1' bytes='17' compile_id='570' compiler='c1' level='3' iicount='5391'/>
+<parse method='1095' uses='5391.000000' stamp='0.440'>
+<bc code='153' bci='4'/>
+<branch target_bci='12' taken='5388' not_taken='3' cnt='5391.000000' prob='0.999444'/>
+<parse_done nodes='42' live='40' memory='23656' stamp='0.440'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1245' nmethods='720' adapters='262' free_code_cache='246744832'/>
+<task_done success='1' nmsize='152' count='5395' stamp='0.440'/>
+</task>
+<task compile_id='733' method='java.lang.Integer parseInt (Ljava/lang/String;)I' bytes='7' count='5632' iicount='5632' stamp='0.453'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1093' holder='1076' name='parseInt' return='975' arguments='983' flags='9' bytes='7' compile_id='636' compiler='c1' level='3' iicount='5634'/>
+<parse method='1093' uses='5634.000000' stamp='0.453'>
+<bc code='184' bci='3'/>
+<method id='1095' holder='1076' name='parseInt' return='975' arguments='983 975' flags='9' bytes='259' compile_id='639' compiler='c1' level='3' iicount='5636'/>
+<call method='1095' count='5124' prof_factor='1.000000' inline='1'/>
+<klass id='1097' name='java.lang.NumberFormatException' flags='1'/>
+<uncommon_trap method='1095' bci='255' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='206' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='227' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='157' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='146' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='57' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='19' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<uncommon_trap method='1095' bci='4' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1097'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5634.000000' stamp='0.453'>
+<bc code='199' bci='1'/>
+<branch target_bci='14' taken='5144' not_taken='0' cnt='5144.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='16'/>
+<branch target_bci='51' taken='5144' not_taken='0' cnt='5144.000000' prob='always'/>
+<bc code='164' bci='54'/>
+<branch target_bci='89' taken='5144' not_taken='0' cnt='5144.000000' prob='always'/>
+<bc code='182' bci='94'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='34802'/>
+<call method='1096' count='5144' prof_factor='0.999645' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='5142.000000' stamp='0.453'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1102' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='58449'/>
+<call method='1102' count='34574' prof_factor='0.147750' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='5142.000000' stamp='0.454'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='58449' cnt='58449.000000' prob='never'/>
+<parse_done nodes='122' live='119' memory='36568' stamp='0.454'/>
+</parse>
+<parse_done nodes='123' live='119' memory='36864' stamp='0.454'/>
+</parse>
+<bc code='158' bci='105'/>
+<branch target_bci='254' taken='0' not_taken='5144' cnt='5144.000000' prob='never'/>
+<uncommon_trap bci='105' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='110'/>
+<type id='970' name='char'/>
+<method id='1099' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='74556'/>
+<call method='1099' count='5144' prof_factor='0.999645' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5142.000000' stamp='0.454'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1106' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='90215'/>
+<call method='1106' count='74297' prof_factor='0.068968' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='5142.000000' stamp='0.454'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='90215' cnt='90215.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='90214' cnt='90215.000000' prob='1.10846e-05'/>
+<parse_done nodes='178' live='172' memory='47648' stamp='0.454'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='74556' cnt='74556.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1109' name='java.lang.StringLatin1' flags='16'/>
+<method id='1110' holder='1109' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='73617'/>
+<call method='1110' count='74297' prof_factor='0.068968' inline='1'/>
+<klass id='1113' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1110' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1113'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='5142.000000' stamp='0.454'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='73617' cnt='73617.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='73617' not_taken='0' cnt='73617.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='272' live='261' memory='65256' stamp='0.454'/>
+</parse>
+<parse_done nodes='273' live='261' memory='65968' stamp='0.454'/>
+</parse>
+<bc code='162' bci='119'/>
+<branch target_bci='164' taken='5065' not_taken='79' cnt='5144.000000' prob='0.984642'/>
+<bc code='160' bci='126'/>
+<branch target_bci='138' taken='0' not_taken='79' cnt='79.000000' prob='never'/>
+<uncommon_trap bci='126' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='153'/>
+<branch target_bci='161' taken='79' not_taken='0' cnt='79.000000' prob='always'/>
+<uncommon_trap bci='153' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5144' not_taken='5748' cnt='10892.000000' prob='0.472273'/>
+<uncommon_trap bci='179' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='179' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='184'/>
+<call method='1099' count='5748' prof_factor='0.999645' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5746.000000' stamp='0.454'>
+<bc code='183' bci='1'/>
+<call method='1106' count='74297' prof_factor='0.077070' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='5746.000000' stamp='0.454'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='90215' cnt='90215.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='90214' cnt='90215.000000' prob='1.10846e-05'/>
+<parse_done nodes='428' live='411' memory='89984' stamp='0.454'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='74556' cnt='74556.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1110' count='74297' prof_factor='0.077070' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1110' uses='5746.000000' stamp='0.454'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='73617' cnt='73617.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='73617' not_taken='0' cnt='73617.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='521' live='498' memory='112904' stamp='0.454'/>
+</parse>
+<parse_done nodes='522' live='498' memory='113616' stamp='0.454'/>
+</parse>
+<bc code='184' bci='188'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1100' holder='1070' name='digit' return='975' arguments='970 975' flags='9' bytes='6' compile_id='557' compiler='c1' level='3' iicount='10852'/>
+<call method='1100' count='5748' prof_factor='0.999645' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='5746.000000' stamp='0.454'>
+<bc code='184' bci='2'/>
+<method id='1115' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' compile_id='558' compiler='c1' level='3' iicount='10942'/>
+<call method='1115' count='10446' prof_factor='0.529488' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1115' uses='5746.000000' stamp='0.454'>
+<bc code='184' bci='1'/>
+<klass id='1117' name='java.lang.CharacterData' flags='1024'/>
+<method id='1118' holder='1117' name='of' return='1117' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1118' count='10450' prof_factor='0.525133' inline='1'/>
+<klass id='1122' name='java.lang.CharacterData00' unloaded='1'/>
+<uncommon_trap method='1118' bci='96' reason='unloaded' action='reinterpret' index='56' debug_id='0' klass='1122'/>
+<klass id='1123' name='java.lang.CharacterData01' unloaded='1'/>
+<uncommon_trap method='1118' bci='100' reason='unloaded' action='reinterpret' index='58' debug_id='0' klass='1123'/>
+<klass id='1124' name='java.lang.CharacterData02' unloaded='1'/>
+<uncommon_trap method='1118' bci='104' reason='unloaded' action='reinterpret' index='60' debug_id='0' klass='1124'/>
+<klass id='1125' name='java.lang.CharacterData0E' unloaded='1'/>
+<uncommon_trap method='1118' bci='108' reason='unloaded' action='reinterpret' index='61' debug_id='0' klass='1125'/>
+<klass id='1126' name='java.lang.CharacterDataPrivateUse' unloaded='1'/>
+<uncommon_trap method='1118' bci='112' reason='unloaded' action='reinterpret' index='62' debug_id='0' klass='1126'/>
+<klass id='1127' name='java.lang.CharacterDataUndefined' unloaded='1'/>
+<uncommon_trap method='1118' bci='116' reason='unloaded' action='reinterpret' index='63' debug_id='0' klass='1127'/>
+<inline_success reason='inline (hot)'/>
+<klass id='1121' name='java.lang.CharacterDataLatin1' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1117' x='1121'/>
+<parse method='1118' uses='5746.000000' stamp='0.454'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='10284' cnt='10284.000000' prob='never'/>
+<parse_done nodes='569' live='544' memory='121328' stamp='0.455'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1131' holder='1121' name='digit' return='975' arguments='975 975' flags='0' bytes='91' compile_id='683' compiler='c2' level='4' iicount='9576'/>
+<dependency type='unique_concrete_method' ctxk='1121' x='1131'/>
+<call method='1131' count='10450' prof_factor='0.525133' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='5746.000000' stamp='0.455'>
+<bc code='161' bci='4'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='163' bci='10'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='182' bci='15'/>
+<method id='1132' holder='1121' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='555' compiler='c1' level='1' iicount='10358'/>
+<dependency type='unique_concrete_method' ctxk='1121' x='1132'/>
+<call method='1132' count='9078' prof_factor='0.600042' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1132' uses='5746.000000' stamp='0.455'>
+<bc code='46' bci='7'/>
+<observe that='!need_range_check'/>
+<parse_done nodes='616' live='590' memory='129256' stamp='0.455'/>
+</parse>
+<bc code='160' bci='31'/>
+<branch target_bci='51' taken='904' not_taken='8672' cnt='9576.000000' prob='0.0944027'/>
+<bc code='160' bci='60'/>
+<branch target_bci='80' taken='0' not_taken='904' cnt='904.000000' prob='never'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='82'/>
+<branch target_bci='89' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='675' live='646' memory='138120' stamp='0.455'/>
+</parse>
+<parse_done nodes='675' live='645' memory='138248' stamp='0.455'/>
+</parse>
+<parse_done nodes='675' live='644' memory='139400' stamp='0.455'/>
+</parse>
+<bc code='155' bci='195'/>
+<branch target_bci='205' taken='0' not_taken='5748' cnt='5748.000000' prob='never'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='202'/>
+<branch target_bci='210' taken='5748' not_taken='0' cnt='5748.000000' prob='always'/>
+<uncommon_trap bci='202' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='223'/>
+<branch target_bci='231' taken='5748' not_taken='0' cnt='5748.000000' prob='always'/>
+<uncommon_trap bci='223' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5144' not_taken='5748' cnt='5748.000000' prob='0.472273'/>
+<bc code='153' bci='242'/>
+<branch target_bci='250' taken='5065' not_taken='79' cnt='5144.000000' prob='0.984642'/>
+<parse_done nodes='741' live='706' memory='149792' stamp='0.455'/>
+</parse>
+<parse_done nodes='741' live='705' memory='149984' stamp='0.455'/>
+</parse>
+<loop_tree>
+<loop idx='772' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='772' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='772' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='772' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='772' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1117' x='1121'/>
+<dependency type='unique_concrete_method' ctxk='1121' x='1131'/>
+<dependency type='unique_concrete_method' ctxk='1121' x='1132'/>
+<code_cache total_blobs='1267' nmethods='730' adapters='262' free_code_cache='246692864'/>
+<task_done success='1' nmsize='760' count='5988' inlined_bytes='667' stamp='0.458'/>
+</task>
+<task compile_id='744' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl checkDepth (Ljava/lang/String;)V' bytes='100' count='5394' iicount='5394' stamp='0.466'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1094' holder='1093' name='checkDepth' return='977' arguments='983' flags='0' bytes='100' compile_id='577' compiler='c1' level='3' iicount='5394'/>
+<parse method='1094' uses='5394.000000' stamp='0.467'>
+<bc code='180' bci='12'/>
+<uncommon_trap bci='12' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='15'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<type id='975' name='int'/>
+<klass id='1096' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1101' holder='1096' name='addValue' return='977' arguments='1099 983 975' flags='1' bytes='11' compile_id='612' compiler='c2' level='4' iicount='20986'/>
+<call method='1101' count='5120' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<direct_call bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='29'/>
+<type id='969' name='boolean'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1102' holder='1097' name='isOverLimit' return='969' arguments='1099 1096' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='36578'/>
+<call method='1102' count='5120' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='5394.000000' stamp='0.467'>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<klass id='1113' name='java.lang.Enum' flags='1025'/>
+<method id='1114' holder='1113' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1114' count='36344' prof_factor='0.147466' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1114' uses='5394.000000' stamp='0.467'>
+<parse_done nodes='120' live='116' memory='37480' stamp='0.467'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1116' holder='1097' name='isOverLimit' return='969' arguments='975 1096' flags='1' bytes='111' compile_id='594' compiler='c2' level='4' iicount='11900'/>
+<call method='1116' count='36344' prof_factor='0.147466' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1116' uses='5394.000000' stamp='0.467'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1114' count='10952' prof_factor='0.453277' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1114' uses='5075.000000' stamp='0.467'>
+<parse_done nodes='193' live='185' memory='50968' stamp='0.467'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1114' count='10952' prof_factor='0.453277' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1114' uses='5075.000000' stamp='0.467'>
+<parse_done nodes='219' live='209' memory='55784' stamp='0.467'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1114' count='10952' prof_factor='0.453277' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1114' uses='5075.000000' stamp='0.467'>
+<parse_done nodes='244' live='232' memory='59832' stamp='0.467'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='45'/>
+<call method='1114' count='5416' prof_factor='0.453277' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1114' uses='2510.000000' stamp='0.467'>
+<parse_done nodes='265' live='252' memory='66728' stamp='0.467'/>
+</parse>
+<bc code='159' bci='48'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='48' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='55'/>
+<call method='1114' count='5416' prof_factor='0.453277' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1114' uses='2510.000000' stamp='0.467'>
+<parse_done nodes='289' live='274' memory='72040' stamp='0.467'/>
+</parse>
+<bc code='159' bci='58'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<bc code='182' bci='73'/>
+<method id='1119' holder='1096' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' compile_id='521' compiler='c1' level='3' iicount='11168'/>
+<call method='1119' count='10952' prof_factor='0.453277' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1119' uses='5075.000000' stamp='0.467'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='356' live='337' memory='82328' stamp='0.467'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='408' live='385' memory='89632' stamp='0.467'/>
+</parse>
+<parse_done nodes='409' live='385' memory='89960' stamp='0.467'/>
+</parse>
+<bc code='153' bci='32'/>
+<branch target_bci='99' taken='5394' not_taken='0' cnt='5394.000000' prob='always'/>
+<parse_done nodes='419' live='394' memory='91416' stamp='0.468'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1294' nmethods='743' adapters='262' free_code_cache='246634240'/>
+<task_done success='1' nmsize='680' count='5555' inlined_bytes='158' stamp='0.470'/>
+</task>
+<task compile_id='753' method='java.util.HashMap putVal (ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;' bytes='300' count='5454' backedge_count='302' iicount='5454' stamp='0.487'>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<type id='975' name='int'/>
+<type id='969' name='boolean'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='5454'/>
+<parse method='1094' uses='5454.000000' stamp='0.487'>
+<bc code='198' bci='7'/>
+<branch target_bci='19' taken='630' not_taken='4824' cnt='5454.000000' prob='0.115512'/>
+<bc code='154' bci='16'/>
+<branch target_bci='29' taken='4824' not_taken='0' cnt='4824.000000' prob='always'/>
+<uncommon_trap bci='16' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='20'/>
+<klass id='1100' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1101' holder='1093' name='resize' return='1100' flags='16' bytes='356' compile_id='138' compiler='c1' level='3' iicount='740'/>
+<call method='1101' count='592' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='20'/>
+<bc code='190' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='40'/>
+<uncommon_trap bci='40' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='44'/>
+<branch target_bci='63' taken='1624' not_taken='3830' cnt='5454.000000' prob='0.297763'/>
+<bc code='182' bci='56'/>
+<klass id='1097' name='java.io.ExpiringCache$1' flags='0'/>
+<klass id='1098' name='java.util.HashMap$Node' flags='8'/>
+<method id='1106' holder='1093' name='newNode' return='1098' arguments='975 982 982 1098' flags='0' bytes='13' compile_id='76' compiler='c1' level='3' iicount='4766'/>
+<call method='1106' count='3597' prof_factor='1.000000' virtual='1' inline='1' receiver='1093' receiver_count='3436' receiver2='1097' receiver2_count='2'/>
+<call method='1106' count='3597' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='56' klass='1093'/>
+<virtual_call bci='56'/>
+<parse method='1106' uses='3830.000000' stamp='0.488'>
+<bc code='183' bci='9'/>
+<type id='977' name='void'/>
+<method id='1112' holder='1098' name='&lt;init&gt;' return='977' arguments='975 982 982 1098' flags='0' bytes='26' compile_id='75' compiler='c1' level='3' iicount='5018'/>
+<call method='1112' count='4394' prof_factor='0.803609' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1112' uses='3830.000000' stamp='0.488'>
+<bc code='183' bci='1'/>
+<method id='1114' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='41693'/>
+<call method='1114' count='4654' prof_factor='0.763252' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1114' uses='3830.000000' stamp='0.488'>
+<parse_done nodes='235' live='231' memory='63064' stamp='0.488'/>
+</parse>
+<parse_done nodes='567' live='562' memory='122408' stamp='0.488'/>
+</parse>
+<parse_done nodes='567' live='561' memory='122536' stamp='0.488'/>
+</parse>
+<bc code='83' bci='59'/>
+<uncommon_trap bci='59' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='59' reason='array_check' action='maybe_recompile' debug_id='0' klass='1100'/>
+<cast_up reason='monomorphic_array' from='1100' to='(exact)'/>
+<bc code='160' bci='69'/>
+<branch target_bci='104' taken='1174' not_taken='449' cnt='1623.000000' prob='0.723352'/>
+<bc code='165' bci='81'/>
+<branch target_bci='97' taken='449' not_taken='0' cnt='449.000000' prob='always'/>
+<uncommon_trap bci='81' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='109'/>
+<branch target_bci='131' taken='1174' not_taken='0' cnt='1174.000000' prob='always'/>
+<uncommon_trap bci='109' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='300' not_taken='1154' cnt='1454.000000' prob='0.206327'/>
+<uncommon_trap bci='175' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='175' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='177'/>
+<uncommon_trap bci='177' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='181'/>
+<branch target_bci='212' taken='280' not_taken='20' cnt='300.000000' prob='0.933333'/>
+<bc code='165' bci='193'/>
+<branch target_bci='222' taken='20' not_taken='0'/>
+<bc code='198' bci='197'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='182' bci='203'/>
+<method id='1105' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='136'/>
+<call method='1105' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='203'/>
+<bc code='153' bci='206'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='300' not_taken='1154' cnt='280.000000' prob='0.206327'/>
+<bc code='182' bci='152'/>
+<klass id='1096' name='java.util.LinkedHashMap' flags='1'/>
+<call method='1106' count='1084' prof_factor='1.000000' virtual='1' inline='1' receiver='1093' receiver_count='1001' receiver2='1096' receiver2_count='83'/>
+<call method='1106' count='1084' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<method id='1117' holder='1096' name='newNode' return='1098' arguments='975 982 982 1098' flags='0' bytes='23' iicount='247'/>
+<call method='1117' count='1084' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<predicted_call bci='152' klass='1093'/>
+<virtual_call bci='152'/>
+<parse method='1106' uses='1154.000000' stamp='0.488'>
+<bc code='183' bci='9'/>
+<call method='1112' count='4394' prof_factor='0.242132' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1112' uses='1154.000000' stamp='0.488'>
+<bc code='183' bci='1'/>
+<call method='1114' count='4654' prof_factor='0.229972' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1114' uses='1154.000000' stamp='0.488'>
+<parse_done nodes='1050' live='1036' memory='221456' stamp='0.488'/>
+</parse>
+<parse_done nodes='1222' live='1207' memory='245368' stamp='0.488'/>
+</parse>
+<parse_done nodes='1222' live='1206' memory='245496' stamp='0.488'/>
+</parse>
+<bc code='161' bci='162'/>
+<branch target_bci='222' taken='1154' not_taken='0' cnt='1154.000000' prob='always'/>
+<uncommon_trap bci='162' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='224'/>
+<branch target_bci='259' taken='1154' not_taken='470' cnt='1624.000000' prob='0.710591'/>
+<bc code='153' bci='236'/>
+<branch target_bci='244' taken='466' not_taken='3' cnt='469.000000' prob='0.993603'/>
+<bc code='199' bci='241'/>
+<branch target_bci='250' taken='3' not_taken='0'/>
+<bc code='182' bci='253'/>
+<method id='1104' holder='1093' name='afterNodeAccess' return='977' arguments='1098' flags='0' bytes='1' iicount='441'/>
+<call method='1104' count='441' prof_factor='1.000000' virtual='1' inline='1' receiver='1093' receiver_count='441'/>
+<call method='1104' count='441' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='253' klass='1093'/>
+<uncommon_trap bci='253' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='253' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1104' uses='470.000000' stamp='0.489'>
+<parse_done nodes='1621' live='1601' memory='310304' stamp='0.489'/>
+</parse>
+<bc code='180' bci='261'/>
+<uncommon_trap bci='261' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='164' bci='284'/>
+<branch target_bci='292' taken='4884' not_taken='100' cnt='4984.000000' prob='0.979936'/>
+<bc code='182' bci='288'/>
+<call method='1101' count='94' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='288'/>
+<bc code='182' bci='295'/>
+<method id='1103' holder='1093' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='134' compiler='c1' level='1' iicount='1527'/>
+<call method='1103' count='4681' prof_factor='1.000000' virtual='1' inline='1' receiver='1093' receiver_count='4437' receiver2='1097' receiver2_count='2'/>
+<call method='1103' count='4681' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='295' klass='1093'/>
+<virtual_call bci='295'/>
+<parse method='1103' uses='4984.000000' stamp='0.489'>
+<parse_done nodes='1718' live='1695' memory='329288' stamp='0.489'/>
+</parse>
+<parse_done nodes='1733' live='1709' memory='333024' stamp='0.489'/>
+</parse>
+<loop_tree>
+<loop idx='1787' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1787' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1787' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1787' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1787' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1787' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1337' nmethods='766' adapters='262' free_code_cache='246511872'/>
+<task_done success='1' nmsize='3352' count='5610' backedge_count='303' inlined_bytes='82' stamp='0.504'/>
+</task>
+<task compile_id='847' method='java.util.regex.Matcher search (I)Z' bytes='154' count='1127' backedge_count='22540' iicount='1127' decompiles='1' stamp='0.565'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.util.regex.Matcher' flags='17'/>
+<method id='1094' holder='1093' name='search' return='969' arguments='975' flags='0' bytes='154' iicount='1127'/>
+<parse method='1094' uses='1127.000000' stamp='0.565'>
+<bc code='156' bci='11'/>
+<branch target_bci='18' taken='922' not_taken='0' cnt='922.000000' prob='always'/>
+<uncommon_trap bci='11' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='156' bci='30'/>
+<branch target_bci='37' taken='524' not_taken='398' cnt='922.000000' prob='0.56833'/>
+<bc code='190' bci='51'/>
+<uncommon_trap bci='51' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='52'/>
+<branch target_bci='68' taken='922' not_taken='18440' cnt='19362.000000' prob='0.047619'/>
+<uncommon_trap bci='55' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='55' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='79' bci='61'/>
+<uncommon_trap bci='61' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='61' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='52'/>
+<branch target_bci='68' taken='922' not_taken='18440' cnt='18440.000000' prob='0.047619'/>
+<bc code='190' bci='75'/>
+<uncommon_trap bci='75' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='76'/>
+<branch target_bci='103' taken='922' not_taken='0' cnt='922.000000' prob='always'/>
+<uncommon_trap bci='76' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='180' bci='112'/>
+<uncommon_trap bci='112' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='121'/>
+<klass id='1096' name='java.util.regex.Pattern$Start' flags='8'/>
+<klass id='1101' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1100' name='java.util.regex.Pattern$Node' flags='8'/>
+<method id='1102' holder='1100' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='27' iicount='1'/>
+<call method='1102' count='922' prof_factor='1.000000' virtual='1' inline='1' receiver='1096' receiver_count='922'/>
+<method id='1104' holder='1096' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='90' compile_id='688' compiler='c1' level='3' iicount='1130'/>
+<call method='1104' count='922' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='121' klass='1096'/>
+<uncommon_trap bci='121' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='121' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1104' uses='922.000000' stamp='0.566'>
+<bc code='164' bci='10'/>
+<branch target_bci='20' taken='840' not_taken='0' cnt='840.000000' prob='always'/>
+<uncommon_trap bci='10' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='163' bci='34'/>
+<branch target_bci='83' taken='334' not_taken='10050' cnt='10384.000000' prob='0.0321649'/>
+<uncommon_trap bci='37' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='37' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='44'/>
+<klass id='1106' name='java.util.regex.Pattern$BmpCharProperty' flags='10'/>
+<call method='1102' count='10050' prof_factor='0.815929' virtual='1' inline='1' receiver='1106' receiver_count='10050'/>
+<method id='1107' holder='1106' name='match' return='969' arguments='1093 975 1101' flags='0' bytes='55' compile_id='808' compiler='c2' level='4' iicount='6093'/>
+<call method='1107' count='10050' prof_factor='0.815929' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='44' klass='1106'/>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='44' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1107' uses='8200.000000' stamp='0.567'>
+<observe trap='class_check' count='5' total='5'/>
+<bc code='162' bci='5'/>
+<branch target_bci='48' taken='0' not_taken='6093' cnt='6093.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='14'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='970' name='char'/>
+<method id='1110' holder='1101' name='charAt' return='970' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' count='5581' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='5581'/>
+<method id='1119' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='94178'/>
+<call method='1119' count='5581' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='14' klass='983'/>
+<uncommon_trap bci='14' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='14' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1119' uses='6093.000000' stamp='0.567'>
+<bc code='183' bci='1'/>
+<method id='1120' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='112094'/>
+<call method='1120' count='93666' prof_factor='0.064697' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='6093.000000' stamp='0.567'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='112094' cnt='112094.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='112093' cnt='112094.000000' prob='8.92108e-06'/>
+<parse_done nodes='542' live='522' memory='125760' stamp='0.567'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='94178' cnt='94178.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1123' name='java.lang.StringLatin1' flags='16'/>
+<method id='1124' holder='1123' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='92840'/>
+<call method='1124' count='93666' prof_factor='0.064697' inline='1'/>
+<klass id='1128' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1124' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1128'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1124' uses='6093.000000' stamp='0.567'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='92840' cnt='92840.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='92840' not_taken='0' cnt='92840.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='643' live='617' memory='147928' stamp='0.567'/>
+</parse>
+<parse_done nodes='650' live='623' memory='149248' stamp='0.567'/>
+</parse>
+<bc code='185' bci='19'/>
+<klass id='1114' name='java.util.regex.Pattern$$Lambda$1/6738746' flags='4112'/>
+<klass id='1116' name='java.util.regex.Pattern$$Lambda$13/1273765644' flags='4112'/>
+<klass id='1108' name='java.util.regex.Pattern$CharPredicate' flags='1544'/>
+<method id='1111' holder='1108' name='is' return='969' arguments='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1111' count='5583' prof_factor='1.000000' virtual='1' inline='1' receiver='1114' receiver_count='5555' receiver2='1116' receiver2_count='14'/>
+<method id='1130' holder='1114' name='is' return='969' arguments='975' flags='1' bytes='9' compile_id='634' compiler='c1' level='3' iicount='6067'/>
+<call method='1130' count='5583' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='19' klass='1114'/>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<virtual_call bci='19'/>
+<parse method='1130' uses='6095.000000' stamp='0.567'>
+<bc code='184' bci='5'/>
+<klass id='1099' name='java.util.regex.Pattern' flags='17'/>
+<method id='1131' holder='1099' name='lambda$Single$8' return='969' arguments='975 975' flags='4106' bytes='11' compile_id='637' compiler='c1' level='3' iicount='6067'/>
+<call method='1131' count='5555' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1131' uses='6067.000000' stamp='0.567'>
+<bc code='160' bci='2'/>
+<branch target_bci='9' taken='5773' not_taken='294' cnt='6067.000000' prob='0.951541'/>
+<parse_done nodes='727' live='698' memory='162624' stamp='0.568'/>
+</parse>
+<parse_done nodes='734' live='704' memory='164008' stamp='0.568'/>
+</parse>
+<bc code='153' bci='24'/>
+<branch target_bci='46' taken='5786' not_taken='309' cnt='6095.000000' prob='0.949303'/>
+<bc code='182' bci='36'/>
+<klass id='1117' name='java.util.regex.Pattern$LastNode' flags='8'/>
+<klass id='1118' name='java.util.regex.Pattern$Branch' flags='24'/>
+<call method='1102' count='286' prof_factor='1.000000' virtual='1' inline='1' receiver='1117' receiver_count='244' receiver2='1118' receiver2_count='14'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='36'/>
+<bc code='153' bci='39'/>
+<branch target_bci='46' taken='0' not_taken='312' cnt='312.000000' prob='never'/>
+<uncommon_trap bci='39' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='812' live='780' memory='178608' stamp='0.568'/>
+</parse>
+<bc code='153' bci='47'/>
+<branch target_bci='77' taken='9544' not_taken='508' cnt='10052.000000' prob='0.949463'/>
+<bc code='79' bci='64'/>
+<uncommon_trap bci='64' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='64' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='74'/>
+<uncommon_trap bci='74' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='163' bci='34'/>
+<branch target_bci='83' taken='334' not_taken='10050' cnt='9544.000000' prob='0.0321649'/>
+<parse_done nodes='918' live='881' memory='198128' stamp='0.568'/>
+</parse>
+<bc code='154' bci='126'/>
+<branch target_bci='134' taken='550' not_taken='374' cnt='924.000000' prob='0.595238'/>
+<parse_done nodes='954' live='916' memory='206128' stamp='0.568'/>
+</parse>
+<loop_tree>
+<loop idx='1007' inner_loop='1' >
+</loop>
+<loop idx='1018' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1150' >
+</loop>
+<loop idx='1018' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1150' inner_loop='1' >
+</loop>
+<loop idx='1018' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1018' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1018' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1018' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1488' nmethods='891' adapters='270' free_code_cache='246179328'/>
+<task_done success='1' nmsize='1496' count='1199' backedge_count='23980' inlined_bytes='112' stamp='0.577'/>
+</task>
+<task compile_id='895' method='java.lang.StringLatin1 inflate ([BI[CII)V' bytes='34' count='1130' backedge_count='21941' iicount='1130' stamp='0.577'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1082' name='[C' flags='1041'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='inflate' return='977' arguments='1085 975 1082 975 975' flags='9' bytes='34' compile_id='440' compiler='c1' level='3' iicount='1130'/>
+<parse method='1094' uses='1130.000000' stamp='0.577'>
+<bc code='162' bci='7'/>
+<branch target_bci='33' taken='1028' not_taken='15763' cnt='16791.000000' prob='0.0612233'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='20'/>
+<uncommon_trap bci='20' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='20' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='85' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='26' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='7'/>
+<branch target_bci='33' taken='1028' not_taken='15763' cnt='15763.000000' prob='0.0612233'/>
+<parse_done nodes='172' live='165' memory='47664' stamp='0.577'/>
+</parse>
+<loop_tree>
+<loop idx='185' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='343' inner_loop='1' main_loop='343' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='287' inner_loop='1' pre_loop='185' >
+</loop>
+<loop idx='425' inner_loop='1' main_loop='425' >
+</loop>
+<loop idx='241' inner_loop='1' post_loop='185' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='287' inner_loop='1' pre_loop='185' >
+</loop>
+<loop idx='425' inner_loop='1' main_loop='425' >
+</loop>
+<loop idx='241' inner_loop='1' post_loop='185' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='287' inner_loop='1' pre_loop='185' >
+</loop>
+<loop idx='425' inner_loop='1' main_loop='425' >
+</loop>
+<loop idx='241' inner_loop='1' post_loop='185' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='287' inner_loop='1' pre_loop='185' >
+</loop>
+<loop idx='425' inner_loop='1' main_loop='425' >
+</loop>
+<loop idx='241' inner_loop='1' post_loop='185' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1494' nmethods='895' adapters='270' free_code_cache='246170624'/>
+<task_done success='1' nmsize='568' count='1449' backedge_count='26025' stamp='0.580'/>
+</task>
+<task compile_id='954' method='java.util.ArrayList add (Ljava/lang/Object;)Z' bytes='25' count='5382' iicount='5382' stamp='0.596'>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.ArrayList' flags='1'/>
+<method id='1094' holder='1093' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='5382'/>
+<parse method='1094' uses='5382.000000' stamp='0.596'>
+<bc code='183' bci='20'/>
+<type id='977' name='void'/>
+<klass id='1097' name='[Ljava.lang.Object;' flags='1041'/>
+<type id='975' name='int'/>
+<method id='1098' holder='1093' name='add' return='977' arguments='982 1097 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='5384'/>
+<call method='1098' count='5122' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='5382.000000' stamp='0.596'>
+<bc code='190' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='3'/>
+<branch target_bci='11' taken='3736' not_taken='1648' cnt='5384.000000' prob='0.693908'/>
+<bc code='183' bci='7'/>
+<method id='1100' holder='1093' name='grow' return='1097' flags='2' bytes='11' iicount='1641'/>
+<call method='1100' count='1569' prof_factor='0.999629' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='1647.000000' stamp='0.596'>
+<bc code='183' bci='7'/>
+<method id='1104' holder='1093' name='grow' return='1097' arguments='975' flags='2' bytes='18' iicount='1643'/>
+<call method='1104' count='1570' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='1641.000000' stamp='0.596'>
+<bc code='183' bci='7'/>
+<method id='1106' holder='1093' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' compile_id='668' compiler='c1' level='3' iicount='1643'/>
+<call method='1106' count='1570' prof_factor='0.998783' inline='1'/>
+<klass id='1005' name='java.lang.OutOfMemoryError' flags='1'/>
+<uncommon_trap method='1106' bci='39' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1005'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='1641.000000' stamp='0.596'>
+<bc code='157' bci='15'/>
+<branch target_bci='49' taken='625' not_taken='1018' cnt='1643.000000' prob='0.380402'/>
+<bc code='166' bci='25'/>
+<branch target_bci='35' taken='0' not_taken='1018' cnt='1018.000000' prob='never'/>
+<uncommon_trap bci='25' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='31'/>
+<klass id='1111' name='java.lang.Math' flags='17'/>
+<method id='1112' holder='1111' name='max' return='975' arguments='975 975' flags='9' bytes='11' compile_id='472' compiler='c1' level='3' iicount='3144'/>
+<call method='1112' count='973' prof_factor='0.998783' inline='1'/>
+<intrinsic id='_max' nodes='7'/>
+<bc code='157' bci='53'/>
+<branch target_bci='60' taken='0' not_taken='625' cnt='625.000000' prob='never'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='173' live='168' memory='48040' stamp='0.596'/>
+</parse>
+<bc code='184' bci='10'/>
+<klass id='1107' name='java.util.Arrays' flags='1'/>
+<method id='1108' holder='1107' name='copyOf' return='1097' arguments='1097 975' flags='9' bytes='10' iicount='1905'/>
+<call method='1108' count='1570' prof_factor='0.998783' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='1641.000000' stamp='0.596'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1116' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1116' count='1666' prof_factor='0.861417' inline='1'/>
+<uncommon_trap bci='3' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_getClass' nodes='20'/>
+<bc code='184' bci='6'/>
+<method id='1117' holder='1107' name='copyOf' return='1097' arguments='1097 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='2647'/>
+<call method='1117' count='1666' prof_factor='0.861417' inline='1'/>
+<uncommon_trap bci='6' reason='intrinsic_or_type_checked_inlining' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_copyOf' nodes='86'/>
+<parse_done nodes='294' live='286' memory='71064' stamp='0.597'/>
+</parse>
+<parse_done nodes='450' live='441' memory='91872' stamp='0.597'/>
+</parse>
+<parse_done nodes='456' live='446' memory='93784' stamp='0.597'/>
+</parse>
+<bc code='83' bci='14'/>
+<uncommon_trap bci='14' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='14' reason='array_check' action='maybe_recompile' debug_id='0' klass='1097'/>
+<cast_up reason='monomorphic_array' from='1097' to='(exact)'/>
+<parse_done nodes='662' live='649' memory='133560' stamp='0.597'/>
+</parse>
+<parse_done nodes='672' live='658' memory='136184' stamp='0.597'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1578' nmethods='959' adapters='270' free_code_cache='246027520'/>
+<task_done success='1' nmsize='1432' count='5510' inlined_bytes='178' stamp='0.601'/>
+</task>
+</compilation_log>
+<compilation_log thread='25159'>
+<start_compile_thread name='C2 CompilerThread1' thread='25159' process='25109' stamp='0.105'/>
+<task compile_id='163' method='java.util.HashMap hash (Ljava/lang/Object;)I' bytes='20' count='6428' iicount='6429' stamp='0.166'>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1094' holder='1093' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='66' compiler='c1' level='3' iicount='6452'/>
+<parse method='1094' uses='6452.000000' stamp='0.166'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='6450' not_taken='0' cnt='6450.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1096' name='java.lang.module.ModuleDescriptor' flags='1'/>
+<method id='1097' holder='982' name='hashCode' return='975' flags='257' bytes='0' compile_id='95' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1097' count='6184' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='3986' receiver2='1096' receiver2_count='139'/>
+<intrinsic id='_hashCode' virtual='1' nodes='55'/>
+<parse_done nodes='100' live='98' memory='32304' stamp='0.166'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<code_cache total_blobs='485' nmethods='170' adapters='162' free_code_cache='248496640'/>
+<task_done success='1' nmsize='184' count='6931' stamp='0.167'/>
+</task>
+<task compile_id='314' method='java.lang.StringLatin1 charAt ([BI)C' bytes='28' count='13847' iicount='13847' stamp='0.246'>
+<type id='970' name='char'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.StringLatin1' flags='16'/>
+<method id='1094' holder='1093' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='6' compiler='c1' level='3' iicount='13847'/>
+<klass id='1096' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1094' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1096'/>
+<parse method='1094' uses='13847.000000' stamp='0.247'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='13842' cnt='13842.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='13842' not_taken='0' cnt='13842.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='95' live='90' memory='32120' stamp='0.247'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='711' nmethods='315' adapters='239' free_code_cache='248184576'/>
+<task_done success='1' nmsize='120' count='13953' stamp='0.248'/>
+</task>
+<task compile_id='583' method='com.sun.org.apache.xerces.internal.xni.XMLString setValues ([CII)V' bytes='16' count='2507' iicount='2507' stamp='0.341'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1094' holder='1093' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='532' compiler='c1' level='3' iicount='2567'/>
+<parse method='1094' uses='2567.000000' stamp='0.342'>
+<parse_done nodes='189' live='188' memory='45656' stamp='0.342'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1016' nmethods='576' adapters='261' free_code_cache='247483392'/>
+<task_done success='1' nmsize='344' count='3463' stamp='0.345'/>
+</task>
+<task compile_id='593' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndexFast (Ljava/lang/String;)I' bytes='38' count='2951' backedge_count='19533' iicount='2951' stamp='0.346'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getIndexFast' return='975' arguments='983' flags='1' bytes='38' compile_id='545' compiler='c1' level='3' iicount='2951'/>
+<parse method='1094' uses='2951.000000' stamp='0.346'>
+<bc code='162' bci='7'/>
+<branch target_bci='36' taken='2518' not_taken='16880' cnt='19398.000000' prob='0.129807'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='18'/>
+<uncommon_trap bci='18' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='25'/>
+<branch target_bci='30' taken='16880' not_taken='0' cnt='16880.000000' prob='always'/>
+<uncommon_trap bci='25' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='7'/>
+<branch target_bci='36' taken='2518' not_taken='16880' cnt='16880.000000' prob='0.129807'/>
+<parse_done nodes='180' live='172' memory='47032' stamp='0.347'/>
+</parse>
+<loop_tree>
+<loop idx='187' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='352' inner_loop='1' main_loop='352' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='291' inner_loop='1' pre_loop='187' >
+</loop>
+<loop idx='352' inner_loop='1' main_loop='352' >
+</loop>
+<loop idx='240' inner_loop='1' post_loop='187' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='291' inner_loop='1' pre_loop='187' >
+</loop>
+<loop idx='352' inner_loop='1' main_loop='352' >
+</loop>
+<loop idx='240' inner_loop='1' post_loop='187' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='291' inner_loop='1' pre_loop='187' >
+</loop>
+<loop idx='352' inner_loop='1' main_loop='352' >
+</loop>
+<loop idx='240' inner_loop='1' post_loop='187' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1045' nmethods='591' adapters='261' free_code_cache='247434240'/>
+<task_done success='1' nmsize='440' count='3612' backedge_count='24237' stamp='0.350'/>
+</task>
+<task compile_id='610' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner checkLimit (Lcom/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit;Lcom/sun/xml/internal/stream/Entity$ScannedEntity;II)V' bytes='253' count='5179' iicount='5179' stamp='0.353'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<klass id='1095' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<type id='975' name='int'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1096' holder='1093' name='checkLimit' return='977' arguments='1094 1095 975 975' flags='4' bytes='253' compile_id='538' compiler='c1' level='3' iicount='5182'/>
+<parse method='1096' uses='5182.000000' stamp='0.353'>
+<bc code='180' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='11'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1101' holder='1098' name='addValue' return='977' arguments='1094 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='5895'/>
+<call method='1101' count='5135' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5179.000000' stamp='0.353'>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<klass id='1115' name='java.lang.Enum' flags='1025'/>
+<method id='1116' holder='1115' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1116' count='5730' prof_factor='0.878541' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='5179.000000' stamp='0.353'>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='97' live='93' memory='34064' stamp='0.353'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1117' holder='1098' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='5989'/>
+<call method='1117' count='5730' prof_factor='0.878541' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1117' uses='5179.000000' stamp='0.360'>
+<bc code='182' bci='4'/>
+<call method='1116' count='7876' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6811.000000' stamp='0.360'>
+<parse_done nodes='122' live='117' memory='38168' stamp='0.360'/>
+</parse>
+<bc code='159' bci='7'/>
+<branch target_bci='50' taken='0' not_taken='7876' cnt='7876.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='14'/>
+<call method='1116' count='7876' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6811.000000' stamp='0.360'>
+<parse_done nodes='148' live='141' memory='45256' stamp='0.360'/>
+</parse>
+<bc code='159' bci='17'/>
+<branch target_bci='50' taken='0' not_taken='7876' cnt='7876.000000' prob='never'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='24'/>
+<call method='1116' count='7876' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6811.000000' stamp='0.360'>
+<parse_done nodes='173' live='164' memory='49256' stamp='0.360'/>
+</parse>
+<bc code='159' bci='27'/>
+<branch target_bci='50' taken='0' not_taken='7876' cnt='7876.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='34'/>
+<call method='1116' count='7876' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6811.000000' stamp='0.360'>
+<parse_done nodes='198' live='187' memory='53800' stamp='0.360'/>
+</parse>
+<bc code='159' bci='37'/>
+<branch target_bci='50' taken='0' not_taken='7876' cnt='7876.000000' prob='never'/>
+<uncommon_trap bci='37' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='44'/>
+<call method='1116' count='7876' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6811.000000' stamp='0.360'>
+<parse_done nodes='223' live='210' memory='57800' stamp='0.360'/>
+</parse>
+<bc code='160' bci='47'/>
+<branch target_bci='61' taken='7876' not_taken='0' cnt='7876.000000' prob='always'/>
+<uncommon_trap bci='47' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='65'/>
+<call method='1116' count='7876' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6811.000000' stamp='0.360'>
+<parse_done nodes='248' live='233' memory='64600' stamp='0.360'/>
+</parse>
+<bc code='159' bci='68'/>
+<branch target_bci='81' taken='725' not_taken='7151' cnt='7876.000000' prob='0.0920518'/>
+<bc code='182' bci='75'/>
+<call method='1116' count='7151' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='6184.000000' stamp='0.360'>
+<parse_done nodes='269' live='253' memory='72344' stamp='0.360'/>
+</parse>
+<bc code='160' bci='78'/>
+<branch target_bci='96' taken='138' not_taken='7013' cnt='7151.000000' prob='0.019298'/>
+<bc code='50' bci='101'/>
+<uncommon_trap bci='101' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='101' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='102'/>
+<branch target_bci='127' taken='138' not_taken='0' cnt='138.000000' prob='always'/>
+<uncommon_trap bci='102' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='132'/>
+<uncommon_trap bci='132' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='185' bci='141'/>
+<klass id='1127' name='java.util.HashMap' flags='1'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1120' name='java.util.Map' flags='1537'/>
+<method id='1122' holder='1120' name='containsKey' return='969' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1122' count='138' prof_factor='0.864752' virtual='1' inline='1' receiver='1127' receiver_count='138'/>
+<method id='1138' holder='1127' name='containsKey' return='969' arguments='982' flags='1' bytes='18' compile_id='71' compiler='c1' level='3' iicount='927'/>
+<call method='1138' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='141' klass='1127'/>
+<uncommon_trap bci='141' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='141' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1138' uses='119.000000' stamp='0.360'>
+<bc code='184' bci='2'/>
+<method id='1139' holder='1127' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='8547'/>
+<call method='1139' count='-1' prof_factor='0.128371' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='-1.000000' stamp='0.361'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8547' not_taken='0' cnt='8547.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<method id='1147' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6267'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<call method='1147' count='8268' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1147' uses='8547.000000' stamp='0.361'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<method id='1148' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='58164'/>
+<call method='1148' count='2283' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='2403.000000' stamp='0.361'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='58164' cnt='58164.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='58163' cnt='58164.000000' prob='1.71928e-05'/>
+<parse_done nodes='510' live='485' memory='108144' stamp='0.361'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1151' name='java.lang.StringLatin1' flags='16'/>
+<method id='1152' holder='1151' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='19' compiler='c2' level='4' iicount='1851'/>
+<call method='1152' count='2283' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1152' uses='2403.000000' stamp='0.361'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='648' live='617' memory='142600' stamp='0.361'/>
+</parse>
+<parse_done nodes='655' live='623' memory='144312' stamp='0.361'/>
+</parse>
+<parse_done nodes='660' live='627' memory='145824' stamp='0.361'/>
+</parse>
+<bc code='182' bci='6'/>
+<klass id='1140' name='java.util.HashMap$Node' flags='8'/>
+<method id='1141' holder='1127' name='getNode' return='1140' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='4319'/>
+<call method='1141' count='-1' prof_factor='0.128371' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='6'/>
+<parse_done nodes='690' live='656' memory='151224' stamp='0.361'/>
+</parse>
+<bc code='153' bci='146'/>
+<branch target_bci='185' taken='0' not_taken='138' cnt='138.000000' prob='never'/>
+<uncommon_trap bci='146' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='154'/>
+<method id='1161' holder='1127' name='get' return='982' arguments='982' flags='1' bytes='23' compile_id='93' compiler='c1' level='3' iicount='3346'/>
+<call method='1161' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1161' uses='119.000000' stamp='0.361'>
+<bc code='184' bci='2'/>
+<call method='1139' count='3074' prof_factor='0.035565' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='119.000000' stamp='0.362'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8547' not_taken='0' cnt='8547.000000' prob='always'/>
+<bc code='182' bci='9'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<call method='1147' count='8268' prof_factor='0.013923' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1147' uses='119.000000' stamp='0.362'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1148' count='2283' prof_factor='0.018988' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='46.000000' stamp='0.362'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='58164' cnt='58164.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='58163' cnt='58164.000000' prob='1.71928e-05'/>
+<parse_done nodes='815' live='778' memory='170120' stamp='0.362'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<call method='1152' count='2283' prof_factor='0.018988' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1152' uses='46.000000' stamp='0.362'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='948' live='905' memory='195280' stamp='0.362'/>
+</parse>
+<parse_done nodes='955' live='911' memory='197384' stamp='0.362'/>
+</parse>
+<parse_done nodes='959' live='914' memory='198288' stamp='0.362'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1141' count='3074' prof_factor='0.035565' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1141' uses='119.000000' stamp='0.362'>
+<bc code='198' bci='6'/>
+<branch target_bci='146' taken='517' not_taken='3802' cnt='4319.000000' prob='0.119704'/>
+<bc code='158' bci='14'/>
+<branch target_bci='146' taken='0' not_taken='3802' cnt='3802.000000' prob='never'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='50' bci='24'/>
+<uncommon_trap bci='24' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='146' taken='452' not_taken='3350' cnt='3802.000000' prob='0.118885'/>
+<bc code='160' bci='37'/>
+<branch target_bci='68' taken='663' not_taken='2687' cnt='3350.000000' prob='0.19791'/>
+<bc code='165' bci='49'/>
+<branch target_bci='65' taken='2677' not_taken='10' cnt='2687.000000' prob='0.996278'/>
+<bc code='198' bci='53'/>
+<branch target_bci='68' taken='0' not_taken='10'/>
+<bc code='182' bci='59'/>
+<method id='1166' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1166'/>
+<call method='1166' count='9' prof_factor='0.027553' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='59'/>
+<bc code='153' bci='62'/>
+<branch target_bci='68' taken='0' not_taken='10'/>
+<bc code='198' bci='76'/>
+<branch target_bci='146' taken='177' not_taken='486' cnt='663.000000' prob='0.266968'/>
+<bc code='153' bci='84'/>
+<branch target_bci='98' taken='486' not_taken='0' cnt='486.000000' prob='always'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='98' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='98' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='100'/>
+<uncommon_trap bci='100' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='104'/>
+<branch target_bci='135' taken='140' not_taken='448' cnt='588.000000' prob='0.238095'/>
+<bc code='165' bci='116'/>
+<branch target_bci='132' taken='447' not_taken='1' cnt='448.000000' prob='0.997768'/>
+<bc code='198' bci='120'/>
+<branch target_bci='135' taken='0' not_taken='1'/>
+<bc code='182' bci='126'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1166'/>
+<call method='1166' count='1' prof_factor='0.027553' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='126'/>
+<bc code='153' bci='129'/>
+<branch target_bci='135' taken='0' not_taken='1'/>
+<bc code='199' bci='143'/>
+<branch target_bci='98' taken='101' not_taken='38' cnt='139.000000' prob='0.726619'/>
+<parse_done nodes='1260' live='1206' memory='268336' stamp='0.364'/>
+</parse>
+<bc code='199' bci='11'/>
+<branch target_bci='18' taken='2501' not_taken='845' cnt='3346.000000' prob='0.74746'/>
+<parse_done nodes='1277' live='1222' memory='271136' stamp='0.364'/>
+</parse>
+<bc code='192' bci='159'/>
+<uncommon_trap bci='159' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='159' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='162'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1126' holder='1076' name='intValue' return='975' flags='1' bytes='5' iicount='49'/>
+<call method='1126' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1126' uses='119.000000' stamp='0.364'>
+<parse_done nodes='1330' live='1272' memory='280848' stamp='0.364'/>
+</parse>
+<bc code='184' bci='173'/>
+<method id='1109' holder='1076' name='valueOf' return='1076' arguments='975' flags='9' bytes='32' iicount='184'/>
+<call method='1109' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='119.000000' stamp='0.364'>
+<bc code='50' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='183' bci='28'/>
+<method id='1171' holder='1076' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='10' iicount='275'/>
+<call method='1171' count='-1' prof_factor='0.646739' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1171' uses='-1.000000' stamp='0.365'>
+<bc code='183' bci='1'/>
+<klass id='1071' name='java.lang.Number' flags='1025'/>
+<method id='1177' holder='1071' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='416' compiler='c1' level='3' iicount='1020'/>
+<call method='1177' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1177' uses='-1.000000' stamp='0.366'>
+<bc code='183' bci='1'/>
+<method id='1179' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='25217'/>
+<call method='1179' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1179' uses='-1.000000' stamp='0.366'>
+<parse_done nodes='1454' live='1393' memory='307368' stamp='0.366'/>
+</parse>
+<parse_done nodes='1457' live='1395' memory='308344' stamp='0.366'/>
+</parse>
+<parse_done nodes='1466' live='1403' memory='310376' stamp='0.366'/>
+</parse>
+<parse_done nodes='1466' live='1402' memory='310376' stamp='0.366'/>
+</parse>
+<bc code='185' bci='176'/>
+<method id='1182' holder='1127' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='3483'/>
+<dependency type='unique_concrete_method' ctxk='1127' x='1182'/>
+<call method='1182' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1182' uses='119.000000' stamp='0.366'>
+<bc code='184' bci='2'/>
+<call method='1139' count='3147' prof_factor='0.034166' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1139' uses='119.000000' stamp='0.366'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='8547' not_taken='0' cnt='8547.000000' prob='always'/>
+<bc code='182' bci='9'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<call method='1147' count='8268' prof_factor='0.013923' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1147' uses='119.000000' stamp='0.366'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1148' count='2283' prof_factor='0.018988' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='46.000000' stamp='0.367'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='58164' cnt='58164.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='58163' cnt='58164.000000' prob='1.71928e-05'/>
+<parse_done nodes='1583' live='1517' memory='330152' stamp='0.367'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<call method='1152' count='2283' prof_factor='0.018988' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1152' uses='46.000000' stamp='0.367'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='1720' live='1648' memory='353608' stamp='0.367'/>
+</parse>
+<parse_done nodes='1727' live='1654' memory='355000' stamp='0.367'/>
+</parse>
+<parse_done nodes='1731' live='1657' memory='355904' stamp='0.367'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1183' holder='1127' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='4291'/>
+<call method='1183' count='3147' prof_factor='0.034166' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1183' uses='119.000000' stamp='0.369'>
+<bc code='198' bci='7'/>
+<branch target_bci='19' taken='639' not_taken='3652' cnt='4291.000000' prob='0.148916'/>
+<bc code='154' bci='16'/>
+<branch target_bci='29' taken='3652' not_taken='0' cnt='3652.000000' prob='always'/>
+<uncommon_trap bci='16' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='20'/>
+<klass id='1157' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1186' holder='1127' name='resize' return='1157' flags='16' bytes='356' compile_id='138' compiler='c1' level='3' iicount='734'/>
+<call method='1186' count='592' prof_factor='0.027732' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='20'/>
+<bc code='190' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='40'/>
+<uncommon_trap bci='40' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='44'/>
+<branch target_bci='63' taken='1390' not_taken='2901' cnt='4291.000000' prob='0.323934'/>
+<bc code='182' bci='56'/>
+<method id='1189' holder='1127' name='newNode' return='1140' arguments='975 982 982 1140' flags='0' bytes='13' compile_id='76' compiler='c1' level='3' iicount='3759'/>
+<call method='1189' count='2688' prof_factor='0.027732' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='80.000000' stamp='0.370'>
+<bc code='183' bci='9'/>
+<method id='1195' holder='1140' name='&lt;init&gt;' return='977' arguments='975 982 982 1140' flags='0' bytes='26' compile_id='75' compiler='c1' level='3' iicount='4013'/>
+<call method='1195' count='3388' prof_factor='0.021282' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1195' uses='80.000000' stamp='0.371'>
+<bc code='183' bci='1'/>
+<call method='1179' count='3653' prof_factor='0.019935' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1179' uses='80.000000' stamp='0.371'>
+<parse_done nodes='1913' live='1835' memory='392184' stamp='0.371'/>
+</parse>
+<parse_done nodes='2247' live='2168' memory='488704' stamp='0.373'/>
+</parse>
+<parse_done nodes='2247' live='2167' memory='488832' stamp='0.373'/>
+</parse>
+<bc code='83' bci='59'/>
+<uncommon_trap bci='59' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='59' reason='array_check' action='maybe_recompile' debug_id='0' klass='1157'/>
+<cast_up reason='monomorphic_array' from='1157' to='(exact)'/>
+<bc code='160' bci='69'/>
+<branch target_bci='104' taken='1085' not_taken='305' cnt='1390.000000' prob='0.780576'/>
+<bc code='165' bci='81'/>
+<branch target_bci='97' taken='305' not_taken='0' cnt='305.000000' prob='always'/>
+<uncommon_trap bci='81' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='109'/>
+<branch target_bci='131' taken='1085' not_taken='0' cnt='1085.000000' prob='always'/>
+<uncommon_trap bci='109' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='286' not_taken='1064' cnt='1350.000000' prob='0.211852'/>
+<uncommon_trap bci='175' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='175' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='177'/>
+<uncommon_trap bci='177' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='181'/>
+<branch target_bci='212' taken='265' not_taken='21' cnt='286.000000' prob='0.926573'/>
+<bc code='165' bci='193'/>
+<branch target_bci='222' taken='21' not_taken='0'/>
+<bc code='198' bci='197'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='182' bci='203'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1166'/>
+<call method='1166' count='0' prof_factor='0.027732' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='203'/>
+<bc code='153' bci='206'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='286' not_taken='1064' cnt='265.000000' prob='0.211852'/>
+<bc code='182' bci='152'/>
+<call method='1189' count='986' prof_factor='0.027732' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1189' uses='30.000000' stamp='0.374'>
+<bc code='183' bci='9'/>
+<call method='1195' count='3388' prof_factor='0.007981' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1195' uses='30.000000' stamp='0.374'>
+<bc code='183' bci='1'/>
+<call method='1179' count='3653' prof_factor='0.007476' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1179' uses='30.000000' stamp='0.374'>
+<parse_done nodes='2695' live='2607' memory='573008' stamp='0.374'/>
+</parse>
+<parse_done nodes='3017' live='2928' memory='624832' stamp='0.377'/>
+</parse>
+<parse_done nodes='3017' live='2927' memory='624960' stamp='0.377'/>
+</parse>
+<bc code='161' bci='162'/>
+<branch target_bci='222' taken='1064' not_taken='0' cnt='1064.000000' prob='always'/>
+<uncommon_trap bci='162' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='224'/>
+<branch target_bci='259' taken='1064' not_taken='326' cnt='1390.000000' prob='0.765468'/>
+<bc code='153' bci='236'/>
+<branch target_bci='244' taken='323' not_taken='3' cnt='326.000000' prob='0.990798'/>
+<bc code='182' bci='253'/>
+<method id='1188' holder='1127' name='afterNodeAccess' return='977' arguments='1140' flags='0' bytes='1' iicount='302'/>
+<call method='1188' count='302' prof_factor='0.027732' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1188' uses='9.000000' stamp='0.377'>
+<parse_done nodes='3361' live='3269' memory='678616' stamp='0.377'/>
+</parse>
+<bc code='164' bci='284'/>
+<branch target_bci='292' taken='3870' not_taken='95' cnt='3965.000000' prob='0.97604'/>
+<bc code='182' bci='288'/>
+<call method='1186' count='88' prof_factor='0.027732' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='288'/>
+<bc code='182' bci='295'/>
+<method id='1187' holder='1127' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='134' compiler='c1' level='1' iicount='1527'/>
+<call method='1187' count='3674' prof_factor='0.027732' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1187' uses='110.000000' stamp='0.378'>
+<parse_done nodes='3425' live='3331' memory='693608' stamp='0.378'/>
+</parse>
+<parse_done nodes='3430' live='3335' memory='695032' stamp='0.378'/>
+</parse>
+<parse_done nodes='3439' live='3343' memory='697256' stamp='0.378'/>
+</parse>
+<bc code='46' bci='205'/>
+<uncommon_trap bci='205' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='205' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='206'/>
+<branch target_bci='224' taken='0' not_taken='138' cnt='138.000000' prob='never'/>
+<uncommon_trap bci='206' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='79' bci='216'/>
+<uncommon_trap bci='216' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='83' bci='223'/>
+<uncommon_trap bci='223' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='223' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='228'/>
+<call method='1116' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='119.000000' stamp='0.378'>
+<parse_done nodes='3742' live='3639' memory='753864' stamp='0.378'/>
+</parse>
+<bc code='159' bci='231'/>
+<branch target_bci='244' taken='138' not_taken='0' cnt='138.000000' prob='always'/>
+<uncommon_trap bci='231' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='251'/>
+<call method='1116' count='138' prof_factor='0.864752' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='119.000000' stamp='0.378'>
+<parse_done nodes='3779' live='3674' memory='764936' stamp='0.378'/>
+</parse>
+<bc code='46' bci='255'/>
+<uncommon_trap bci='255' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='255' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='258'/>
+<uncommon_trap bci='258' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='87'/>
+<uncommon_trap bci='87' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='87' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='94'/>
+<uncommon_trap bci='94' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='94' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='3920' live='3806' memory='795216' stamp='0.378'/>
+</parse>
+<parse_done nodes='3930' live='3815' memory='797744' stamp='0.378'/>
+</parse>
+<bc code='182' bci='23'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1102' holder='1099' name='isOverLimit' return='969' arguments='1094 1098' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='11225'/>
+<call method='1102' count='5135' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='5179.000000' stamp='0.378'>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<call method='1116' count='19134' prof_factor='0.461381' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8828.000000' stamp='0.378'>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='3994' live='3876' memory='811584' stamp='0.378'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1201' holder='1099' name='isOverLimit' return='969' arguments='975 1098' flags='1' bytes='111' compile_id='594' compiler='c2' level='4' iicount='11900'/>
+<call method='1201' count='19134' prof_factor='0.461381' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1201' uses='8828.000000' stamp='0.379'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1116' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8306.000000' stamp='0.379'>
+<parse_done nodes='4078' live='3956' memory='829208' stamp='0.379'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1116' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8306.000000' stamp='0.379'>
+<parse_done nodes='4110' live='3986' memory='920144' stamp='0.379'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1116' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8306.000000' stamp='0.379'>
+<parse_done nodes='4142' live='4016' memory='934064' stamp='0.379'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='45'/>
+<call method='1116' count='5416' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='4108.000000' stamp='0.379'>
+<parse_done nodes='4170' live='4043' memory='938976' stamp='0.379'/>
+</parse>
+<bc code='159' bci='48'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='48' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='55'/>
+<call method='1116' count='5416' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='4108.000000' stamp='0.379'>
+<parse_done nodes='4202' live='4073' memory='945856' stamp='0.379'/>
+</parse>
+<bc code='159' bci='58'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='58' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='65'/>
+<call method='1116' count='5416' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='4108.000000' stamp='0.379'>
+<parse_done nodes='4234' live='4103' memory='952248' stamp='0.379'/>
+</parse>
+<bc code='160' bci='68'/>
+<branch target_bci='91' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='68' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='73'/>
+<method id='1203' holder='1098' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' compile_id='521' compiler='c1' level='3' iicount='11168'/>
+<call method='1203' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1203' uses='8306.000000' stamp='0.379'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='4314' live='4178' memory='974992' stamp='0.379'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='4365' live='4225' memory='982968' stamp='0.380'/>
+</parse>
+<parse_done nodes='4374' live='4233' memory='984704' stamp='0.380'/>
+</parse>
+<bc code='153' bci='26'/>
+<branch target_bci='162' taken='5179' not_taken='0' cnt='5179.000000' prob='always'/>
+<bc code='182' bci='173'/>
+<call method='1102' count='5135' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='5179.000000' stamp='0.380'>
+<uncommon_trap bci='173' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<call method='1116' count='19134' prof_factor='0.461381' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8828.000000' stamp='0.380'>
+<parse_done nodes='4431' live='4288' memory='994752' stamp='0.380'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1201' count='19134' prof_factor='0.461381' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1201' uses='8828.000000' stamp='0.380'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1116' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8306.000000' stamp='0.380'>
+<parse_done nodes='4515' live='4368' memory='1010528' stamp='0.380'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1116' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8306.000000' stamp='0.380'>
+<parse_done nodes='4547' live='4398' memory='1017464' stamp='0.380'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1116' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1116' uses='8306.000000' stamp='0.380'>
+<parse_done nodes='4579' live='4428' memory='1023672' stamp='0.380'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='73'/>
+<call method='1203' count='10952' prof_factor='0.741849' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1203' uses='8306.000000' stamp='0.380'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='4655' live='4500' memory='1040672' stamp='0.380'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='4706' live='4547' memory='1050736' stamp='0.380'/>
+</parse>
+<parse_done nodes='4715' live='4555' memory='1066808' stamp='0.380'/>
+</parse>
+<bc code='153' bci='176'/>
+<branch target_bci='252' taken='5179' not_taken='0' cnt='5179.000000' prob='always'/>
+<parse_done nodes='4733' live='4572' memory='1070424' stamp='0.380'/>
+</parse>
+<loop_tree>
+<loop idx='2409' >
+</loop>
+<loop idx='2415' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2421' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2409' inner_loop='1' >
+</loop>
+<loop idx='2415' inner_loop='1' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2421' inner_loop='1' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2409' inner_loop='1' >
+</loop>
+<loop idx='2415' inner_loop='1' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2421' inner_loop='1' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2751' inner_loop='1' main_loop='2751' >
+</loop>
+<loop idx='2830' inner_loop='1' main_loop='2830' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2910' inner_loop='1' main_loop='2910' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2718' inner_loop='1' pre_loop='2409' >
+</loop>
+<loop idx='2751' inner_loop='1' main_loop='2751' >
+</loop>
+<loop idx='2691' inner_loop='1' post_loop='2409' >
+</loop>
+<loop idx='2797' inner_loop='1' pre_loop='2415' >
+</loop>
+<loop idx='2830' inner_loop='1' main_loop='2830' >
+</loop>
+<loop idx='2770' inner_loop='1' post_loop='2415' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2877' inner_loop='1' pre_loop='2421' >
+</loop>
+<loop idx='2910' inner_loop='1' main_loop='2910' >
+</loop>
+<loop idx='2850' inner_loop='1' post_loop='2421' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2718' inner_loop='1' pre_loop='2409' >
+</loop>
+<loop idx='3217' inner_loop='1' main_loop='3217' >
+</loop>
+<loop idx='2691' inner_loop='1' post_loop='2409' >
+</loop>
+<loop idx='2797' inner_loop='1' pre_loop='2415' >
+</loop>
+<loop idx='3247' inner_loop='1' main_loop='3247' >
+</loop>
+<loop idx='2770' inner_loop='1' post_loop='2415' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2877' inner_loop='1' pre_loop='2421' >
+</loop>
+<loop idx='3278' inner_loop='1' main_loop='3278' >
+</loop>
+<loop idx='2850' inner_loop='1' post_loop='2421' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2718' inner_loop='1' pre_loop='2409' >
+</loop>
+<loop idx='3217' inner_loop='1' main_loop='3217' >
+</loop>
+<loop idx='2691' inner_loop='1' post_loop='2409' >
+</loop>
+<loop idx='2797' inner_loop='1' pre_loop='2415' >
+</loop>
+<loop idx='3247' inner_loop='1' main_loop='3247' >
+</loop>
+<loop idx='2770' inner_loop='1' post_loop='2415' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2877' inner_loop='1' pre_loop='2421' >
+</loop>
+<loop idx='3278' inner_loop='1' main_loop='3278' >
+</loop>
+<loop idx='2850' inner_loop='1' post_loop='2421' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2718' inner_loop='1' pre_loop='2409' >
+</loop>
+<loop idx='3217' inner_loop='1' main_loop='3217' >
+</loop>
+<loop idx='2691' inner_loop='1' post_loop='2409' >
+</loop>
+<loop idx='2797' inner_loop='1' pre_loop='2415' >
+</loop>
+<loop idx='3247' inner_loop='1' main_loop='3247' >
+</loop>
+<loop idx='2770' inner_loop='1' post_loop='2415' >
+</loop>
+<loop idx='2401' inner_loop='1' >
+</loop>
+<loop idx='2877' inner_loop='1' pre_loop='2421' >
+</loop>
+<loop idx='3278' inner_loop='1' main_loop='3278' >
+</loop>
+<loop idx='2850' inner_loop='1' post_loop='2421' >
+</loop>
+<loop idx='2403' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='3' success='1'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1147'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1166'/>
+<dependency type='unique_concrete_method' ctxk='1127' x='1182'/>
+<code_cache total_blobs='1274' nmethods='735' adapters='262' free_code_cache='246680704'/>
+<task_done success='1' nmsize='7888' count='15167' inlined_bytes='1641' stamp='0.462'/>
+</task>
+<task compile_id='742' method='java.lang.StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder;' bytes='8' count='5136' iicount='5136' stamp='0.465'>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='184' compiler='c1' level='3' iicount='5136'/>
+<parse method='1093' uses='5136.000000' stamp='0.465'>
+<bc code='183' bci='2'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1095' holder='1048' name='append' return='1048' arguments='983' flags='1' bytes='45' compile_id='185' compiler='c1' level='3' iicount='5138'/>
+<call method='1095' count='5123' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5136.000000' stamp='0.465'>
+<bc code='199' bci='1'/>
+<branch target_bci='9' taken='5138' not_taken='0' cnt='5138.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='10'/>
+<type id='975' name='int'/>
+<method id='1096' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='35934'/>
+<call method='1096' count='5123' prof_factor='0.999611' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='5136.000000' stamp='0.465'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1101' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='60132'/>
+<call method='1101' count='35671' prof_factor='0.142929' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5136.000000' stamp='0.465'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60132' cnt='60132.000000' prob='never'/>
+<parse_done nodes='105' live='102' memory='34248' stamp='0.465'/>
+</parse>
+<parse_done nodes='106' live='102' memory='34544' stamp='0.465'/>
+</parse>
+<bc code='183' bci='21'/>
+<type id='977' name='void'/>
+<method id='1097' holder='1048' name='ensureCapacityInternal' return='977' arguments='975' flags='2' bytes='39' compile_id='618' compiler='c2' level='4' iicount='5517'/>
+<call method='1097' count='5123' prof_factor='0.999611' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1097' uses='5136.000000' stamp='0.466'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='38' taken='4347' not_taken='1170' cnt='5517.000000' prob='0.787928'/>
+<bc code='183' bci='24'/>
+<method id='1105' holder='1048' name='newCapacity' return='975' arguments='975' flags='2' bytes='55' compile_id='295' compiler='c1' level='3' iicount='1176'/>
+<call method='1105' count='1113' prof_factor='0.930941' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='1089.000000' stamp='0.466'>
+<bc code='156' bci='20'/>
+<branch target_bci='25' taken='1083' not_taken='93' cnt='1176.000000' prob='0.920918'/>
+<bc code='158' bci='35'/>
+<branch target_bci='45' taken='0' not_taken='1176' cnt='1176.000000' prob='never'/>
+<uncommon_trap bci='35' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='156' bci='42'/>
+<branch target_bci='53' taken='1176' not_taken='0' cnt='1176.000000' prob='always'/>
+<uncommon_trap bci='42' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='219' live='211' memory='52776' stamp='0.466'/>
+</parse>
+<bc code='184' bci='32'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1106' name='java.util.Arrays' flags='1'/>
+<method id='1107' holder='1106' name='copyOf' return='1085' arguments='1085 975' flags='9' bytes='19' iicount='1410'/>
+<call method='1107' count='1113' prof_factor='0.930941' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1107' uses='1089.000000' stamp='0.466'>
+<bc code='190' bci='9'/>
+<uncommon_trap bci='9' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='11'/>
+<klass id='1111' name='java.lang.Math' flags='17'/>
+<method id='1112' holder='1111' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='13223'/>
+<call method='1112' count='1230' prof_factor='0.772340' inline='1'/>
+<intrinsic id='_min' nodes='3'/>
+<bc code='184' bci='14'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1113' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1113' count='1230' prof_factor='0.772340' inline='1'/>
+<uncommon_trap bci='1' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='53'/>
+<parse_done nodes='356' live='345' memory='81176' stamp='0.466'/>
+</parse>
+<parse_done nodes='514' live='502' memory='112472' stamp='0.466'/>
+</parse>
+<bc code='183' bci='30'/>
+<method id='1098' holder='1048' name='putStringAt' return='977' arguments='975 983' flags='18' bytes='29' compile_id='180' compiler='c1' level='3' iicount='5138'/>
+<call method='1098' count='5123' prof_factor='0.999611' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='5136.000000' stamp='0.466'>
+<bc code='182' bci='1'/>
+<method id='1115' holder='1048' name='getCoder' return='973' flags='16' bytes='15' compile_id='181' compiler='c1' level='3' iicount='5156'/>
+<call method='1115' count='4897' prof_factor='0.999611' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1115' uses='5136.000000' stamp='0.466'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='5156' cnt='5156.000000' prob='never'/>
+<parse_done nodes='554' live='541' memory='119928' stamp='0.466'/>
+</parse>
+<bc code='182' bci='5'/>
+<call method='1101' count='4897' prof_factor='0.999611' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5136.000000' stamp='0.466'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60132' cnt='60132.000000' prob='never'/>
+<parse_done nodes='580' live='566' memory='124032' stamp='0.466'/>
+</parse>
+<bc code='159' bci='8'/>
+<branch target_bci='15' taken='5138' not_taken='0' cnt='5138.000000' prob='always'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='25'/>
+<method id='1116' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' compile_id='182' compiler='c1' level='3' iicount='5171'/>
+<call method='1116' count='4897' prof_factor='0.999611' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1116' uses='5136.000000' stamp='0.467'>
+<bc code='182' bci='1'/>
+<call method='1101' count='4918' prof_factor='0.993231' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='5136.000000' stamp='0.467'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='60132' cnt='60132.000000' prob='never'/>
+<parse_done nodes='634' live='618' memory='133520' stamp='0.467'/>
+</parse>
+<bc code='160' bci='5'/>
+<branch target_bci='28' taken='0' not_taken='5171' cnt='5171.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='22'/>
+<call method='1113' count='4918' prof_factor='0.993231' inline='1'/>
+<uncommon_trap bci='22' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='22' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='73'/>
+<parse_done nodes='746' live='725' memory='153560' stamp='0.467'/>
+</parse>
+<parse_done nodes='750' live='728' memory='154712' stamp='0.467'/>
+</parse>
+<parse_done nodes='763' live='740' memory='157728' stamp='0.467'/>
+</parse>
+<parse_done nodes='766' live='742' memory='158744' stamp='0.467'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1303' nmethods='746' adapters='262' free_code_cache='246627584'/>
+<task_done success='1' nmsize='1432' count='5366' inlined_bytes='313' stamp='0.472'/>
+</task>
+<task compile_id='751' method='java.lang.String getBytes ([BIB)V' bytes='44' count='5381' iicount='5381' stamp='0.473'>
+<type id='977' name='void'/>
+<klass id='1085' name='[B' flags='1041'/>
+<type id='975' name='int'/>
+<type id='973' name='byte'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='getBytes' return='977' arguments='1085 975 973' flags='0' bytes='44' compile_id='182' compiler='c1' level='3' iicount='5381'/>
+<parse method='1093' uses='5381.000000' stamp='0.473'>
+<bc code='182' bci='1'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='61231'/>
+<call method='1095' count='5126' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5381.000000' stamp='0.473'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61231' cnt='61231.000000' prob='never'/>
+<parse_done nodes='51' live='50' memory='24864' stamp='0.473'/>
+</parse>
+<bc code='160' bci='5'/>
+<branch target_bci='28' taken='0' not_taken='5381' cnt='5381.000000' prob='never'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='22'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1098' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1098' count='5126' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='22' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='22' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='77'/>
+<parse_done nodes='171' live='165' memory='46728' stamp='0.473'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1307' nmethods='748' adapters='262' free_code_cache='246617088'/>
+<task_done success='1' nmsize='280' count='5392' inlined_bytes='15' stamp='0.474'/>
+</task>
+<task compile_id='769' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl scanAttribute (Lcom/sun/org/apache/xerces/internal/xni/XMLAttributes;)V' bytes='248' count='20816' iicount='20816' decompiles='1' stamp='0.511'>
+<type id='977' name='void'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl' flags='1'/>
+<method id='1095' holder='1093' name='scanAttribute' return='977' arguments='1094' flags='4' bytes='248' compile_id='750' compiler='c1' level='3' iicount='20817'/>
+<parse method='1095' uses='20817.000000' stamp='0.512'>
+<bc code='153' bci='4'/>
+<branch target_bci='25' taken='20817' not_taken='0' cnt='20817.000000' prob='always'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='32'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1102' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<method id='1103' holder='1097' name='scanName' return='983' arguments='1102' flags='4' bytes='305' compile_id='584' compiler='c2' level='4' iicount='15150'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1103'/>
+<call method='1103' count='20492' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<direct_call bci='32'/>
+<uncommon_trap bci='32' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='44'/>
+<klass id='1098' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<method id='1104' holder='1098' name='setValues' return='977' arguments='983 983 983 983' flags='1' bytes='22' compile_id='585' compiler='c2' level='4' iicount='27682'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<call method='1104' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='20818.000000' stamp='0.512'>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='521' live='517' memory='109120' stamp='0.512'/>
+</parse>
+<bc code='182' bci='51'/>
+<type id='969' name='boolean'/>
+<method id='1105' holder='1097' name='skipSpaces' return='969' flags='4' bytes='350' compile_id='732' compiler='c2' level='4' iicount='30911'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1105'/>
+<call method='1105' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='51'/>
+<uncommon_trap bci='51' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='64'/>
+<type id='975' name='int'/>
+<method id='1106' holder='1097' name='skipChar' return='969' arguments='975 1102' flags='4' bytes='285' compile_id='738' compiler='c2' level='4' iicount='11786'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1106'/>
+<call method='1106' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='20818.000000' stamp='0.512'>
+<observe trap='unstable_if' count='2' total='2'/>
+<uncommon_trap bci='64' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='11786' not_taken='2' cnt='11788.000000' prob='0.99983'/>
+<bc code='182' bci='21'/>
+<method id='1132' holder='1097' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='66'/>
+<call method='1132' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='2087' not_taken='9701' cnt='11788.000000' prob='0.177044'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='9701' not_taken='0' cnt='9701.000000' prob='always'/>
+<bc code='182' bci='128'/>
+<klass id='1122' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1127' holder='1097' name='checkEntityLimit' return='977' arguments='1102 1122 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1127'/>
+<call method='1127' count='9484' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1127' uses='9701.000000' stamp='0.513'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='800' live='788' memory='155856' stamp='0.513'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='2087' not_taken='0' cnt='2087.000000' prob='always'/>
+<parse_done nodes='813' live='799' memory='158680' stamp='0.513'/>
+</parse>
+<bc code='154' bci='67'/>
+<branch target_bci='100' taken='20818' not_taken='0' cnt='20818.000000' prob='always'/>
+<uncommon_trap bci='67' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='104'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1105'/>
+<call method='1105' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='104'/>
+<uncommon_trap bci='104' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='114'/>
+<branch target_bci='128' taken='20818' not_taken='0' cnt='20818.000000' prob='always'/>
+<uncommon_trap bci='114' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='131'/>
+<klass id='1107' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<method id='1108' holder='1093' name='getString' return='1107' flags='4' bytes='76' compile_id='617' compiler='c2' level='4' iicount='6656'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<call method='1108' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1108' uses='20818.000000' stamp='0.513'>
+<bc code='161' bci='8'/>
+<branch target_bci='25' taken='3236' not_taken='3420' cnt='6656.000000' prob='0.486178'/>
+<bc code='182' bci='19'/>
+<klass id='1146' name='java.util.ArrayList' flags='1'/>
+<method id='1148' holder='1146' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1148'/>
+<call method='1148' count='3227' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1148' uses='3420.000000' stamp='0.513'>
+<uncommon_trap bci='19' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='933' live='914' memory='179696' stamp='0.513'/>
+</parse>
+<bc code='162' bci='22'/>
+<branch target_bci='47' taken='2' not_taken='3418' cnt='3420.000000' prob='0.000584795'/>
+<bc code='183' bci='51'/>
+<method id='1149' holder='1107' name='&lt;init&gt;' return='977' flags='1' bytes='5' iicount='83'/>
+<call method='1149' count='2' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1149' uses='2.000000' stamp='0.513'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1155' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='43604'/>
+<call method='1155' count='-1' prof_factor='0.024096' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1155' uses='-1.000000' stamp='0.513'>
+<parse_done nodes='1000' live='980' memory='192776' stamp='0.513'/>
+</parse>
+<parse_done nodes='1004' live='983' memory='194408' stamp='0.513'/>
+</parse>
+<bc code='182' bci='70'/>
+<method id='1150' holder='1146' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='3896'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1150'/>
+<call method='1150' count='2' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1150' uses='2.000000' stamp='0.514'>
+<uncommon_trap bci='70' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='20'/>
+<klass id='1116' name='[Ljava.lang.Object;' flags='1041'/>
+<method id='1158' holder='1146' name='add' return='977' arguments='982 1116 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='3899'/>
+<call method='1158' count='3639' prof_factor='0.000513' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1158' uses='2.000000' stamp='0.514'>
+<bc code='190' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='3'/>
+<branch target_bci='11' taken='2817' not_taken='1082' cnt='3899.000000' prob='0.722493'/>
+<bc code='183' bci='7'/>
+<method id='1160' holder='1146' name='grow' return='1116' flags='2' bytes='11' iicount='1083'/>
+<call method='1160' count='1010' prof_factor='0.000513' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1160' uses='1.000000' stamp='0.514'>
+<bc code='183' bci='7'/>
+<method id='1164' holder='1146' name='grow' return='1116' arguments='975' flags='2' bytes='18' iicount='1083'/>
+<call method='1164' count='1010' prof_factor='0.000923' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1164' uses='1.000000' stamp='0.514'>
+<bc code='183' bci='7'/>
+<method id='1166' holder='1146' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' compile_id='668' compiler='c1' level='3' iicount='1083'/>
+<call method='1166' count='1011' prof_factor='0.000923' inline='1'/>
+<klass id='1005' name='java.lang.OutOfMemoryError' flags='1'/>
+<uncommon_trap method='1166' bci='39' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1005'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1166' uses='1.000000' stamp='0.514'>
+<bc code='157' bci='15'/>
+<branch target_bci='49' taken='502' not_taken='581' cnt='1083.000000' prob='0.463527'/>
+<bc code='166' bci='25'/>
+<branch target_bci='35' taken='0' not_taken='581' cnt='581.000000' prob='never'/>
+<uncommon_trap bci='25' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='31'/>
+<klass id='1171' name='java.lang.Math' flags='17'/>
+<method id='1172' holder='1171' name='max' return='975' arguments='975 975' flags='9' bytes='11' compile_id='472' compiler='c1' level='3' iicount='1236'/>
+<call method='1172' count='543' prof_factor='0.000923' inline='1'/>
+<intrinsic id='_max' nodes='7'/>
+<bc code='157' bci='53'/>
+<branch target_bci='60' taken='0' not_taken='502' cnt='502.000000' prob='never'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1182' live='1155' memory='245472' stamp='0.514'/>
+</parse>
+<bc code='184' bci='10'/>
+<klass id='1167' name='java.util.Arrays' flags='1'/>
+<method id='1168' holder='1167' name='copyOf' return='1116' arguments='1116 975' flags='9' bytes='10' iicount='1345'/>
+<call method='1168' count='1011' prof_factor='0.000923' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1168' uses='1.000000' stamp='0.514'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1176' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1176' count='1108' prof_factor='0.000743' inline='1'/>
+<uncommon_trap bci='3' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_getClass' nodes='19'/>
+<bc code='184' bci='6'/>
+<method id='1177' holder='1167' name='copyOf' return='1116' arguments='1116 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='2080'/>
+<call method='1177' count='1108' prof_factor='0.000743' inline='1'/>
+<uncommon_trap bci='6' reason='intrinsic_or_type_checked_inlining' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_copyOf' nodes='89'/>
+<parse_done nodes='1305' live='1275' memory='271104' stamp='0.514'/>
+</parse>
+<parse_done nodes='1451' live='1420' memory='292808' stamp='0.514'/>
+</parse>
+<parse_done nodes='1457' live='1425' memory='295568' stamp='0.514'/>
+</parse>
+<bc code='83' bci='14'/>
+<uncommon_trap bci='14' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='14' reason='array_check' action='maybe_recompile' debug_id='0' klass='1116'/>
+<cast_up reason='monomorphic_array' from='1116' to='(exact)'/>
+<parse_done nodes='1681' live='1646' memory='336448' stamp='0.515'/>
+</parse>
+<parse_done nodes='1695' live='1659' memory='341296' stamp='0.515'/>
+</parse>
+<bc code='182' bci='40'/>
+<method id='1147' holder='1146' name='get' return='982' arguments='975' flags='1' bytes='15' compile_id='756' compiler='c2' level='4' iicount='7479'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1147'/>
+<call method='1147' count='6278' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1147' uses='6654.000000' stamp='0.515'>
+<uncommon_trap bci='40' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='5'/>
+<klass id='1180' name='java.util.Objects' flags='17'/>
+<method id='1181' holder='1180' name='checkIndex' return='975' arguments='975 975' flags='9' bytes='7' compile_id='499' compiler='c1' level='3' iicount='7696'/>
+<call method='1181' count='7224' prof_factor='0.889691' inline='1'/>
+<inline_success reason='force inline by annotation'/>
+<parse method='1181' uses='6654.000000' stamp='0.515'>
+<bc code='184' bci='3'/>
+<klass id='1185' name='java.util.function.BiFunction' flags='1537'/>
+<klass id='1184' name='jdk.internal.util.Preconditions' flags='1'/>
+<method id='1186' holder='1184' name='checkIndex' return='975' arguments='975 975 1185' flags='9' bytes='18' compile_id='500' compiler='c1' level='3' iicount='7696'/>
+<call method='1186' count='7437' prof_factor='0.864605' inline='1'/>
+<uncommon_trap bci='3' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='3' reason='range_check' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_Preconditions_checkIndex' nodes='26'/>
+<parse_done nodes='1787' live='1746' memory='360272' stamp='0.515'/>
+</parse>
+<bc code='182' bci='11'/>
+<method id='1182' holder='1146' name='elementData' return='982' arguments='975' flags='0' bytes='7' compile_id='525' compiler='c1' level='3' iicount='7499'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1182'/>
+<call method='1182' count='7224' prof_factor='0.889691' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1182' uses='6654.000000' stamp='0.515'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1837' live='1793' memory='371544' stamp='0.515'/>
+</parse>
+<parse_done nodes='1838' live='1793' memory='372072' stamp='0.515'/>
+</parse>
+<bc code='192' bci='43'/>
+<uncommon_trap bci='43' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='43' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1873' live='1825' memory='380176' stamp='0.515'/>
+</parse>
+<bc code='180' bci='147'/>
+<uncommon_trap bci='147' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='157'/>
+<uncommon_trap bci='157' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='161'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.impl.XMLScanner' flags='1025'/>
+<method id='1109' holder='1101' name='scanAttributeValue' return='977' arguments='1107 1107 983 1094 975 969 983 969' flags='4' bytes='991' compile_id='613' compiler='c2' level='4' iicount='10772'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<call method='1109' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='161'/>
+<bc code='185' bci='165'/>
+<klass id='1100' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<method id='1110' holder='1094' name='getLength' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1110' count='20493' prof_factor='1.000000' virtual='1' inline='1' receiver='1100' receiver_count='20493'/>
+<klass id='1223' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1224' holder='1223' name='getLength' return='975' flags='1' bytes='5' compile_id='513' compiler='c1' level='1' iicount='153'/>
+<call method='1224' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<predicted_call bci='165' klass='1100'/>
+<uncommon_trap bci='165' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='165' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1224' uses='20818.000000' stamp='0.515'>
+<parse_done nodes='1982' live='1929' memory='403272' stamp='0.515'/>
+</parse>
+<bc code='185' bci='181'/>
+<method id='1228' holder='1223' name='addAttribute' return='975' arguments='1098 983 983' flags='1' bytes='9' compile_id='544' compiler='c1' level='3' iicount='21404'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1228'/>
+<call method='1228' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1228' uses='20818.000000' stamp='0.516'>
+<bc code='182' bci='5'/>
+<method id='1229' holder='1223' name='addAttribute' return='975' arguments='1098 983 983 1107' flags='1' bytes='679' compile_id='623' compiler='c2' level='4' iicount='16523'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1229'/>
+<call method='1229' count='21028' prof_factor='0.972622' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='5'/>
+<parse_done nodes='2014' live='1960' memory='409880' stamp='0.516'/>
+</parse>
+<bc code='185' bci='190'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1224'/>
+<call method='1224' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1224' uses='20818.000000' stamp='0.516'>
+<parse_done nodes='2029' live='1974' memory='412832' stamp='0.516'/>
+</parse>
+<bc code='160' bci='195'/>
+<branch target_bci='229' taken='20818' not_taken='0' cnt='20818.000000' prob='always'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='234'/>
+<method id='1244' holder='1223' name='setValue' return='977' arguments='975 983 1107' flags='1' bytes='27' compile_id='552' compiler='c1' level='3' iicount='21445'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1244'/>
+<call method='1244' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1244' uses='20818.000000' stamp='0.516'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='181' bci='11'/>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='2360' live='2300' memory='508248' stamp='0.516'/>
+</parse>
+<bc code='185' bci='242'/>
+<method id='1246' holder='1223' name='setSpecified' return='977' arguments='975 969' flags='1' bytes='11' compile_id='553' compiler='c1' level='3' iicount='21494'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1246'/>
+<call method='1246' count='20493' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1246' uses='20818.000000' stamp='0.516'>
+<bc code='50' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='181' bci='7'/>
+<uncommon_trap bci='7' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='2429' live='2365' memory='523736' stamp='0.516'/>
+</parse>
+<parse_done nodes='2436' live='2371' memory='526000' stamp='0.516'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1105'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1106'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1127'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1148'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1147'/>
+<dependency type='unique_concrete_method' ctxk='1146' x='1182'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1109'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1228'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1229'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1224'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1244'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1246'/>
+<code_cache total_blobs='1355' nmethods='778' adapters='262' free_code_cache='246467840'/>
+<task_done success='1' nmsize='4336' count='23926' inlined_bytes='740' stamp='0.532'/>
+</task>
+<task compile_id='785' method='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer doubleValue ()D' bytes='1194' count='5635' backedge_count='10589' iicount='5635' stamp='0.543'>
+<type id='972' name='double'/>
+<klass id='1093' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer' flags='8'/>
+<method id='1094' holder='1093' name='doubleValue' return='972' flags='1' bytes='1194' compile_id='645' compiler='c1' level='3' iicount='5637'/>
+<klass id='1098' name='jdk.internal.math.FDBigInteger' unloaded='1'/>
+<uncommon_trap method='1094' bci='664' reason='unloaded' action='reinterpret' index='28' debug_id='0' klass='1098'/>
+<parse method='1094' uses='5637.000000' stamp='0.544'>
+<bc code='184' bci='6'/>
+<type id='975' name='int'/>
+<klass id='1096' name='java.lang.Math' flags='17'/>
+<method id='1097' holder='1096' name='min' return='975' arguments='975 975' flags='9' bytes='11' compile_id='528' compiler='c2' level='4' iicount='19709'/>
+<call method='1097' count='5127' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_min' nodes='5'/>
+<bc code='52' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='23'/>
+<call method='1097' count='5127' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_min' nodes='5'/>
+<bc code='162' bci='33'/>
+<branch target_bci='58' taken='5127' not_taken='9619' cnt='14746.000000' prob='0.347688'/>
+<uncommon_trap bci='36' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='36' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='46'/>
+<uncommon_trap bci='46' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='46' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='33'/>
+<branch target_bci='58' taken='5127' not_taken='9619' cnt='9619.000000' prob='0.347688'/>
+<bc code='162' bci='68'/>
+<branch target_bci='97' taken='5127' not_taken='0' cnt='5127.000000' prob='always'/>
+<uncommon_trap bci='68' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='163' bci='116'/>
+<branch target_bci='285' taken='0' not_taken='5127' cnt='5127.000000' prob='never'/>
+<uncommon_trap bci='116' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='121'/>
+<branch target_bci='131' taken='0' not_taken='5127' cnt='5127.000000' prob='never'/>
+<uncommon_trap bci='121' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='128'/>
+<branch target_bci='147' taken='5127' not_taken='0' cnt='5127.000000' prob='always'/>
+<uncommon_trap bci='128' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='155' bci='149'/>
+<branch target_bci='248' taken='5127' not_taken='0' cnt='5127.000000' prob='always'/>
+<uncommon_trap bci='149' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='161' bci='254'/>
+<branch target_bci='285' taken='0' not_taken='5127' cnt='5127.000000' prob='never'/>
+<uncommon_trap bci='254' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='49' bci='265'/>
+<uncommon_trap bci='265' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='153' bci='273'/>
+<branch target_bci='282' taken='5127' not_taken='0' cnt='5127.000000' prob='always'/>
+<uncommon_trap bci='273' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='326' live='311' memory='129632' stamp='0.544'/>
+</parse>
+<loop_tree>
+<loop idx='350' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='350' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='350' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='350' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='350' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1360' nmethods='781' adapters='262' free_code_cache='246462976'/>
+<task_done success='1' nmsize='760' count='5708' backedge_count='10735' inlined_bytes='22' stamp='0.546'/>
+</task>
+<task compile_id='918' method='java.nio.Buffer position (I)Ljava/nio/Buffer;' bytes='55' count='5388' iicount='5388' stamp='0.583'>
+<klass id='1064' name='java.nio.Buffer' flags='1025'/>
+<type id='975' name='int'/>
+<method id='1093' holder='1064' name='position' return='1064' arguments='975' flags='1' bytes='55' compile_id='484' compiler='c1' level='3' iicount='5388'/>
+<parse method='1093' uses='5388.000000' stamp='0.583'>
+<bc code='164' bci='5'/>
+<branch target_bci='12' taken='5388' not_taken='0' cnt='5388.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='156' bci='14'/>
+<branch target_bci='21' taken='5388' not_taken='0' cnt='5388.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='23'/>
+<branch target_bci='32' taken='5388' not_taken='0' cnt='5388.000000' prob='always'/>
+<bc code='164' bci='45'/>
+<branch target_bci='53' taken='5388' not_taken='0' cnt='5388.000000' prob='always'/>
+<uncommon_trap bci='45' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='85' live='81' memory='31392' stamp='0.583'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1516' nmethods='915' adapters='270' free_code_cache='246148608'/>
+<task_done success='1' nmsize='216' count='5592' stamp='0.584'/>
+</task>
+<task compile_id='960' method='java.lang.String checkBoundsBeginEnd (III)V' bytes='60' count='5383' iicount='5383' stamp='0.597'>
+<type id='977' name='void'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='checkBoundsBeginEnd' return='977' arguments='975 975 975' flags='8' bytes='60' compile_id='287' compiler='c1' level='3' iicount='5393'/>
+<klass id='1095' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1093' bci='14' reason='unloaded' action='reinterpret' index='39' debug_id='0' klass='1095'/>
+<parse method='1093' uses='5393.000000' stamp='0.597'>
+<bc code='155' bci='1'/>
+<branch target_bci='14' taken='0' not_taken='5393' cnt='5393.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='163' bci='6'/>
+<branch target_bci='14' taken='0' not_taken='5393' cnt='5393.000000' prob='never'/>
+<uncommon_trap bci='6' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='164' bci='11'/>
+<branch target_bci='59' taken='5393' not_taken='0' cnt='5393.000000' prob='always'/>
+<uncommon_trap bci='11' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='61' live='57' memory='27024' stamp='0.597'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1571' nmethods='956' adapters='270' free_code_cache='246040576'/>
+<task_done success='1' nmsize='152' count='5477' stamp='0.597'/>
+</task>
+</compilation_log>
+<compilation_log thread='25158'>
+<start_compile_thread name='C2 CompilerThread0' thread='25158' process='25109' stamp='0.105'/>
+<task compile_id='213' method='java.lang.String charAt (I)C' bytes='25' count='5734' iicount='5734' stamp='0.218'>
+<type id='970' name='char'/>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='5' compiler='c1' level='3' iicount='5746'/>
+<parse method='1093' uses='5746.000000' stamp='0.218'>
+<bc code='183' bci='1'/>
+<type id='969' name='boolean'/>
+<method id='1095' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='12948'/>
+<call method='1095' count='5275' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='5746.000000' stamp='0.218'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='12948' cnt='12948.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='12947' cnt='12948.000000' prob='7.7232e-05'/>
+<parse_done nodes='59' live='58' memory='25840' stamp='0.218'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='5746' cnt='5746.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1098' name='java.lang.StringLatin1' flags='16'/>
+<method id='1099' holder='1098' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='6' compiler='c1' level='3' iicount='5787'/>
+<call method='1099' count='5275' prof_factor='1.000000' inline='1'/>
+<klass id='1102' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1099' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1102'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='5746.000000' stamp='0.219'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='5787' cnt='5787.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='5787' not_taken='0' cnt='5787.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='160' live='153' memory='43840' stamp='0.219'/>
+</parse>
+<parse_done nodes='161' live='153' memory='44296' stamp='0.219'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='604' nmethods='217' adapters='232' free_code_cache='248393728'/>
+<task_done success='1' nmsize='216' count='6837' inlined_bytes='47' stamp='0.220'/>
+</task>
+<task compile_id='507' method='java.lang.String length ()I' bytes='11' count='9499' iicount='9499' stamp='0.320'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1093' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='45' compiler='c1' level='3' iicount='9499'/>
+<parse method='1093' uses='9499.000000' stamp='0.320'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<type id='973' name='byte'/>
+<method id='1095' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='23042'/>
+<call method='1095' count='9222' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1095' uses='9499.000000' stamp='0.320'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='23042' cnt='23042.000000' prob='never'/>
+<parse_done nodes='70' live='68' memory='28408' stamp='0.320'/>
+</parse>
+<parse_done nodes='71' live='68' memory='29088' stamp='0.320'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='930' nmethods='507' adapters='254' free_code_cache='247748352'/>
+<task_done success='1' nmsize='120' count='9536' inlined_bytes='15' stamp='0.321'/>
+</task>
+<task compile_id='584' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanName (Lcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Ljava/lang/String;' bytes='305' count='2448' backedge_count='18181' iicount='2449' stamp='0.341'>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanName' return='983' arguments='1094' flags='4' bytes='305' compile_id='534' compiler='c1' level='3' iicount='2545'/>
+<parse method='1095' uses='2545.000000' stamp='0.343'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='2443' not_taken='0' cnt='2443.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='52' bci='41'/>
+<uncommon_trap bci='41' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='41' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='42'/>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1100' holder='1099' name='isNameStart' return='969' arguments='975' flags='9' bytes='22' compile_id='520' compiler='c1' level='3' iicount='5630'/>
+<call method='1100' count='2443' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='2443.000000' stamp='0.344'>
+<bc code='162' bci='3'/>
+<branch target_bci='20' taken='0' not_taken='5630' cnt='5630.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='153' bci='13'/>
+<branch target_bci='20' taken='0' not_taken='5630' cnt='5630.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='168' live='162' memory='45000' stamp='0.344'/>
+</parse>
+<bc code='153' bci='45'/>
+<branch target_bci='227' taken='0' not_taken='2443' cnt='2443.000000' prob='never'/>
+<bc code='160' bci='69'/>
+<branch target_bci='141' taken='2443' not_taken='0' cnt='2443.000000' prob='always'/>
+<uncommon_trap bci='69' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='144' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='144' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='148'/>
+<uncommon_trap bci='148' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='158'/>
+<uncommon_trap bci='158' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='158' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='165'/>
+<branch target_bci='179' taken='0' not_taken='20707' cnt='20707.000000' prob='never'/>
+<uncommon_trap bci='165' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='51' bci='173'/>
+<uncommon_trap bci='173' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='188'/>
+<branch target_bci='194' taken='18266' not_taken='2442' cnt='20708.000000' prob='0.882075'/>
+<bc code='182' bci='201'/>
+<klass id='1098' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1106' holder='1093' name='checkBeforeLoad' return='975' arguments='1098 975 975' flags='4' bytes='140' iicount='9397'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1106'/>
+<call method='1106' count='18266' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='18266.000000' stamp='0.345'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='160' bci='18'/>
+<branch target_bci='137' taken='12544' not_taken='2' cnt='12546.000000' prob='0.999841'/>
+<bc code='159' bci='35'/>
+<branch target_bci='51' taken='0' not_taken='2'/>
+<bc code='182' bci='61'/>
+<type id='977' name='void'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager$Limit' flags='16409'/>
+<method id='1102' holder='1093' name='checkLimit' return='977' arguments='1101 1098 975 975' flags='4' bytes='253' compile_id='538' compiler='c1' level='3' iicount='2848'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<call method='1102' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='61'/>
+<bc code='182' bci='67'/>
+<method id='1108' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='9'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<call method='1108' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='67'/>
+<bc code='190' bci='76'/>
+<uncommon_trap bci='76' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='77'/>
+<branch target_bci='122' taken='2' not_taken='0'/>
+<bc code='184' bci='100'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='988' name='java.lang.System' flags='17'/>
+<method id='1115' holder='988' name='arraycopy' return='977' arguments='982 975 982 975 975' flags='265' bytes='0' compile_id='44' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1115' count='0' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='86' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='86' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='79'/>
+<bc code='184' bci='134'/>
+<call method='1115' count='2' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='134' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<intrinsic id='_arraycopy' nodes='77'/>
+<parse_done nodes='852' live='833' memory='163624' stamp='0.352'/>
+</parse>
+<bc code='158' bci='206'/>
+<branch target_bci='224' taken='18263' not_taken='2' cnt='18265.000000' prob='0.999891'/>
+<bc code='182' bci='215'/>
+<method id='1107' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='9'/>
+<call method='1107' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='215'/>
+<bc code='153' bci='218'/>
+<branch target_bci='224' taken='2' not_taken='0'/>
+<bc code='180' bci='231'/>
+<uncommon_trap bci='231' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='251'/>
+<branch target_bci='299' taken='0' not_taken='2449' cnt='2449.000000' prob='never'/>
+<uncommon_trap bci='251' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='264'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<call method='1102' count='2449' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='2449.000000' stamp='0.360'>
+<bc code='182' bci='11'/>
+<klass id='1119' name='com.sun.org.apache.xerces.internal.utils.XMLLimitAnalyzer' flags='17'/>
+<method id='1120' holder='1119' name='addValue' return='977' arguments='1101 983 975' flags='1' bytes='11' compile_id='530' compiler='c1' level='3' iicount='3827'/>
+<call method='1120' count='7183' prof_factor='0.859902' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1120' uses='6177.000000' stamp='0.360'>
+<uncommon_trap bci='11' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<klass id='1146' name='java.lang.Enum' flags='1025'/>
+<method id='1147' holder='1146' name='ordinal' return='975' flags='17' bytes='5' compile_id='189' compiler='c1' level='1' iicount='136'/>
+<call method='1147' count='7878' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.360'>
+<parse_done nodes='1007' live='984' memory='192328' stamp='0.360'/>
+</parse>
+<bc code='182' bci='7'/>
+<method id='1148' holder='1119' name='addValue' return='977' arguments='975 983 975' flags='1' bytes='260' compile_id='531' compiler='c1' level='3' iicount='8152'/>
+<call method='1148' count='7878' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1148' uses='7878.000000' stamp='0.360'>
+<bc code='182' bci='4'/>
+<call method='1147' count='7876' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.360'>
+<parse_done nodes='1033' live='1009' memory='215592' stamp='0.360'/>
+</parse>
+<bc code='159' bci='7'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='14'/>
+<call method='1147' count='7876' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.360'>
+<parse_done nodes='1060' live='1034' memory='222568' stamp='0.360'/>
+</parse>
+<bc code='159' bci='17'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='24'/>
+<call method='1147' count='7876' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.360'>
+<parse_done nodes='1087' live='1059' memory='227880' stamp='0.360'/>
+</parse>
+<bc code='159' bci='27'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='34'/>
+<call method='1147' count='7876' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.361'>
+<parse_done nodes='1114' live='1084' memory='233736' stamp='0.361'/>
+</parse>
+<bc code='159' bci='37'/>
+<branch target_bci='50' taken='0' not_taken='8152' cnt='8152.000000' prob='never'/>
+<uncommon_trap bci='37' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='44'/>
+<call method='1147' count='7876' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.361'>
+<parse_done nodes='1141' live='1109' memory='238712' stamp='0.361'/>
+</parse>
+<bc code='160' bci='47'/>
+<branch target_bci='61' taken='8152' not_taken='0' cnt='8152.000000' prob='always'/>
+<uncommon_trap bci='47' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='65'/>
+<call method='1147' count='7876' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7878.000000' stamp='0.361'>
+<parse_done nodes='1168' live='1134' memory='245752' stamp='0.361'/>
+</parse>
+<bc code='159' bci='68'/>
+<branch target_bci='81' taken='750' not_taken='7402' cnt='8152.000000' prob='0.092002'/>
+<bc code='182' bci='75'/>
+<call method='1147' count='7151' prof_factor='0.966389' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='7153.000000' stamp='0.361'>
+<parse_done nodes='1190' live='1155' memory='250056' stamp='0.361'/>
+</parse>
+<bc code='160' bci='78'/>
+<branch target_bci='96' taken='143' not_taken='7259' cnt='7402.000000' prob='0.0193191'/>
+<bc code='79' bci='87'/>
+<uncommon_trap bci='87' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='87' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='79' bci='94'/>
+<uncommon_trap bci='94' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='94' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1274' live='1234' memory='268712' stamp='0.361'/>
+</parse>
+<parse_done nodes='1277' live='1236' memory='269624' stamp='0.361'/>
+</parse>
+<bc code='182' bci='23'/>
+<klass id='1121' name='com.sun.org.apache.xerces.internal.utils.XMLSecurityManager' flags='17'/>
+<method id='1122' holder='1121' name='isOverLimit' return='969' arguments='1101 1119' flags='1' bytes='10' compile_id='516' compiler='c1' level='3' iicount='7285'/>
+<call method='1122' count='7183' prof_factor='0.859902' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='6177.000000' stamp='0.361'>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<call method='1147' count='15264' prof_factor='0.847907' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='12942.000000' stamp='0.361'>
+<parse_done nodes='1321' live='1278' memory='279880' stamp='0.361'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1167' holder='1121' name='isOverLimit' return='969' arguments='975 1119' flags='1' bytes='111' compile_id='594' compiler='c2' level='4' iicount='11900'/>
+<call method='1167' count='15264' prof_factor='0.847907' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1167' uses='12942.000000' stamp='0.361'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1147' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='11197.000000' stamp='0.362'>
+<parse_done nodes='1395' live='1348' memory='293576' stamp='0.362'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1147' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='11197.000000' stamp='0.362'>
+<parse_done nodes='1422' live='1373' memory='301176' stamp='0.362'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1147' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='11197.000000' stamp='0.362'>
+<parse_done nodes='1449' live='1398' memory='307368' stamp='0.362'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='45'/>
+<call method='1147' count='5416' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='5537.000000' stamp='0.362'>
+<parse_done nodes='1472' live='1420' memory='313832' stamp='0.362'/>
+</parse>
+<bc code='159' bci='48'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='48' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='55'/>
+<call method='1147' count='5416' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='5537.000000' stamp='0.362'>
+<parse_done nodes='1499' live='1445' memory='319512' stamp='0.362'/>
+</parse>
+<bc code='159' bci='58'/>
+<branch target_bci='71' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<uncommon_trap bci='58' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='65'/>
+<call method='1147' count='5416' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='5537.000000' stamp='0.362'>
+<parse_done nodes='1526' live='1470' memory='324616' stamp='0.362'/>
+</parse>
+<bc code='160' bci='68'/>
+<branch target_bci='91' taken='0' not_taken='5537' cnt='5537.000000' prob='never'/>
+<bc code='182' bci='73'/>
+<method id='1169' holder='1119' name='getTotalValue' return='975' arguments='975' flags='1' bytes='7' compile_id='521' compiler='c1' level='3' iicount='11168'/>
+<call method='1169' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1169' uses='11197.000000' stamp='0.362'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1596' live='1536' memory='340072' stamp='0.363'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1647' live='1583' memory='350800' stamp='0.363'/>
+</parse>
+<parse_done nodes='1651' live='1586' memory='351816' stamp='0.363'/>
+</parse>
+<bc code='153' bci='26'/>
+<branch target_bci='162' taken='7183' not_taken='0' cnt='7183.000000' prob='always'/>
+<bc code='182' bci='173'/>
+<call method='1122' count='7183' prof_factor='0.859902' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1122' uses='6177.000000' stamp='0.363'>
+<uncommon_trap bci='173' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2'/>
+<call method='1147' count='15264' prof_factor='0.847907' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='12942.000000' stamp='0.363'>
+<parse_done nodes='1703' live='1636' memory='360664' stamp='0.363'/>
+</parse>
+<bc code='182' bci='6'/>
+<call method='1167' count='15264' prof_factor='0.847907' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1167' uses='12942.000000' stamp='0.363'>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='154' bci='6'/>
+<branch target_bci='11' taken='11197' not_taken='703' cnt='11900.000000' prob='0.940924'/>
+<bc code='182' bci='15'/>
+<call method='1147' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='11197.000000' stamp='0.363'>
+<parse_done nodes='1777' live='1706' memory='377056' stamp='0.364'/>
+</parse>
+<bc code='159' bci='18'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='18' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='25'/>
+<call method='1147' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='11197.000000' stamp='0.364'>
+<parse_done nodes='1804' live='1731' memory='382800' stamp='0.364'/>
+</parse>
+<bc code='159' bci='28'/>
+<branch target_bci='71' taken='0' not_taken='11197' cnt='11197.000000' prob='never'/>
+<uncommon_trap bci='28' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<call method='1147' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1147' uses='11197.000000' stamp='0.364'>
+<parse_done nodes='1831' live='1756' memory='389104' stamp='0.364'/>
+</parse>
+<bc code='159' bci='38'/>
+<branch target_bci='71' taken='5660' not_taken='5537' cnt='11197.000000' prob='0.505493'/>
+<bc code='182' bci='73'/>
+<call method='1169' count='10952' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1169' uses='11197.000000' stamp='0.364'>
+<uncommon_trap bci='73' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='46' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1902' live='1823' memory='402712' stamp='0.364'/>
+</parse>
+<bc code='46' bci='81'/>
+<uncommon_trap bci='81' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='81' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='164' bci='82'/>
+<branch target_bci='89' taken='11197' not_taken='0' cnt='11197.000000' prob='always'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1953' live='1870' memory='413440' stamp='0.364'/>
+</parse>
+<parse_done nodes='1957' live='1873' memory='414456' stamp='0.364'/>
+</parse>
+<bc code='153' bci='176'/>
+<branch target_bci='252' taken='7183' not_taken='0' cnt='7183.000000' prob='always'/>
+<parse_done nodes='1968' live='1883' memory='418536' stamp='0.365'/>
+</parse>
+<bc code='182' bci='275'/>
+<method id='1103' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1098 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<call method='1103' count='2449' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1103' uses='2449.000000' stamp='0.365'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2014' live='1926' memory='430328' stamp='0.365'/>
+</parse>
+<bc code='180' bci='286'/>
+<uncommon_trap bci='286' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='291'/>
+<klass id='1097' name='com.sun.org.apache.xerces.internal.util.SymbolTable' flags='1'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1104' holder='1097' name='addSymbol' return='983' arguments='1082 975 975' flags='1' bytes='110' compile_id='580' compiler='c2' level='4' iicount='2846'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1104'/>
+<call method='1104' count='2449' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1104' uses='2449.000000' stamp='0.366'>
+<uncommon_trap bci='291' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='7'/>
+<method id='1175' holder='1097' name='hash' return='975' arguments='1082 975 975' flags='1' bytes='53' compile_id='582' compiler='c2' level='4' iicount='3668'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1175'/>
+<call method='1175' count='4656' prof_factor='0.860506' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1175' uses='4007.000000' stamp='0.367'>
+<bc code='199' bci='4'/>
+<branch target_bci='45' taken='0' not_taken='3410' cnt='3410.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='3410' not_taken='29013' cnt='32423.000000' prob='0.105172'/>
+<uncommon_trap bci='19' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='19' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='29' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='16'/>
+<branch target_bci='39' taken='3410' not_taken='29013' cnt='29013.000000' prob='0.105172'/>
+<parse_done nodes='2202' live='2106' memory='525616' stamp='0.367'/>
+</parse>
+<bc code='112' bci='14'/>
+<uncommon_trap bci='14' reason='div0_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='23'/>
+<uncommon_trap bci='23' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='23' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='7' not_taken='5595' cnt='5602.000000' prob='0.00124955'/>
+<uncommon_trap bci='31' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='31' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='34'/>
+<uncommon_trap bci='34' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='190' bci='37'/>
+<uncommon_trap bci='37' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='38'/>
+<branch target_bci='85' taken='946' not_taken='4649' cnt='5595.000000' prob='0.16908'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='4649' not_taken='39473' cnt='44122.000000' prob='0.105367'/>
+<uncommon_trap bci='50' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='50' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='55'/>
+<uncommon_trap bci='55' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='55' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='52' bci='63'/>
+<uncommon_trap bci='63' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='63' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='64'/>
+<branch target_bci='73' taken='39473' not_taken='0' cnt='39473.000000' prob='always'/>
+<uncommon_trap bci='64' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='47'/>
+<branch target_bci='79' taken='4649' not_taken='39473' cnt='39473.000000' prob='0.105367'/>
+<bc code='198' bci='28'/>
+<branch target_bci='98' taken='7' not_taken='5595' cnt='946.000000' prob='0.00124955'/>
+<bc code='183' bci='106'/>
+<method id='1178' holder='1097' name='addSymbol0' return='983' arguments='1082 975 975 975 975' flags='2' bytes='103' iicount='87'/>
+<call method='1178' count='7' prof_factor='0.860506' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='106'/>
+<parse_done nodes='2542' live='2430' memory='597800' stamp='0.368'/>
+</parse>
+<parse_done nodes='2550' live='2437' memory='599928' stamp='0.368'/>
+</parse>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2582' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2588' >
+</loop>
+</loop_tree>
+<method id='1183' holder='1097' name='rebalance' return='977' flags='4' bytes='32' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1183'/>
+<method id='1197' holder='1097' name='hash' return='975' arguments='983' flags='1' bytes='21' iicount='75'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1197'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1175'/>
+<method id='1184' holder='1097' name='rehash' return='977' flags='4' bytes='14' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1184'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1197'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1175'/>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2582' inner_loop='1' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2588' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2582' inner_loop='1' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2588' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2821' inner_loop='1' main_loop='2821' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2933' inner_loop='1' main_loop='2933' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2782' inner_loop='1' pre_loop='2582' >
+</loop>
+<loop idx='2821' inner_loop='1' main_loop='2821' >
+</loop>
+<loop idx='2754' inner_loop='1' post_loop='2582' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2886' inner_loop='1' pre_loop='2588' >
+</loop>
+<loop idx='2933' inner_loop='1' main_loop='2933' >
+</loop>
+<loop idx='2848' inner_loop='1' post_loop='2588' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2782' inner_loop='1' pre_loop='2582' >
+</loop>
+<loop idx='2821' inner_loop='1' main_loop='2821' >
+</loop>
+<loop idx='2754' inner_loop='1' post_loop='2582' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2886' inner_loop='1' pre_loop='2588' >
+</loop>
+<loop idx='2933' inner_loop='1' main_loop='2933' >
+</loop>
+<loop idx='2848' inner_loop='1' post_loop='2588' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2782' inner_loop='1' pre_loop='2582' >
+</loop>
+<loop idx='3135' inner_loop='1' main_loop='3135' >
+</loop>
+<loop idx='2754' inner_loop='1' post_loop='2582' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2886' inner_loop='1' pre_loop='2588' >
+</loop>
+<loop idx='3183' inner_loop='1' main_loop='3183' >
+</loop>
+<loop idx='2848' inner_loop='1' post_loop='2588' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2782' inner_loop='1' pre_loop='2582' >
+</loop>
+<loop idx='3135' inner_loop='1' main_loop='3135' >
+</loop>
+<loop idx='2754' inner_loop='1' post_loop='2582' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2886' inner_loop='1' pre_loop='2588' >
+</loop>
+<loop idx='3183' inner_loop='1' main_loop='3183' >
+</loop>
+<loop idx='2848' inner_loop='1' post_loop='2588' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='2573' inner_loop='1' >
+</loop>
+<loop idx='2782' inner_loop='1' pre_loop='2582' >
+</loop>
+<loop idx='3135' inner_loop='1' main_loop='3135' >
+</loop>
+<loop idx='2754' inner_loop='1' post_loop='2582' >
+</loop>
+<loop idx='2575' inner_loop='1' >
+</loop>
+<loop idx='2886' inner_loop='1' pre_loop='2588' >
+</loop>
+<loop idx='3183' inner_loop='1' main_loop='3183' >
+</loop>
+<loop idx='2848' inner_loop='1' post_loop='2588' >
+</loop>
+</loop_tree>
+<regalloc attempts='4' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1106'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1102'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1108'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1103'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1175'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1183'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1197'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1184'/>
+<code_cache total_blobs='1156' nmethods='671' adapters='262' free_code_cache='247015680'/>
+<task_done success='1' nmsize='3984' count='15150' backedge_count='90353' inlined_bytes='1250' stamp='0.417'/>
+</task>
+<task compile_id='654' method='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl getIndex (Ljava/lang/String;)I' bytes='51' count='9322' backedge_count='25555' iicount='9322' stamp='0.417'>
+<type id='975' name='int'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1094' holder='1093' name='getIndex' return='975' arguments='983' flags='1' bytes='51' compile_id='565' compiler='c1' level='3' iicount='9334'/>
+<parse method='1094' uses='9334.000000' stamp='0.417'>
+<bc code='162' bci='7'/>
+<branch target_bci='49' taken='3370' not_taken='29209' cnt='32579.000000' prob='0.103441'/>
+<uncommon_trap bci='10' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='10' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='15' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='180' bci='18'/>
+<uncommon_trap bci='18' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='21'/>
+<uncommon_trap bci='21' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='198' bci='24'/>
+<branch target_bci='43' taken='0' not_taken='29209' cnt='29209.000000' prob='never'/>
+<uncommon_trap bci='24' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='35'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1099' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1099' count='29209' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='29209.000000' stamp='0.418'>
+<uncommon_trap bci='35' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1101' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='47966'/>
+<call method='1101' count='4199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='4537.000000' stamp='0.418'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='47966' cnt='47966.000000' prob='never'/>
+<parse_done nodes='253' live='243' memory='56592' stamp='0.418'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1101' count='4199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1101' uses='4537.000000' stamp='0.418'>
+<uncommon_trap bci='24' reason='speculate_null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='47966' cnt='47966.000000' prob='never'/>
+<parse_done nodes='289' live='277' memory='66256' stamp='0.418'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1102' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='69578'/>
+<call method='1102' count='4199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='4537.000000' stamp='0.418'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='69573' cnt='69573.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='69572' cnt='69573.000000' prob='1.43734e-05'/>
+<parse_done nodes='333' live='319' memory='72464' stamp='0.418'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1105' name='java.lang.StringLatin1' flags='16'/>
+<method id='1106' holder='1105' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4507'/>
+<call method='1106' count='4199' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='372' live='355' memory='78504' stamp='0.418'/>
+</parse>
+<bc code='153' bci='38'/>
+<branch target_bci='43' taken='23469' not_taken='5740' cnt='29209.000000' prob='0.803485'/>
+<bc code='162' bci='7'/>
+<branch target_bci='49' taken='3370' not_taken='29209' cnt='23469.000000' prob='0.103441'/>
+<parse_done nodes='396' live='377' memory='82576' stamp='0.418'/>
+</parse>
+<loop_tree>
+<loop idx='478' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='478' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='788' inner_loop='1' main_loop='788' >
+</loop>
+<loop idx='478' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='718' inner_loop='1' pre_loop='576' >
+</loop>
+<loop idx='788' inner_loop='1' main_loop='788' >
+</loop>
+<loop idx='658' inner_loop='1' post_loop='576' >
+</loop>
+<loop idx='478' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='718' inner_loop='1' pre_loop='576' >
+</loop>
+<loop idx='788' inner_loop='1' main_loop='788' >
+</loop>
+<loop idx='658' inner_loop='1' post_loop='576' >
+</loop>
+<loop idx='478' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1182' nmethods='687' adapters='262' free_code_cache='246975232'/>
+<task_done success='1' nmsize='952' count='10719' backedge_count='28211' inlined_bytes='150' stamp='0.422'/>
+</task>
+<task compile_id='701' method='java.util.HashMap getNode (ILjava/lang/Object;)Ljava/util/HashMap$Node;' bytes='148' count='6415' backedge_count='168' iicount='6415' stamp='0.422'>
+<klass id='1094' name='java.util.HashMap$Node' flags='8'/>
+<type id='975' name='int'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<klass id='1093' name='java.util.HashMap' flags='1'/>
+<method id='1095' holder='1093' name='getNode' return='1094' arguments='975 982' flags='16' bytes='148' compile_id='70' compiler='c1' level='3' iicount='6416'/>
+<parse method='1095' uses='6416.000000' stamp='0.423'>
+<bc code='198' bci='6'/>
+<branch target_bci='146' taken='507' not_taken='5909' cnt='6416.000000' prob='0.0790212'/>
+<bc code='158' bci='14'/>
+<branch target_bci='146' taken='0' not_taken='5909' cnt='5909.000000' prob='never'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='50' bci='24'/>
+<uncommon_trap bci='24' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='198' bci='28'/>
+<branch target_bci='146' taken='888' not_taken='5020' cnt='5908.000000' prob='0.150305'/>
+<bc code='160' bci='37'/>
+<branch target_bci='68' taken='924' not_taken='4097' cnt='5021.000000' prob='0.184027'/>
+<bc code='165' bci='49'/>
+<branch target_bci='65' taken='2940' not_taken='1156' cnt='4096.000000' prob='0.717773'/>
+<bc code='198' bci='53'/>
+<branch target_bci='68' taken='0' not_taken='1156' cnt='1156.000000' prob='never'/>
+<uncommon_trap bci='53' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='59'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<type id='969' name='boolean'/>
+<method id='1100' holder='982' name='equals' return='969' arguments='982' flags='1' bytes='11' iicount='136'/>
+<call method='1100' count='1108' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='1108'/>
+<method id='1104' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1104' count='1108' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='59' klass='983'/>
+<uncommon_trap bci='59' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1104' uses='1156.000000' stamp='0.423'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='193' bci='8'/>
+<uncommon_trap bci='8' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='192' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='15' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1105' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='50591'/>
+<call method='1105' count='4199' prof_factor='0.206872' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='939.000000' stamp='0.423'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='50591' cnt='50591.000000' prob='never'/>
+<parse_done nodes='267' live='258' memory='63784' stamp='0.423'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1105' count='4199' prof_factor='0.206872' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='939.000000' stamp='0.423'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='50591' cnt='50591.000000' prob='never'/>
+<parse_done nodes='291' live='281' memory='68112' stamp='0.423'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1106' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='73062'/>
+<call method='1106' count='4199' prof_factor='0.206872' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='939.000000' stamp='0.423'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='73062' cnt='73062.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='73061' cnt='73062.000000' prob='1.3687e-05'/>
+<parse_done nodes='335' live='323' memory='74848' stamp='0.423'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1109' name='java.lang.StringLatin1' flags='16'/>
+<method id='1110' holder='1109' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4507'/>
+<call method='1110' count='4199' prof_factor='0.206872' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='374' live='359' memory='80824' stamp='0.423'/>
+</parse>
+<bc code='153' bci='62'/>
+<branch target_bci='68' taken='0' not_taken='1156' cnt='1156.000000' prob='never'/>
+<uncommon_trap bci='62' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='198' bci='76'/>
+<branch target_bci='146' taken='303' not_taken='621' cnt='924.000000' prob='0.327922'/>
+<bc code='153' bci='84'/>
+<branch target_bci='98' taken='621' not_taken='0' cnt='621.000000' prob='always'/>
+<uncommon_trap bci='84' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='98' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='98' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='100'/>
+<uncommon_trap bci='100' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='104'/>
+<branch target_bci='135' taken='165' not_taken='579' cnt='744.000000' prob='0.221774'/>
+<bc code='165' bci='116'/>
+<branch target_bci='132' taken='437' not_taken='142' cnt='579.000000' prob='0.75475'/>
+<bc code='198' bci='120'/>
+<branch target_bci='135' taken='0' not_taken='142' cnt='142.000000' prob='never'/>
+<uncommon_trap bci='120' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='126'/>
+<klass id='1097' name='java.util.jar.Attributes$Name' flags='9'/>
+<call method='1100' count='136' prof_factor='1.000000' virtual='1' inline='1' receiver='983' receiver_count='135' receiver2='1097' receiver2_count='1'/>
+<call method='1104' count='136' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<method id='1115' holder='1097' name='equals' return='969' arguments='982' flags='1' bytes='39' iicount='1'/>
+<call method='1115' count='136' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<predicted_call bci='126' klass='983'/>
+<virtual_call bci='126'/>
+<parse method='1104' uses='142.000000' stamp='0.424'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='193' bci='8'/>
+<uncommon_trap bci='8' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='192' bci='15'/>
+<uncommon_trap bci='15' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='15' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='20'/>
+<call method='1105' count='4199' prof_factor='0.025412' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='115.000000' stamp='0.424'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='50591' cnt='50591.000000' prob='never'/>
+<parse_done nodes='639' live='612' memory='129656' stamp='0.424'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1105' count='4199' prof_factor='0.025412' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1105' uses='115.000000' stamp='0.424'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='50591' cnt='50591.000000' prob='never'/>
+<parse_done nodes='663' live='635' memory='133568' stamp='0.424'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1106' count='4199' prof_factor='0.025412' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1106' uses='115.000000' stamp='0.424'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='73062' cnt='73062.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='73061' cnt='73062.000000' prob='1.3687e-05'/>
+<parse_done nodes='707' live='677' memory='139024' stamp='0.424'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1110' count='4199' prof_factor='0.025412' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='746' live='713' memory='145176' stamp='0.424'/>
+</parse>
+<bc code='153' bci='129'/>
+<branch target_bci='135' taken='0' not_taken='142' cnt='142.000000' prob='never'/>
+<uncommon_trap bci='129' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='199' bci='143'/>
+<branch target_bci='98' taken='123' not_taken='42' cnt='165.000000' prob='0.745455'/>
+<parse_done nodes='785' live='749' memory='151616' stamp='0.424'/>
+</parse>
+<loop_tree>
+<loop idx='885' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='885' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='885' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='885' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='885' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1209' nmethods='704' adapters='262' free_code_cache='246941312'/>
+<task_done success='1' nmsize='1464' count='6718' backedge_count='173' inlined_bytes='192' stamp='0.428'/>
+</task>
+<task compile_id='707' method='java.lang.String &lt;init&gt; ([CIILjava/lang/Void;)V' bytes='74' count='8039' iicount='8039' stamp='0.428'>
+<type id='977' name='void'/>
+<klass id='1082' name='[C' flags='1041'/>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.Void' flags='17'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<method id='1094' holder='983' name='&lt;init&gt;' return='977' arguments='1082 975 975 1093' flags='0' bytes='74' compile_id='527' compiler='c1' level='3' iicount='8039'/>
+<parse method='1094' uses='8039.000000' stamp='0.428'>
+<bc code='183' bci='1'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1096' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='36426'/>
+<call method='1096' count='7784' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='8039.000000' stamp='0.428'>
+<parse_done nodes='53' live='52' memory='24944' stamp='0.429'/>
+</parse>
+<bc code='154' bci='5'/>
+<branch target_bci='27' taken='8039' not_taken='0' cnt='8039.000000' prob='always'/>
+<uncommon_trap bci='5' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='30'/>
+<branch target_bci='58' taken='0' not_taken='8039' cnt='8039.000000' prob='never'/>
+<bc code='184' bci='36'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1097' name='java.lang.StringUTF16' flags='16'/>
+<method id='1099' holder='1097' name='compress' return='1085' arguments='1082 975 975' flags='9' bytes='20' compile_id='529' compiler='c1' level='3' iicount='8048'/>
+<call method='1099' count='7784' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1099' uses='8039.000000' stamp='0.430'>
+<bc code='184' bci='9'/>
+<method id='1103' holder='1097' name='compress' return='975' arguments='1082 975 1085 975 975' flags='9' bytes='50' compile_id='638' compiler='c2' level='4' iicount='5952'/>
+<call method='1103' count='8014' prof_factor='0.998882' inline='1'/>
+<uncommon_trap bci='9' reason='intrinsic_or_type_checked_inlining' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_compressStringC' nodes='39'/>
+<bc code='160' bci='13'/>
+<branch target_bci='18' taken='0' not_taken='8048' cnt='8048.000000' prob='never'/>
+<uncommon_trap bci='13' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='179' live='174' memory='47792' stamp='0.430'/>
+</parse>
+<bc code='198' bci='43'/>
+<branch target_bci='58' taken='0' not_taken='8039' cnt='8039.000000' prob='never'/>
+<parse_done nodes='353' live='347' memory='75344' stamp='0.430'/>
+</parse>
+<regalloc attempts='0' success='1'/>
+<code_cache total_blobs='1215' nmethods='708' adapters='262' free_code_cache='246788864'/>
+<task_done success='1' nmsize='856' count='8367' inlined_bytes='71' stamp='0.432'/>
+</task>
+<task compile_id='683' method='java.lang.CharacterDataLatin1 digit (II)I' bytes='91' count='9536' iicount='9536' stamp='0.432'>
+<type id='975' name='int'/>
+<klass id='1093' name='java.lang.CharacterDataLatin1' flags='0'/>
+<method id='1094' holder='1093' name='digit' return='975' arguments='975 975' flags='0' bytes='91' compile_id='559' compiler='c1' level='3' iicount='9536'/>
+<parse method='1094' uses='9536.000000' stamp='0.432'>
+<bc code='161' bci='4'/>
+<branch target_bci='80' taken='0' not_taken='9536' cnt='9536.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='163' bci='10'/>
+<branch target_bci='80' taken='0' not_taken='9536' cnt='9536.000000' prob='never'/>
+<uncommon_trap bci='10' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='15'/>
+<method id='1096' holder='1093' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='555' compiler='c1' level='1' iicount='10320'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<call method='1096' count='9040' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1096' uses='9536.000000' stamp='0.432'>
+<bc code='46' bci='7'/>
+<uncommon_trap bci='7' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='93' live='89' memory='33056' stamp='0.432'/>
+</parse>
+<bc code='160' bci='31'/>
+<branch target_bci='51' taken='904' not_taken='8632' cnt='9536.000000' prob='0.0947987'/>
+<bc code='160' bci='60'/>
+<branch target_bci='80' taken='0' not_taken='904' cnt='904.000000' prob='never'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='82'/>
+<branch target_bci='89' taken='0' not_taken='9536' cnt='9536.000000' prob='never'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='154' live='147' memory='43536' stamp='0.432'/>
+</parse>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1096'/>
+<code_cache total_blobs='1226' nmethods='713' adapters='262' free_code_cache='246778752'/>
+<task_done success='1' nmsize='312' count='9576' inlined_bytes='11' stamp='0.433'/>
+</task>
+<task compile_id='724' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner scanContent (Lcom/sun/org/apache/xerces/internal/xni/XMLString;)I' bytes='690' count='5339' backedge_count='16406' iicount='5339' stamp='0.438'>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.XMLString' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='scanContent' return='975' arguments='1094' flags='4' bytes='690' compile_id='592' compiler='c1' level='3' iicount='5340'/>
+<parse method='1095' uses='5340.000000' stamp='0.438'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='28' taken='5130' not_taken='0' cnt='5130.000000' prob='always'/>
+<uncommon_trap bci='14' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='44'/>
+<branch target_bci='94' taken='5128' not_taken='2' cnt='5130.000000' prob='0.99961'/>
+<bc code='182' bci='49'/>
+<type id='977' name='void'/>
+<method id='1104' holder='1093' name='invokeListeners' return='977' arguments='975' flags='1' bytes='37' iicount='42'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1104'/>
+<call method='1104' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='49'/>
+<bc code='180' bci='56'/>
+<uncommon_trap bci='56' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='76'/>
+<uncommon_trap bci='76' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='76' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='85' bci='77'/>
+<uncommon_trap bci='77' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='82'/>
+<type id='969' name='boolean'/>
+<method id='1103' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='42'/>
+<call method='1103' count='2' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='82'/>
+<bc code='181' bci='91'/>
+<uncommon_trap bci='91' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='95'/>
+<uncommon_trap bci='95' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='98'/>
+<uncommon_trap bci='98' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='110'/>
+<uncommon_trap bci='110' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='110' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='159' bci='121'/>
+<branch target_bci='137' taken='5130' not_taken='0' cnt='5130.000000' prob='always'/>
+<uncommon_trap bci='121' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<uncommon_trap bci='137' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='137' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='141'/>
+<uncommon_trap bci='141' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='158'/>
+<uncommon_trap bci='158' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='158' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='163'/>
+<branch target_bci='299' taken='10259' not_taken='0' cnt='10259.000000' prob='always'/>
+<uncommon_trap bci='163' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='160' bci='302'/>
+<branch target_bci='386' taken='5129' not_taken='5130' cnt='10259.000000' prob='0.499951'/>
+<bc code='160' bci='343'/>
+<branch target_bci='402' taken='5130' not_taken='0' cnt='5130.000000' prob='always'/>
+<uncommon_trap bci='343' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='161' bci='418'/>
+<branch target_bci='137' taken='5129' not_taken='1' cnt='5130.000000' prob='0.999805'/>
+<bc code='180' bci='430'/>
+<uncommon_trap bci='430' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='433'/>
+<branch target_bci='454' taken='5130' not_taken='5130' cnt='10260.000000' prob='0.5'/>
+<uncommon_trap bci='436' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='436' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='440'/>
+<uncommon_trap bci='440' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='85' bci='447'/>
+<uncommon_trap bci='447' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='447' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='433'/>
+<branch target_bci='454' taken='5130' not_taken='5130' cnt='5130.000000' prob='0.5'/>
+<bc code='180' bci='458'/>
+<uncommon_trap bci='458' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='481'/>
+<branch target_bci='512' taken='5129' not_taken='1' cnt='5130.000000' prob='0.999805'/>
+<bc code='182' bci='493'/>
+<klass id='1099' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1100' holder='1093' name='checkEntityLimit' return='977' arguments='1099 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<call method='1100' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='493'/>
+<bc code='180' bci='501'/>
+<uncommon_trap bci='501' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='507'/>
+<klass id='1082' name='[C' flags='1041'/>
+<method id='1098' holder='1094' name='setValues' return='977' arguments='1082 975 975' flags='1' bytes='16' compile_id='583' compiler='c2' level='4' iicount='11836'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1098'/>
+<call method='1098' count='1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='1.000000' stamp='0.439'>
+<uncommon_trap bci='507' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='966' live='937' memory='200464' stamp='0.439'/>
+</parse>
+<bc code='162' bci='526'/>
+<branch target_bci='575' taken='0' not_taken='5129' cnt='5129.000000' prob='never'/>
+<uncommon_trap bci='526' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<uncommon_trap bci='529' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='529' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='533'/>
+<uncommon_trap bci='533' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='550'/>
+<uncommon_trap bci='550' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='550' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='553'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.util.XMLChar' flags='1'/>
+<method id='1102' holder='1101' name='isContent' return='969' arguments='975' flags='9' bytes='35' compile_id='591' compiler='c2' level='4' iicount='59789'/>
+<call method='1102' count='5129' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1102' uses='5129.000000' stamp='0.439'>
+<bc code='162' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='59789' cnt='59789.000000' prob='never'/>
+<bc code='51' bci='10'/>
+<observe that='!need_range_check'/>
+<bc code='154' bci='14'/>
+<branch target_bci='29' taken='54301' not_taken='5488' cnt='59789.000000' prob='0.908211'/>
+<bc code='163' bci='20'/>
+<branch target_bci='33' taken='5488' not_taken='0' cnt='5488.000000' prob='always'/>
+<parse_done nodes='1155' live='1118' memory='248776' stamp='0.440'/>
+</parse>
+<bc code='154' bci='556'/>
+<branch target_bci='512' taken='0' not_taken='5129' cnt='5129.000000' prob='never'/>
+<uncommon_trap bci='556' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='180' bci='564'/>
+<uncommon_trap bci='564' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='605'/>
+<branch target_bci='620' taken='0' not_taken='5129' cnt='5129.000000' prob='never'/>
+<bc code='182' bci='617'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<call method='1100' count='5129' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1100' uses='5129.000000' stamp='0.440'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1276' live='1234' memory='270808' stamp='0.440'/>
+</parse>
+<bc code='180' bci='625'/>
+<uncommon_trap bci='625' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='631'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1098'/>
+<call method='1098' count='5129' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='5129.000000' stamp='0.440'>
+<uncommon_trap bci='631' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='1483' live='1438' memory='301880' stamp='0.440'/>
+</parse>
+<bc code='180' bci='638'/>
+<uncommon_trap bci='638' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='159' bci='648'/>
+<branch target_bci='686' taken='0' not_taken='5129' cnt='5129.000000' prob='never'/>
+<uncommon_trap bci='648' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='52' bci='665'/>
+<uncommon_trap bci='665' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='665' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='670'/>
+<branch target_bci='688' taken='5129' not_taken='0' cnt='5129.000000' prob='always'/>
+<uncommon_trap bci='670' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='1591' live='1540' memory='321160' stamp='0.440'/>
+</parse>
+<loop_tree>
+<loop idx='1622' inner_loop='1' >
+</loop>
+<loop idx='1623' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1622' inner_loop='1' >
+</loop>
+<loop idx='1778' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1622' inner_loop='1' >
+</loop>
+<loop idx='1778' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1622' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1840' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1840' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1840' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='1840' inner_loop='1' >
+</loop>
+</loop_tree>
+<regalloc attempts='2' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1104'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1100'/>
+<dependency type='unique_concrete_method' ctxk='1094' x='1098'/>
+<code_cache total_blobs='1256' nmethods='727' adapters='262' free_code_cache='246713856'/>
+<task_done success='1' nmsize='2056' count='6079' backedge_count='18626' inlined_bytes='117' stamp='0.451'/>
+</task>
+<task compile_id='738' method='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner skipChar (ILcom/sun/org/apache/xerces/internal/impl/XMLScanner$NameType;)Z' bytes='285' count='11538' iicount='11538' decompiles='1' unstable_if_traps='1' stamp='0.460'>
+<type id='969' name='boolean'/>
+<type id='975' name='int'/>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.impl.XMLScanner$NameType' flags='16409'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLEntityScanner' flags='1'/>
+<method id='1095' holder='1093' name='skipChar' return='969' arguments='975 1094' flags='4' bytes='285' compile_id='714' compiler='c1' level='3' iicount='11557'/>
+<parse method='1095' uses='11557.000000' stamp='0.460'>
+<observe trap='unstable_if' count='1' total='1'/>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='14'/>
+<branch target_bci='25' taken='11557' not_taken='1' cnt='11558.000000' prob='0.999913'/>
+<bc code='182' bci='21'/>
+<method id='1100' holder='1093' name='load' return='969' arguments='975 969 969' flags='16' bytes='200' iicount='48'/>
+<call method='1100' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='21'/>
+<bc code='180' bci='29'/>
+<uncommon_trap bci='29' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='52' bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='47' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='160' bci='53'/>
+<branch target_bci='133' taken='1998' not_taken='9560' cnt='11558.000000' prob='0.172867'/>
+<bc code='160' bci='72'/>
+<branch target_bci='99' taken='9560' not_taken='0' cnt='9560.000000' prob='always'/>
+<uncommon_trap bci='72' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='128'/>
+<type id='977' name='void'/>
+<klass id='1097' name='com.sun.xml.internal.stream.Entity$ScannedEntity' flags='9'/>
+<method id='1098' holder='1093' name='checkEntityLimit' return='977' arguments='1094 1097 975 975' flags='4' bytes='50' compile_id='560' compiler='c2' level='4' iicount='6153'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<call method='1098' count='9347' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1098' uses='9560.000000' stamp='0.461'>
+<bc code='198' bci='1'/>
+<branch target_bci='11' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<bc code='154' bci='8'/>
+<branch target_bci='12' taken='0' not_taken='6153' cnt='6153.000000' prob='never'/>
+<uncommon_trap bci='8' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='249' live='242' memory='58920' stamp='0.461'/>
+</parse>
+<bc code='160' bci='136'/>
+<branch target_bci='283' taken='1998' not_taken='0' cnt='1998.000000' prob='always'/>
+<uncommon_trap bci='136' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='267' live='257' memory='65976' stamp='0.461'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1098'/>
+<code_cache total_blobs='1278' nmethods='737' adapters='262' free_code_cache='246677120'/>
+<task_done success='1' nmsize='488' count='11786' inlined_bytes='50' stamp='0.462'/>
+</task>
+<task compile_id='746' method='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack popElement ()Lcom/sun/org/apache/xerces/internal/xni/QName;' bytes='59' count='5403' iicount='5403' stamp='0.467'>
+<klass id='1094' name='com.sun.org.apache.xerces.internal.xni.QName' flags='1'/>
+<klass id='1093' name='com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ElementStack' flags='4'/>
+<method id='1095' holder='1093' name='popElement' return='1094' flags='1' bytes='59' compile_id='600' compiler='c1' level='3' iicount='5404'/>
+<parse method='1095' uses='5404.000000' stamp='0.467'>
+<bc code='180' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='154' bci='7'/>
+<branch target_bci='20' taken='0' not_taken='5404' cnt='5404.000000' prob='never'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='153' bci='17'/>
+<branch target_bci='42' taken='5404' not_taken='0' cnt='5404.000000' prob='always'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='50' bci='57'/>
+<uncommon_trap bci='57' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='57' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='133' live='127' memory='40136' stamp='0.467'/>
+</parse>
+<regalloc attempts='1' success='1'/>
+<code_cache total_blobs='1287' nmethods='740' adapters='262' free_code_cache='246643200'/>
+<task_done success='1' nmsize='280' count='5468' stamp='0.468'/>
+</task>
+<fragment>
+<![CDATA[
+<task compile_id='749' method='com.sun.hotspot.tools.compiler.LogParser startElement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/xml/sax/Attributes;)V' bytes='3082' count='5578' backedge_count='362' iicount='5578' stamp='0.470'>
+<type id='977' name='void'/>
+<klass id='983' name='java.lang.String' flags='17'/>
+<klass id='1094' name='org.xml.sax.Attributes' flags='1537'/>
+<klass id='1093' name='com.sun.hotspot.tools.compiler.LogParser' flags='1'/>
+<method id='1095' holder='1093' name='startElement' return='977' arguments='983 983 983 1094' flags='1' bytes='3082' compile_id='595' compiler='c1' level='3' iicount='5578'/>
+<klass id='1179' name='com.sun.hotspot.tools.compiler.LogParser$LockElimination' unloaded='1'/>
+<uncommon_trap method='1095' bci='2456' reason='unloaded' action='reinterpret' index='244' debug_id='0' klass='1179'/>
+<klass id='1178' name='com.sun.hotspot.tools.compiler.UncommonTrapEvent' unloaded='1'/>
+<uncommon_trap method='1095' bci='2414' reason='unloaded' action='reinterpret' index='231' debug_id='0' klass='1178'/>
+<uncommon_trap method='1095' bci='2182' reason='unloaded' action='reinterpret' index='244' debug_id='0' klass='1179'/>
+<klass id='1194' name='com.sun.hotspot.tools.compiler.UncommonTrap' unloaded='1'/>
+<uncommon_trap method='1095' bci='2012' reason='unloaded' action='reinterpret' index='235' debug_id='0' klass='1194'/>
+<uncommon_trap method='1095' bci='1930' reason='unloaded' action='reinterpret' index='231' debug_id='0' klass='1178'/>
+<klass id='1213' name='java.lang.AssertionError' flags='1'/>
+<uncommon_trap method='1095' bci='1461' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1213'/>
+<uncommon_trap method='1095' bci='1412' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1213'/>
+<klass id='1224' name='java.lang.System' unloaded='1'/>
+<uncommon_trap method='1095' bci='1130' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1224'/>
+<uncommon_trap method='1095' bci='129' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1224'/>
+<parse method='1095' uses='5578.000000' stamp='0.471'>
+<observe that='has_exception_handlers'/>
+<bc code='182' bci='3'/>
+<type id='969' name='boolean'/>
+<klass id='982' name='java.lang.Object' flags='1'/>
+<method id='1109' holder='983' name='equals' return='969' arguments='982' flags='1' bytes='65' compile_id='320' compiler='c2' level='4' iicount='5588'/>
+<call method='1109' count='5128' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='5571.000000' stamp='0.471'>
+<uncommon_trap bci='3' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<type id='973' name='byte'/>
+<method id='1279' holder='983' name='coder' return='973' flags='0' bytes='15' compile_id='129' compiler='c2' level='4' iicount='61001'/>
+<call method='1279' count='4199' prof_factor='0.996958' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='4523.000000' stamp='0.471'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='103' live='100' memory='148632' stamp='0.472'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1279' count='4199' prof_factor='0.996958' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='4523.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='125' live='121' memory='151648' stamp='0.472'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<method id='1280' holder='983' name='isLatin1' return='969' flags='2' bytes='19' compile_id='49' compiler='c2' level='4' iicount='96641'/>
+<call method='1280' count='4199' prof_factor='0.996958' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='4523.000000' stamp='0.472'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='171' live='165' memory='160944' stamp='0.472'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<klass id='1085' name='[B' flags='1041'/>
+<klass id='1283' name='java.lang.StringLatin1' flags='16'/>
+<method id='1284' holder='1283' name='equals' return='969' arguments='1085 1085' flags='9' bytes='36' compile_id='7' compiler='c1' level='3' iicount='4507'/>
+<call method='1284' count='4199' prof_factor='0.996958' inline='1'/>
+<intrinsic id='_equalsL' nodes='16'/>
+<parse_done nodes='211' live='203' memory='166344' stamp='0.472'/>
+</parse>
+<bc code='153' bci='6'/>
+<branch target_bci='77' taken='4267' not_taken='1305' cnt='5572.000000' prob='0.765793'/>
+<bc code='182' bci='18'/>
+<method id='1143' holder='1093' name='search' return='983' arguments='1094 983' flags='0' bytes='39' compile_id='720' compiler='c2' level='4' iicount='6377'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1143' uses='1305.000000' stamp='0.472'>
+<bc code='185' bci='2'/>
+<klass id='1101' name='com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$AttributesProxy' flags='28'/>
+<method id='1169' holder='1094' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1169' count='6251' prof_factor='0.204642' virtual='1' inline='1' receiver='1101' receiver_count='6251'/>
+<method id='1292' holder='1101' name='getValue' return='983' arguments='983' flags='1' bytes='11' compile_id='566' compiler='c1' level='3' iicount='16670'/>
+<call method='1292' count='6251' prof_factor='0.204642' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='2' klass='1101'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1292' uses='1305.000000' stamp='0.472'>
+<bc code='185' bci='5'/>
+<klass id='1296' name='com.sun.org.apache.xerces.internal.util.XMLAttributesIteratorImpl' flags='1'/>
+<klass id='1293' name='com.sun.org.apache.xerces.internal.xni.XMLAttributes' flags='1537'/>
+<method id='1294' holder='1293' name='getValue' return='983' arguments='983' flags='1025' bytes='0' iicount='1'/>
+<call method='1294' count='16409' prof_factor='0.078284' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<klass id='1297' name='com.sun.org.apache.xerces.internal.util.XMLAttributesImpl' flags='1'/>
+<method id='1298' holder='1297' name='getValue' return='983' arguments='983' flags='1' bytes='56' compile_id='677' compiler='c2' level='4' iicount='13274'/>
+<call method='1298' count='16409' prof_factor='0.078284' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='353' live='340' memory='201536' stamp='0.472'/>
+</parse>
+<bc code='198' bci='9'/>
+<branch target_bci='14' taken='0' not_taken='6377' cnt='6377.000000' prob='never'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='369' live='354' memory='207832' stamp='0.472'/>
+</parse>
+<bc code='182' bci='26'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1143' uses='1305.000000' stamp='0.472'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='6251' prof_factor='0.204642' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='1305.000000' stamp='0.472'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.078284' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.078284' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='454' live='436' memory='223200' stamp='0.472'/>
+</parse>
+<bc code='198' bci='9'/>
+<branch target_bci='14' taken='0' not_taken='6377' cnt='6377.000000' prob='never'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='469' live='449' memory='227168' stamp='0.472'/>
+</parse>
+<bc code='184' bci='29'/>
+<type id='972' name='double'/>
+<klass id='1073' name='java.lang.Double' flags='17'/>
+<method id='1144' holder='1073' name='parseDouble' return='972' arguments='983' flags='9' bytes='5' compile_id='631' compiler='c1' level='3' iicount='3087'/>
+<call method='1144' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1144' uses='1305.000000' stamp='0.473'>
+<bc code='184' bci='1'/>
+<klass id='1304' name='jdk.internal.math.FloatingDecimal' flags='1'/>
+<method id='1305' holder='1304' name='parseDouble' return='972' arguments='983' flags='9' bytes='10' compile_id='632' compiler='c1' level='3' iicount='3141'/>
+<call method='1305' count='3016' prof_factor='0.422741' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1305' uses='1305.000000' stamp='0.473'>
+<bc code='184' bci='1'/>
+<klass id='1307' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter' flags='1544'/>
+<method id='1308' holder='1304' name='readJavaFormatString' return='1307' arguments='983' flags='8' bytes='826' compile_id='626' compiler='c1' level='3' iicount='3142'/>
+<call method='1308' count='3016' prof_factor='0.415473' inline='1'/>
+<klass id='1317' name='java.lang.NumberFormatException' flags='1'/>
+<uncommon_trap method='1308' bci='794' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1317'/>
+<uncommon_trap method='1308' bci='381' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1317'/>
+<uncommon_trap method='1308' bci='271' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1317'/>
+<uncommon_trap method='1308' bci='20' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1317'/>
+<uncommon_trap method='1308' bci='794' reason='unloaded' action='reinterpret' index='42' debug_id='0' klass='1317'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='1'/>
+<bc code='185' bci='4'/>
+<klass id='1311' name='jdk.internal.math.FloatingDecimal$ASCIIToBinaryBuffer' flags='8'/>
+<method id='1309' holder='1307' name='doubleValue' return='972' flags='1025' bytes='0' iicount='1'/>
+<call method='1309' count='3016' prof_factor='0.415473' virtual='1' inline='1' receiver='1311' receiver_count='3016'/>
+<method id='1322' holder='1311' name='doubleValue' return='972' flags='1' bytes='1194' compile_id='645' compiler='c1' level='3' iicount='3144'/>
+<call method='1322' count='3016' prof_factor='0.415473' inline='1'/>
+<klass id='1325' name='jdk.internal.math.FDBigInteger' unloaded='1'/>
+<uncommon_trap method='1322' bci='664' reason='unloaded' action='reinterpret' index='28' debug_id='0' klass='1325'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='4' klass='1311'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='4' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='4'/>
+<parse_done nodes='565' live='542' memory='253536' stamp='0.473'/>
+</parse>
+<parse_done nodes='567' live='543' memory='254352' stamp='0.473'/>
+</parse>
+<bc code='182' bci='39'/>
+<method id='1137' holder='1093' name='search' return='983' arguments='1094 983 983' flags='0' bytes='19' compile_id='630' compiler='c1' level='3' iicount='7844'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='1305.000000' stamp='0.473'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.166369' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='1338.000000' stamp='0.473'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.080264' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.080264' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='655' live='628' memory='271512' stamp='0.473'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='666' live='637' memory='273968' stamp='0.473'/>
+</parse>
+<bc code='184' bci='42'/>
+<type id='975' name='int'/>
+<klass id='1076' name='java.lang.Integer' flags='17'/>
+<method id='1138' holder='1076' name='parseInt' return='975' arguments='983' flags='9' bytes='7' compile_id='733' compiler='c2' level='4' iicount='5988'/>
+<call method='1138' count='787' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1138' uses='855.000000' stamp='0.473'>
+<bc code='184' bci='3'/>
+<method id='1328' holder='1076' name='parseInt' return='975' arguments='983 975' flags='9' bytes='259' compile_id='639' compiler='c1' level='3' iicount='5988'/>
+<call method='1328' count='5476' prof_factor='0.142786' inline='1'/>
+<uncommon_trap method='1328' bci='255' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='206' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='227' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='157' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='146' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='57' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='19' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<uncommon_trap method='1328' bci='4' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1317'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1328' uses='855.000000' stamp='0.473'>
+<bc code='199' bci='1'/>
+<branch target_bci='14' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='162' bci='16'/>
+<branch target_bci='51' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='164' bci='54'/>
+<branch target_bci='89' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='182' bci='94'/>
+<method id='1314' holder='983' name='length' return='975' flags='1' bytes='11' compile_id='507' compiler='c2' level='4' iicount='36578'/>
+<call method='1314' count='5476' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1314' uses='782.000000' stamp='0.474'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<call method='1279' count='36354' prof_factor='0.021379' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='782.000000' stamp='0.474'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='772' live='741' memory='289968' stamp='0.474'/>
+</parse>
+<parse_done nodes='773' live='741' memory='290264' stamp='0.474'/>
+</parse>
+<bc code='158' bci='105'/>
+<branch target_bci='254' taken='0' not_taken='5476' cnt='5476.000000' prob='never'/>
+<uncommon_trap bci='105' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='110'/>
+<type id='970' name='char'/>
+<method id='1315' holder='983' name='charAt' return='970' arguments='975' flags='1' bytes='25' compile_id='213' compiler='c2' level='4' iicount='80976'/>
+<call method='1315' count='5476' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='782.000000' stamp='0.474'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.009657' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='782.000000' stamp='0.474'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='828' live='794' memory='300048' stamp='0.474'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<method id='1335' holder='1283' name='charAt' return='970' arguments='1085 975' flags='9' bytes='28' compile_id='314' compiler='c2' level='4' iicount='80287'/>
+<call method='1335' count='80983' prof_factor='0.009657' inline='1'/>
+<klass id='1312' name='java.lang.StringIndexOutOfBoundsException' unloaded='1'/>
+<uncommon_trap method='1335' bci='10' reason='unloaded' action='reinterpret' index='3' debug_id='0' klass='1312'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='782.000000' stamp='0.474'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='921' live='882' memory='316744' stamp='0.474'/>
+</parse>
+<parse_done nodes='922' live='882' memory='317968' stamp='0.474'/>
+</parse>
+<bc code='162' bci='119'/>
+<branch target_bci='164' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<bc code='160' bci='126'/>
+<branch target_bci='138' taken='0' not_taken='85' cnt='85.000000' prob='never'/>
+<uncommon_trap bci='126' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='153'/>
+<branch target_bci='161' taken='85' not_taken='0' cnt='85.000000' prob='always'/>
+<uncommon_trap bci='153' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='11585.000000' prob='0.47268'/>
+<uncommon_trap bci='179' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='179' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='184'/>
+<call method='1315' count='6109' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='872.000000' stamp='0.474'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.010769' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='872.000000' stamp='0.474'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='1077' live='1032' memory='357008' stamp='0.474'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.010769' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='872.000000' stamp='0.474'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1170' live='1119' memory='371944' stamp='0.474'/>
+</parse>
+<parse_done nodes='1171' live='1119' memory='372656' stamp='0.474'/>
+</parse>
+<bc code='184' bci='188'/>
+<klass id='1070' name='java.lang.Character' flags='17'/>
+<method id='1331' holder='1070' name='digit' return='975' arguments='970 975' flags='9' bytes='6' compile_id='557' compiler='c1' level='3' iicount='11219'/>
+<call method='1331' count='6109' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1331' uses='872.000000' stamp='0.474'>
+<bc code='184' bci='2'/>
+<method id='1338' holder='1070' name='digit' return='975' arguments='975 975' flags='9' bytes='10' compile_id='558' compiler='c1' level='3' iicount='11219'/>
+<call method='1338' count='10721' prof_factor='0.077725' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1338' uses='872.000000' stamp='0.474'>
+<bc code='184' bci='1'/>
+<klass id='1340' name='java.lang.CharacterData' flags='1024'/>
+<method id='1341' holder='1340' name='of' return='1340' arguments='975' flags='24' bytes='120' compile_id='646' compiler='c2' level='4' iicount='10284'/>
+<call method='1341' count='10721' prof_factor='0.077725' inline='1'/>
+<klass id='1345' name='java.lang.CharacterData00' unloaded='1'/>
+<uncommon_trap method='1341' bci='96' reason='unloaded' action='reinterpret' index='56' debug_id='0' klass='1345'/>
+<klass id='1346' name='java.lang.CharacterData01' unloaded='1'/>
+<uncommon_trap method='1341' bci='100' reason='unloaded' action='reinterpret' index='58' debug_id='0' klass='1346'/>
+<klass id='1347' name='java.lang.CharacterData02' unloaded='1'/>
+<uncommon_trap method='1341' bci='104' reason='unloaded' action='reinterpret' index='60' debug_id='0' klass='1347'/>
+<klass id='1348' name='java.lang.CharacterData0E' unloaded='1'/>
+<uncommon_trap method='1341' bci='108' reason='unloaded' action='reinterpret' index='61' debug_id='0' klass='1348'/>
+<klass id='1349' name='java.lang.CharacterDataPrivateUse' unloaded='1'/>
+<uncommon_trap method='1341' bci='112' reason='unloaded' action='reinterpret' index='62' debug_id='0' klass='1349'/>
+<klass id='1350' name='java.lang.CharacterDataUndefined' unloaded='1'/>
+<uncommon_trap method='1341' bci='116' reason='unloaded' action='reinterpret' index='63' debug_id='0' klass='1350'/>
+<inline_success reason='inline (hot)'/>
+<klass id='1344' name='java.lang.CharacterDataLatin1' flags='0'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1340' x='1344'/>
+<parse method='1341' uses='872.000000' stamp='0.474'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='10284' cnt='10284.000000' prob='never'/>
+<parse_done nodes='1218' live='1165' memory='381392' stamp='0.474'/>
+</parse>
+<bc code='182' bci='6'/>
+<method id='1354' holder='1344' name='digit' return='975' arguments='975 975' flags='0' bytes='91' compile_id='683' compiler='c2' level='4' iicount='9576'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1354'/>
+<call method='1354' count='10721' prof_factor='0.077725' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1354' uses='872.000000' stamp='0.475'>
+<bc code='161' bci='4'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='163' bci='10'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='182' bci='15'/>
+<method id='1355' holder='1344' name='getProperties' return='975' arguments='975' flags='0' bytes='11' compile_id='555' compiler='c1' level='1' iicount='10358'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1355'/>
+<call method='1355' count='9078' prof_factor='0.091061' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1355' uses='872.000000' stamp='0.475'>
+<bc code='46' bci='7'/>
+<observe that='!need_range_check'/>
+<parse_done nodes='1265' live='1211' memory='388232' stamp='0.475'/>
+</parse>
+<bc code='160' bci='31'/>
+<branch target_bci='51' taken='904' not_taken='8672' cnt='9576.000000' prob='0.0944027'/>
+<bc code='160' bci='60'/>
+<branch target_bci='80' taken='0' not_taken='904' cnt='904.000000' prob='never'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='82'/>
+<branch target_bci='89' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='1323' live='1266' memory='399912' stamp='0.475'/>
+</parse>
+<parse_done nodes='1323' live='1265' memory='400040' stamp='0.475'/>
+</parse>
+<parse_done nodes='1323' live='1264' memory='401192' stamp='0.475'/>
+</parse>
+<bc code='155' bci='195'/>
+<branch target_bci='205' taken='0' not_taken='6109' cnt='6109.000000' prob='never'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='202'/>
+<branch target_bci='210' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='202' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='223'/>
+<branch target_bci='231' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='223' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='6109.000000' prob='0.47268'/>
+<bc code='153' bci='242'/>
+<branch target_bci='250' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<parse_done nodes='1389' live='1326' memory='412624' stamp='0.475'/>
+</parse>
+<parse_done nodes='1389' live='1325' memory='412816' stamp='0.475'/>
+</parse>
+<bc code='182' bci='52'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='1305.000000' stamp='0.475'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.166369' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='1338.000000' stamp='0.475'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.080264' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.080264' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='1464' live='1397' memory='427456' stamp='0.475'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='1475' live='1406' memory='429784' stamp='0.475'/>
+</parse>
+<bc code='184' bci='55'/>
+<call method='1138' count='787' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1138' uses='855.000000' stamp='0.475'>
+<bc code='184' bci='3'/>
+<call method='1328' count='5476' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1328' uses='855.000000' stamp='0.475'>
+<bc code='199' bci='1'/>
+<branch target_bci='14' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='162' bci='16'/>
+<branch target_bci='51' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='164' bci='54'/>
+<branch target_bci='89' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='182' bci='94'/>
+<call method='1314' count='5476' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1314' uses='782.000000' stamp='0.475'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<call method='1279' count='36354' prof_factor='0.021379' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='782.000000' stamp='0.475'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='1577' live='1506' memory='446648' stamp='0.475'/>
+</parse>
+<parse_done nodes='1578' live='1506' memory='446944' stamp='0.475'/>
+</parse>
+<bc code='158' bci='105'/>
+<branch target_bci='254' taken='0' not_taken='5476' cnt='5476.000000' prob='never'/>
+<uncommon_trap bci='105' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='110'/>
+<call method='1315' count='5476' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='782.000000' stamp='0.475'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.009657' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='782.000000' stamp='0.475'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='1632' live='1558' memory='455472' stamp='0.475'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.009657' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='782.000000' stamp='0.475'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1722' live='1643' memory='470080' stamp='0.475'/>
+</parse>
+<parse_done nodes='1723' live='1643' memory='471304' stamp='0.475'/>
+</parse>
+<bc code='162' bci='119'/>
+<branch target_bci='164' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<bc code='160' bci='126'/>
+<branch target_bci='138' taken='0' not_taken='85' cnt='85.000000' prob='never'/>
+<uncommon_trap bci='126' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='153'/>
+<branch target_bci='161' taken='85' not_taken='0' cnt='85.000000' prob='always'/>
+<uncommon_trap bci='153' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='11585.000000' prob='0.47268'/>
+<uncommon_trap bci='179' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='179' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='184'/>
+<call method='1315' count='6109' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='872.000000' stamp='0.476'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.010769' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='872.000000' stamp='0.476'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='1867' live='1782' memory='492624' stamp='0.476'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.010769' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='872.000000' stamp='0.476'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='1960' live='1869' memory='512808' stamp='0.476'/>
+</parse>
+<parse_done nodes='1961' live='1869' memory='513776' stamp='0.476'/>
+</parse>
+<bc code='184' bci='188'/>
+<call method='1331' count='6109' prof_factor='0.142786' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1331' uses='872.000000' stamp='0.476'>
+<bc code='184' bci='2'/>
+<call method='1338' count='10721' prof_factor='0.077725' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1338' uses='872.000000' stamp='0.476'>
+<bc code='184' bci='1'/>
+<call method='1341' count='10721' prof_factor='0.077725' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1340' x='1344'/>
+<parse method='1341' uses='872.000000' stamp='0.476'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='10284' cnt='10284.000000' prob='never'/>
+<parse_done nodes='2005' live='1912' memory='519888' stamp='0.476'/>
+</parse>
+<bc code='182' bci='6'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1354'/>
+<call method='1354' count='10721' prof_factor='0.077725' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1354' uses='872.000000' stamp='0.476'>
+<bc code='161' bci='4'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='163' bci='10'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='182' bci='15'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1355'/>
+<call method='1355' count='9078' prof_factor='0.091061' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1355' uses='872.000000' stamp='0.476'>
+<bc code='46' bci='7'/>
+<observe that='!need_range_check'/>
+<parse_done nodes='2051' live='1957' memory='591120' stamp='0.476'/>
+</parse>
+<bc code='160' bci='31'/>
+<branch target_bci='51' taken='904' not_taken='8672' cnt='9576.000000' prob='0.0944027'/>
+<bc code='160' bci='60'/>
+<branch target_bci='80' taken='0' not_taken='904' cnt='904.000000' prob='never'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='82'/>
+<branch target_bci='89' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='2106' live='2009' memory='600944' stamp='0.476'/>
+</parse>
+<parse_done nodes='2106' live='2008' memory='601072' stamp='0.476'/>
+</parse>
+<parse_done nodes='2106' live='2007' memory='602224' stamp='0.476'/>
+</parse>
+<bc code='155' bci='195'/>
+<branch target_bci='205' taken='0' not_taken='6109' cnt='6109.000000' prob='never'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='202'/>
+<branch target_bci='210' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='202' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='223'/>
+<branch target_bci='231' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='223' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='6109.000000' prob='0.47268'/>
+<bc code='153' bci='242'/>
+<branch target_bci='250' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<parse_done nodes='2171' live='2068' memory='614024' stamp='0.476'/>
+</parse>
+<parse_done nodes='2171' live='2067' memory='614216' stamp='0.476'/>
+</parse>
+<bc code='183' bci='58'/>
+<klass id='1098' name='com.sun.hotspot.tools.compiler.Phase' flags='1'/>
+<method id='1278' holder='1098' name='&lt;init&gt;' return='977' arguments='983 972 975 975' flags='0' bytes='19' compile_id='674' compiler='c1' level='3' iicount='1213'/>
+<call method='1278' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1278' uses='1305.000000' stamp='0.476'>
+<bc code='183' bci='3'/>
+<klass id='1272' name='com.sun.hotspot.tools.compiler.BasicLogEvent' flags='1025'/>
+<method id='1359' holder='1272' name='&lt;init&gt;' return='977' arguments='972 983' flags='0' bytes='20' compile_id='657' compiler='c1' level='3' iicount='1502'/>
+<call method='1359' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1359' uses='-1.000000' stamp='0.476'>
+<bc code='183' bci='1'/>
+<method id='1361' holder='982' name='&lt;init&gt;' return='977' flags='1' bytes='1' compile_id='51' compiler='c1' level='1' iicount='40494'/>
+<call method='1361' count='1098' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='1502.000000' stamp='0.476'>
+<parse_done nodes='2217' live='2112' memory='621480' stamp='0.476'/>
+</parse>
+<parse_done nodes='2386' live='2280' memory='647272' stamp='0.476'/>
+</parse>
+<parse_done nodes='2398' live='2291' memory='649136' stamp='0.476'/>
+</parse>
+<bc code='185' bci='69'/>
+<klass id='1097' name='java.util.ArrayDeque' flags='1'/>
+<klass id='1133' name='java.util.Deque' flags='1537'/>
+<method id='1153' holder='1133' name='push' return='977' arguments='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1153' count='1201' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='1201'/>
+<method id='1365' holder='1097' name='push' return='977' arguments='982' flags='1' bytes='6' compile_id='671' compiler='c1' level='3' iicount='1577'/>
+<call method='1365' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='69' klass='1097'/>
+<uncommon_trap bci='69' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='69' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1365' uses='1305.000000' stamp='0.477'>
+<bc code='182' bci='2'/>
+<method id='1366' holder='1097' name='addFirst' return='977' arguments='982' flags='1' bytes='51' compile_id='672' compiler='c1' level='3' iicount='1578'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1366'/>
+<call method='1366' count='1067' prof_factor='0.827521' inline='1'/>
+<klass id='1089' name='java.lang.NullPointerException' flags='1'/>
+<uncommon_trap method='1366' bci='4' reason='unloaded' action='reinterpret' index='21' debug_id='0' klass='1089'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1366' uses='1305.000000' stamp='0.477'>
+<bc code='199' bci='1'/>
+<branch target_bci='12' taken='1578' not_taken='0' cnt='1578.000000' prob='always'/>
+<bc code='190' bci='24'/>
+<uncommon_trap bci='24' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='25'/>
+<method id='1369' holder='1097' name='dec' return='975' arguments='975 975' flags='24' bytes='13' compile_id='661' compiler='c1' level='3' iicount='1581'/>
+<call method='1369' count='1070' prof_factor='0.826996' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1369' uses='1305.000000' stamp='0.477'>
+<bc code='156' bci='4'/>
+<branch target_bci='11' taken='923' not_taken='658' cnt='1581.000000' prob='0.583808'/>
+<parse_done nodes='2501' live='2390' memory='665024' stamp='0.477'/>
+</parse>
+<bc code='83' bci='33'/>
+<uncommon_trap bci='33' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<klass id='1368' name='[Ljava.lang.Object;' flags='1041'/>
+<uncommon_trap bci='33' reason='array_check' action='maybe_recompile' debug_id='0' klass='1368'/>
+<cast_up reason='monomorphic_array' from='1368' to='(exact)'/>
+<bc code='160' bci='42'/>
+<branch target_bci='50' taken='1578' not_taken='0' cnt='1578.000000' prob='always'/>
+<uncommon_trap bci='42' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<parse_done nodes='2706' live='2591' memory='696824' stamp='0.477'/>
+</parse>
+<parse_done nodes='2709' live='2593' memory='697928' stamp='0.477'/>
+</parse>
+<bc code='182' bci='80'/>
+<call method='1109' count='3927' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='4267.000000' stamp='0.477'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1279' count='4199' prof_factor='0.763601' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='3464.000000' stamp='0.477'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='2766' live='2648' memory='706224' stamp='0.477'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1279' count='4199' prof_factor='0.763601' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='3464.000000' stamp='0.477'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='2788' live='2669' memory='708984' stamp='0.477'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1280' count='4199' prof_factor='0.763601' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='3464.000000' stamp='0.477'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='2833' live='2712' memory='720696' stamp='0.477'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1284' count='4199' prof_factor='0.763601' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='2870' live='2747' memory='725672' stamp='0.477'/>
+</parse>
+<bc code='153' bci='83'/>
+<branch target_bci='232' taken='2962' not_taken='1305' cnt='4267.000000' prob='0.694165'/>
+<bc code='185' bci='90'/>
+<method id='1271' holder='1133' name='pop' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1271' count='1201' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='1201'/>
+<method id='1375' holder='1097' name='pop' return='982' flags='1' bytes='5' compile_id='678' compiler='c1' level='3' iicount='1551'/>
+<call method='1375' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='90' klass='1097'/>
+<uncommon_trap bci='90' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='90' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1375' uses='1305.000000' stamp='0.477'>
+<bc code='182' bci='1'/>
+<method id='1376' holder='1097' name='removeFirst' return='982' flags='1' bytes='19' compile_id='679' compiler='c1' level='3' iicount='1551'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1376'/>
+<call method='1376' count='1041' prof_factor='0.841393' inline='1'/>
+<klass id='1379' name='java.util.NoSuchElementException' unloaded='1'/>
+<uncommon_trap method='1376' bci='9' reason='unloaded' action='reinterpret' index='32' debug_id='0' klass='1379'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1376' uses='1304.000000' stamp='0.477'>
+<bc code='182' bci='1'/>
+<method id='1378' holder='1097' name='pollFirst' return='982' flags='1' bytes='36' compile_id='665' compiler='c1' level='3' iicount='1651'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1378'/>
+<call method='1378' count='1042' prof_factor='0.840748' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1378' uses='1304.000000' stamp='0.477'>
+<bc code='184' bci='12'/>
+<method id='1381' holder='1097' name='elementAt' return='982' arguments='1368 975' flags='24' bytes='4' compile_id='655' compiler='c1' level='3' iicount='2289'/>
+<call method='1381' count='1139' prof_factor='0.789824' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1381' uses='1304.000000' stamp='0.477'>
+<bc code='50' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='2992' live='2864' memory='744992' stamp='0.477'/>
+</parse>
+<bc code='198' bci='17'/>
+<branch target_bci='34' taken='0' not_taken='1651' cnt='1651.000000' prob='never'/>
+<uncommon_trap bci='17' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='83' bci='23'/>
+<uncommon_trap bci='23' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='184' bci='28'/>
+<method id='1382' holder='1097' name='inc' return='975' arguments='975 975' flags='24' bytes='12' compile_id='658' compiler='c1' level='3' iicount='1694'/>
+<call method='1382' count='1139' prof_factor='0.789824' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1382' uses='1304.000000' stamp='0.478'>
+<bc code='161' bci='5'/>
+<branch target_bci='10' taken='975' not_taken='719' cnt='1694.000000' prob='0.575561'/>
+<parse_done nodes='3103' live='2972' memory='762536' stamp='0.478'/>
+</parse>
+<parse_done nodes='3109' live='2977' memory='764168' stamp='0.478'/>
+</parse>
+<bc code='199' bci='6'/>
+<branch target_bci='17' taken='1551' not_taken='0' cnt='1551.000000' prob='always'/>
+<parse_done nodes='3120' live='2987' memory='766400' stamp='0.478'/>
+</parse>
+<parse_done nodes='3123' live='2989' memory='767216' stamp='0.478'/>
+</parse>
+<bc code='192' bci='95'/>
+<dependency type='leaf_type' ctxk='1098'/>
+<uncommon_trap bci='95' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='106'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='1201' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='1305.000000' stamp='0.478'>
+<bc code='185' bci='2'/>
+<call method='1169' count='8041' prof_factor='0.166369' virtual='1' inline='1' receiver='1101' receiver_count='8041'/>
+<call method='1292' count='8041' prof_factor='0.166369' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='2' klass='1101'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1292' uses='1338.000000' stamp='0.478'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.080264' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.080264' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='3247' live='3107' memory='790800' stamp='0.478'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='3259' live='3117' memory='795328' stamp='0.478'/>
+</parse>
+<bc code='198' bci='113'/>
+<branch target_bci='164' taken='0' not_taken='1305' cnt='1305.000000' prob='never'/>
+<uncommon_trap bci='113' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='118'/>
+<method id='1277' holder='1272' name='getId' return='983' flags='17' bytes='5' compile_id='649' compiler='c1' level='1' iicount='323'/>
+<call method='1277' count='785' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1277' uses='853.000000' stamp='0.478'>
+<parse_done nodes='3290' live='3146' memory='801872' stamp='0.478'/>
+</parse>
+<bc code='182' bci='123'/>
+<call method='1109' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='1304.000000' stamp='0.478'>
+<uncommon_trap bci='123' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1279' count='4199' prof_factor='0.233357' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='1059.000000' stamp='0.478'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='3357' live='3210' memory='814064' stamp='0.478'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1279' count='4199' prof_factor='0.233357' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='1059.000000' stamp='0.478'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='3381' live='3233' memory='817288' stamp='0.478'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1280' count='4199' prof_factor='0.233357' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='1059.000000' stamp='0.478'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='3425' live='3275' memory='823512' stamp='0.478'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1284' count='4199' prof_factor='0.233357' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='3464' live='3312' memory='828336' stamp='0.478'/>
+</parse>
+<bc code='154' bci='126'/>
+<branch target_bci='164' taken='1304' not_taken='0' cnt='1304.000000' prob='always'/>
+<uncommon_trap bci='126' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='171'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1143' uses='1304.000000' stamp='0.478'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='6251' prof_factor='0.204485' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='1304.000000' stamp='0.478'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.078224' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.078224' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='3551' live='3395' memory='843808' stamp='0.478'/>
+</parse>
+<bc code='198' bci='9'/>
+<branch target_bci='14' taken='0' not_taken='6377' cnt='6377.000000' prob='never'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='3566' live='3408' memory='847840' stamp='0.478'/>
+</parse>
+<bc code='184' bci='174'/>
+<call method='1144' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1144' uses='1304.000000' stamp='0.478'>
+<bc code='184' bci='1'/>
+<call method='1305' count='3016' prof_factor='0.422417' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1305' uses='1304.000000' stamp='0.478'>
+<bc code='184' bci='1'/>
+<call method='1308' count='3016' prof_factor='0.415154' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='1'/>
+<bc code='185' bci='4'/>
+<call method='1309' count='3016' prof_factor='0.415154' virtual='1' inline='1' receiver='1311' receiver_count='3016'/>
+<call method='1322' count='3016' prof_factor='0.415154' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='4' klass='1311'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='4' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='4'/>
+<parse_done nodes='3661' live='3500' memory='864840' stamp='0.478'/>
+</parse>
+<parse_done nodes='3663' live='3501' memory='865656' stamp='0.479'/>
+</parse>
+<bc code='182' bci='177'/>
+<method id='1273' holder='1272' name='setEnd' return='977' arguments='972' flags='17' bytes='6' compile_id='650' compiler='c1' level='1' iicount='323'/>
+<call method='1273' count='785' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1273' uses='853.000000' stamp='0.479'>
+<parse_done nodes='3688' live='3525' memory='870896' stamp='0.479'/>
+</parse>
+<bc code='182' bci='189'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='1304.000000' stamp='0.479'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.166242' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='1337.000000' stamp='0.479'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.080204' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.080204' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='3762' live='3596' memory='884344' stamp='0.479'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='3773' live='3605' memory='887056' stamp='0.479'/>
+</parse>
+<bc code='184' bci='192'/>
+<call method='1138' count='785' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1138' uses='853.000000' stamp='0.479'>
+<bc code='184' bci='3'/>
+<call method='1328' count='5476' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1328' uses='853.000000' stamp='0.479'>
+<bc code='199' bci='1'/>
+<branch target_bci='14' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='162' bci='16'/>
+<branch target_bci='51' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='164' bci='54'/>
+<branch target_bci='89' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='182' bci='94'/>
+<call method='1314' count='5476' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1314' uses='780.000000' stamp='0.479'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<call method='1279' count='36354' prof_factor='0.021324' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='780.000000' stamp='0.479'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='3875' live='3705' memory='903696' stamp='0.479'/>
+</parse>
+<parse_done nodes='3876' live='3705' memory='903992' stamp='0.479'/>
+</parse>
+<bc code='158' bci='105'/>
+<branch target_bci='254' taken='0' not_taken='5476' cnt='5476.000000' prob='never'/>
+<uncommon_trap bci='105' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='110'/>
+<call method='1315' count='5476' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='780.000000' stamp='0.479'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.009632' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='780.000000' stamp='0.479'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='3930' live='3757' memory='914056' stamp='0.479'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.009632' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='780.000000' stamp='0.479'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='4020' live='3842' memory='927632' stamp='0.479'/>
+</parse>
+<parse_done nodes='4021' live='3842' memory='928856' stamp='0.479'/>
+</parse>
+<bc code='162' bci='119'/>
+<branch target_bci='164' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<bc code='160' bci='126'/>
+<branch target_bci='138' taken='0' not_taken='85' cnt='85.000000' prob='never'/>
+<uncommon_trap bci='126' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='153'/>
+<branch target_bci='161' taken='85' not_taken='0' cnt='85.000000' prob='always'/>
+<uncommon_trap bci='153' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='11585.000000' prob='0.47268'/>
+<uncommon_trap bci='179' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='179' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='184'/>
+<call method='1315' count='6109' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='870.000000' stamp='0.479'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.010744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='870.000000' stamp='0.479'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='4165' live='3981' memory='1025152' stamp='0.479'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.010744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='870.000000' stamp='0.479'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='4258' live='4068' memory='1048560' stamp='0.480'/>
+</parse>
+<parse_done nodes='4259' live='4068' memory='1049272' stamp='0.480'/>
+</parse>
+<bc code='184' bci='188'/>
+<call method='1331' count='6109' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1331' uses='870.000000' stamp='0.480'>
+<bc code='184' bci='2'/>
+<call method='1338' count='10721' prof_factor='0.077547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1338' uses='870.000000' stamp='0.480'>
+<bc code='184' bci='1'/>
+<call method='1341' count='10721' prof_factor='0.077547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1340' x='1344'/>
+<parse method='1341' uses='870.000000' stamp='0.480'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='10284' cnt='10284.000000' prob='never'/>
+<parse_done nodes='4303' live='4111' memory='1055320' stamp='0.480'/>
+</parse>
+<bc code='182' bci='6'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1354'/>
+<call method='1354' count='10721' prof_factor='0.077547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1354' uses='870.000000' stamp='0.480'>
+<bc code='161' bci='4'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='163' bci='10'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='182' bci='15'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1355'/>
+<call method='1355' count='9078' prof_factor='0.090852' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1355' uses='870.000000' stamp='0.480'>
+<bc code='46' bci='7'/>
+<observe that='!need_range_check'/>
+<parse_done nodes='4349' live='4156' memory='1062096' stamp='0.480'/>
+</parse>
+<bc code='160' bci='31'/>
+<branch target_bci='51' taken='904' not_taken='8672' cnt='9576.000000' prob='0.0944027'/>
+<bc code='160' bci='60'/>
+<branch target_bci='80' taken='0' not_taken='904' cnt='904.000000' prob='never'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='82'/>
+<branch target_bci='89' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='4404' live='4208' memory='1072560' stamp='0.480'/>
+</parse>
+<parse_done nodes='4404' live='4207' memory='1072688' stamp='0.480'/>
+</parse>
+<parse_done nodes='4404' live='4206' memory='1073840' stamp='0.480'/>
+</parse>
+<bc code='155' bci='195'/>
+<branch target_bci='205' taken='0' not_taken='6109' cnt='6109.000000' prob='never'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='202'/>
+<branch target_bci='210' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='202' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='223'/>
+<branch target_bci='231' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='223' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='6109.000000' prob='0.47268'/>
+<bc code='153' bci='242'/>
+<branch target_bci='250' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<parse_done nodes='4469' live='4267' memory='1084952' stamp='0.480'/>
+</parse>
+<parse_done nodes='4469' live='4266' memory='1085144' stamp='0.480'/>
+</parse>
+<bc code='182' bci='195'/>
+<method id='1274' holder='1098' name='setEndNodes' return='977' arguments='975' flags='0' bytes='6' compile_id='651' compiler='c1' level='1' iicount='324'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1274'/>
+<call method='1274' count='785' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1274' uses='853.000000' stamp='0.480'>
+<parse_done nodes='4483' live='4279' memory='1087976' stamp='0.480'/>
+</parse>
+<bc code='182' bci='207'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='1304.000000' stamp='0.480'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.166242' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='1337.000000' stamp='0.480'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.080204' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.080204' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='4557' live='4350' memory='1101936' stamp='0.480'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='4568' live='4359' memory='1104360' stamp='0.480'/>
+</parse>
+<bc code='184' bci='210'/>
+<call method='1138' count='785' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1138' uses='853.000000' stamp='0.480'>
+<bc code='184' bci='3'/>
+<call method='1328' count='5476' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1328' uses='853.000000' stamp='0.480'>
+<bc code='199' bci='1'/>
+<branch target_bci='14' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='162' bci='16'/>
+<branch target_bci='51' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='164' bci='54'/>
+<branch target_bci='89' taken='5476' not_taken='0' cnt='5476.000000' prob='always'/>
+<bc code='182' bci='94'/>
+<call method='1314' count='5476' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1314' uses='780.000000' stamp='0.480'>
+<bc code='190' bci='4'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='6'/>
+<call method='1279' count='36354' prof_factor='0.021324' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='780.000000' stamp='0.480'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='4670' live='4459' memory='1118704' stamp='0.480'/>
+</parse>
+<parse_done nodes='4671' live='4459' memory='1119000' stamp='0.480'/>
+</parse>
+<bc code='158' bci='105'/>
+<branch target_bci='254' taken='0' not_taken='5476' cnt='5476.000000' prob='never'/>
+<uncommon_trap bci='105' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='110'/>
+<call method='1315' count='5476' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='780.000000' stamp='0.480'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.009632' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='780.000000' stamp='0.480'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='4725' live='4511' memory='1127528' stamp='0.480'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.009632' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='780.000000' stamp='0.480'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='4815' live='4596' memory='1141600' stamp='0.480'/>
+</parse>
+<parse_done nodes='4816' live='4596' memory='1142824' stamp='0.480'/>
+</parse>
+<bc code='162' bci='119'/>
+<branch target_bci='164' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<bc code='160' bci='126'/>
+<branch target_bci='138' taken='0' not_taken='85' cnt='85.000000' prob='never'/>
+<uncommon_trap bci='126' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='160' bci='153'/>
+<branch target_bci='161' taken='85' not_taken='0' cnt='85.000000' prob='always'/>
+<uncommon_trap bci='153' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='11585.000000' prob='0.47268'/>
+<uncommon_trap bci='179' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='179' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='184'/>
+<call method='1315' count='6109' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1315' uses='870.000000' stamp='0.481'>
+<bc code='183' bci='1'/>
+<call method='1280' count='80983' prof_factor='0.010744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='870.000000' stamp='0.481'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='4960' live='4735' memory='1164200' stamp='0.481'/>
+</parse>
+<bc code='153' bci='4'/>
+<branch target_bci='16' taken='0' not_taken='80983' cnt='80983.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='12'/>
+<call method='1335' count='80983' prof_factor='0.010744' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1335' uses='870.000000' stamp='0.481'>
+<bc code='155' bci='1'/>
+<branch target_bci='10' taken='0' not_taken='80287' cnt='80287.000000' prob='never'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='190' bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='161' bci='7'/>
+<branch target_bci='19' taken='80287' not_taken='0' cnt='80287.000000' prob='always'/>
+<uncommon_trap bci='7' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='51' bci='21'/>
+<uncommon_trap bci='21' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<parse_done nodes='5053' live='4822' memory='1178624' stamp='0.481'/>
+</parse>
+<parse_done nodes='5054' live='4822' memory='1179336' stamp='0.481'/>
+</parse>
+<bc code='184' bci='188'/>
+<call method='1331' count='6109' prof_factor='0.142452' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1331' uses='870.000000' stamp='0.481'>
+<bc code='184' bci='2'/>
+<call method='1338' count='10721' prof_factor='0.077547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1338' uses='870.000000' stamp='0.481'>
+<bc code='184' bci='1'/>
+<call method='1341' count='10721' prof_factor='0.077547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<dependency type='abstract_with_unique_concrete_subtype' ctxk='1340' x='1344'/>
+<parse method='1341' uses='870.000000' stamp='0.481'>
+<bc code='154' bci='4'/>
+<branch target_bci='11' taken='0' not_taken='10284' cnt='10284.000000' prob='never'/>
+<parse_done nodes='5098' live='4865' memory='1185312' stamp='0.481'/>
+</parse>
+<bc code='182' bci='6'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1354'/>
+<call method='1354' count='10721' prof_factor='0.077547' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1354' uses='870.000000' stamp='0.481'>
+<bc code='161' bci='4'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='163' bci='10'/>
+<branch target_bci='80' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<bc code='182' bci='15'/>
+<dependency type='unique_concrete_method' ctxk='1344' x='1355'/>
+<call method='1355' count='9078' prof_factor='0.090852' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1355' uses='870.000000' stamp='0.481'>
+<bc code='46' bci='7'/>
+<observe that='!need_range_check'/>
+<parse_done nodes='5144' live='4910' memory='1192600' stamp='0.481'/>
+</parse>
+<bc code='160' bci='31'/>
+<branch target_bci='51' taken='904' not_taken='8672' cnt='9576.000000' prob='0.0944027'/>
+<bc code='160' bci='60'/>
+<branch target_bci='80' taken='0' not_taken='904' cnt='904.000000' prob='never'/>
+<uncommon_trap bci='60' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='82'/>
+<branch target_bci='89' taken='0' not_taken='9576' cnt='9576.000000' prob='never'/>
+<uncommon_trap bci='82' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='5199' live='4962' memory='1202232' stamp='0.481'/>
+</parse>
+<parse_done nodes='5199' live='4961' memory='1202360' stamp='0.481'/>
+</parse>
+<parse_done nodes='5199' live='4960' memory='1203512' stamp='0.481'/>
+</parse>
+<bc code='155' bci='195'/>
+<branch target_bci='205' taken='0' not_taken='6109' cnt='6109.000000' prob='never'/>
+<uncommon_trap bci='195' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='162' bci='202'/>
+<branch target_bci='210' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='202' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='223'/>
+<branch target_bci='231' taken='6109' not_taken='0' cnt='6109.000000' prob='always'/>
+<uncommon_trap bci='223' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='162' bci='176'/>
+<branch target_bci='241' taken='5476' not_taken='6109' cnt='6109.000000' prob='0.47268'/>
+<bc code='153' bci='242'/>
+<branch target_bci='250' taken='5391' not_taken='85' cnt='5476.000000' prob='0.984478'/>
+<parse_done nodes='5264' live='5021' memory='1215864' stamp='0.481'/>
+</parse>
+<parse_done nodes='5264' live='5020' memory='1216056' stamp='0.481'/>
+</parse>
+<bc code='182' bci='213'/>
+<method id='1275' holder='1098' name='setEndLiveNodes' return='977' arguments='975' flags='0' bytes='6' compile_id='652' compiler='c1' level='1' iicount='324'/>
+<dependency type='unique_concrete_method' ctxk='1098' x='1275'/>
+<call method='1275' count='785' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1275' uses='853.000000' stamp='0.481'>
+<parse_done nodes='5278' live='5033' memory='1219144' stamp='0.481'/>
+</parse>
+<bc code='182' bci='220'/>
+<klass id='1099' name='com.sun.hotspot.tools.compiler.Compilation' flags='1'/>
+<klass id='1100' name='java.util.ArrayList' flags='1'/>
+<method id='1276' holder='1099' name='getPhases' return='1100' flags='1' bytes='5' compile_id='653' compiler='c1' level='1' iicount='324'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1276'/>
+<call method='1276' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1276' uses='1304.000000' stamp='0.481'>
+<uncommon_trap bci='220' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='5311' live='5064' memory='1226008' stamp='0.481'/>
+</parse>
+<bc code='182' bci='225'/>
+<method id='1174' holder='1100' name='add' return='969' arguments='982' flags='1' bytes='25' compile_id='405' compiler='c1' level='3' iicount='2836'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1174'/>
+<call method='1174' count='1200' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1174' uses='1304.000000' stamp='0.481'>
+<uncommon_trap bci='225' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='20'/>
+<method id='1392' holder='1100' name='add' return='977' arguments='982 1368 975' flags='2' bytes='23' compile_id='406' compiler='c1' level='3' iicount='3088'/>
+<call method='1392' count='2827' prof_factor='0.459803' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1392' uses='1304.000000' stamp='0.481'>
+<bc code='190' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='3'/>
+<branch target_bci='11' taken='2248' not_taken='840' cnt='3088.000000' prob='0.727979'/>
+<bc code='183' bci='7'/>
+<method id='1394' holder='1100' name='grow' return='1368' flags='2' bytes='11' iicount='842'/>
+<call method='1394' count='769' prof_factor='0.422280' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1394' uses='355.000000' stamp='0.481'>
+<bc code='183' bci='7'/>
+<method id='1398' holder='1100' name='grow' return='1368' arguments='975' flags='2' bytes='18' iicount='842'/>
+<call method='1398' count='-1' prof_factor='0.421615' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1398' uses='-1.000000' stamp='0.482'>
+<bc code='183' bci='7'/>
+<method id='1400' holder='1100' name='newCapacity' return='975' arguments='975' flags='2' bytes='65' compile_id='668' compiler='c1' level='3' iicount='842'/>
+<call method='1400' count='-1' prof_factor='1.000000' inline='1'/>
+<klass id='1005' name='java.lang.OutOfMemoryError' flags='1'/>
+<uncommon_trap method='1400' bci='39' reason='unloaded' action='reinterpret' index='26' debug_id='0' klass='1005'/>
+<inline_fail reason='too big'/>
+<direct_call bci='7'/>
+<bc code='184' bci='10'/>
+<klass id='1401' name='java.util.Arrays' flags='1'/>
+<method id='1402' holder='1401' name='copyOf' return='1368' arguments='1368 975' flags='9' bytes='10' iicount='1104'/>
+<call method='1402' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1402' uses='-1.000000' stamp='0.482'>
+<bc code='182' bci='3'/>
+<klass id='984' name='java.lang.Class' flags='17'/>
+<method id='1406' holder='982' name='getClass' return='984' flags='273' bytes='0' compile_id='217' compile_kind='c2n' compiler='' level='0' iicount='256'/>
+<call method='1406' count='-1' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_getClass' nodes='9'/>
+<bc code='184' bci='6'/>
+<method id='1407' holder='1401' name='copyOf' return='1368' arguments='1368 975 984' flags='9' bytes='40' compile_id='282' compiler='c1' level='3' iicount='1836'/>
+<call method='1407' count='-1' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='6' reason='intrinsic_or_type_checked_inlining' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_copyOf' nodes='83'/>
+<parse_done nodes='5524' live='5273' memory='1284928' stamp='0.482'/>
+</parse>
+<parse_done nodes='5675' live='5423' memory='1306688' stamp='0.482'/>
+</parse>
+<parse_done nodes='5679' live='5426' memory='1308312' stamp='0.482'/>
+</parse>
+<bc code='83' bci='14'/>
+<uncommon_trap bci='14' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='14' reason='array_check' action='maybe_recompile' debug_id='0' klass='1368'/>
+<cast_up reason='monomorphic_array' from='1368' to='(exact)'/>
+<parse_done nodes='5882' live='5626' memory='1341240' stamp='0.482'/>
+</parse>
+<parse_done nodes='5891' live='5634' memory='1344240' stamp='0.482'/>
+</parse>
+<bc code='182' bci='235'/>
+<call method='1109' count='2726' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='2962.000000' stamp='0.482'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1279' count='4199' prof_factor='0.530064' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='2405.000000' stamp='0.482'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='5967' live='5708' memory='1357512' stamp='0.482'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1279' count='4199' prof_factor='0.530064' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='2405.000000' stamp='0.482'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='5989' live='5729' memory='1360272' stamp='0.482'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='27' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='183' bci='31'/>
+<call method='1280' count='4199' prof_factor='0.530064' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='2405.000000' stamp='0.482'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='6034' live='5772' memory='1369744' stamp='0.482'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<uncommon_trap bci='34' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='45'/>
+<call method='1284' count='4199' prof_factor='0.530064' inline='1'/>
+<intrinsic id='_equalsL' nodes='15'/>
+<parse_done nodes='6072' live='5808' memory='1374384' stamp='0.482'/>
+</parse>
+<bc code='153' bci='238'/>
+<branch target_bci='652' taken='2852' not_taken='110' cnt='2962.000000' prob='0.962863'/>
+<bc code='182' bci='244'/>
+<method id='1167' holder='1093' name='makeId' return='983' arguments='1094' flags='1' bytes='53' iicount='339'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1167'/>
+<call method='1167' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1167' uses='110.000000' stamp='0.482'>
+<bc code='185' bci='3'/>
+<call method='1169' count='-1' prof_factor='0.324484' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='3'/>
+<bc code='185' bci='12'/>
+<call method='1169' count='-1' prof_factor='0.324484' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='12'/>
+<bc code='182' bci='25'/>
+<call method='1109' count='-1' prof_factor='0.324484' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='25'/>
+<bc code='183' bci='35'/>
+<klass id='1050' name='java.lang.StringBuilder' flags='17'/>
+<method id='1156' holder='1050' name='&lt;init&gt;' return='977' flags='1' bytes='7' compile_id='252' compiler='c1' level='3' iicount='2335'/>
+<call method='1156' count='-1' prof_factor='0.324484' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861015596'/>
+<direct_call bci='35'/>
+<bc code='182' bci='39'/>
+<method id='1158' holder='1050' name='append' return='1050' arguments='983' flags='1' bytes='8' compile_id='742' compiler='c2' level='4' iicount='5310'/>
+<call method='1158' count='-1' prof_factor='0.324484' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='39'/>
+<bc code='182' bci='44'/>
+<call method='1158' count='-1' prof_factor='0.324484' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='44'/>
+<uncommon_trap bci='44' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='47'/>
+<method id='1162' holder='1050' name='toString' return='983' flags='1' bytes='35' compile_id='237' compiler='c1' level='3' iicount='2632'/>
+<call method='1162' count='-1' prof_factor='0.324484' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861015663'/>
+<direct_call bci='47'/>
+<uncommon_trap bci='47' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='6289' live='6022' memory='1415616' stamp='0.483'/>
+</parse>
+<bc code='182' bci='261'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='110.000000' stamp='0.483'>
+<bc code='185' bci='2'/>
+<call method='1169' count='8041' prof_factor='0.014023' virtual='1' inline='1' receiver='1101' receiver_count='8041'/>
+<call method='1292' count='8041' prof_factor='0.014023' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='2' klass='1101'/>
+<uncommon_trap bci='2' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1292' uses='113.000000' stamp='0.483'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006779' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006779' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='6436' live='6165' memory='1452240' stamp='0.483'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='6447' live='6174' memory='1455304' stamp='0.483'/>
+</parse>
+<bc code='184' bci='264'/>
+<call method='1138' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='264'/>
+<bc code='183' bci='267'/>
+<method id='1248' holder='1099' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='44' iicount='102'/>
+<call method='1248' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1248' uses='110.000000' stamp='0.483'>
+<bc code='183' bci='1'/>
+<call method='1361' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='-1.000000' stamp='0.483'>
+<parse_done nodes='6501' live='6227' memory='1466344' stamp='0.483'/>
+</parse>
+<bc code='183' bci='9'/>
+<klass id='1105' name='com.sun.hotspot.tools.compiler.CallSite' flags='1'/>
+<method id='1418' holder='1105' name='&lt;init&gt;' return='977' flags='0' bytes='5' iicount='228'/>
+<call method='1418' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1418' uses='-1.000000' stamp='0.483'>
+<bc code='183' bci='1'/>
+<call method='1361' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='-1.000000' stamp='0.483'>
+<parse_done nodes='6570' live='6295' memory='1483424' stamp='0.483'/>
+</parse>
+<parse_done nodes='6584' live='6308' memory='1486624' stamp='0.483'/>
+</parse>
+<bc code='183' bci='20'/>
+<call method='1418' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1418' uses='-1.000000' stamp='0.483'>
+<bc code='183' bci='1'/>
+<call method='1361' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='-1.000000' stamp='0.483'>
+<parse_done nodes='6848' live='6571' memory='1545152' stamp='0.483'/>
+</parse>
+<parse_done nodes='6863' live='6585' memory='1548496' stamp='0.483'/>
+</parse>
+<bc code='183' bci='32'/>
+<method id='1419' holder='1100' name='&lt;init&gt;' return='977' arguments='975' flags='1' bytes='61' iicount='148'/>
+<call method='1419' count='-1' prof_factor='1.000000' inline='1'/>
+<klass id='1423' name='java.lang.IllegalArgumentException' flags='1'/>
+<uncommon_trap method='1419' bci='33' reason='unloaded' action='reinterpret' index='7' debug_id='0' klass='1423'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1419' uses='-1.000000' stamp='0.484'>
+<bc code='183' bci='1'/>
+<klass id='1391' name='java.util.AbstractList' flags='1025'/>
+<method id='1422' holder='1391' name='&lt;init&gt;' return='977' flags='4' bytes='10' compile_id='498' compiler='c1' level='3' iicount='1132'/>
+<call method='1422' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1422' uses='-1.000000' stamp='0.484'>
+<bc code='183' bci='1'/>
+<klass id='1372' name='java.util.AbstractCollection' flags='1025'/>
+<method id='1425' holder='1372' name='&lt;init&gt;' return='977' flags='4' bytes='5' compile_id='23' compiler='c1' level='3' iicount='2469'/>
+<call method='1425' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1425' uses='-1.000000' stamp='0.484'>
+<bc code='183' bci='1'/>
+<call method='1361' count='2199' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='2469.000000' stamp='0.484'>
+<parse_done nodes='7137' live='6858' memory='1609728' stamp='0.484'/>
+</parse>
+<parse_done nodes='7156' live='6876' memory='1617360' stamp='0.484'/>
+</parse>
+<parse_done nodes='7180' live='6899' memory='1621728' stamp='0.484'/>
+</parse>
+<parse_done nodes='7382' live='7100' memory='1659368' stamp='0.484'/>
+</parse>
+<parse_done nodes='7608' live='7325' memory='1701968' stamp='0.484'/>
+</parse>
+<bc code='182' bci='282'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1143' uses='110.000000' stamp='0.484'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='6251' prof_factor='0.017249' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='110.000000' stamp='0.484'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006599' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006599' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='7924' live='7638' memory='1774328' stamp='0.484'/>
+</parse>
+<bc code='198' bci='9'/>
+<branch target_bci='14' taken='0' not_taken='6377' cnt='6377.000000' prob='never'/>
+<uncommon_trap bci='9' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<parse_done nodes='7939' live='7651' memory='1778328' stamp='0.484'/>
+</parse>
+<bc code='184' bci='285'/>
+<call method='1144' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1144' uses='110.000000' stamp='0.484'>
+<bc code='184' bci='1'/>
+<call method='1305' count='3016' prof_factor='0.035633' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1305' uses='110.000000' stamp='0.484'>
+<bc code='184' bci='1'/>
+<call method='1308' count='3016' prof_factor='0.035021' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='1'/>
+<bc code='185' bci='4'/>
+<call method='1309' count='3016' prof_factor='0.035021' virtual='1' inline='1' receiver='1311' receiver_count='3016'/>
+<call method='1322' count='3016' prof_factor='0.035021' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<predicted_call bci='4' klass='1311'/>
+<uncommon_trap bci='4' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='4' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='4'/>
+<parse_done nodes='8034' live='7743' memory='1794408' stamp='0.484'/>
+</parse>
+<parse_done nodes='8036' live='7744' memory='1795736' stamp='0.484'/>
+</parse>
+<bc code='182' bci='288'/>
+<method id='1249' holder='1099' name='setStart' return='977' arguments='972' flags='1' bytes='6' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1249'/>
+<call method='1249' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1249' uses='110.000000' stamp='0.484'>
+<uncommon_trap bci='288' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='8074' live='7780' memory='1806480' stamp='0.484'/>
+</parse>
+<bc code='182' bci='302'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='110.000000' stamp='0.484'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.014023' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='113.000000' stamp='0.484'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006779' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006779' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='8152' live='7855' memory='1823856' stamp='0.485'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='8163' live='7864' memory='1826664' stamp='0.485'/>
+</parse>
+<bc code='182' bci='305'/>
+<method id='1250' holder='1099' name='setICount' return='977' arguments='983' flags='1' bytes='6' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1250'/>
+<call method='1250' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1250' uses='110.000000' stamp='0.485'>
+<uncommon_trap bci='305' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='8333' live='8032' memory='1986704' stamp='0.485'/>
+</parse>
+<bc code='182' bci='319'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='110.000000' stamp='0.485'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.014023' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='113.000000' stamp='0.485'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006779' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006779' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='8411' live='8107' memory='2004976' stamp='0.485'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='8422' live='8116' memory='2007784' stamp='0.485'/>
+</parse>
+<bc code='182' bci='322'/>
+<method id='1252' holder='1099' name='setBCount' return='977' arguments='983' flags='1' bytes='6' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1252'/>
+<call method='1252' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1252' uses='110.000000' stamp='0.485'>
+<uncommon_trap bci='322' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='8593' live='8285' memory='2034800' stamp='0.485'/>
+</parse>
+<bc code='182' bci='336'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='110.000000' stamp='0.485'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.014023' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='113.000000' stamp='0.485'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006779' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006779' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='8671' live='8360' memory='2054352' stamp='0.485'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='8682' live='8369' memory='2057160' stamp='0.485'/>
+</parse>
+<bc code='184' bci='339'/>
+<call method='1138' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='339'/>
+<bc code='182' bci='342'/>
+<method id='1254' holder='1099' name='setBCI' return='977' arguments='975' flags='1' bytes='6' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1254'/>
+<call method='1254' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1254' uses='110.000000' stamp='0.485'>
+<uncommon_trap bci='342' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='8731' live='8416' memory='2067408' stamp='0.485'/>
+</parse>
+<bc code='185' bci='349'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='110.000000' stamp='0.485'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006599' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006599' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='8795' live='8477' memory='2081576' stamp='0.486'/>
+</parse>
+<bc code='199' bci='358'/>
+<branch target_bci='365' taken='0' not_taken='110' cnt='110.000000' prob='never'/>
+<uncommon_trap bci='358' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='371'/>
+<method id='1256' holder='1099' name='setCompiler' return='977' arguments='983' flags='1' bytes='6' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1256'/>
+<call method='1256' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1256' uses='110.000000' stamp='0.486'>
+<uncommon_trap bci='371' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='8985' live='8664' memory='2112384' stamp='0.486'/>
+</parse>
+<bc code='185' bci='381'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='110.000000' stamp='0.486'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006599' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006599' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='9051' live='8727' memory='2126648' stamp='0.486'/>
+</parse>
+<bc code='182' bci='386'/>
+<klass id='1184' name='[Ljava.lang.String;' flags='1041'/>
+<klass id='1183' name='java.lang.CharSequence' flags='1537'/>
+<klass id='1102' name='java.util.regex.Pattern' flags='17'/>
+<method id='1185' holder='1102' name='split' return='1184' arguments='1183' flags='1' bytes='7' iicount='293'/>
+<call method='1185' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1185' uses='110.000000' stamp='0.486'>
+<bc code='182' bci='3'/>
+<method id='1435' holder='1102' name='split' return='1184' arguments='1183 975' flags='1' bytes='290' compile_id='737' compiler='c1' level='3' iicount='340'/>
+<call method='1435' count='-1' prof_factor='0.375427' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='3'/>
+<parse_done nodes='9082' live='8757' memory='2133000' stamp='0.486'/>
+</parse>
+<bc code='183' bci='395'/>
+<call method='1156' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861018519'/>
+<direct_call bci='395'/>
+<bc code='50' bci='401'/>
+<uncommon_trap bci='401' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='401' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='402'/>
+<call method='1158' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='402'/>
+<bc code='182' bci='407'/>
+<call method='1158' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='407'/>
+<uncommon_trap bci='407' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='413'/>
+<uncommon_trap bci='413' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='414'/>
+<call method='1158' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='414'/>
+<uncommon_trap bci='414' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='417'/>
+<call method='1162' count='66' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861018680'/>
+<direct_call bci='417'/>
+<uncommon_trap bci='417' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='185' bci='426'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='110.000000' stamp='0.486'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006599' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006599' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='9369' live='9035' memory='2198152' stamp='0.486'/>
+</parse>
+<bc code='199' bci='435'/>
+<branch target_bci='442' taken='0' not_taken='110' cnt='110.000000' prob='never'/>
+<uncommon_trap bci='435' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='446'/>
+<call method='1109' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='110.000000' stamp='0.486'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1279' count='4199' prof_factor='0.019685' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='89.000000' stamp='0.486'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='9443' live='9107' memory='2209896' stamp='0.486'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1279' count='4199' prof_factor='0.019685' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='89.000000' stamp='0.486'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='9465' live='9128' memory='2212656' stamp='0.487'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<bc code='183' bci='31'/>
+<call method='1280' count='4199' prof_factor='0.019685' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='89.000000' stamp='0.487'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='9502' live='9164' memory='2217080' stamp='0.487'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<bc code='184' bci='45'/>
+<call method='1284' count='4199' prof_factor='0.019685' inline='1'/>
+<intrinsic id='_equalsL' nodes='14'/>
+<parse_done nodes='9528' live='9189' memory='2219776' stamp='0.487'/>
+</parse>
+<bc code='153' bci='449'/>
+<branch target_bci='463' taken='110' not_taken='0' cnt='110.000000' prob='always'/>
+<bc code='182' bci='467'/>
+<call method='1109' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1109' uses='110.000000' stamp='0.487'>
+<bc code='166' bci='2'/>
+<branch target_bci='7' taken='4538' not_taken='1050' cnt='5588.000000' prob='0.812097'/>
+<bc code='153' bci='11'/>
+<branch target_bci='63' taken='1' not_taken='4537' cnt='4538.000000' prob='0.000220361'/>
+<bc code='182' bci='20'/>
+<call method='1279' count='4199' prof_factor='0.019685' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='89.000000' stamp='0.487'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='9591' live='9251' memory='2229584' stamp='0.487'/>
+</parse>
+<bc code='182' bci='24'/>
+<call method='1279' count='4199' prof_factor='0.019685' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1279' uses='89.000000' stamp='0.487'>
+<bc code='153' bci='3'/>
+<branch target_bci='13' taken='0' not_taken='61001' cnt='61001.000000' prob='never'/>
+<parse_done nodes='9613' live='9272' memory='2233112' stamp='0.487'/>
+</parse>
+<bc code='160' bci='27'/>
+<branch target_bci='63' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<bc code='183' bci='31'/>
+<call method='1280' count='4199' prof_factor='0.019685' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='89.000000' stamp='0.487'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='9650' live='9308' memory='2237024' stamp='0.487'/>
+</parse>
+<bc code='153' bci='34'/>
+<branch target_bci='51' taken='0' not_taken='4537' cnt='4537.000000' prob='never'/>
+<bc code='184' bci='45'/>
+<call method='1284' count='4199' prof_factor='0.019685' inline='1'/>
+<intrinsic id='_equalsL' nodes='13'/>
+<parse_done nodes='9674' live='9331' memory='2239752' stamp='0.487'/>
+</parse>
+<bc code='153' bci='470'/>
+<branch target_bci='503' taken='110' not_taken='0' cnt='110.000000' prob='always'/>
+<bc code='183' bci='511'/>
+<call method='1156' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861019117'/>
+<direct_call bci='511'/>
+<bc code='182' bci='518'/>
+<method id='1261' holder='1099' name='getId' return='975' flags='1' bytes='5' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1261'/>
+<call method='1261' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1261' uses='110.000000' stamp='0.487'>
+<uncommon_trap bci='518' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='9758' live='9413' memory='2254960' stamp='0.487'/>
+</parse>
+<bc code='182' bci='521'/>
+<method id='1262' holder='1050' name='append' return='1050' arguments='975' flags='1' bytes='8' compile_id='449' compiler='c1' level='3' iicount='468'/>
+<call method='1262' count='66' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861019166'/>
+<direct_call bci='521'/>
+<bc code='182' bci='526'/>
+<call method='1158' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='526'/>
+<uncommon_trap bci='526' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='531'/>
+<call method='1158' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='531'/>
+<uncommon_trap bci='531' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='536'/>
+<call method='1158' count='66' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='already compiled into a medium method'/>
+<direct_call bci='536'/>
+<uncommon_trap bci='536' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='539'/>
+<call method='1162' count='66' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<inline_id id='6433861019291'/>
+<direct_call bci='539'/>
+<uncommon_trap bci='539' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='542'/>
+<method id='1265' holder='1099' name='setSpecial' return='977' arguments='983' flags='1' bytes='6' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1265'/>
+<call method='1265' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1265' uses='110.000000' stamp='0.487'>
+<uncommon_trap bci='542' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='10082' live='9731' memory='2341728' stamp='0.488'/>
+</parse>
+<bc code='183' bci='549'/>
+<klass id='1103' name='com.sun.hotspot.tools.compiler.Method' flags='1'/>
+<method id='1225' holder='1103' name='&lt;init&gt;' return='977' flags='1' bytes='5' compile_id='708' compiler='c1' level='3' iicount='426'/>
+<call method='1225' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1225' uses='110.000000' stamp='0.488'>
+<bc code='183' bci='1'/>
+<call method='1361' count='-1' prof_factor='0.258216' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='-1.000000' stamp='0.488'>
+<parse_done nodes='10149' live='9797' memory='2366248' stamp='0.488'/>
+</parse>
+<parse_done nodes='10158' live='9805' memory='2370008' stamp='0.488'/>
+</parse>
+<bc code='50' bci='559'/>
+<uncommon_trap bci='559' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='560'/>
+<method id='1227' holder='1103' name='setHolder' return='977' arguments='983' flags='1' bytes='6' compile_id='659' compiler='c1' level='1' iicount='186'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1227'/>
+<call method='1227' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1227' uses='110.000000' stamp='0.488'>
+<parse_done nodes='10306' live='9951' memory='2413136' stamp='0.488'/>
+</parse>
+<bc code='50' bci='568'/>
+<uncommon_trap bci='568' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='569'/>
+<method id='1229' holder='1103' name='setName' return='977' arguments='983' flags='1' bytes='6' compile_id='660' compiler='c1' level='1' iicount='188'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1229'/>
+<call method='1229' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1229' uses='110.000000' stamp='0.488'>
+<parse_done nodes='10504' live='10147' memory='2457512' stamp='0.488'/>
+</parse>
+<bc code='50' bci='577'/>
+<uncommon_trap bci='577' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='578'/>
+<method id='1236' holder='1103' name='setSignature' return='977' arguments='983' flags='1' bytes='13' compile_id='709' compiler='c1' level='3' iicount='426'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1236'/>
+<call method='1236' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1236' uses='110.000000' stamp='0.488'>
+<bc code='182' bci='6'/>
+<method id='1186' holder='983' name='replace' return='983' arguments='970 970' flags='1' bytes='42' compile_id='327' compiler='c1' level='3' iicount='1328'/>
+<call method='1186' count='-1' prof_factor='0.258216' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='6'/>
+<uncommon_trap bci='6' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<parse_done nodes='10706' live='10346' memory='2502856' stamp='0.488'/>
+</parse>
+<bc code='182' bci='585'/>
+<method id='1243' holder='1103' name='setFlags' return='977' arguments='983' flags='1' bytes='6' compile_id='663' compiler='c1' level='1' iicount='186'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1243'/>
+<call method='1243' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1243' uses='110.000000' stamp='0.488'>
+<parse_done nodes='10868' live='10507' memory='2542848' stamp='0.488'/>
+</parse>
+<bc code='182' bci='597'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1137' uses='110.000000' stamp='0.488'>
+<bc code='185' bci='2'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='8041' prof_factor='0.014023' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1292' uses='113.000000' stamp='0.488'>
+<bc code='185' bci='5'/>
+<call method='1294' count='16409' prof_factor='0.006779' virtual='1' inline='1' receiver='1296' receiver_count='16409'/>
+<call method='1298' count='16409' prof_factor='0.006779' inline='1'/>
+<inline_fail reason='already compiled into a big method'/>
+<predicted_call bci='5' klass='1296'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='5' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='5'/>
+<parse_done nodes='10944' live='10580' memory='2565400' stamp='0.488'/>
+</parse>
+<bc code='198' bci='11'/>
+<branch target_bci='17' taken='6481' not_taken='1560' cnt='8041.000000' prob='0.805994'/>
+<parse_done nodes='10955' live='10589' memory='2568848' stamp='0.488'/>
+</parse>
+<bc code='182' bci='600'/>
+<method id='1239' holder='1103' name='setBytes' return='977' arguments='983' flags='1' bytes='6' compile_id='664' compiler='c1' level='1' iicount='188'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1239'/>
+<call method='1239' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='accessor'/>
+<parse method='1239' uses='110.000000' stamp='0.488'>
+<parse_done nodes='11113' live='10746' memory='2599256' stamp='0.489'/>
+</parse>
+<bc code='182' bci='609'/>
+<method id='1155' holder='1099' name='setMethod' return='977' arguments='1103' flags='1' bytes='13' iicount='202'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1155'/>
+<call method='1155' count='101' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='executed &lt; MinInliningThreshold times'/>
+<direct_call bci='609'/>
+<uncommon_trap bci='609' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='620'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1174'/>
+<call method='1174' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1174' uses='110.000000' stamp='0.489'>
+<uncommon_trap bci='620' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='183' bci='20'/>
+<call method='1392' count='2827' prof_factor='0.038787' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1392' uses='110.000000' stamp='0.489'>
+<bc code='190' bci='2'/>
+<uncommon_trap bci='2' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='3'/>
+<branch target_bci='11' taken='2248' not_taken='840' cnt='3088.000000' prob='0.727979'/>
+<bc code='183' bci='7'/>
+<call method='1394' count='769' prof_factor='0.035622' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1394' uses='30.000000' stamp='0.489'>
+<bc code='183' bci='7'/>
+<call method='1398' count='-1' prof_factor='0.035629' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1398' uses='-1.000000' stamp='0.489'>
+<bc code='183' bci='7'/>
+<call method='1400' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='7'/>
+<bc code='184' bci='10'/>
+<call method='1402' count='-1' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1402' uses='-1.000000' stamp='0.489'>
+<bc code='182' bci='3'/>
+<call method='1406' count='-1' prof_factor='1.000000' inline='1'/>
+<intrinsic id='_getClass' nodes='8'/>
+<bc code='184' bci='6'/>
+<call method='1407' count='-1' prof_factor='1.000000' inline='1'/>
+<uncommon_trap bci='6' reason='intrinsic_or_type_checked_inlining' action='maybe_recompile' debug_id='0'/>
+<intrinsic id='_copyOf' nodes='78'/>
+<parse_done nodes='11360' live='10988' memory='2649128' stamp='0.489'/>
+</parse>
+<parse_done nodes='11511' live='11138' memory='2672752' stamp='0.489'/>
+</parse>
+<parse_done nodes='11515' live='11141' memory='2674376' stamp='0.489'/>
+</parse>
+<bc code='83' bci='14'/>
+<uncommon_trap bci='14' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='14' reason='array_check' action='maybe_recompile' debug_id='0' klass='1368'/>
+<cast_up reason='monomorphic_array' from='1368' to='(exact)'/>
+<parse_done nodes='11714' live='11337' memory='2705944' stamp='0.489'/>
+</parse>
+<parse_done nodes='11722' live='11344' memory='2708512' stamp='0.489'/>
+</parse>
+<bc code='182' bci='634'/>
+<klass id='1104' name='java.util.HashMap' flags='1'/>
+<method id='1173' holder='1104' name='put' return='982' arguments='982 982' flags='1' bytes='13' compile_id='73' compiler='c1' level='3' iicount='4495'/>
+<dependency type='unique_concrete_method' ctxk='1104' x='1173'/>
+<call method='1173' count='101' prof_factor='1.000000' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1173' uses='110.000000' stamp='0.489'>
+<uncommon_trap bci='634' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='184' bci='2'/>
+<method id='1465' holder='1104' name='hash' return='975' arguments='982' flags='24' bytes='20' compile_id='163' compiler='c2' level='4' iicount='13455'/>
+<call method='1465' count='4334' prof_factor='0.024472' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1465' uses='110.000000' stamp='0.489'>
+<bc code='199' bci='1'/>
+<branch target_bci='8' taken='13455' not_taken='0' cnt='13455.000000' prob='always'/>
+<uncommon_trap bci='1' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='9'/>
+<method id='1472' holder='983' name='hashCode' return='975' flags='1' bytes='49' compile_id='81' compiler='c2' level='4' iicount='6267'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1472'/>
+<call method='1472' count='13177' prof_factor='0.008175' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1472' uses='110.000000' stamp='0.489'>
+<bc code='154' bci='6'/>
+<branch target_bci='47' taken='3813' not_taken='2454' cnt='6267.000000' prob='0.608425'/>
+<bc code='190' bci='13'/>
+<uncommon_trap bci='13' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='158' bci='14'/>
+<branch target_bci='47' taken='51' not_taken='2403' cnt='2454.000000' prob='0.0207824'/>
+<bc code='183' bci='19'/>
+<call method='1280' count='2283' prof_factor='0.017552' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1280' uses='42.000000' stamp='0.489'>
+<bc code='153' bci='3'/>
+<branch target_bci='17' taken='0' not_taken='96640' cnt='96640.000000' prob='never'/>
+<bc code='154' bci='10'/>
+<branch target_bci='17' taken='1' not_taken='96639' cnt='96640.000000' prob='1.03477e-05'/>
+<parse_done nodes='11873' live='11491' memory='2742824' stamp='0.490'/>
+</parse>
+<bc code='153' bci='22'/>
+<branch target_bci='35' taken='0' not_taken='2403' cnt='2403.000000' prob='never'/>
+<uncommon_trap bci='22' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='29'/>
+<method id='1474' holder='1283' name='hashCode' return='975' arguments='1085' flags='9' bytes='42' compile_id='19' compiler='c2' level='4' iicount='1851'/>
+<call method='1474' count='2283' prof_factor='0.017552' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1474' uses='42.000000' stamp='0.490'>
+<bc code='190' bci='5'/>
+<uncommon_trap bci='5' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='56986.000000' prob='0.0304812'/>
+<uncommon_trap bci='16' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='16' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='51' bci='19'/>
+<uncommon_trap bci='19' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='162' bci='13'/>
+<branch target_bci='40' taken='1737' not_taken='55249' cnt='55249.000000' prob='0.0304812'/>
+<parse_done nodes='12026' live='11638' memory='2773560' stamp='0.490'/>
+</parse>
+<parse_done nodes='12043' live='11654' memory='2779528' stamp='0.490'/>
+</parse>
+<parse_done nodes='12053' live='11663' memory='2782592' stamp='0.490'/>
+</parse>
+<bc code='182' bci='9'/>
+<method id='1466' holder='1104' name='putVal' return='982' arguments='975 982 982 969 969' flags='16' bytes='300' compile_id='74' compiler='c1' level='3' iicount='5478'/>
+<call method='1466' count='4334' prof_factor='0.024472' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1466' uses='110.000000' stamp='0.490'>
+<bc code='198' bci='7'/>
+<branch target_bci='19' taken='630' not_taken='4848' cnt='5478.000000' prob='0.115005'/>
+<bc code='154' bci='16'/>
+<branch target_bci='29' taken='4848' not_taken='0' cnt='4848.000000' prob='always'/>
+<uncommon_trap bci='16' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='20'/>
+<klass id='1478' name='[Ljava.util.HashMap$Node;' flags='1040'/>
+<method id='1479' holder='1104' name='resize' return='1478' flags='16' bytes='356' compile_id='138' compiler='c1' level='3' iicount='740'/>
+<call method='1479' count='592' prof_factor='0.020080' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='20'/>
+<bc code='190' bci='26'/>
+<uncommon_trap bci='26' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='40'/>
+<uncommon_trap bci='40' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='199' bci='44'/>
+<branch target_bci='63' taken='1625' not_taken='3853' cnt='5478.000000' prob='0.296641'/>
+<bc code='182' bci='56'/>
+<klass id='1468' name='java.io.ExpiringCache$1' flags='0'/>
+<klass id='1477' name='java.util.HashMap$Node' flags='8'/>
+<method id='1484' holder='1104' name='newNode' return='1477' arguments='975 982 982 1477' flags='0' bytes='13' compile_id='76' compiler='c1' level='3' iicount='4790'/>
+<call method='1484' count='3620' prof_factor='0.020080' virtual='1' inline='1' receiver='1104' receiver_count='3459' receiver2='1468' receiver2_count='2'/>
+<call method='1484' count='3620' prof_factor='0.020080' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='56' klass='1104'/>
+<uncommon_trap bci='56' reason='speculate_class_check' action='maybe_recompile' debug_id='0'/>
+<parse method='1484' uses='77.000000' stamp='0.490'>
+<bc code='183' bci='9'/>
+<method id='1491' holder='1477' name='&lt;init&gt;' return='977' arguments='975 982 982 1477' flags='0' bytes='26' compile_id='75' compiler='c1' level='3' iicount='5044'/>
+<call method='1491' count='4419' prof_factor='0.016075' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1491' uses='77.000000' stamp='0.490'>
+<bc code='183' bci='1'/>
+<call method='1361' count='4678' prof_factor='0.015266' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='77.000000' stamp='0.490'>
+<parse_done nodes='12263' live='11868' memory='2845160' stamp='0.490'/>
+</parse>
+<parse_done nodes='12291' live='11895' memory='2850336' stamp='0.491'/>
+</parse>
+<parse_done nodes='12291' live='11894' memory='2850464' stamp='0.491'/>
+</parse>
+<bc code='83' bci='59'/>
+<uncommon_trap bci='59' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<uncommon_trap bci='59' reason='array_check' action='maybe_recompile' debug_id='0' klass='1478'/>
+<cast_up reason='monomorphic_array' from='1478' to='(exact)'/>
+<bc code='160' bci='69'/>
+<branch target_bci='104' taken='1176' not_taken='449' cnt='1625.000000' prob='0.723692'/>
+<bc code='165' bci='81'/>
+<branch target_bci='97' taken='449' not_taken='0' cnt='449.000000' prob='always'/>
+<uncommon_trap bci='81' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='109'/>
+<branch target_bci='131' taken='1176' not_taken='0' cnt='1176.000000' prob='always'/>
+<uncommon_trap bci='109' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='300' not_taken='1156' cnt='1456.000000' prob='0.206044'/>
+<uncommon_trap bci='175' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='175' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='180' bci='177'/>
+<uncommon_trap bci='177' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='160' bci='181'/>
+<branch target_bci='212' taken='280' not_taken='20' cnt='300.000000' prob='0.933333'/>
+<bc code='165' bci='193'/>
+<branch target_bci='222' taken='20' not_taken='0'/>
+<bc code='198' bci='197'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='182' bci='203'/>
+<dependency type='unique_concrete_method' ctxk='983' x='1109'/>
+<call method='1109' count='0' prof_factor='0.020080' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='203'/>
+<bc code='153' bci='206'/>
+<branch target_bci='212' taken='0' not_taken='0'/>
+<bc code='199' bci='142'/>
+<branch target_bci='175' taken='300' not_taken='1156' cnt='280.000000' prob='0.206044'/>
+<bc code='182' bci='152'/>
+<klass id='1106' name='java.util.LinkedHashMap' flags='1'/>
+<call method='1484' count='1086' prof_factor='0.020080' virtual='1' inline='1' receiver='1104' receiver_count='1003' receiver2='1106' receiver2_count='83'/>
+<call method='1484' count='1086' prof_factor='0.020080' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='152' klass='1104'/>
+<uncommon_trap bci='152' reason='speculate_class_check' action='maybe_recompile' debug_id='0'/>
+<parse method='1484' uses='23.000000' stamp='0.492'>
+<bc code='183' bci='9'/>
+<call method='1491' count='4419' prof_factor='0.004802' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1491' uses='23.000000' stamp='0.492'>
+<bc code='183' bci='1'/>
+<call method='1361' count='4678' prof_factor='0.004560' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<parse method='1361' uses='23.000000' stamp='0.492'>
+<parse_done nodes='12788' live='12382' memory='2971944' stamp='0.492'/>
+</parse>
+<parse_done nodes='12816' live='12409' memory='2977072' stamp='0.493'/>
+</parse>
+<parse_done nodes='12816' live='12408' memory='2977200' stamp='0.493'/>
+</parse>
+<bc code='161' bci='162'/>
+<branch target_bci='222' taken='1156' not_taken='0' cnt='1156.000000' prob='always'/>
+<uncommon_trap bci='162' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='224'/>
+<branch target_bci='259' taken='1156' not_taken='469' cnt='1625.000000' prob='0.711385'/>
+<bc code='153' bci='236'/>
+<branch target_bci='244' taken='466' not_taken='3' cnt='469.000000' prob='0.993603'/>
+<bc code='182' bci='253'/>
+<method id='1482' holder='1104' name='afterNodeAccess' return='977' arguments='1477' flags='0' bytes='1' iicount='441'/>
+<call method='1482' count='441' prof_factor='0.020080' virtual='1' inline='1' receiver='1104' receiver_count='441'/>
+<call method='1482' count='441' prof_factor='0.020080' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='253' klass='1104'/>
+<uncommon_trap bci='253' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='253' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<parse method='1482' uses='9.000000' stamp='0.493'>
+<parse_done nodes='13210' live='12798' memory='3070584' stamp='0.493'/>
+</parse>
+<bc code='180' bci='261'/>
+<uncommon_trap bci='261' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='164' bci='284'/>
+<branch target_bci='292' taken='4909' not_taken='100' cnt='5009.000000' prob='0.980036'/>
+<bc code='182' bci='288'/>
+<call method='1479' count='94' prof_factor='0.020080' inline='1'/>
+<inline_fail reason='hot method too big'/>
+<direct_call bci='288'/>
+<bc code='182' bci='295'/>
+<method id='1481' holder='1104' name='afterNodeInsertion' return='977' arguments='969' flags='0' bytes='1' compile_id='134' compiler='c1' level='1' iicount='1527'/>
+<call method='1481' count='4706' prof_factor='0.020080' virtual='1' inline='1' receiver='1104' receiver_count='4462' receiver2='1468' receiver2_count='2'/>
+<call method='1481' count='4706' prof_factor='0.020080' inline='1'/>
+<inline_success reason='inline (hot)'/>
+<predicted_call bci='295' klass='1104'/>
+<virtual_call bci='295'/>
+<parse method='1481' uses='101.000000' stamp='0.493'>
+<parse_done nodes='13319' live='12904' memory='3100088' stamp='0.493'/>
+</parse>
+<parse_done nodes='13337' live='12921' memory='3106272' stamp='0.493'/>
+</parse>
+<parse_done nodes='13349' live='12932' memory='3109904' stamp='0.493'/>
+</parse>
+<bc code='182' bci='643'/>
+<method id='1166' holder='1099' name='getCall' return='1105' flags='1' bytes='5' iicount='66'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1166'/>
+<call method='1166' count='101' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='643'/>
+<uncommon_trap bci='643' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='655'/>
+<call method='1109' count='2625' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='655'/>
+<bc code='153' bci='658'/>
+<branch target_bci='684' taken='2701' not_taken='151' cnt='2852.000000' prob='0.947055'/>
+<bc code='182' bci='667'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='139' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='667'/>
+<bc code='182' bci='675'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='139' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='675'/>
+<bc code='182' bci='678'/>
+<method id='1245' holder='1093' name='type' return='977' arguments='983 983' flags='0' bytes='33' compile_id='706' compiler='c1' level='3' iicount='458'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1245'/>
+<call method='1245' count='139' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1245' bci='14' reason='unloaded' action='reinterpret' index='85' debug_id='0' klass='1213'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='678'/>
+<bc code='182' bci='687'/>
+<call method='1109' count='2486' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='687'/>
+<bc code='153' bci='690'/>
+<branch target_bci='726' taken='2411' not_taken='290' cnt='2701.000000' prob='0.892632'/>
+<bc code='182' bci='699'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='267' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='699'/>
+<bc code='184' bci='702'/>
+<call method='1138' count='185' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='702'/>
+<bc code='182' bci='714'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='267' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='714'/>
+<bc code='184' bci='717'/>
+<call method='1138' count='185' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='717'/>
+<bc code='182' bci='729'/>
+<call method='1109' count='2219' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='729'/>
+<bc code='153' bci='732'/>
+<branch target_bci='758' taken='2069' not_taken='342' cnt='2411.000000' prob='0.85815'/>
+<bc code='182' bci='741'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='315' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='741'/>
+<bc code='182' bci='749'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='315' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='749'/>
+<bc code='182' bci='752'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1245'/>
+<call method='1245' count='315' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='752'/>
+<bc code='182' bci='761'/>
+<call method='1109' count='1904' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='761'/>
+<bc code='153' bci='764'/>
+<branch target_bci='1050' taken='1718' not_taken='351' cnt='2069.000000' prob='0.830353'/>
+<bc code='182' bci='772'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='772'/>
+<bc code='183' bci='781'/>
+<call method='1225' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='781'/>
+<bc code='182' bci='794'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='794'/>
+<bc code='182' bci='797'/>
+<method id='1218' holder='1093' name='type' return='983' arguments='983' flags='0' bytes='31' compile_id='710' compiler='c1' level='3' iicount='650'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1218'/>
+<call method='1218' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='797'/>
+<bc code='182' bci='800'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1227'/>
+<call method='1227' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='800'/>
+<bc code='182' bci='810'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='810'/>
+<bc code='182' bci='813'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1229'/>
+<call method='1229' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='813'/>
+<bc code='182' bci='824'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='824'/>
+<bc code='182' bci='827'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1218'/>
+<call method='1218' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='827'/>
+<bc code='182' bci='830'/>
+<method id='1231' holder='1103' name='setReturnType' return='977' arguments='983' flags='1' bytes='6' compile_id='680' compiler='c1' level='1' iicount='150'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1231'/>
+<call method='1231' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='830'/>
+<bc code='185' bci='837'/>
+<call method='1169' count='323' prof_factor='1.000000' virtual='1' inline='1' receiver='1101' receiver_count='323'/>
+<call method='1292' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='837' klass='1101'/>
+<uncommon_trap bci='837' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='837' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='837'/>
+<bc code='199' bci='846'/>
+<branch target_bci='888' taken='206' not_taken='145' cnt='351.000000' prob='0.586895'/>
+<bc code='183' bci='855'/>
+<call method='1156' count='133' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='855'/>
+<bc code='182' bci='860'/>
+<call method='1158' count='96' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='860'/>
+<bc code='185' bci='868'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='133' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='868'/>
+<bc code='182' bci='873'/>
+<method id='1235' holder='1093' name='sigtype' return='983' arguments='983' flags='0' bytes='75' compile_id='703' compiler='c1' level='3' iicount='692'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1235'/>
+<call method='1235' count='133' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='873'/>
+<bc code='182' bci='876'/>
+<call method='1158' count='96' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='876'/>
+<uncommon_trap bci='876' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='879'/>
+<call method='1162' count='96' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='879'/>
+<uncommon_trap bci='879' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='882'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1236'/>
+<call method='1236' count='133' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='882'/>
+<bc code='182' bci='893'/>
+<call method='1185' count='190' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='893'/>
+<bc code='183' bci='904'/>
+<method id='1234' holder='1050' name='&lt;init&gt;' return='977' arguments='983' flags='1' bytes='18' compile_id='740' compiler='c1' level='3' iicount='276'/>
+<call method='1234' count='190' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='904'/>
+<bc code='190' bci='916'/>
+<uncommon_trap bci='916' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='162' bci='917'/>
+<branch target_bci='941' taken='206' not_taken='393' cnt='599.000000' prob='0.343907'/>
+<uncommon_trap bci='920' reason='predicate' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='920' reason='loop_limit_check' action='maybe_recompile' debug_id='0'/>
+<bc code='50' bci='927'/>
+<uncommon_trap bci='927' reason='range_check' action='make_not_entrant' debug_id='0' comment='range_check'/>
+<bc code='182' bci='928'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1235'/>
+<call method='1235' count='362' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='928'/>
+<bc code='182' bci='931'/>
+<call method='1158' count='238' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='931'/>
+<bc code='162' bci='917'/>
+<branch target_bci='941' taken='206' not_taken='393' cnt='393.000000' prob='0.343907'/>
+<bc code='182' bci='945'/>
+<call method='1158' count='128' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='945'/>
+<bc code='185' bci='956'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='190' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='956'/>
+<bc code='182' bci='961'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1235'/>
+<call method='1235' count='190' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='961'/>
+<bc code='182' bci='964'/>
+<call method='1158' count='128' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='964'/>
+<bc code='182' bci='972'/>
+<call method='1162' count='128' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='972'/>
+<bc code='182' bci='975'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1236'/>
+<call method='1236' count='190' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='975'/>
+<bc code='182' bci='985'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='985'/>
+<bc code='182' bci='990'/>
+<call method='1109' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='990'/>
+<uncommon_trap bci='990' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='153' bci='993'/>
+<branch target_bci='1035' taken='8' not_taken='343' cnt='351.000000' prob='0.022792'/>
+<bc code='182' bci='1003'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='316' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1003'/>
+<bc code='182' bci='1006'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1239'/>
+<call method='1239' count='316' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1006'/>
+<bc code='182' bci='1016'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='316' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1016'/>
+<bc code='182' bci='1019'/>
+<method id='1241' holder='1103' name='setIICount' return='977' arguments='983' flags='1' bytes='6' compile_id='681' compiler='c1' level='1' iicount='147'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1241'/>
+<call method='1241' count='316' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1019'/>
+<bc code='182' bci='1029'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='316' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1029'/>
+<bc code='182' bci='1032'/>
+<dependency type='unique_concrete_method' ctxk='1103' x='1243'/>
+<call method='1243' count='316' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1032'/>
+<bc code='182' bci='1043'/>
+<dependency type='unique_concrete_method' ctxk='1104' x='1173'/>
+<call method='1173' count='323' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1043'/>
+<uncommon_trap bci='1043' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1053'/>
+<call method='1109' count='1581' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1053'/>
+<bc code='153' bci='1056'/>
+<branch target_bci='1381' taken='1436' not_taken='281' cnt='1717.000000' prob='0.836342'/>
+<bc code='198' bci='1063'/>
+<branch target_bci='1071' taken='281' not_taken='0' cnt='281.000000' prob='always'/>
+<uncommon_trap bci='1063' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1077'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1077'/>
+<bc code='182' bci='1080'/>
+<method id='1146' holder='1093' name='method' return='1103' arguments='983' flags='0' bytes='23' compile_id='702' compiler='c1' level='3' iicount='504'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1146'/>
+<call method='1146' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1080'/>
+<bc code='153' bci='1089'/>
+<branch target_bci='1222' taken='281' not_taken='0' cnt='281.000000' prob='always'/>
+<uncommon_trap bci='1089' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='183' bci='1233'/>
+<method id='1181' holder='1105' name='&lt;init&gt;' return='977' arguments='975 1103' flags='0' bytes='15' iicount='260'/>
+<call method='1181' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1233'/>
+<bc code='182' bci='1250'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1250'/>
+<bc code='184' bci='1253'/>
+<call method='1138' count='180' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1253'/>
+<bc code='182' bci='1256'/>
+<method id='1215' holder='1105' name='setCount' return='977' arguments='975' flags='1' bytes='6' compile_id='684' compiler='c1' level='1' iicount='129'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1215'/>
+<call method='1215' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1256'/>
+<uncommon_trap bci='1256' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='185' bci='1263'/>
+<call method='1169' count='259' prof_factor='1.000000' virtual='1' inline='1' receiver='1101' receiver_count='259'/>
+<call method='1292' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='1263' klass='1101'/>
+<uncommon_trap bci='1263' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='1263' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='1263'/>
+<bc code='198' bci='1272'/>
+<branch target_bci='1306' taken='281' not_taken='0' cnt='281.000000' prob='always'/>
+<uncommon_trap bci='1272' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1313'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1313'/>
+<bc code='184' bci='1316'/>
+<call method='1138' count='180' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1316'/>
+<bc code='153' bci='1325'/>
+<branch target_bci='1343' taken='281' not_taken='0' cnt='281.000000' prob='always'/>
+<uncommon_trap bci='1325' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='154' bci='1345'/>
+<branch target_bci='1370' taken='0' not_taken='281' cnt='281.000000' prob='never'/>
+<uncommon_trap bci='1345' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='185' bci='1352'/>
+<method id='1134' holder='1133' name='peek' return='982' flags='1025' bytes='0' iicount='1'/>
+<call method='1134' count='259' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='259'/>
+<method id='1499' holder='1097' name='peek' return='982' flags='1' bytes='5' compile_id='711' compiler='c1' level='3' iicount='752'/>
+<call method='1499' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='1352' klass='1097'/>
+<uncommon_trap bci='1352' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='1352' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='1352'/>
+<bc code='192' bci='1357'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='1357' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='1357' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1364'/>
+<method id='1209' holder='1105' name='add' return='977' arguments='1105' flags='0' bytes='30' iicount='260'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1209'/>
+<call method='1209' count='259' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1364'/>
+<bc code='182' bci='1384'/>
+<call method='1109' count='1322' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1384'/>
+<bc code='153' bci='1387'/>
+<branch target_bci='1481' taken='1436' not_taken='0' cnt='1436.000000' prob='always'/>
+<uncommon_trap bci='1387' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1484'/>
+<call method='1109' count='1322' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1484'/>
+<bc code='153' bci='1487'/>
+<branch target_bci='1511' taken='1436' not_taken='0' cnt='1436.000000' prob='always'/>
+<uncommon_trap bci='1487' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1514'/>
+<call method='1109' count='1322' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1514'/>
+<bc code='153' bci='1517'/>
+<branch target_bci='1658' taken='1326' not_taken='111' cnt='1437.000000' prob='0.922756'/>
+<bc code='198' bci='1524'/>
+<branch target_bci='1551' taken='111' not_taken='0' cnt='111.000000' prob='always'/>
+<uncommon_trap bci='1524' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='153' bci='1555'/>
+<branch target_bci='1611' taken='111' not_taken='0' cnt='111.000000' prob='always'/>
+<uncommon_trap bci='1555' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='1615'/>
+<call method='1134' count='102' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='102'/>
+<call method='1499' count='102' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='1615' klass='1097'/>
+<uncommon_trap bci='1615' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='1615' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='1615'/>
+<bc code='192' bci='1620'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='1620' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='1620' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1623'/>
+<method id='1207' holder='1105' name='last' return='1105' flags='0' bytes='24' iicount='103'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1207'/>
+<call method='1207' count='102' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1623'/>
+<bc code='183' bci='1630'/>
+<call method='1156' count='102' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1630'/>
+<bc code='182' bci='1635'/>
+<call method='1158' count='75' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1635'/>
+<bc code='182' bci='1643'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='102' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1643'/>
+<bc code='182' bci='1646'/>
+<call method='1158' count='75' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1646'/>
+<uncommon_trap bci='1646' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1649'/>
+<call method='1162' count='75' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1649'/>
+<uncommon_trap bci='1649' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1652'/>
+<method id='1206' holder='1105' name='setReason' return='977' arguments='983' flags='1' bytes='6' compile_id='685' compiler='c1' level='1' iicount='129'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1206'/>
+<call method='1206' count='102' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1652'/>
+<uncommon_trap bci='1652' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1661'/>
+<call method='1109' count='1220' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1661'/>
+<bc code='153' bci='1664'/>
+<branch target_bci='1716' taken='1155' not_taken='171' cnt='1326.000000' prob='0.871041'/>
+<bc code='198' bci='1671'/>
+<branch target_bci='1680' taken='171' not_taken='0' cnt='171.000000' prob='always'/>
+<uncommon_trap bci='1671' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='183' bci='1688'/>
+<call method='1156' count='157' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1688'/>
+<bc code='182' bci='1693'/>
+<call method='1158' count='105' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1693'/>
+<bc code='182' bci='1701'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='157' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1701'/>
+<bc code='182' bci='1704'/>
+<call method='1158' count='105' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1704'/>
+<uncommon_trap bci='1704' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1707'/>
+<call method='1162' count='105' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1707'/>
+<uncommon_trap bci='1707' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1710'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1206'/>
+<call method='1206' count='157' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1710'/>
+<uncommon_trap bci='1710' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1719'/>
+<call method='1109' count='1063' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1719'/>
+<bc code='153' bci='1722'/>
+<branch target_bci='1740' taken='1155' not_taken='0' cnt='1155.000000' prob='always'/>
+<uncommon_trap bci='1722' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1743'/>
+<call method='1109' count='1063' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1743'/>
+<bc code='153' bci='1746'/>
+<branch target_bci='1800' taken='1046' not_taken='109' cnt='1155.000000' prob='0.905628'/>
+<bc code='182' bci='1758'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='100' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1758'/>
+<bc code='184' bci='1761'/>
+<call method='1144' count='100' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1761'/>
+<bc code='182' bci='1764'/>
+<method id='1201' holder='1099' name='setEnd' return='977' arguments='972' flags='1' bytes='6' iicount='65'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1201'/>
+<call method='1201' count='100' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1764'/>
+<uncommon_trap bci='1764' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1772'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='100' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1772'/>
+<bc code='184' bci='1775'/>
+<call method='1138' count='65' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1775'/>
+<bc code='154' bci='1778'/>
+<branch target_bci='3081' taken='109' not_taken='0' cnt='109.000000' prob='always'/>
+<uncommon_trap bci='1778' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='1803'/>
+<call method='1109' count='963' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1803'/>
+<bc code='153' bci='1806'/>
+<branch target_bci='1896' taken='1042' not_taken='4' cnt='1046.000000' prob='0.996176'/>
+<bc code='182' bci='1812'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1167'/>
+<call method='1167' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1812'/>
+<bc code='182' bci='1823'/>
+<method id='1196' holder='1106' name='get' return='982' arguments='982' flags='1' bytes='33' iicount='45'/>
+<dependency type='unique_concrete_method' ctxk='1106' x='1196'/>
+<call method='1196' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1823'/>
+<uncommon_trap bci='1823' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='192' bci='1826'/>
+<klass id='1107' name='com.sun.hotspot.tools.compiler.NMethod' flags='1'/>
+<dependency type='leaf_type' ctxk='1107'/>
+<uncommon_trap bci='1826' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='1826' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='199' bci='1833'/>
+<branch target_bci='1842' taken='4' not_taken='0'/>
+<bc code='182' bci='1851'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1851'/>
+<bc code='184' bci='1854'/>
+<call method='1144' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1854'/>
+<bc code='185' bci='1863'/>
+<call method='1169' count='4' prof_factor='1.000000' virtual='1' inline='1' receiver='1101' receiver_count='4'/>
+<call method='1292' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='1863' klass='1101'/>
+<uncommon_trap bci='1863' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='1863' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='1863'/>
+<bc code='198' bci='1868'/>
+<branch target_bci='1875' taken='4' not_taken='0'/>
+<bc code='183' bci='1878'/>
+<klass id='1197' name='com.sun.hotspot.tools.compiler.MakeNotEntrantEvent' flags='0'/>
+<method id='1199' holder='1197' name='&lt;init&gt;' return='977' arguments='972 983 969 1107' flags='0' bytes='19' iicount='8'/>
+<call method='1199' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1878'/>
+<bc code='182' bci='1889'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1174'/>
+<call method='1174' count='4' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1889'/>
+<uncommon_trap bci='1889' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='1899'/>
+<call method='1109' count='959' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='1899'/>
+<bc code='153' bci='1902'/>
+<branch target_bci='2126' taken='1042' not_taken='0' cnt='1042.000000' prob='always'/>
+<uncommon_trap bci='1902' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='2129'/>
+<method id='1126' holder='983' name='startsWith' return='969' arguments='983' flags='1' bytes='7' compile_id='502' compiler='c1' level='3' iicount='7182'/>
+<call method='1126' count='959' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2129'/>
+<bc code='153' bci='2132'/>
+<branch target_bci='2226' taken='1042' not_taken='0' cnt='1042.000000' prob='always'/>
+<uncommon_trap bci='2132' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='2229'/>
+<call method='1109' count='959' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2229'/>
+<bc code='153' bci='2232'/>
+<branch target_bci='2322' taken='1042' not_taken='0' cnt='1042.000000' prob='always'/>
+<uncommon_trap bci='2232' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='2325'/>
+<call method='1109' count='959' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2325'/>
+<bc code='153' bci='2328'/>
+<branch target_bci='2531' taken='1042' not_taken='0' cnt='1042.000000' prob='always'/>
+<uncommon_trap bci='2328' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='2534'/>
+<call method='1109' count='959' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2534'/>
+<bc code='153' bci='2537'/>
+<branch target_bci='2578' taken='1042' not_taken='0' cnt='1042.000000' prob='always'/>
+<uncommon_trap bci='2537' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='2582'/>
+<call method='1109' count='959' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2582'/>
+<bc code='153' bci='2585'/>
+<branch target_bci='2671' taken='924' not_taken='118' cnt='1042.000000' prob='0.886756'/>
+<bc code='182' bci='2591'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1167'/>
+<call method='1167' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2591'/>
+<bc code='182' bci='2605'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2605'/>
+<bc code='184' bci='2608'/>
+<call method='1144' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2608'/>
+<bc code='185' bci='2619'/>
+<call method='1169' count='109' prof_factor='1.000000' virtual='1' inline='1' receiver='1101' receiver_count='109'/>
+<call method='1292' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2619' klass='1101'/>
+<uncommon_trap bci='2619' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2619' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2619'/>
+<bc code='182' bci='2624'/>
+<type id='976' name='long'/>
+<method id='1170' holder='1093' name='parseLong' return='976' arguments='983' flags='0' bytes='179' compile_id='603' compiler='c1' level='3' iicount='460'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1170'/>
+<call method='1170' count='109' prof_factor='1.000000' inline='1'/>
+<uncommon_trap method='1170' bci='114' reason='unloaded' action='reinterpret' index='778' debug_id='0' klass='1224'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2624'/>
+<bc code='185' bci='2633'/>
+<dependency type='unique_concrete_method' ctxk='1101' x='1292'/>
+<call method='1292' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2633'/>
+<bc code='182' bci='2638'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1170'/>
+<call method='1170' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2638'/>
+<bc code='183' bci='2641'/>
+<method id='1172' holder='1107' name='&lt;init&gt;' return='977' arguments='972 983 976 976' flags='0' bytes='19' iicount='230'/>
+<call method='1172' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2641'/>
+<bc code='182' bci='2654'/>
+<dependency type='unique_concrete_method' ctxk='1106' x='1173'/>
+<call method='1173' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2654'/>
+<uncommon_trap bci='2654' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2664'/>
+<dependency type='unique_concrete_method' ctxk='1100' x='1174'/>
+<call method='1174' count='109' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2664'/>
+<uncommon_trap bci='2664' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2675'/>
+<call method='1109' count='850' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2675'/>
+<bc code='153' bci='2678'/>
+<branch target_bci='3005' taken='658' not_taken='265' cnt='923.000000' prob='0.712893'/>
+<bc code='198' bci='2685'/>
+<branch target_bci='2730' taken='265' not_taken='0' cnt='265.000000' prob='always'/>
+<uncommon_trap bci='2685' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='198' bci='2734'/>
+<branch target_bci='2743' taken='265' not_taken='0' cnt='265.000000' prob='always'/>
+<uncommon_trap bci='2734' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='182' bci='2749'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2749'/>
+<bc code='182' bci='2752'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1146'/>
+<call method='1146' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2752'/>
+<bc code='153' bci='2761'/>
+<branch target_bci='2834' taken='265' not_taken='0' cnt='265.000000' prob='always'/>
+<uncommon_trap bci='2761' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken always'/>
+<bc code='185' bci='2838'/>
+<method id='1147' holder='1133' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1147' count='244' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='244'/>
+<method id='1512' holder='1097' name='size' return='975' flags='1' bytes='17' compile_id='694' compiler='c1' level='3' iicount='575'/>
+<call method='1512' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2838' klass='1097'/>
+<uncommon_trap bci='2838' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2838' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2838'/>
+<bc code='154' bci='2843'/>
+<branch target_bci='2878' taken='156' not_taken='109' cnt='265.000000' prob='0.588679'/>
+<bc code='154' bci='2850'/>
+<branch target_bci='2878' taken='0' not_taken='109' cnt='109.000000' prob='never'/>
+<uncommon_trap bci='2850' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='182' bci='2859'/>
+<dependency type='unique_concrete_method' ctxk='1099' x='1155'/>
+<call method='1155' count='100' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2859'/>
+<uncommon_trap bci='2859' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='185' bci='2870'/>
+<call method='1153' count='100' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='100'/>
+<call method='1365' count='100' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2870' klass='1097'/>
+<uncommon_trap bci='2870' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2870' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2870'/>
+<bc code='182' bci='2882'/>
+<method id='1148' holder='1105' name='getMethod' return='1103' flags='1' bytes='5' iicount='98'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1148'/>
+<call method='1148' count='144' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2882'/>
+<uncommon_trap bci='2882' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2887'/>
+<branch target_bci='2906' taken='1' not_taken='155' cnt='156.000000' prob='0.00641026'/>
+<bc code='185' bci='2898'/>
+<call method='1153' count='143' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='143'/>
+<call method='1365' count='143' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2898' klass='1097'/>
+<uncommon_trap bci='2898' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2898' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2898'/>
+<bc code='185' bci='2910'/>
+<call method='1134' count='1' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='1'/>
+<call method='1499' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2910' klass='1097'/>
+<uncommon_trap bci='2910' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2910' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2910'/>
+<bc code='192' bci='2915'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='2915' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='2915' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2918'/>
+<klass id='1149' name='java.util.List' flags='1537'/>
+<method id='1150' holder='1105' name='getCalls' return='1149' flags='1' bytes='5' compile_id='647' compiler='c1' level='1' iicount='250'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<call method='1150' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2918'/>
+<bc code='185' bci='2921'/>
+<method id='1151' holder='1149' name='size' return='975' flags='1025' bytes='0' iicount='1'/>
+<call method='1151' count='1' prof_factor='1.000000' virtual='1' inline='1' receiver='1100' receiver_count='1'/>
+<method id='1444' holder='1100' name='size' return='975' flags='1' bytes='5' compile_id='518' compiler='c1' level='1' iicount='132'/>
+<call method='1444' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2921' klass='1100'/>
+<uncommon_trap bci='2921' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2921' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2921'/>
+<bc code='164' bci='2927'/>
+<branch target_bci='2980' taken='0' not_taken='1'/>
+<bc code='185' bci='2936'/>
+<call method='1134' count='1' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='1'/>
+<call method='1499' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2936' klass='1097'/>
+<uncommon_trap bci='2936' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2936' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2936'/>
+<bc code='192' bci='2941'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='2941' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='2941' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2944'/>
+<method id='1154' holder='1105' name='lastButOne' return='1105' flags='0' bytes='24' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1154'/>
+<call method='1154' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2944'/>
+<bc code='182' bci='2947'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1148'/>
+<call method='1148' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2947'/>
+<uncommon_trap bci='2947' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='166' bci='2950'/>
+<branch target_bci='2980' taken='1' not_taken='0'/>
+<bc code='185' bci='2961'/>
+<call method='1134' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='2961'/>
+<bc code='192' bci='2966'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='2966' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='2966' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='2969'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1154'/>
+<call method='1154' count='0' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2969'/>
+<bc code='185' bci='2972'/>
+<call method='1153' count='0' prof_factor='1.000000' virtual='1' inline='1'/>
+<inline_fail reason='virtual call'/>
+<virtual_call bci='2972'/>
+<bc code='182' bci='2986'/>
+<method id='1152' holder='1105' name='setMethod' return='977' arguments='1103' flags='1' bytes='6' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1152'/>
+<call method='1152' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='2986'/>
+<uncommon_trap bci='2986' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<bc code='185' bci='2997'/>
+<call method='1153' count='1' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='1'/>
+<call method='1365' count='1' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='2997' klass='1097'/>
+<uncommon_trap bci='2997' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='2997' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='2997'/>
+<bc code='182' bci='3009'/>
+<call method='1109' count='606' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3009'/>
+<bc code='153' bci='3012'/>
+<branch target_bci='3081' taken='393' not_taken='265' cnt='658.000000' prob='0.597264'/>
+<bc code='185' bci='3019'/>
+<call method='1134' count='244' prof_factor='1.000000' virtual='1' inline='1' receiver='1097' receiver_count='244'/>
+<call method='1499' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<predicted_call bci='3019' klass='1097'/>
+<uncommon_trap bci='3019' reason='null_check' action='maybe_recompile' debug_id='0'/>
+<uncommon_trap bci='3019' reason='class_check' action='maybe_recompile' debug_id='0' comment='monomorphic vcall checkcast'/>
+<direct_call bci='3019'/>
+<bc code='192' bci='3024'/>
+<dependency type='leaf_type' ctxk='1105'/>
+<uncommon_trap bci='3024' reason='null_check' action='make_not_entrant' debug_id='0'/>
+<uncommon_trap bci='3024' reason='class_check' action='maybe_recompile' debug_id='0'/>
+<bc code='182' bci='3038'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3038'/>
+<bc code='184' bci='3041'/>
+<call method='1138' count='163' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3041'/>
+<bc code='182' bci='3044'/>
+<method id='1139' holder='1105' name='setEndNodes' return='977' arguments='975' flags='0' bytes='6' compile_id='696' compiler='c1' level='1' iicount='128'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1139'/>
+<call method='1139' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3044'/>
+<bc code='182' bci='3056'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1137'/>
+<call method='1137' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3056'/>
+<bc code='184' bci='3059'/>
+<call method='1138' count='163' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3059'/>
+<bc code='182' bci='3062'/>
+<method id='1141' holder='1105' name='setEndLiveNodes' return='977' arguments='975' flags='0' bytes='6' compile_id='697' compiler='c1' level='1' iicount='132'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1141'/>
+<call method='1141' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3062'/>
+<bc code='182' bci='3072'/>
+<dependency type='unique_concrete_method' ctxk='1093' x='1143'/>
+<call method='1143' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3072'/>
+<bc code='184' bci='3075'/>
+<call method='1144' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3075'/>
+<bc code='182' bci='3078'/>
+<method id='1145' holder='1105' name='setTimeStamp' return='977' arguments='972' flags='0' bytes='6' compile_id='698' compiler='c1' level='1' iicount='132'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1145'/>
+<call method='1145' count='244' prof_factor='1.000000' inline='1'/>
+<inline_fail reason='size &gt; DesiredMethodLimit'/>
+<direct_call bci='3078'/>
+<parse_done nodes='18129' live='17623' memory='4433760' stamp='0.501'/>
+</parse>
+<replace_string_concat arguments='2' string_alloc='0' multiple='0'>
+<jvms bci='31' method='1167'/>
+<jvms bci='244' method='1095'/>
+</replace_string_concat>
+<uncommon_trap bci='31' reason='intrinsic_or_type_checked_inlining' action='make_not_entrant' debug_id='0'/>
+<late_inline method='1162'  inline_id='6433861019291'>
+<jvms bci='539' method='1095'/>
+</late_inline>
+<parse method='1162' uses='72.000000' stamp='0.503'>
+<bc code='182' bci='1'/>
+<klass id='1048' name='java.lang.AbstractStringBuilder' flags='1024'/>
+<method id='1415' holder='1048' name='isLatin1' return='969' flags='16' bytes='19' compile_id='192' compiler='c1' level='3' iicount='6124'/>
+<call method='1415' count='2964' prof_factor='0.027356' inline='1'/>
+<inline_fail reason='NodeCountInliningCutoff'/>
+<direct_call bci='1'/>
+<bc code='153' bci='4'/>
+<branch target_bci='22' taken='0' not_taken='2964' cnt='2964.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='16'/>
+<method id='1417' holder='1283' name='newString' return='983' arguments='1085 975 975' flags='9' bytes='17' compile_id='200' compiler='c1' level='3' iicount='4958'/>
+<call method='1417' count='2964' prof_factor='0.027356' inline='1'/>
+<inline_fail reason='NodeCountInliningCutoff'/>
+<direct_call bci='16'/>
+<parse_done nodes='18420' live='10003' memory='4477896' stamp='0.503'/>
+</parse>
+<late_inline method='1262'  inline_id='6433861019166'>
+<jvms bci='521' method='1095'/>
+</late_inline>
+<parse method='1262' uses='72.000000' stamp='0.503'>
+<bc code='183' bci='2'/>
+<method id='1454' holder='1048' name='append' return='1048' arguments='975' flags='1' bytes='55' compile_id='450' compiler='c1' level='3' iicount='486'/>
+<call method='1454' count='-1' prof_factor='0.153846' inline='1'/>
+<inline_fail reason='too big'/>
+<direct_call bci='2'/>
+<parse_done nodes='18447' live='10028' memory='4483712' stamp='0.503'/>
+</parse>
+<late_inline method='1156'  inline_id='6433861019117'>
+<jvms bci='511' method='1095'/>
+</late_inline>
+<parse method='1156' uses='110.000000' stamp='0.503'>
+<bc code='183' bci='3'/>
+<method id='1413' holder='1048' name='&lt;init&gt;' return='977' arguments='975' flags='0' bytes='39' compile_id='236' compiler='c1' level='3' iicount='2767'/>
+<call method='1413' count='2614' prof_factor='0.047109' inline='1'/>
+<inline_fail reason='NodeCountInliningCutoff'/>
+<direct_call bci='3'/>
+<parse_done nodes='18471' live='10050' memory='4490800' stamp='0.503'/>
+</parse>
+<late_inline method='1162'  inline_id='6433861018680'>
+<jvms bci='417' method='1095'/>
+</late_inline>
+<parse method='1162' uses='72.000000' stamp='0.503'>
+<bc code='182' bci='1'/>
+<call method='1415' count='2964' prof_factor='0.027356' inline='1'/>
+<inline_fail reason='NodeCountInliningCutoff'/>
+<direct_call bci='1'/>
+<bc code='153' bci='4'/>
+<branch target_bci='22' taken='0' not_taken='2964' cnt='2964.000000' prob='never'/>
+<uncommon_trap bci='4' reason='unstable_if' action='reinterpret' debug_id='0' comment='taken never'/>
+<bc code='184' bci='16'/>
+<call method='1417' count='2964' prof_factor='0.027356' inline='1'/>
+<inline_fail reason='NodeCountInliningCutoff'/>
+<direct_call bci='16'/>
+<parse_done nodes='18535' live='10111' memory='4502416' stamp='0.503'/>
+</parse>
+<late_inline method='1156'  inline_id='6433861018519'>
+<jvms bci='395' method='1095'/>
+</late_inline>
+<parse method='1156' uses='110.000000' stamp='0.504'>
+<bc code='183' bci='3'/>
+<call method='1413' count='2614' prof_factor='0.047109' inline='1'/>
+<inline_fail reason='NodeCountInliningCutoff'/>
+<direct_call bci='3'/>
+<parse_done nodes='18559' live='10133' memory='4509368' stamp='0.504'/>
+</parse>
+<loop_tree>
+<loop idx='8964' >
+</loop>
+<loop idx='8970' >
+</loop>
+<loop idx='8976' >
+</loop>
+<loop idx='8982' >
+</loop>
+<loop idx='8988' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' >
+</loop>
+</loop_tree>
+<method id='1299' holder='1297' name='getIndex' return='975' arguments='983' flags='1' bytes='51' compile_id='654' compiler='c2' level='4' iicount='10719'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<dependency type='unique_concrete_method' ctxk='1297' x='1299'/>
+<method id='1500' holder='1097' name='peekFirst' return='982' flags='1' bytes='12' compile_id='712' compiler='c1' level='3' iicount='752'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1500'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1500'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1500'/>
+<method id='1504' holder='1106' name='afterNodeAccess' return='977' arguments='1477' flags='0' bytes='116' iicount='1'/>
+<dependency type='unique_concrete_method' ctxk='1106' x='1504'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1105' x='1150'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1500'/>
+<dependency type='unique_concrete_method' ctxk='1097' x='1500'/>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='8988' inner_loop='1' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='8988' inner_loop='1' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='9456' inner_loop='1' main_loop='9456' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='9423' inner_loop='1' pre_loop='8988' >
+</loop>
+<loop idx='9456' inner_loop='1' main_loop='9456' >
+</loop>
+<loop idx='9396' inner_loop='1' post_loop='8988' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='9423' inner_loop='1' pre_loop='8988' >
+</loop>
+<loop idx='9807' inner_loop='1' main_loop='9807' >
+</loop>
+<loop idx='9396' inner_loop='1' post_loop='8988' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='9423' inner_loop='1' pre_loop='8988' >
+</loop>
+<loop idx='9807' inner_loop='1' main_loop='9807' >
+</loop>
+<loop idx='9396' inner_loop='1' post_loop='8988' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+<loop_tree>
+<loop idx='8964' inner_loop='1' >
+</loop>
+<loop idx='8970' inner_loop='1' >
+</loop>
+<loop idx='8976' inner_loop='1' >
+</loop>
+<loop idx='8982' inner_loop='1' >
+</loop>
+<loop idx='9423' inner_loop='1' pre_loop='8988' >
+</loop>
+<loop idx='9807' inner_loop='1' main_loop='9807' >
+</loop>
+<loop idx='9396' inner_loop='1' post_loop='8988' >
+</loop>
+<loop idx='8957' inner_loop='1' >
+</loop>
+<loop idx='8994' inner_loop='1' >
+</loop>
+</loop_tree>
+]]>
+</fragment>
+</compilation_log>
+<hotspot_log_done stamp='0.663'/>
+</hotspot_log>