annotate src/share/vm/compiler/compilerOracle.cpp @ 20804:7848fc12602b

Merge with jdk8u40-b25
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 07 Apr 2015 14:58:49 +0200
parents 5281f8e34a4a e09c0676c53f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14223
diff changeset
2 * Copyright (c) 1998, 2014, 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: 1155
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1155
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: 1155
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 "compiler/compilerOracle.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/klass.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6204
diff changeset
31 #include "oops/method.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "oops/oop.inline.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
33 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "runtime/jniHandles.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2426
diff changeset
37 class MethodMatcher : public CHeapObj<mtCompiler> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
39 enum Mode {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 Exact,
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Prefix = 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
42 Suffix = 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Substring = Prefix | Suffix,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Any,
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Unknown = -1
a61af66fc99e Initial load
duke
parents:
diff changeset
46 };
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 protected:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
49 Symbol* _class_name;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
50 Symbol* _method_name;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
51 Symbol* _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Mode _class_mode;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 Mode _method_mode;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 MethodMatcher* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
55
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
56 static bool match(Symbol* candidate, Symbol* match, Mode match_mode);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
58 Symbol* class_name() const { return _class_name; }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
59 Symbol* method_name() const { return _method_name; }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
60 Symbol* signature() const { return _signature; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
63 MethodMatcher(Symbol* class_name, Mode class_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
64 Symbol* method_name, Mode method_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
65 Symbol* signature, MethodMatcher* next);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
66 MethodMatcher(Symbol* class_name, Symbol* method_name, MethodMatcher* next);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // utility method
a61af66fc99e Initial load
duke
parents:
diff changeset
69 MethodMatcher* find(methodHandle method) {
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6909
diff changeset
70 Symbol* class_name = method->method_holder()->name();
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
71 Symbol* method_name = method->name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 for (MethodMatcher* current = this; current != NULL; current = current->_next) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 if (match(class_name, current->class_name(), current->_class_mode) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
74 match(method_name, current->method_name(), current->_method_mode) &&
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
75 (current->signature() == NULL || current->signature() == method->signature())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return current;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 bool match(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 return find(method) != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 MethodMatcher* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
88 static void print_symbol(Symbol* h, Mode mode) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 if (mode == Suffix || mode == Substring || mode == Any) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 tty->print("*");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if (mode != Any) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
95 h->print_symbol_on(tty);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (mode == Prefix || mode == Substring) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 tty->print("*");
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void print_base() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 print_symbol(class_name(), _class_mode);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 tty->print(".");
a61af66fc99e Initial load
duke
parents:
diff changeset
105 print_symbol(method_name(), _method_mode);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
106 if (signature() != NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
107 tty->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
108 signature()->print_symbol_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 virtual void print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 print_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 };
a61af66fc99e Initial load
duke
parents:
diff changeset
117
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
118 MethodMatcher::MethodMatcher(Symbol* class_name, Symbol* method_name, MethodMatcher* next) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
119 _class_name = class_name;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
120 _method_name = method_name;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _next = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 _class_mode = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 _method_mode = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _signature = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
128 MethodMatcher::MethodMatcher(Symbol* class_name, Mode class_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
129 Symbol* method_name, Mode method_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
130 Symbol* signature, MethodMatcher* next):
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _class_mode(class_mode)
a61af66fc99e Initial load
duke
parents:
diff changeset
132 , _method_mode(method_mode)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 , _next(next)
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
134 , _class_name(class_name)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
135 , _method_name(method_name)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
136 , _signature(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
139 bool MethodMatcher::match(Symbol* candidate, Symbol* match, Mode match_mode) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 if (match_mode == Any) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (match_mode == Exact) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
145 return candidate == match;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 const char * candidate_string = candidate->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
150 const char * match_string = match->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 switch (match_mode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 case Prefix:
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return strstr(candidate_string, match_string) == candidate_string;
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 case Suffix: {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 size_t clen = strlen(candidate_string);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 size_t mlen = strlen(match_string);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return clen >= mlen && strcmp(candidate_string + clen - mlen, match_string) == 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 case Substring:
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return strstr(candidate_string, match_string) != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
170 enum OptionType {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
171 IntxType,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
172 UintxType,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
173 BoolType,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
174 CcstrType,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
175 UnknownType
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
176 };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
177
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
178 /* Methods to map real type names to OptionType */
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
179 template<typename T>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
180 static OptionType get_type_for() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
181 return UnknownType;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
182 };
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
183
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
184 template<> OptionType get_type_for<intx>() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
185 return IntxType;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
186 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
187
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
188 template<> OptionType get_type_for<uintx>() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
189 return UintxType;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
190 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
191
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
192 template<> OptionType get_type_for<bool>() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
193 return BoolType;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
194 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
195
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
196 template<> OptionType get_type_for<ccstr>() {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
197 return CcstrType;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
198 }
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
199
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
200 template<typename T>
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
201 static const T copy_value(const T value) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
202 return value;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
203 }
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
204
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
205 template<> const ccstr copy_value<ccstr>(const ccstr value) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
206 return (const ccstr)strdup(value);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
207 }
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
208
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
209 template <typename T>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
210 class TypedMethodOptionMatcher : public MethodMatcher {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
211 const char* _option;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
212 OptionType _type;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
213 const T _value;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
214
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
215 public:
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
216 TypedMethodOptionMatcher(Symbol* class_name, Mode class_mode,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
217 Symbol* method_name, Mode method_mode,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
218 Symbol* signature, const char* opt,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
219 const T value, MethodMatcher* next) :
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
220 MethodMatcher(class_name, class_mode, method_name, method_mode, signature, next),
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
221 _type(get_type_for<T>()), _value(copy_value<T>(value)) {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
222 _option = strdup(opt);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
225 ~TypedMethodOptionMatcher() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
226 free((void*)_option);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
227 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
228
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
229 TypedMethodOptionMatcher* match(methodHandle method, const char* opt) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
230 TypedMethodOptionMatcher* current = this;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 while (current != NULL) {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
232 current = (TypedMethodOptionMatcher*)current->find(method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if (current == NULL) {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
234 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
236 if (strcmp(current->_option, opt) == 0) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
237 return current;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 current = current->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
241 return NULL;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
242 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
243
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
244 TypedMethodOptionMatcher* next() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
245 return (TypedMethodOptionMatcher*)_next;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
248 OptionType get_type(void) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
249 return _type;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
250 };
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
251
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
252 T value() { return _value; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
254 void print() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
255 ttyLocker ttyl;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
256 print_base();
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
257 tty->print(" %s", _option);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
258 tty->print(" <unknown option type>");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
259 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 };
a61af66fc99e Initial load
duke
parents:
diff changeset
262
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
263 template<>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
264 void TypedMethodOptionMatcher<intx>::print() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
265 ttyLocker ttyl;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
266 print_base();
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
267 tty->print(" intx %s", _option);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
268 tty->print(" = " INTX_FORMAT, _value);
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
269 tty->cr();
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
270 };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
271
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
272 template<>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
273 void TypedMethodOptionMatcher<uintx>::print() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
274 ttyLocker ttyl;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
275 print_base();
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
276 tty->print(" uintx %s", _option);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
277 tty->print(" = " UINTX_FORMAT, _value);
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
278 tty->cr();
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
279 };
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
280
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
281 template<>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
282 void TypedMethodOptionMatcher<bool>::print() {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
283 ttyLocker ttyl;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
284 print_base();
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
285 tty->print(" bool %s", _option);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
286 tty->print(" = %s", _value ? "true" : "false");
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
287 tty->cr();
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
288 };
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
289
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
290 template<>
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
291 void TypedMethodOptionMatcher<ccstr>::print() {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
292 ttyLocker ttyl;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
293 print_base();
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
294 tty->print(" const char* %s", _option);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
295 tty->print(" = '%s'", _value);
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
296 tty->cr();
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
297 };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // this must parallel the command_names below
a61af66fc99e Initial load
duke
parents:
diff changeset
300 enum OracleCommand {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 UnknownCommand = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
302 OracleFirstCommand = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
303 BreakCommand = OracleFirstCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
304 PrintCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
305 ExcludeCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
306 InlineCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
307 DontInlineCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
308 CompileOnlyCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
309 LogCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
310 OptionCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
311 QuietCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
312 HelpCommand,
a61af66fc99e Initial load
duke
parents:
diff changeset
313 OracleCommandCount
a61af66fc99e Initial load
duke
parents:
diff changeset
314 };
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // this must parallel the enum OracleCommand
a61af66fc99e Initial load
duke
parents:
diff changeset
317 static const char * command_names[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 "break",
a61af66fc99e Initial load
duke
parents:
diff changeset
319 "print",
a61af66fc99e Initial load
duke
parents:
diff changeset
320 "exclude",
a61af66fc99e Initial load
duke
parents:
diff changeset
321 "inline",
a61af66fc99e Initial load
duke
parents:
diff changeset
322 "dontinline",
a61af66fc99e Initial load
duke
parents:
diff changeset
323 "compileonly",
a61af66fc99e Initial load
duke
parents:
diff changeset
324 "log",
a61af66fc99e Initial load
duke
parents:
diff changeset
325 "option",
a61af66fc99e Initial load
duke
parents:
diff changeset
326 "quiet",
a61af66fc99e Initial load
duke
parents:
diff changeset
327 "help"
a61af66fc99e Initial load
duke
parents:
diff changeset
328 };
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 class MethodMatcher;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 static MethodMatcher* lists[OracleCommandCount] = { 0, };
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 static bool check_predicate(OracleCommand command, methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 return ((lists[command] != NULL) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
336 !method.is_null() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
337 lists[command]->match(method));
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 static MethodMatcher* add_predicate(OracleCommand command,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
342 Symbol* class_name, MethodMatcher::Mode c_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
343 Symbol* method_name, MethodMatcher::Mode m_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
344 Symbol* signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
345 assert(command != OptionCommand, "must use add_option_string");
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if (command == LogCommand && !LogCompilation && lists[LogCommand] == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
347 tty->print_cr("Warning: +LogCompilation must be enabled in order for individual methods to be logged.");
a61af66fc99e Initial load
duke
parents:
diff changeset
348 lists[command] = new MethodMatcher(class_name, c_mode, method_name, m_mode, signature, lists[command]);
a61af66fc99e Initial load
duke
parents:
diff changeset
349 return lists[command];
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
352 template<typename T>
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
353 static MethodMatcher* add_option_string(Symbol* class_name, MethodMatcher::Mode c_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
354 Symbol* method_name, MethodMatcher::Mode m_mode,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
355 Symbol* signature,
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
356 const char* option,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
357 T value) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
358 lists[OptionCommand] = new TypedMethodOptionMatcher<T>(class_name, c_mode, method_name, m_mode,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
359 signature, option, value, lists[OptionCommand]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
360 return lists[OptionCommand];
a61af66fc99e Initial load
duke
parents:
diff changeset
361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
362
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
363 template<typename T>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
364 static bool get_option_value(methodHandle method, const char* option, T& value) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
365 TypedMethodOptionMatcher<T>* m;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
366 if (lists[OptionCommand] != NULL
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
367 && (m = ((TypedMethodOptionMatcher<T>*)lists[OptionCommand])->match(method, option)) != NULL
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
368 && m->get_type() == get_type_for<T>()) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
369 value = m->value();
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
370 return true;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
371 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
372 return false;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
373 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
374 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 bool CompilerOracle::has_option_string(methodHandle method, const char* option) {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
377 bool value = false;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
378 get_option_value(method, option, value);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
379 return value;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
382 template<typename T>
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
383 bool CompilerOracle::has_option_value(methodHandle method, const char* option, T& value) {
20431
e09c0676c53f 8057129: Fix AIX build after the Extend CompileCommand=option change 8055286
simonis
parents: 20430
diff changeset
384 return ::get_option_value(method, option, value);
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
385 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
386
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
387 // Explicit instantiation for all OptionTypes supported.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
388 template bool CompilerOracle::has_option_value<intx>(methodHandle method, const char* option, intx& value);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
389 template bool CompilerOracle::has_option_value<uintx>(methodHandle method, const char* option, uintx& value);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
390 template bool CompilerOracle::has_option_value<bool>(methodHandle method, const char* option, bool& value);
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
391 template bool CompilerOracle::has_option_value<ccstr>(methodHandle method, const char* option, ccstr& value);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 bool CompilerOracle::should_exclude(methodHandle method, bool& quietly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
394 quietly = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 if (lists[ExcludeCommand] != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 if (lists[ExcludeCommand]->match(method)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 quietly = _quiet;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 if (lists[CompileOnlyCommand] != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 return !lists[CompileOnlyCommand]->match(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 bool CompilerOracle::should_inline(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 return (check_predicate(InlineCommand, method));
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 bool CompilerOracle::should_not_inline(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 return (check_predicate(DontInlineCommand, method));
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 bool CompilerOracle::should_print(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 return (check_predicate(PrintCommand, method));
a61af66fc99e Initial load
duke
parents:
diff changeset
421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 bool CompilerOracle::should_log(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 if (!LogCompilation) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (lists[LogCommand] == NULL) return true; // by default, log all
a61af66fc99e Initial load
duke
parents:
diff changeset
427 return (check_predicate(LogCommand, method));
a61af66fc99e Initial load
duke
parents:
diff changeset
428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430
a61af66fc99e Initial load
duke
parents:
diff changeset
431 bool CompilerOracle::should_break_at(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 return check_predicate(BreakCommand, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 static OracleCommand parse_command_name(const char * line, int* bytes_read) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 assert(ARRAY_SIZE(command_names) == OracleCommandCount,
a61af66fc99e Initial load
duke
parents:
diff changeset
438 "command_names size mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 *bytes_read = 0;
2077
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
441 char command[33];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
442 int result = sscanf(line, "%32[a-z]%n", command, bytes_read);
a61af66fc99e Initial load
duke
parents:
diff changeset
443 for (uint i = 0; i < ARRAY_SIZE(command_names); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if (strcmp(command, command_names[i]) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 return (OracleCommand)i;
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448 return UnknownCommand;
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 static void usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 tty->print_cr(" CompileCommand and the CompilerOracle allows simple control over");
a61af66fc99e Initial load
duke
parents:
diff changeset
454 tty->print_cr(" what's allowed to be compiled. The standard supported directives");
a61af66fc99e Initial load
duke
parents:
diff changeset
455 tty->print_cr(" are exclude and compileonly. The exclude directive stops a method");
a61af66fc99e Initial load
duke
parents:
diff changeset
456 tty->print_cr(" from being compiled and compileonly excludes all methods except for");
a61af66fc99e Initial load
duke
parents:
diff changeset
457 tty->print_cr(" the ones mentioned by compileonly directives. The basic form of");
a61af66fc99e Initial load
duke
parents:
diff changeset
458 tty->print_cr(" all commands is a command name followed by the name of the method");
a61af66fc99e Initial load
duke
parents:
diff changeset
459 tty->print_cr(" in one of two forms: the standard class file format as in");
a61af66fc99e Initial load
duke
parents:
diff changeset
460 tty->print_cr(" class/name.methodName or the PrintCompilation format");
a61af66fc99e Initial load
duke
parents:
diff changeset
461 tty->print_cr(" class.name::methodName. The method name can optionally be followed");
a61af66fc99e Initial load
duke
parents:
diff changeset
462 tty->print_cr(" by a space then the signature of the method in the class file");
a61af66fc99e Initial load
duke
parents:
diff changeset
463 tty->print_cr(" format. Otherwise the directive applies to all methods with the");
a61af66fc99e Initial load
duke
parents:
diff changeset
464 tty->print_cr(" same name and class regardless of signature. Leading and trailing");
a61af66fc99e Initial load
duke
parents:
diff changeset
465 tty->print_cr(" *'s in the class and/or method name allows a small amount of");
a61af66fc99e Initial load
duke
parents:
diff changeset
466 tty->print_cr(" wildcarding. ");
a61af66fc99e Initial load
duke
parents:
diff changeset
467 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
468 tty->print_cr(" Examples:");
a61af66fc99e Initial load
duke
parents:
diff changeset
469 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
470 tty->print_cr(" exclude java/lang/StringBuffer.append");
a61af66fc99e Initial load
duke
parents:
diff changeset
471 tty->print_cr(" compileonly java/lang/StringBuffer.toString ()Ljava/lang/String;");
a61af66fc99e Initial load
duke
parents:
diff changeset
472 tty->print_cr(" exclude java/lang/String*.*");
a61af66fc99e Initial load
duke
parents:
diff changeset
473 tty->print_cr(" exclude *.toString");
a61af66fc99e Initial load
duke
parents:
diff changeset
474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476
a61af66fc99e Initial load
duke
parents:
diff changeset
477 // The characters allowed in a class or method name. All characters > 0x7f
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // are allowed in order to handle obfuscated class files (e.g. Volano)
a61af66fc99e Initial load
duke
parents:
diff changeset
479 #define RANGEBASE "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789$_<>" \
a61af66fc99e Initial load
duke
parents:
diff changeset
480 "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \
a61af66fc99e Initial load
duke
parents:
diff changeset
481 "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" \
a61af66fc99e Initial load
duke
parents:
diff changeset
482 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf" \
a61af66fc99e Initial load
duke
parents:
diff changeset
483 "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" \
a61af66fc99e Initial load
duke
parents:
diff changeset
484 "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" \
a61af66fc99e Initial load
duke
parents:
diff changeset
485 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" \
a61af66fc99e Initial load
duke
parents:
diff changeset
486 "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef" \
a61af66fc99e Initial load
duke
parents:
diff changeset
487 "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 #define RANGE0 "[*" RANGEBASE "]"
a61af66fc99e Initial load
duke
parents:
diff changeset
490 #define RANGEDOT "[*" RANGEBASE ".]"
a61af66fc99e Initial load
duke
parents:
diff changeset
491 #define RANGESLASH "[*" RANGEBASE "/]"
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // Accept several syntaxes for these patterns
a61af66fc99e Initial load
duke
parents:
diff changeset
495 // original syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // cmd java.lang.String foo
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // PrintCompilation syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // cmd java.lang.String::foo
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // VM syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // cmd java/lang/String[. ]foo
a61af66fc99e Initial load
duke
parents:
diff changeset
501 //
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 static const char* patterns[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 "%*[ \t]%255" RANGEDOT " " "%255" RANGE0 "%n",
a61af66fc99e Initial load
duke
parents:
diff changeset
505 "%*[ \t]%255" RANGEDOT "::" "%255" RANGE0 "%n",
a61af66fc99e Initial load
duke
parents:
diff changeset
506 "%*[ \t]%255" RANGESLASH "%*[ .]" "%255" RANGE0 "%n",
a61af66fc99e Initial load
duke
parents:
diff changeset
507 };
a61af66fc99e Initial load
duke
parents:
diff changeset
508
a61af66fc99e Initial load
duke
parents:
diff changeset
509 static MethodMatcher::Mode check_mode(char name[], const char*& error_msg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
510 int match = MethodMatcher::Exact;
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
511 while (name[0] == '*') {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
512 match |= MethodMatcher::Suffix;
18688
0eba324e27db strcpy doesn't handle overlapping strings
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 18041
diff changeset
513 // Copy remaining string plus NUL to the beginning
18695
5281f8e34a4a Use memmove for overlapping copy
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 18688
diff changeset
514 memmove(name, name + 1, strlen(name + 1) + 1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
517 if (strcmp(name, "*") == 0) return MethodMatcher::Any;
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
518
0
a61af66fc99e Initial load
duke
parents:
diff changeset
519 size_t len = strlen(name);
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
520 while (len > 0 && name[len - 1] == '*') {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
521 match |= MethodMatcher::Prefix;
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
522 name[--len] = '\0';
0
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 if (strstr(name, "*") != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 error_msg = " Embedded * not allowed";
a61af66fc99e Initial load
duke
parents:
diff changeset
527 return MethodMatcher::Unknown;
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529 return (MethodMatcher::Mode)match;
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 static bool scan_line(const char * line,
a61af66fc99e Initial load
duke
parents:
diff changeset
533 char class_name[], MethodMatcher::Mode* c_mode,
a61af66fc99e Initial load
duke
parents:
diff changeset
534 char method_name[], MethodMatcher::Mode* m_mode,
a61af66fc99e Initial load
duke
parents:
diff changeset
535 int* bytes_read, const char*& error_msg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 *bytes_read = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 error_msg = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 for (uint i = 0; i < ARRAY_SIZE(patterns); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
539 if (2 == sscanf(line, patterns[i], class_name, method_name, bytes_read)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
540 *c_mode = check_mode(class_name, error_msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
541 *m_mode = check_mode(method_name, error_msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
542 return *c_mode != MethodMatcher::Unknown && *m_mode != MethodMatcher::Unknown;
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548
a61af66fc99e Initial load
duke
parents:
diff changeset
549
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
550 // Scan next flag and value in line, return MethodMatcher object on success, NULL on failure.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
551 // On failure, error_msg contains description for the first error.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
552 // For future extensions: set error_msg on first error.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
553 static MethodMatcher* scan_flag_and_value(const char* type, const char* line, int& total_bytes_read,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
554 Symbol* c_name, MethodMatcher::Mode c_match,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
555 Symbol* m_name, MethodMatcher::Mode m_match,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
556 Symbol* signature,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
557 char* errorbuf, const int buf_size) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
558 total_bytes_read = 0;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
559 int bytes_read = 0;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
560 char flag[256];
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
561
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
562 // Read flag name.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
563 if (sscanf(line, "%*[ \t]%255[a-zA-Z0-9]%n", flag, &bytes_read) == 1) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
564 line += bytes_read;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
565 total_bytes_read += bytes_read;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
566
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
567 // Read value.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
568 if (strcmp(type, "intx") == 0) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
569 intx value;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
570 if (sscanf(line, "%*[ \t]" INTX_FORMAT "%n", &value, &bytes_read) == 1) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
571 total_bytes_read += bytes_read;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
572 return add_option_string(c_name, c_match, m_name, m_match, signature, flag, value);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
573 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
574 jio_snprintf(errorbuf, buf_size, " Value cannot be read for flag %s of type %s ", flag, type);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
575 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
576 } else if (strcmp(type, "uintx") == 0) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
577 uintx value;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
578 if (sscanf(line, "%*[ \t]" UINTX_FORMAT "%n", &value, &bytes_read) == 1) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
579 total_bytes_read += bytes_read;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
580 return add_option_string(c_name, c_match, m_name, m_match, signature, flag, value);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
581 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
582 jio_snprintf(errorbuf, buf_size, " Value cannot be read for flag %s of type %s", flag, type);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
583 }
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
584 } else if (strcmp(type, "ccstr") == 0) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
585 ResourceMark rm;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
586 char* value = NEW_RESOURCE_ARRAY(char, strlen(line) + 1);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
587 if (sscanf(line, "%*[ \t]%255[_a-zA-Z0-9]%n", value, &bytes_read) == 1) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
588 total_bytes_read += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
589 return add_option_string(c_name, c_match, m_name, m_match, signature, flag, (ccstr)value);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
590 } else {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
591 jio_snprintf(errorbuf, buf_size, " Value cannot be read for flag %s of type %s", flag, type);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
592 }
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
593 } else if (strcmp(type, "ccstrlist") == 0) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
594 // Accumulates several strings into one. The internal type is ccstr.
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
595 ResourceMark rm;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
596 char* value = NEW_RESOURCE_ARRAY(char, strlen(line) + 1);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
597 char* next_value = value;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
598 if (sscanf(line, "%*[ \t]%255[_a-zA-Z0-9]%n", next_value, &bytes_read) == 1) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
599 total_bytes_read += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
600 line += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
601 next_value += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
602 char* end_value = next_value-1;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
603 while (sscanf(line, "%*[ \t]%255[_a-zA-Z0-9]%n", next_value, &bytes_read) == 1) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
604 total_bytes_read += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
605 line += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
606 *end_value = ' '; // override '\0'
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
607 next_value += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
608 end_value = next_value-1;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
609 }
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
610 return add_option_string(c_name, c_match, m_name, m_match, signature, flag, (ccstr)value);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
611 } else {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
612 jio_snprintf(errorbuf, buf_size, " Value cannot be read for flag %s of type %s", flag, type);
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
613 }
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
614 } else if (strcmp(type, "bool") == 0) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
615 char value[256];
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
616 if (sscanf(line, "%*[ \t]%255[a-zA-Z]%n", value, &bytes_read) == 1) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
617 if (strcmp(value, "true") == 0) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
618 total_bytes_read += bytes_read;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
619 return add_option_string(c_name, c_match, m_name, m_match, signature, flag, true);
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
620 } else if (strcmp(value, "false") == 0) {
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
621 total_bytes_read += bytes_read;
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
622 return add_option_string(c_name, c_match, m_name, m_match, signature, flag, false);
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
623 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
624 jio_snprintf(errorbuf, buf_size, " Value cannot be read for flag %s of type %s", flag, type);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
625 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
626 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
627 jio_snprintf(errorbuf, sizeof(errorbuf), " Value cannot be read for flag %s of type %s", flag, type);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
628 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
629 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
630 jio_snprintf(errorbuf, sizeof(errorbuf), " Type %s not supported ", type);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
631 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
632 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
633 jio_snprintf(errorbuf, sizeof(errorbuf), " Flag name for type %s should be alphanumeric ", type);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
634 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
635 return NULL;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
636 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
637
0
a61af66fc99e Initial load
duke
parents:
diff changeset
638 void CompilerOracle::parse_from_line(char* line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 if (line[0] == '\0') return;
a61af66fc99e Initial load
duke
parents:
diff changeset
640 if (line[0] == '#') return;
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 bool have_colon = (strstr(line, "::") != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
643 for (char* lp = line; *lp != '\0'; lp++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 // Allow '.' to separate the class name from the method name.
a61af66fc99e Initial load
duke
parents:
diff changeset
645 // This is the preferred spelling of methods:
a61af66fc99e Initial load
duke
parents:
diff changeset
646 // exclude java/lang/String.indexOf(I)I
a61af66fc99e Initial load
duke
parents:
diff changeset
647 // Allow ',' for spaces (eases command line quoting).
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // exclude,java/lang/String.indexOf
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // For backward compatibility, allow space as separator also.
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // exclude java/lang/String indexOf
a61af66fc99e Initial load
duke
parents:
diff changeset
651 // exclude,java/lang/String,indexOf
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // For easy cut-and-paste of method names, allow VM output format
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6204
diff changeset
653 // as produced by Method::print_short_name:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // exclude java.lang.String::indexOf
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // For simple implementation convenience here, convert them all to space.
a61af66fc99e Initial load
duke
parents:
diff changeset
656 if (have_colon) {
a61af66fc99e Initial load
duke
parents:
diff changeset
657 if (*lp == '.') *lp = '/'; // dots build the package prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
658 if (*lp == ':') *lp = ' ';
a61af66fc99e Initial load
duke
parents:
diff changeset
659 }
a61af66fc99e Initial load
duke
parents:
diff changeset
660 if (*lp == ',' || *lp == '.') *lp = ' ';
a61af66fc99e Initial load
duke
parents:
diff changeset
661 }
a61af66fc99e Initial load
duke
parents:
diff changeset
662
a61af66fc99e Initial load
duke
parents:
diff changeset
663 char* original_line = line;
a61af66fc99e Initial load
duke
parents:
diff changeset
664 int bytes_read;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 OracleCommand command = parse_command_name(line, &bytes_read);
a61af66fc99e Initial load
duke
parents:
diff changeset
666 line += bytes_read;
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
667 ResourceMark rm;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
668
2077
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
669 if (command == UnknownCommand) {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
670 ttyLocker ttyl;
2077
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
671 tty->print_cr("CompilerOracle: unrecognized line");
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
672 tty->print_cr(" \"%s\"", original_line);
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
673 return;
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
674 }
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
675
0
a61af66fc99e Initial load
duke
parents:
diff changeset
676 if (command == QuietCommand) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 _quiet = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
678 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
680
a61af66fc99e Initial load
duke
parents:
diff changeset
681 if (command == HelpCommand) {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
683 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 MethodMatcher::Mode c_match = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
687 MethodMatcher::Mode m_match = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
688 char class_name[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
689 char method_name[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
690 char sig[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
691 char errorbuf[1024];
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
692 const char* error_msg = NULL; // description of first error that appears
0
a61af66fc99e Initial load
duke
parents:
diff changeset
693 MethodMatcher* match = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 if (scan_line(line, class_name, &c_match, method_name, &m_match, &bytes_read, error_msg)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
696 EXCEPTION_MARK;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
697 Symbol* c_name = SymbolTable::new_symbol(class_name, CHECK);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
698 Symbol* m_name = SymbolTable::new_symbol(method_name, CHECK);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
699 Symbol* signature = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
700
a61af66fc99e Initial load
duke
parents:
diff changeset
701 line += bytes_read;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 // there might be a signature following the method.
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // signatures always begin with ( so match that by hand
2077
781072b12368 6765546: Wrong sscanf used to parse CompilerOracle command >= 32 characters could lead to crash
never
parents: 1972
diff changeset
704 if (1 == sscanf(line, "%*[ \t](%254[[);/" RANGEBASE "]%n", sig + 1, &bytes_read)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
705 sig[0] = '(';
a61af66fc99e Initial load
duke
parents:
diff changeset
706 line += bytes_read;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
707 signature = SymbolTable::new_symbol(sig, CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 if (command == OptionCommand) {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
711 // Look for trailing options.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
712 //
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
713 // Two types of trailing options are
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
714 // supported:
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
715 //
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
716 // (1) CompileCommand=option,Klass::method,flag
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
717 // (2) CompileCommand=option,Klass::method,type,flag,value
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
718 //
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
719 // Type (1) is used to support ciMethod::has_option("someflag")
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
720 // (i.e., to check if a flag "someflag" is enabled for a method).
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
721 //
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
722 // Type (2) is used to support options with a value. Values can have the
20430
119875f0fc67 8056964: JDK-8055286 changes are incomplete.
kvn
parents: 20429
diff changeset
723 // the following types: intx, uintx, bool, ccstr, and ccstrlist.
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
724 //
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
725 // For future extensions: extend scan_flag_and_value()
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
726 char option[256]; // stores flag for Type (1) and type of Type (2)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
727 while (sscanf(line, "%*[ \t]%255[a-zA-Z0-9]%n", option, &bytes_read) == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
728 if (match != NULL && !_quiet) {
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // Print out the last match added
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
730 ttyLocker ttyl;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
731 tty->print("CompilerOracle: %s ", command_names[command]);
a61af66fc99e Initial load
duke
parents:
diff changeset
732 match->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
733 }
a61af66fc99e Initial load
duke
parents:
diff changeset
734 line += bytes_read;
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
735
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
736 if (strcmp(option, "intx") == 0
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
737 || strcmp(option, "uintx") == 0
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
738 || strcmp(option, "bool") == 0
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
739 || strcmp(option, "ccstr") == 0
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
740 || strcmp(option, "ccstrlist") == 0
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
741 ) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
742
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
743 // Type (2) option: parse flag name and value.
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
744 match = scan_flag_and_value(option, line, bytes_read,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
745 c_name, c_match, m_name, m_match, signature,
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
746 errorbuf, sizeof(errorbuf));
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
747 if (match == NULL) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
748 error_msg = errorbuf;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
749 break;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
750 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
751 line += bytes_read;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
752 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
753 // Type (1) option
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
754 match = add_option_string(c_name, c_match, m_name, m_match, signature, option, true);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
755 }
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
756 } // while(
0
a61af66fc99e Initial load
duke
parents:
diff changeset
757 } else {
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
758 match = add_predicate(command, c_name, c_match, m_name, m_match, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
759 }
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
762 ttyLocker ttyl;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
763 if (error_msg != NULL) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
764 // an error has happened
0
a61af66fc99e Initial load
duke
parents:
diff changeset
765 tty->print_cr("CompilerOracle: unrecognized line");
a61af66fc99e Initial load
duke
parents:
diff changeset
766 tty->print_cr(" \"%s\"", original_line);
a61af66fc99e Initial load
duke
parents:
diff changeset
767 if (error_msg != NULL) {
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14223
diff changeset
768 tty->print_cr("%s", error_msg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
769 }
20429
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
770 } else {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
771 // check for remaining characters
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
772 bytes_read = 0;
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
773 sscanf(line, "%*[ \t]%n", &bytes_read);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
774 if (line[bytes_read] != '\0') {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
775 tty->print_cr("CompilerOracle: unrecognized line");
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
776 tty->print_cr(" \"%s\"", original_line);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
777 tty->print_cr(" Unrecognized text %s after command ", line);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
778 } else if (match != NULL && !_quiet) {
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
779 tty->print("CompilerOracle: %s ", command_names[command]);
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
780 match->print();
14b356bbca27 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 17937
diff changeset
781 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
782 }
a61af66fc99e Initial load
duke
parents:
diff changeset
783 }
a61af66fc99e Initial load
duke
parents:
diff changeset
784
6196
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
785 static const char* default_cc_file = ".hotspot_compiler";
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
786
0
a61af66fc99e Initial load
duke
parents:
diff changeset
787 static const char* cc_file() {
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
788 #ifdef ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
789 if (CompileCommandFile == NULL)
6196
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
790 return default_cc_file;
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
791 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
792 return CompileCommandFile;
a61af66fc99e Initial load
duke
parents:
diff changeset
793 }
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
794
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
795 bool CompilerOracle::has_command_file() {
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
796 return cc_file() != NULL;
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
797 }
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
798
0
a61af66fc99e Initial load
duke
parents:
diff changeset
799 bool CompilerOracle::_quiet = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 void CompilerOracle::parse_from_file() {
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
802 assert(has_command_file(), "command file must be specified");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
803 FILE* stream = fopen(cc_file(), "rt");
a61af66fc99e Initial load
duke
parents:
diff changeset
804 if (stream == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
805
a61af66fc99e Initial load
duke
parents:
diff changeset
806 char token[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
807 int pos = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
808 int c = getc(stream);
6901
fe4a4ea5bed9 7158804: Improve config file parsing
kamg
parents: 6900
diff changeset
809 while(c != EOF && pos < (int)(sizeof(token)-1)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
810 if (c == '\n') {
a61af66fc99e Initial load
duke
parents:
diff changeset
811 token[pos++] = '\0';
a61af66fc99e Initial load
duke
parents:
diff changeset
812 parse_from_line(token);
a61af66fc99e Initial load
duke
parents:
diff changeset
813 pos = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
814 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 token[pos++] = c;
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817 c = getc(stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
818 }
a61af66fc99e Initial load
duke
parents:
diff changeset
819 token[pos++] = '\0';
a61af66fc99e Initial load
duke
parents:
diff changeset
820 parse_from_line(token);
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 fclose(stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825 void CompilerOracle::parse_from_string(const char* str, void (*parse_line)(char*)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
826 char token[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
827 int pos = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
828 const char* sp = str;
a61af66fc99e Initial load
duke
parents:
diff changeset
829 int c = *sp++;
6901
fe4a4ea5bed9 7158804: Improve config file parsing
kamg
parents: 6900
diff changeset
830 while (c != '\0' && pos < (int)(sizeof(token)-1)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
831 if (c == '\n') {
a61af66fc99e Initial load
duke
parents:
diff changeset
832 token[pos++] = '\0';
a61af66fc99e Initial load
duke
parents:
diff changeset
833 parse_line(token);
a61af66fc99e Initial load
duke
parents:
diff changeset
834 pos = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
835 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
836 token[pos++] = c;
a61af66fc99e Initial load
duke
parents:
diff changeset
837 }
a61af66fc99e Initial load
duke
parents:
diff changeset
838 c = *sp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
839 }
a61af66fc99e Initial load
duke
parents:
diff changeset
840 token[pos++] = '\0';
a61af66fc99e Initial load
duke
parents:
diff changeset
841 parse_line(token);
a61af66fc99e Initial load
duke
parents:
diff changeset
842 }
a61af66fc99e Initial load
duke
parents:
diff changeset
843
a61af66fc99e Initial load
duke
parents:
diff changeset
844 void CompilerOracle::append_comment_to_file(const char* message) {
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
845 assert(has_command_file(), "command file must be specified");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
846 fileStream stream(fopen(cc_file(), "at"));
a61af66fc99e Initial load
duke
parents:
diff changeset
847 stream.print("# ");
a61af66fc99e Initial load
duke
parents:
diff changeset
848 for (int index = 0; message[index] != '\0'; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 stream.put(message[index]);
a61af66fc99e Initial load
duke
parents:
diff changeset
850 if (message[index] == '\n') stream.print("# ");
a61af66fc99e Initial load
duke
parents:
diff changeset
851 }
a61af66fc99e Initial load
duke
parents:
diff changeset
852 stream.cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
853 }
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 void CompilerOracle::append_exclude_to_file(methodHandle method) {
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
856 assert(has_command_file(), "command file must be specified");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
857 fileStream stream(fopen(cc_file(), "at"));
a61af66fc99e Initial load
duke
parents:
diff changeset
858 stream.print("exclude ");
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6909
diff changeset
859 method->method_holder()->name()->print_symbol_on(&stream);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
860 stream.print(".");
a61af66fc99e Initial load
duke
parents:
diff changeset
861 method->name()->print_symbol_on(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
862 method->signature()->print_symbol_on(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
863 stream.cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
864 stream.cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 void compilerOracle_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
869 CompilerOracle::parse_from_string(CompileCommand, CompilerOracle::parse_from_line);
a61af66fc99e Initial load
duke
parents:
diff changeset
870 CompilerOracle::parse_from_string(CompileOnly, CompilerOracle::parse_compile_only);
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
871 if (CompilerOracle::has_command_file()) {
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
872 CompilerOracle::parse_from_file();
6196
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
873 } else {
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
874 struct stat buf;
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
875 if (os::stat(default_cc_file, &buf) == 0) {
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
876 warning("%s file is present but has been ignored. "
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
877 "Run with -XX:CompileCommandFile=%s to load the file.",
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
878 default_cc_file, default_cc_file);
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
879 }
6150
1e76463170b3 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 2426
diff changeset
880 }
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
881 if (lists[PrintCommand] != NULL) {
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
882 if (PrintAssembly) {
6196
3759236eea14 7167142: Consider a warning when finding a .hotspotrc or .hotspot_compiler file that isn't used
kamg
parents: 6150
diff changeset
883 warning("CompileCommand and/or %s file contains 'print' commands, but PrintAssembly is also enabled", default_cc_file);
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
884 } else if (FLAG_IS_DEFAULT(DebugNonSafepoints)) {
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
885 warning("printing of assembly code is enabled; turning on DebugNonSafepoints to gain additional output");
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
886 DebugNonSafepoints = true;
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
887 }
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 0
diff changeset
888 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891
a61af66fc99e Initial load
duke
parents:
diff changeset
892 void CompilerOracle::parse_compile_only(char * line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
893 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 char name[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
895 const char* className = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
896 const char* methodName = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
897
a61af66fc99e Initial load
duke
parents:
diff changeset
898 bool have_colon = (strstr(line, "::") != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
899 char method_sep = have_colon ? ':' : '.';
a61af66fc99e Initial load
duke
parents:
diff changeset
900
a61af66fc99e Initial load
duke
parents:
diff changeset
901 if (Verbose) {
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14223
diff changeset
902 tty->print_cr("%s", line);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
903 }
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
906 while (*line != '\0') {
a61af66fc99e Initial load
duke
parents:
diff changeset
907 MethodMatcher::Mode c_match = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
908 MethodMatcher::Mode m_match = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
909
a61af66fc99e Initial load
duke
parents:
diff changeset
910 for (i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
911 i < 1024 && *line != '\0' && *line != method_sep && *line != ',' && !isspace(*line);
a61af66fc99e Initial load
duke
parents:
diff changeset
912 line++, i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
913 name[i] = *line;
a61af66fc99e Initial load
duke
parents:
diff changeset
914 if (name[i] == '.') name[i] = '/'; // package prefix uses '/'
a61af66fc99e Initial load
duke
parents:
diff changeset
915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
916
a61af66fc99e Initial load
duke
parents:
diff changeset
917 if (i > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
918 char* newName = NEW_RESOURCE_ARRAY( char, i + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
919 if (newName == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
920 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
921 strncpy(newName, name, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
922 newName[i] = '\0';
a61af66fc99e Initial load
duke
parents:
diff changeset
923
a61af66fc99e Initial load
duke
parents:
diff changeset
924 if (className == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
925 className = newName;
a61af66fc99e Initial load
duke
parents:
diff changeset
926 c_match = MethodMatcher::Prefix;
a61af66fc99e Initial load
duke
parents:
diff changeset
927 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
928 methodName = newName;
a61af66fc99e Initial load
duke
parents:
diff changeset
929 }
a61af66fc99e Initial load
duke
parents:
diff changeset
930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
931
a61af66fc99e Initial load
duke
parents:
diff changeset
932 if (*line == method_sep) {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 if (className == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
934 className = "";
a61af66fc99e Initial load
duke
parents:
diff changeset
935 c_match = MethodMatcher::Any;
a61af66fc99e Initial load
duke
parents:
diff changeset
936 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // foo/bar.blah is an exact match on foo/bar, bar.blah is a suffix match on bar
a61af66fc99e Initial load
duke
parents:
diff changeset
938 if (strchr(className, '/') != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
939 c_match = MethodMatcher::Exact;
a61af66fc99e Initial load
duke
parents:
diff changeset
940 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
941 c_match = MethodMatcher::Suffix;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 }
a61af66fc99e Initial load
duke
parents:
diff changeset
943 }
a61af66fc99e Initial load
duke
parents:
diff changeset
944 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // got foo or foo/bar
a61af66fc99e Initial load
duke
parents:
diff changeset
946 if (className == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
947 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
948 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
949 // got foo or foo/bar
a61af66fc99e Initial load
duke
parents:
diff changeset
950 if (strchr(className, '/') != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
951 c_match = MethodMatcher::Prefix;
a61af66fc99e Initial load
duke
parents:
diff changeset
952 } else if (className[0] == '\0') {
a61af66fc99e Initial load
duke
parents:
diff changeset
953 c_match = MethodMatcher::Any;
a61af66fc99e Initial load
duke
parents:
diff changeset
954 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 c_match = MethodMatcher::Substring;
a61af66fc99e Initial load
duke
parents:
diff changeset
956 }
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // each directive is terminated by , or NUL or . followed by NUL
a61af66fc99e Initial load
duke
parents:
diff changeset
961 if (*line == ',' || *line == '\0' || (line[0] == '.' && line[1] == '\0')) {
a61af66fc99e Initial load
duke
parents:
diff changeset
962 if (methodName == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
963 methodName = "";
a61af66fc99e Initial load
duke
parents:
diff changeset
964 if (*line != method_sep) {
a61af66fc99e Initial load
duke
parents:
diff changeset
965 m_match = MethodMatcher::Any;
a61af66fc99e Initial load
duke
parents:
diff changeset
966 }
a61af66fc99e Initial load
duke
parents:
diff changeset
967 }
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969 EXCEPTION_MARK;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
970 Symbol* c_name = SymbolTable::new_symbol(className, CHECK);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
971 Symbol* m_name = SymbolTable::new_symbol(methodName, CHECK);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2077
diff changeset
972 Symbol* signature = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
973
a61af66fc99e Initial load
duke
parents:
diff changeset
974 add_predicate(CompileOnlyCommand, c_name, c_match, m_name, m_match, signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
975 if (PrintVMOptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
976 tty->print("CompileOnly: compileonly ");
a61af66fc99e Initial load
duke
parents:
diff changeset
977 lists[CompileOnlyCommand]->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
978 }
a61af66fc99e Initial load
duke
parents:
diff changeset
979
a61af66fc99e Initial load
duke
parents:
diff changeset
980 className = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
981 methodName = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
982 }
a61af66fc99e Initial load
duke
parents:
diff changeset
983
a61af66fc99e Initial load
duke
parents:
diff changeset
984 line = *line == '\0' ? line : line + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
986 }