author | roland |
Thu, 10 Apr 2014 11:38:12 +0200 | |
changeset 24002 | 4e6a72032a99 |
parent 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
18955
diff
changeset
|
2 |
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CI_BCESCAPEANALYZER_HPP |
26 |
#define SHARE_VM_CI_BCESCAPEANALYZER_HPP |
|
27 |
||
28 |
#ifdef COMPILER2 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11198
diff
changeset
|
29 |
#include "ci/ciObject.hpp" |
7397 | 30 |
#include "ci/ciMethod.hpp" |
31 |
#include "ci/ciMethodData.hpp" |
|
32 |
#include "code/dependencies.hpp" |
|
33 |
#include "libadt/vectset.hpp" |
|
34 |
#include "memory/allocation.hpp" |
|
35 |
#include "utilities/growableArray.hpp" |
|
36 |
#endif |
|
37 |
||
1 | 38 |
// This class implements a fast, conservative analysis of effect of methods |
39 |
// on the escape state of their arguments. The analysis is at the bytecode |
|
40 |
// level. |
|
41 |
||
42 |
class ciMethodBlocks; |
|
43 |
class ciBlock; |
|
44 |
||
45 |
class BCEscapeAnalyzer : public ResourceObj { |
|
46 |
private: |
|
5928
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
47 |
Arena* _arena; // ciEnv arena |
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
48 |
|
1 | 49 |
bool _conservative; // If true, return maximally |
50 |
// conservative results. |
|
51 |
ciMethod* _method; |
|
52 |
ciMethodData* _methodData; |
|
53 |
int _arg_size; |
|
5928
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
54 |
VectorSet _arg_local; |
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
55 |
VectorSet _arg_stack; |
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
56 |
VectorSet _arg_returned; |
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
57 |
VectorSet _dirty; |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
58 |
enum{ ARG_OFFSET_MAX = 31}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
59 |
uint *_arg_modified; |
1 | 60 |
|
61 |
bool _return_local; |
|
251
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
62 |
bool _return_allocated; |
1 | 63 |
bool _allocated_escapes; |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
64 |
bool _unknown_modified; |
1 | 65 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11198
diff
changeset
|
66 |
GrowableArray<ciMetadata *> _dependencies; |
1 | 67 |
|
68 |
ciMethodBlocks *_methodBlocks; |
|
69 |
||
70 |
BCEscapeAnalyzer* _parent; |
|
71 |
int _level; |
|
72 |
||
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
670
diff
changeset
|
73 |
public: |
1 | 74 |
class ArgumentMap; |
75 |
class StateInfo; |
|
76 |
||
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
670
diff
changeset
|
77 |
private: |
1 | 78 |
// helper functions |
79 |
bool is_argument(int i) { return i >= 0 && i < _arg_size; } |
|
80 |
void set_returned(ArgumentMap vars); |
|
81 |
bool is_argument(ArgumentMap vars); |
|
82 |
bool is_arg_stack(ArgumentMap vars); |
|
18955
be9410d4a97c
8020215: Different execution plan when using JIT vs interpreter
kvn
parents:
13728
diff
changeset
|
83 |
bool returns_all(ArgumentMap vars); |
5928
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
84 |
void clear_bits(ArgumentMap vars, VectorSet &bs); |
1 | 85 |
void set_method_escape(ArgumentMap vars); |
11198
34c860ff41e3
7112478: after 7105605 JRuby bench_define_method_methods.rb fails with NPE
kvn
parents:
7397
diff
changeset
|
86 |
void set_global_escape(ArgumentMap vars, bool merge = false); |
1 | 87 |
void set_dirty(ArgumentMap vars); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
88 |
void set_modified(ArgumentMap vars, int offs, int size); |
1 | 89 |
|
90 |
bool is_recursive_call(ciMethod* callee); |
|
91 |
void add_dependence(ciKlass *klass, ciMethod *meth); |
|
92 |
void propagate_dependencies(ciMethod *meth); |
|
93 |
void invoke(StateInfo &state, Bytecodes::Code code, ciMethod* target, ciKlass* holder); |
|
94 |
||
95 |
void iterate_one_block(ciBlock *blk, StateInfo &state, GrowableArray<ciBlock *> &successors); |
|
96 |
void iterate_blocks(Arena *); |
|
97 |
void merge_block_states(StateInfo *blockstates, ciBlock *dest, StateInfo *s_state); |
|
98 |
||
99 |
// analysis |
|
100 |
void initialize(); |
|
101 |
void clear_escape_info(); |
|
102 |
void compute_escape_info(); |
|
103 |
vmIntrinsics::ID known_intrinsic(); |
|
104 |
bool compute_escape_for_intrinsic(vmIntrinsics::ID iid); |
|
105 |
bool do_analysis(); |
|
106 |
||
107 |
void read_escape_info(); |
|
108 |
||
109 |
bool contains(uint arg_set1, uint arg_set2); |
|
110 |
||
111 |
public: |
|
112 |
BCEscapeAnalyzer(ciMethod* method, BCEscapeAnalyzer* parent = NULL); |
|
113 |
||
114 |
// accessors |
|
115 |
ciMethod* method() const { return _method; } |
|
116 |
ciMethodData* methodData() const { return _methodData; } |
|
117 |
BCEscapeAnalyzer* parent() const { return _parent; } |
|
118 |
int level() const { return _level; } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11198
diff
changeset
|
119 |
GrowableArray<ciMetadata *>* dependencies() { return &_dependencies; } |
1 | 120 |
bool has_dependencies() const { return !_dependencies.is_empty(); } |
121 |
||
122 |
// retrieval of interprocedural escape information |
|
123 |
||
124 |
// The given argument does not escape the callee. |
|
125 |
bool is_arg_local(int i) const { |
|
5928
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
126 |
return !_conservative && _arg_local.test(i); |
1 | 127 |
} |
128 |
||
129 |
// The given argument escapes the callee, but does not become globally |
|
130 |
// reachable. |
|
131 |
bool is_arg_stack(int i) const { |
|
5928
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
132 |
return !_conservative && _arg_stack.test(i); |
1 | 133 |
} |
134 |
||
135 |
// The given argument does not escape globally, and may be returned. |
|
136 |
bool is_arg_returned(int i) const { |
|
5928
f6e69b46e9e3
6968368: SIGSEGV in the BCEscapeAnalyzer::copy_dependencies
kvn
parents:
5547
diff
changeset
|
137 |
return !_conservative && _arg_returned.test(i); } |
1 | 138 |
|
139 |
// True iff only input arguments are returned. |
|
140 |
bool is_return_local() const { |
|
141 |
return !_conservative && _return_local; |
|
142 |
} |
|
143 |
||
144 |
// True iff only newly allocated unescaped objects are returned. |
|
145 |
bool is_return_allocated() const { |
|
146 |
return !_conservative && _return_allocated && !_allocated_escapes; |
|
147 |
} |
|
148 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
149 |
// Tracking of argument modification |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
150 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
151 |
enum {OFFSET_ANY = -1}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
152 |
bool is_arg_modified(int arg, int offset, int size_in_bytes); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
153 |
void set_arg_modified(int arg, int offset, int size_in_bytes); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
154 |
bool has_non_arg_side_affects() { return _unknown_modified; } |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
155 |
|
1 | 156 |
// Copy dependencies from this analysis into "deps" |
157 |
void copy_dependencies(Dependencies *deps); |
|
251
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
158 |
|
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
159 |
#ifndef PRODUCT |
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
160 |
// dump escape information |
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
161 |
void dump(); |
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
162 |
#endif |
1 | 163 |
}; |
7397 | 164 |
|
165 |
#endif // SHARE_VM_CI_BCESCAPEANALYZER_HPP |