annotate src/share/vm/ci/ciSignature.cpp @ 1994:6cd6d394f280

7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed()) 7002546: regression on SpecJbb2005 on 7b118 comparing to 7b117 on small heaps Summary: Relaxed assertion checking related to incremental_collection_failed flag to allow for ExplicitGCInvokesConcurrent behaviour where we do not want a failing scavenge to bail to a stop-world collection. Parameterized incremental_collection_will_fail() so we can selectively use, or not use, as appropriate, the statistical prediction at specific use sites. This essentially reverts the scavenge bail-out logic to what it was prior to some recent changes that had inadvertently started using the statistical prediction which can be noisy in the presence of bursty loads. Added some associated verbose non-product debugging messages. Reviewed-by: johnc, tonyp
author ysr
date Tue, 07 Dec 2010 21:55:53 -0800
parents f95d63e2154a
children 3582bf76420e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "ci/ciSignature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "ci/ciUtilities.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/signature.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // ciSignature
a61af66fc99e Initial load
duke
parents:
diff changeset
33 //
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // This class represents the signature of a method.
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // ciSignature::ciSignature
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ciSignature::ciSignature(ciKlass* accessing_klass, ciSymbol* symbol) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _accessing_klass = accessing_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _symbol = symbol;
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 ciEnv* env = CURRENT_ENV;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Arena* arena = env->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
46 _types = new (arena) GrowableArray<ciType*>(arena, 8, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 symbolHandle sh (THREAD, symbol->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
51 SignatureStream ss(sh);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 for (; ; ss.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Process one element of the signature
a61af66fc99e Initial load
duke
parents:
diff changeset
54 ciType* type;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (!ss.is_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 type = ciType::make(ss.type());
a61af66fc99e Initial load
duke
parents:
diff changeset
57 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 symbolOop name = ss.as_symbol(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 type = ss.is_array() ? (ciType*)ciEnv::unloaded_ciobjarrayklass()
a61af66fc99e Initial load
duke
parents:
diff changeset
61 : (ciType*)ciEnv::unloaded_ciinstance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 env->record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ciSymbol* klass_name = env->get_object(name)->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 type = env->get_klass_by_name_impl(_accessing_klass, klass_name, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _types->append(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 if (ss.at_return_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // Done processing the return type; do not add it into the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 size += type->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _count = count;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // ciSignature::return_ciType
a61af66fc99e Initial load
duke
parents:
diff changeset
83 //
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // What is the return type of this signature?
a61af66fc99e Initial load
duke
parents:
diff changeset
85 ciType* ciSignature::return_type() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return _types->at(_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // ciSignature::ciType_at
a61af66fc99e Initial load
duke
parents:
diff changeset
91 //
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // What is the type of the index'th element of this
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // signature?
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ciType* ciSignature::type_at(int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 assert(index < _count, "out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // The first _klasses element holds the return klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return _types->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // ciSignature::print_signature
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void ciSignature::print_signature() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 _symbol->print_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // ciSignature::print
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void ciSignature::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 tty->print("<ciSignature symbol=");
a61af66fc99e Initial load
duke
parents:
diff changeset
110 print_signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 tty->print(" accessing_klass=");
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _accessing_klass->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 tty->print(" address=0x%x>", (address)this);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }