author | anoll |
Fri, 25 Oct 2013 22:57:13 +0200 | |
changeset 21204 | 1c993523cf85 |
parent 20707 | b3b658c6d1f8 |
child 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13963
e5b53c306fb5
7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents:
13195
diff
changeset
|
2 |
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP |
26 |
#define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP |
|
27 |
||
28 |
#include "ci/compilerInterface.hpp" |
|
29 |
||
13195 | 30 |
class AbstractCompiler : public CHeapObj<mtCompiler> { |
1 | 31 |
private: |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
32 |
volatile int _num_compiler_threads; |
1 | 33 |
|
34 |
protected: |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
35 |
volatile int _compiler_state; |
1 | 36 |
// Used for tracking global state of compiler runtime initialization |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
37 |
enum { uninitialized, initializing, initialized, failed, shut_down }; |
1 | 38 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
39 |
// This method returns true for the first compiler thread that reaches that methods. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
40 |
// This thread will initialize the compiler runtime. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
41 |
bool should_perform_init(); |
1 | 42 |
|
43 |
public: |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
44 |
AbstractCompiler() : _compiler_state(uninitialized), _num_compiler_threads(0) {} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
45 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
46 |
// This function determines the compiler thread that will perform the |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
47 |
// shutdown of the corresponding compiler runtime. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
48 |
bool should_perform_shutdown(); |
1 | 49 |
|
50 |
// Name of this compiler |
|
51 |
virtual const char* name() = 0; |
|
52 |
||
53 |
// Missing feature tests |
|
54 |
virtual bool supports_native() { return true; } |
|
55 |
virtual bool supports_osr () { return true; } |
|
15207 | 56 |
virtual bool can_compile_method(methodHandle method) { return true; } |
6187 | 57 |
#if defined(TIERED) || ( !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK)) |
1 | 58 |
virtual bool is_c1 () { return false; } |
59 |
virtual bool is_c2 () { return false; } |
|
6187 | 60 |
virtual bool is_shark() { return false; } |
1 | 61 |
#else |
62 |
#ifdef COMPILER1 |
|
63 |
bool is_c1 () { return true; } |
|
64 |
bool is_c2 () { return false; } |
|
6187 | 65 |
bool is_shark() { return false; } |
1 | 66 |
#endif // COMPILER1 |
67 |
#ifdef COMPILER2 |
|
68 |
bool is_c1 () { return false; } |
|
69 |
bool is_c2 () { return true; } |
|
6187 | 70 |
bool is_shark() { return false; } |
1 | 71 |
#endif // COMPILER2 |
6187 | 72 |
#ifdef SHARK |
73 |
bool is_c1 () { return false; } |
|
74 |
bool is_c2 () { return false; } |
|
75 |
bool is_shark() { return true; } |
|
76 |
#endif // SHARK |
|
1 | 77 |
#endif // TIERED |
78 |
||
79 |
// Customization |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
80 |
virtual void initialize () = 0; |
1 | 81 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
82 |
void set_num_compiler_threads(int num) { _num_compiler_threads = num; } |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
83 |
int num_compiler_threads() { return _num_compiler_threads; } |
1 | 84 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
85 |
// Get/set state of compiler objects |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
86 |
bool is_initialized() { return _compiler_state == initialized; } |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
87 |
bool is_failed () { return _compiler_state == failed;} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
88 |
void set_state (int state); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
89 |
void set_shut_down () { set_state(shut_down); } |
1 | 90 |
// Compilation entry point for methods |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
91 |
virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) { |
1 | 92 |
ShouldNotReachHere(); |
93 |
} |
|
94 |
||
95 |
||
96 |
// Print compilation timers and statistics |
|
97 |
virtual void print_timers() { |
|
98 |
ShouldNotReachHere(); |
|
99 |
} |
|
100 |
}; |
|
7397 | 101 |
|
102 |
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP |