author | pliden |
Wed, 13 May 2015 15:16:06 +0200 | |
changeset 30764 | fec48bf5a827 |
parent 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
4013 | 1 |
/* |
30764 | 2 |
* Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. |
4013 | 3 |
* Copyright 2007, 2008, 2009 Red Hat, Inc. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
21 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4013
diff
changeset
|
22 |
* questions. |
4013 | 23 |
* |
24 |
*/ |
|
25 |
||
7397 | 26 |
#include "precompiled.hpp" |
27 |
#include "assembler_zero.inline.hpp" |
|
30764 | 28 |
#include "gc/shared/cardTableModRefBS.hpp" |
29 |
#include "gc/shared/collectedHeap.inline.hpp" |
|
7397 | 30 |
#include "interpreter/interpreter.hpp" |
31 |
#include "memory/resourceArea.hpp" |
|
32 |
#include "prims/methodHandles.hpp" |
|
33 |
#include "runtime/biasedLocking.hpp" |
|
34 |
#include "runtime/interfaceSupport.hpp" |
|
35 |
#include "runtime/objectMonitor.hpp" |
|
36 |
#include "runtime/os.hpp" |
|
37 |
#include "runtime/sharedRuntime.hpp" |
|
38 |
#include "runtime/stubRoutines.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14837
diff
changeset
|
39 |
#include "utilities/macros.hpp" |
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14837
diff
changeset
|
40 |
#if INCLUDE_ALL_GCS |
30764 | 41 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
42 |
#include "gc/g1/g1SATBCardTableModRefBS.hpp" |
|
43 |
#include "gc/g1/heapRegion.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14837
diff
changeset
|
44 |
#endif // INCLUDE_ALL_GCS |
4013 | 45 |
|
46 |
int AbstractAssembler::code_fill_byte() { |
|
47 |
return 0; |
|
48 |
} |
|
49 |
||
14631
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
14622
diff
changeset
|
50 |
#ifdef ASSERT |
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
14622
diff
changeset
|
51 |
bool AbstractAssembler::pd_check_instruction_mark() { |
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
14622
diff
changeset
|
52 |
ShouldNotCallThis(); |
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
15482
diff
changeset
|
53 |
return false; |
14631
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
14622
diff
changeset
|
54 |
} |
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
14622
diff
changeset
|
55 |
#endif |
526804361522
8003250: SPARC: move MacroAssembler into separate file
twisti
parents:
14622
diff
changeset
|
56 |
|
4013 | 57 |
void Assembler::pd_patch_instruction(address branch, address target) { |
58 |
ShouldNotCallThis(); |
|
59 |
} |
|
60 |
||
61 |
void MacroAssembler::align(int modulus) { |
|
62 |
while (offset() % modulus != 0) |
|
14837
a75c3082d106
8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents:
14827
diff
changeset
|
63 |
emit_int8(AbstractAssembler::code_fill_byte()); |
4013 | 64 |
} |
65 |
||
66 |
void MacroAssembler::bang_stack_with_offset(int offset) { |
|
67 |
ShouldNotCallThis(); |
|
68 |
} |
|
69 |
||
70 |
void MacroAssembler::advance(int bytes) { |
|
14822 | 71 |
code_section()->set_end(code_section()->end() + bytes); |
4013 | 72 |
} |
73 |
||
74 |
RegisterOrConstant MacroAssembler::delayed_value_impl( |
|
75 |
intptr_t* delayed_value_addr, Register tmpl, int offset) { |
|
76 |
ShouldNotCallThis(); |
|
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
15482
diff
changeset
|
77 |
return RegisterOrConstant(); |
4013 | 78 |
} |
79 |
||
80 |
void MacroAssembler::store_oop(jobject obj) { |
|
81 |
code_section()->relocate(pc(), oop_Relocation::spec_for_immediate()); |
|
82 |
emit_address((address) obj); |
|
83 |
} |
|
84 |
||
14622 | 85 |
void MacroAssembler::store_Metadata(Metadata* md) { |
86 |
code_section()->relocate(pc(), metadata_Relocation::spec_for_immediate()); |
|
87 |
emit_address((address) md); |
|
88 |
} |
|
89 |
||
4013 | 90 |
static void should_not_call() { |
91 |
report_should_not_call(__FILE__, __LINE__); |
|
92 |
} |
|
93 |
||
94 |
address ShouldNotCallThisStub() { |
|
95 |
return (address) should_not_call; |
|
96 |
} |
|
97 |
||
98 |
address ShouldNotCallThisEntry() { |
|
99 |
return (address) should_not_call; |
|
100 |
} |