annotate src/share/vm/compiler/abstractCompiler.hpp @ 12880:469216acdb28

8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash Summary: Ensure ensure correct initialization of compiler runtime Reviewed-by: kvn, twisti
author anoll
date Thu, 10 Oct 2013 15:44:12 +0200
parents 606eada1bf86
children 096c224171c4 de6a9e811145
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6842
b9a9ed0f8eeb 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 6197
diff changeset
2 * Copyright (c) 1999, 2012, 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
a61af66fc99e Initial load
duke
parents:
diff changeset
43 public:
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
44 AbstractCompiler() : _compiler_state(uninitialized), _num_compiler_threads(0) {}
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
45
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
46 // This function determines the compiler thread that will perform the
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
47 // shutdown of the corresponding compiler runtime.
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
48 bool should_perform_shutdown();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Name of this compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
51 virtual const char* name() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Missing feature tests
a61af66fc99e Initial load
duke
parents:
diff changeset
54 virtual bool supports_native() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
55 virtual bool supports_osr () { return true; }
7601
606eada1bf86 8005820: Shark: enable JSR292 support
twisti
parents: 6842
diff changeset
56 virtual bool can_compile_method(methodHandle method) { return true; }
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
57 #if defined(TIERED) || ( !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 virtual bool is_c1 () { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 virtual bool is_c2 () { return false; }
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
60 virtual bool is_shark() { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #ifdef COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
63 bool is_c1 () { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 bool is_c2 () { return false; }
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
65 bool is_shark() { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 #endif // COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
68 bool is_c1 () { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 bool is_c2 () { return true; }
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
70 bool is_shark() { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 #endif // COMPILER2
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
72 #ifdef SHARK
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
73 bool is_c1 () { return false; }
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
74 bool is_c2 () { return false; }
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
75 bool is_shark() { return true; }
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1552
diff changeset
76 #endif // SHARK
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Customization
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
80 virtual void initialize () = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
82 void set_num_compiler_threads(int num) { _num_compiler_threads = num; }
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
83 int num_compiler_threads() { return _num_compiler_threads; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
85 // Get/set state of compiler objects
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
86 bool is_initialized() { return _compiler_state == initialized; }
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
87 bool is_failed () { return _compiler_state == failed;}
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
88 void set_state (int state);
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
89 void set_shut_down () { set_state(shut_down); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Compilation entry point for methods
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 7601
diff changeset
91 virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Print compilation timers and statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
97 virtual void print_timers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
101
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1692
diff changeset
102 #endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP