src/share/vm/opto/compile.cpp

changeset 7074
833b0f92429a
parent 7041
411e30e5fbb8
child 7385
9e69e8d1c900
     1.1 --- a/src/share/vm/opto/compile.cpp	Wed Aug 27 09:36:55 2014 +0200
     1.2 +++ b/src/share/vm/opto/compile.cpp	Wed Aug 27 08:19:12 2014 -0400
     1.3 @@ -665,6 +665,10 @@
     1.4                    _printer(IdealGraphPrinter::printer()),
     1.5  #endif
     1.6                    _congraph(NULL),
     1.7 +                  _comp_arena(mtCompiler),
     1.8 +                  _node_arena(mtCompiler),
     1.9 +                  _old_arena(mtCompiler),
    1.10 +                  _Compile_types(mtCompiler),
    1.11                    _replay_inline_data(NULL),
    1.12                    _late_inlines(comp_arena(), 2, 0, NULL),
    1.13                    _string_late_inlines(comp_arena(), 2, 0, NULL),
    1.14 @@ -972,6 +976,10 @@
    1.15      _in_dump_cnt(0),
    1.16      _printer(NULL),
    1.17  #endif
    1.18 +    _comp_arena(mtCompiler),
    1.19 +    _node_arena(mtCompiler),
    1.20 +    _old_arena(mtCompiler),
    1.21 +    _Compile_types(mtCompiler),
    1.22      _dead_node_list(comp_arena()),
    1.23      _dead_node_count(0),
    1.24      _congraph(NULL),

mercurial