annotate src/share/vm/ci/ciSignature.cpp @ 666:ebebd376f657

6805522: Server VM fails with assertion (block1->start() != block2->start(),"successors have unique bcis") Reviewed-by: kvn
author never
date Mon, 23 Mar 2009 13:58:58 -0700
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_ciSignature.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ciSignature
a61af66fc99e Initial load
duke
parents:
diff changeset
29 //
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // This class represents the signature of a method.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // ciSignature::ciSignature
a61af66fc99e Initial load
duke
parents:
diff changeset
34 ciSignature::ciSignature(ciKlass* accessing_klass, ciSymbol* symbol) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 ASSERT_IN_VM;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 _accessing_klass = accessing_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _symbol = symbol;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ciEnv* env = CURRENT_ENV;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Arena* arena = env->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _types = new (arena) GrowableArray<ciType*>(arena, 8, 0, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 int size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 symbolHandle sh (THREAD, symbol->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
47 SignatureStream ss(sh);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 for (; ; ss.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Process one element of the signature
a61af66fc99e Initial load
duke
parents:
diff changeset
50 ciType* type;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (!ss.is_object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 type = ciType::make(ss.type());
a61af66fc99e Initial load
duke
parents:
diff changeset
53 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 symbolOop name = ss.as_symbol(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 type = ss.is_array() ? (ciType*)ciEnv::unloaded_ciobjarrayklass()
a61af66fc99e Initial load
duke
parents:
diff changeset
57 : (ciType*)ciEnv::unloaded_ciinstance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 env->record_out_of_memory_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
59 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ciSymbol* klass_name = env->get_object(name)->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 type = env->get_klass_by_name_impl(_accessing_klass, klass_name, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _types->append(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (ss.at_return_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Done processing the return type; do not add it into the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 size += type->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 _size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _count = count;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // ciSignature::return_ciType
a61af66fc99e Initial load
duke
parents:
diff changeset
79 //
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // What is the return type of this signature?
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ciType* ciSignature::return_type() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return _types->at(_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // ciSignature::ciType_at
a61af66fc99e Initial load
duke
parents:
diff changeset
87 //
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // What is the type of the index'th element of this
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // signature?
a61af66fc99e Initial load
duke
parents:
diff changeset
90 ciType* ciSignature::type_at(int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 assert(index < _count, "out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // The first _klasses element holds the return klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 return _types->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // ciSignature::print_signature
a61af66fc99e Initial load
duke
parents:
diff changeset
98 void ciSignature::print_signature() {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _symbol->print_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // ciSignature::print
a61af66fc99e Initial load
duke
parents:
diff changeset
104 void ciSignature::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 tty->print("<ciSignature symbol=");
a61af66fc99e Initial load
duke
parents:
diff changeset
106 print_signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 tty->print(" accessing_klass=");
a61af66fc99e Initial load
duke
parents:
diff changeset
108 _accessing_klass->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 tty->print(" address=0x%x>", (address)this);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }