comparison src/share/vm/opto/compile.cpp @ 1265:b4b440360f1e

6926782: CodeBuffer size too small after 6921352 Summary: After 6921352 the CodeBuffer size was too small. Reviewed-by: kvn, never
author twisti
date Thu, 18 Feb 2010 11:35:41 +0100
parents b2b6a9bf6238
children b4776199210f
comparison
equal deleted inserted replaced
1264:106f41e88c85 1265:b4b440360f1e
1 /* 1 /*
2 * Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
463 _do_escape_analysis(do_escape_analysis), 463 _do_escape_analysis(do_escape_analysis),
464 _failure_reason(NULL), 464 _failure_reason(NULL),
465 _code_buffer("Compile::Fill_buffer"), 465 _code_buffer("Compile::Fill_buffer"),
466 _orig_pc_slot(0), 466 _orig_pc_slot(0),
467 _orig_pc_slot_offset_in_bytes(0), 467 _orig_pc_slot_offset_in_bytes(0),
468 _has_method_handle_invokes(false),
468 _node_bundling_limit(0), 469 _node_bundling_limit(0),
469 _node_bundling_base(NULL), 470 _node_bundling_base(NULL),
470 _java_calls(0), 471 _java_calls(0),
471 _inner_loops(0), 472 _inner_loops(0),
472 #ifndef PRODUCT 473 #ifndef PRODUCT
757 _orig_pc_slot_offset_in_bytes(0), 758 _orig_pc_slot_offset_in_bytes(0),
758 _subsume_loads(true), 759 _subsume_loads(true),
759 _do_escape_analysis(false), 760 _do_escape_analysis(false),
760 _failure_reason(NULL), 761 _failure_reason(NULL),
761 _code_buffer("Compile::Fill_buffer"), 762 _code_buffer("Compile::Fill_buffer"),
763 _has_method_handle_invokes(false),
762 _node_bundling_limit(0), 764 _node_bundling_limit(0),
763 _node_bundling_base(NULL), 765 _node_bundling_base(NULL),
764 _java_calls(0), 766 _java_calls(0),
765 _inner_loops(0), 767 _inner_loops(0),
766 #ifndef PRODUCT 768 #ifndef PRODUCT