annotate src/share/vm/runtime/stackValue.hpp @ 6862:8a5ea0a9ccc4

7127708: G1: change task num types from int to uint in concurrent mark Summary: Change the type of various task num fields, parameters etc to unsigned and rename them to be more consistent with the other collectors. Code changes were also reviewed by Vitaly Davidovich. Reviewed-by: johnc Contributed-by: Kaushik Srenevasan <kaushik@twitter.com>
author johnc
date Sat, 06 Oct 2012 01:17:44 -0700
parents f95d63e2154a
children
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) 1997, 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: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
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: 844
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 #ifndef SHARE_VM_RUNTIME_STACKVALUE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_STACKVALUE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "code/location.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "utilities/top.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class StackValue : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 BasicType _type;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 intptr_t _i; // Blank java stack slot value
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Handle _o; // Java stack slot value interpreted as a Handle
a61af66fc99e Initial load
duke
parents:
diff changeset
37 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 StackValue(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _type = T_INT;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _i = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 }
a61af66fc99e Initial load
duke
parents:
diff changeset
43
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
44 StackValue(Handle value, intptr_t scalar_replaced = 0) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 _type = T_OBJECT;
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
46 _i = scalar_replaced;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _o = value;
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
48 assert(_i == 0 || _o.is_null(), "not null object should not be marked as scalar replaced");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 StackValue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _type = T_CONFLICT;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Only used during deopt- preserve object type.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 StackValue(intptr_t o, BasicType t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 assert(t == T_OBJECT, "should not be used");
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _type = t;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _i = o;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Handle get_obj() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 assert(type() == T_OBJECT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
65 return _o;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
68 bool obj_is_scalar_replaced() const {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
69 assert(type() == T_OBJECT, "type check");
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
70 return _i != 0;
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
71 }
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 0
diff changeset
72
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void set_obj(Handle value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 assert(type() == T_OBJECT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _o = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 intptr_t get_int() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 assert(type() == T_INT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 return _i;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // For special case in deopt.
a61af66fc99e Initial load
duke
parents:
diff changeset
84 intptr_t get_int(BasicType t) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(t == T_OBJECT && type() == T_OBJECT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return _i;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 void set_int(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 assert(type() == T_INT, "type check");
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _i = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 BasicType type() const { return _type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 bool equal(StackValue *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (_type != value->_type) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 if (_type == T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return (_o == value->_o);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 assert(_type == T_INT, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // [phh] compare only low addressed portions of intptr_t slots
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return (*(int *)&_i == *(int *)&value->_i);
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 static StackValue* create_stack_value(const frame* fr, const RegisterMap* reg_map, ScopeValue* sv);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static BasicLock* resolve_monitor_lock(const frame* fr, Location location);
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
111 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
113 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
115 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
116
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
117 #endif // SHARE_VM_RUNTIME_STACKVALUE_HPP