annotate src/cpu/sparc/vm/c1_MacroAssembler_sparc.hpp @ 20304:a22acf6d7598

8048112: G1 Full GC needs to support the case when the very first region is not available Summary: Refactor preparation for compaction during Full GC so that it lazily initializes the first compaction point. This also avoids problems later when the first region may not be committed. Also reviewed by K. Barrett. Reviewed-by: brutisso
author tschatzl
date Mon, 21 Jul 2014 10:00:31 +0200
parents b1a2afa37ec4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2100
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
2 * Copyright (c) 1999, 2011, 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: 1552
diff changeset
25 #ifndef CPU_SPARC_VM_C1_MACROASSEMBLER_SPARC_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define CPU_SPARC_VM_C1_MACROASSEMBLER_SPARC_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 void pd_init() { /* nothing to do */ }
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
31 void try_allocate(
a61af66fc99e Initial load
duke
parents:
diff changeset
32 Register obj, // result: pointer to object after successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
33 Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
34 int con_size_in_bytes, // object size in bytes if known at compile time
a61af66fc99e Initial load
duke
parents:
diff changeset
35 Register t1, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Register t2, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Label& slow_case // continuation point if fast allocation fails
a61af66fc99e Initial load
duke
parents:
diff changeset
38 );
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 void initialize_body(Register base, Register index);
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // locking/unlocking
a61af66fc99e Initial load
duke
parents:
diff changeset
44 void lock_object (Register Rmark, Register Roop, Register Rbox, Register Rscratch, Label& slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void unlock_object(Register Rmark, Register Roop, Register Rbox, Label& slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 void initialize_object(
a61af66fc99e Initial load
duke
parents:
diff changeset
48 Register obj, // result: pointer to object after successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Register klass, // object klass
a61af66fc99e Initial load
duke
parents:
diff changeset
50 Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int con_size_in_bytes, // object size in bytes if known at compile time
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Register t1, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
53 Register t2 // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
54 );
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // allocation of fixed-size objects
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // (can also be used to allocate fixed-size arrays, by setting
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // hdr_size correctly and storing the array length afterwards)
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void allocate_object(
a61af66fc99e Initial load
duke
parents:
diff changeset
60 Register obj, // result: pointer to object after successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
61 Register t1, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
62 Register t2, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Register t3, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
64 int hdr_size, // object header size in words
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int obj_size, // object size in words
a61af66fc99e Initial load
duke
parents:
diff changeset
66 Register klass, // object klass
a61af66fc99e Initial load
duke
parents:
diff changeset
67 Label& slow_case // continuation point if fast allocation fails
a61af66fc99e Initial load
duke
parents:
diff changeset
68 );
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 max_array_allocation_length = 0x01000000 // sparc friendly value, requires sethi only
a61af66fc99e Initial load
duke
parents:
diff changeset
72 };
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // allocation of arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void allocate_array(
a61af66fc99e Initial load
duke
parents:
diff changeset
76 Register obj, // result: pointer to array after successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
77 Register len, // array length
a61af66fc99e Initial load
duke
parents:
diff changeset
78 Register t1, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
79 Register t2, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
80 Register t3, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
81 int hdr_size, // object header size in words
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int elt_size, // element size in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
83 Register klass, // object klass
a61af66fc99e Initial load
duke
parents:
diff changeset
84 Label& slow_case // continuation point if fast allocation fails
a61af66fc99e Initial load
duke
parents:
diff changeset
85 );
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // invalidates registers in this window
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void invalidate_registers(bool iregisters, bool lregisters, bool oregisters,
a61af66fc99e Initial load
duke
parents:
diff changeset
89 Register preserve1 = noreg, Register preserve2 = noreg);
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
90
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
91 #endif // CPU_SPARC_VM_C1_MACROASSEMBLER_SPARC_HPP