annotate src/share/vm/compiler/abstractCompiler.hpp @ 14225:16e101c8691f

8029305: add type tag to AbstractCompiler Reviewed-by: iveresov, kvn
author twisti
date Mon, 06 Jan 2014 17:23:07 -0800
parents de6a9e811145
children d8041d695d19
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
14225
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
2 * Copyright (c) 1999, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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: 1692
diff changeset
25 #ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
26 #define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
28 #include "ci/compilerInterface.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
29
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 1972
diff changeset
30 class AbstractCompiler : public CHeapObj<mtCompiler> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 private:
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
32 volatile int _num_compiler_threads;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 protected:
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
35 volatile int _compiler_state;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Used for tracking global state of compiler runtime initialization
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
37 enum { uninitialized, initializing, initialized, failed, shut_down };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
39 // This method returns true for the first compiler thread that reaches that methods.
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
40 // This thread will initialize the compiler runtime.
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
41 bool should_perform_init();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42
14225
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
43 // The (closed set) of concrete compiler classes.
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
44 enum Type {
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
45 none,
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
46 c1,
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
47 c2,
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
48 shark
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
49 };
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
50
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
51 private:
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
52 Type _type;
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
53
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public:
14225
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
55 AbstractCompiler(Type type) : _type(type), _compiler_state(uninitialized), _num_compiler_threads(0) {}
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
56
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
57 // This function determines the compiler thread that will perform the
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
58 // shutdown of the corresponding compiler runtime.
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
59 bool should_perform_shutdown();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Name of this compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
62 virtual const char* name() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Missing feature tests
a61af66fc99e Initial load
duke
parents:
diff changeset
65 virtual bool supports_native() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 virtual bool supports_osr () { return true; }
7601
606eada1bf86 8005820: Shark: enable JSR292 support
twisti
parents: 6842
diff changeset
67 virtual bool can_compile_method(methodHandle method) { return true; }
14225
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
68
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
69 // Compiler type queries.
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
70 bool is_c1() { return _type == c1; }
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
71 bool is_c2() { return _type == c2; }
16e101c8691f 8029305: add type tag to AbstractCompiler
twisti
parents: 14223
diff changeset
72 bool is_shark() { return _type == shark; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Customization
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
75 virtual void initialize () = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
77 void set_num_compiler_threads(int num) { _num_compiler_threads = num; }
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
78 int num_compiler_threads() { return _num_compiler_threads; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
80 // Get/set state of compiler objects
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
81 bool is_initialized() { return _compiler_state == initialized; }
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
82 bool is_failed () { return _compiler_state == failed;}
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
83 void set_state (int state);
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
84 void set_shut_down () { set_state(shut_down); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Compilation entry point for methods
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
86 virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Print compilation timers and statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
92 virtual void print_timers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
96
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
97 #endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP