author | prr |
Wed, 15 Apr 2015 14:28:43 -0700 | |
changeset 30465 | a77083748efc |
parent 25950 | b5c40ed1d349 |
child 33066 | d98eab8215c4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
25950
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
2 |
* Copyright (c) 1997, 2014, 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:
2534
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2534
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:
2534
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef CPU_SPARC_VM_INTERPRETERGENERATOR_SPARC_HPP |
26 |
#define CPU_SPARC_VM_INTERPRETERGENERATOR_SPARC_HPP |
|
27 |
||
1 | 28 |
friend class AbstractInterpreterGenerator; |
29 |
||
30 |
private: |
|
31 |
||
32 |
address generate_normal_entry(bool synchronized); |
|
33 |
address generate_native_entry(bool synchronized); |
|
34 |
address generate_abstract_entry(void); |
|
25950
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
35 |
// there are no math intrinsics on sparc |
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
36 |
address generate_math_entry(AbstractInterpreter::MethodKind kind) { return NULL; } |
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
37 |
address generate_jump_to_normal_entry(void); |
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
38 |
address generate_accessor_entry(void) { return generate_jump_to_normal_entry(); } |
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
39 |
address generate_empty_entry(void) { return generate_jump_to_normal_entry(); } |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
7397
diff
changeset
|
40 |
address generate_Reference_get_entry(void); |
1 | 41 |
void lock_method(void); |
42 |
void save_native_result(void); |
|
43 |
void restore_native_result(void); |
|
44 |
||
45 |
void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue); |
|
46 |
void generate_counter_overflow(Label& Lcontinue); |
|
7397 | 47 |
|
25950
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
48 |
// Not supported |
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
49 |
address generate_CRC32_update_entry() { return NULL; } |
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
13963
diff
changeset
|
50 |
address generate_CRC32_updateBytes_entry(AbstractInterpreter::MethodKind kind) { return NULL; } |
7397 | 51 |
#endif // CPU_SPARC_VM_INTERPRETERGENERATOR_SPARC_HPP |