author | coleenp |
Thu, 10 Jan 2019 15:13:51 -0500 | |
changeset 53244 | 9807daeb47c4 |
parent 52351 | 0ecb4e520110 |
permissions | -rw-r--r-- |
42664 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52351
diff
changeset
|
2 |
* Copyright (c) 2008, 2019, Oracle and/or its affiliates. All rights reserved. |
42664 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52351
diff
changeset
|
25 |
#ifndef CPU_ARM_STUBROUTINES_ARM_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52351
diff
changeset
|
26 |
#define CPU_ARM_STUBROUTINES_ARM_HPP |
42664 | 27 |
|
28 |
// This file holds the platform specific parts of the StubRoutines |
|
29 |
// definition. See stubRoutines.hpp for a description on how to |
|
30 |
// extend it. |
|
31 |
||
32 |
enum platform_dependent_constants { |
|
33 |
code_size1 = 9000, // simply increase if too small (assembler will crash if too small) |
|
34 |
code_size2 = 22000 // simply increase if too small (assembler will crash if too small) |
|
35 |
}; |
|
36 |
||
37 |
class Arm { |
|
38 |
friend class StubGenerator; |
|
39 |
friend class VMStructs; |
|
40 |
||
41 |
private: |
|
42 |
||
43 |
static address _idiv_irem_entry; |
|
44 |
static address _partial_subtype_check; |
|
45 |
||
46 |
public: |
|
47 |
||
48 |
static address idiv_irem_entry() { return _idiv_irem_entry; } |
|
49 |
static address partial_subtype_check() { return _partial_subtype_check; } |
|
50 |
}; |
|
51 |
||
52 |
static bool returns_to_call_stub(address return_pc) { |
|
53 |
return return_pc == _call_stub_return_address; |
|
54 |
} |
|
55 |
||
56 |
static address _atomic_load_long_entry; |
|
57 |
static address _atomic_store_long_entry; |
|
58 |
||
59 |
static address atomic_load_long_entry() { return _atomic_load_long_entry; } |
|
60 |
static address atomic_store_long_entry() { return _atomic_store_long_entry; } |
|
61 |
||
62 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52351
diff
changeset
|
63 |
#endif // CPU_ARM_STUBROUTINES_ARM_HPP |