annotate src/share/vm/runtime/stackValue.hpp @ 94:0834225a7916

6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction Summary: The option CMSInitiatingPermOccupancyFraction now controls perm triggering threshold. Even though the actual value of the threshold has not yet been changed, so there is no change in policy, we now have the infrastructure in place for dynamically deciding when to collect the perm gen, an issue that will be addressed in the near future. Reviewed-by: jmasa
author ysr
date Sun, 16 Mar 2008 21:57:25 -0700
parents a61af66fc99e
children b109e761e927
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 1997-2005 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 class StackValue : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
26 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
27 BasicType _type;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 intptr_t _i; // Blank java stack slot value
a61af66fc99e Initial load
duke
parents:
diff changeset
29 Handle _o; // Java stack slot value interpreted as a Handle
a61af66fc99e Initial load
duke
parents:
diff changeset
30 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 StackValue(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 _type = T_INT;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 _i = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 }
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 StackValue(Handle value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _type = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _o = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 StackValue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _type = T_CONFLICT;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 _i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Only used during deopt- preserve object type.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 StackValue(intptr_t o, BasicType t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 assert(t == T_OBJECT, "should not be used");
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _type = t;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _i = o;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 Handle get_obj() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 assert(type() == T_OBJECT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return _o;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void set_obj(Handle value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 assert(type() == T_OBJECT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _o = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 intptr_t get_int() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 assert(type() == T_INT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
66 return _i;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // For special case in deopt.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 intptr_t get_int(BasicType t) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 assert(t == T_OBJECT && type() == T_OBJECT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
72 return _i;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void set_int(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 assert(type() == T_INT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _i = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 BasicType type() const { return _type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 bool equal(StackValue *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (_type != value->_type) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 if (_type == T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return (_o == value->_o);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 assert(_type == T_INT, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // [phh] compare only low addressed portions of intptr_t slots
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return (*(int *)&_i == *(int *)&value->_i);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 static StackValue* create_stack_value(const frame* fr, const RegisterMap* reg_map, ScopeValue* sv);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static BasicLock* resolve_monitor_lock(const frame* fr, Location location);
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
97 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
101 };