hotspot/src/share/vm/opto/compile.cpp
changeset 25946 1572c9f03fb9
parent 25716 fc9bd7814b10
child 25947 8f94ddc3729a
--- a/hotspot/src/share/vm/opto/compile.cpp	Tue Aug 05 14:18:44 2014 +0000
+++ b/hotspot/src/share/vm/opto/compile.cpp	Thu Aug 07 12:18:58 2014 -0700
@@ -647,6 +647,10 @@
                   _printer(IdealGraphPrinter::printer()),
 #endif
                   _congraph(NULL),
+                  _comp_arena(mtCompiler),
+                  _node_arena(mtCompiler),
+                  _old_arena(mtCompiler),
+                  _Compile_types(mtCompiler),
                   _replay_inline_data(NULL),
                   _late_inlines(comp_arena(), 2, 0, NULL),
                   _string_late_inlines(comp_arena(), 2, 0, NULL),
@@ -954,6 +958,10 @@
     _in_dump_cnt(0),
     _printer(NULL),
 #endif
+    _comp_arena(mtCompiler),
+    _node_arena(mtCompiler),
+    _old_arena(mtCompiler),
+    _Compile_types(mtCompiler),
     _dead_node_list(comp_arena()),
     _dead_node_count(0),
     _congraph(NULL),