src/share/vm/c1/c1_FrameMap.hpp

Tue, 18 Jun 2013 12:31:07 -0700

author
johnc
date
Tue, 18 Jun 2013 12:31:07 -0700
changeset 5277
01522ca68fc7
parent 4668
3c9db54c2660
child 6198
55fb97c4c58d
permissions
-rw-r--r--

8015237: Parallelize string table scanning during strong root processing
Summary: Parallelize the scanning of the intern string table by having each GC worker claim a given number of buckets. Changes were also reviewed by Per Liden <per.liden@oracle.com>.
Reviewed-by: tschatzl, stefank, twisti

duke@435 1 /*
mikael@4153 2 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_C1_C1_FRAMEMAP_HPP
stefank@2314 26 #define SHARE_VM_C1_C1_FRAMEMAP_HPP
stefank@2314 27
stefank@2314 28 #include "asm/assembler.hpp"
stefank@2314 29 #include "c1/c1_Defs.hpp"
stefank@2314 30 #include "c1/c1_LIR.hpp"
stefank@2314 31 #include "code/vmreg.hpp"
stefank@2314 32 #include "memory/allocation.hpp"
stefank@2314 33 #include "runtime/frame.hpp"
stefank@2314 34 #include "runtime/synchronizer.hpp"
stefank@2314 35 #include "utilities/globalDefinitions.hpp"
stefank@2314 36
duke@435 37 class ciMethod;
duke@435 38 class CallingConvention;
duke@435 39 class BasicTypeArray;
duke@435 40 class BasicTypeList;
duke@435 41
duke@435 42 //--------------------------------------------------------
duke@435 43 // FrameMap
duke@435 44 //--------------------------------------------------------
duke@435 45
duke@435 46 // This class is responsible of mapping items (locals, monitors, spill
duke@435 47 // slots and registers to their frame location
duke@435 48 //
duke@435 49 // The monitors are specified by a consecutive index, although each monitor entry
duke@435 50 // occupies two words. The monitor_index is 0.._num_monitors
duke@435 51 // The spill index is similar to local index; it is in range 0..(open)
duke@435 52 //
duke@435 53 // The CPU registers are mapped using a fixed table; register with number 0
duke@435 54 // is the most used one.
duke@435 55
duke@435 56
duke@435 57 // stack grow direction --> SP
duke@435 58 // +----------+---+----------+-------+------------------------+-----+
duke@435 59 // |arguments | x | monitors | spill | reserved argument area | ABI |
duke@435 60 // +----------+---+----------+-------+------------------------+-----+
duke@435 61 //
duke@435 62 // x = ABI area (SPARC) or return adress and link (i486)
duke@435 63 // ABI = ABI area (SPARC) or nothing (i486)
duke@435 64
duke@435 65
duke@435 66 class LIR_OprDesc;
duke@435 67 typedef LIR_OprDesc* LIR_Opr;
duke@435 68
duke@435 69
duke@435 70 class FrameMap : public CompilationResourceObj {
duke@435 71 public:
duke@435 72 enum {
duke@435 73 nof_cpu_regs = pd_nof_cpu_regs_frame_map,
duke@435 74 nof_fpu_regs = pd_nof_fpu_regs_frame_map,
duke@435 75
duke@435 76 nof_cpu_regs_reg_alloc = pd_nof_cpu_regs_reg_alloc,
duke@435 77 nof_fpu_regs_reg_alloc = pd_nof_fpu_regs_reg_alloc,
duke@435 78
iveresov@2344 79 max_nof_caller_save_cpu_regs = pd_nof_caller_save_cpu_regs_frame_map,
iveresov@2344 80 nof_caller_save_fpu_regs = pd_nof_caller_save_fpu_regs_frame_map,
duke@435 81
duke@435 82 spill_slot_size_in_bytes = 4
duke@435 83 };
duke@435 84
stefank@2314 85 #ifdef TARGET_ARCH_x86
stefank@2314 86 # include "c1_FrameMap_x86.hpp"
stefank@2314 87 #endif
stefank@2314 88 #ifdef TARGET_ARCH_sparc
stefank@2314 89 # include "c1_FrameMap_sparc.hpp"
stefank@2314 90 #endif
bobv@2508 91 #ifdef TARGET_ARCH_arm
bobv@2508 92 # include "c1_FrameMap_arm.hpp"
bobv@2508 93 #endif
bobv@2508 94 #ifdef TARGET_ARCH_ppc
bobv@2508 95 # include "c1_FrameMap_ppc.hpp"
bobv@2508 96 #endif
stefank@2314 97
duke@435 98
duke@435 99 friend class LIR_OprDesc;
duke@435 100
duke@435 101 private:
duke@435 102 static bool _init_done;
duke@435 103 static Register _cpu_rnr2reg [nof_cpu_regs];
duke@435 104 static int _cpu_reg2rnr [nof_cpu_regs];
duke@435 105
iveresov@2344 106 static LIR_Opr _caller_save_cpu_regs [max_nof_caller_save_cpu_regs];
duke@435 107 static LIR_Opr _caller_save_fpu_regs [nof_caller_save_fpu_regs];
duke@435 108
duke@435 109 int _framesize;
duke@435 110 int _argcount;
duke@435 111 int _num_monitors;
duke@435 112 int _num_spills;
duke@435 113 int _reserved_argument_area_size;
duke@435 114 int _oop_map_arg_count;
duke@435 115
duke@435 116 CallingConvention* _incoming_arguments;
duke@435 117 intArray* _argument_locations;
duke@435 118
duke@435 119 void check_spill_index (int spill_index) const { assert(spill_index >= 0, "bad index"); }
duke@435 120 void check_monitor_index (int monitor_index) const { assert(monitor_index >= 0 &&
duke@435 121 monitor_index < _num_monitors, "bad index"); }
duke@435 122
duke@435 123 static Register cpu_rnr2reg (int rnr) {
duke@435 124 assert(_init_done, "tables not initialized");
duke@435 125 debug_only(cpu_range_check(rnr);)
duke@435 126 return _cpu_rnr2reg[rnr];
duke@435 127 }
duke@435 128
duke@435 129 static int cpu_reg2rnr (Register reg) {
duke@435 130 assert(_init_done, "tables not initialized");
duke@435 131 debug_only(cpu_range_check(reg->encoding());)
duke@435 132 return _cpu_reg2rnr[reg->encoding()];
duke@435 133 }
duke@435 134
duke@435 135 static void map_register(int rnr, Register reg) {
duke@435 136 debug_only(cpu_range_check(rnr);)
duke@435 137 debug_only(cpu_range_check(reg->encoding());)
duke@435 138 _cpu_rnr2reg[rnr] = reg;
duke@435 139 _cpu_reg2rnr[reg->encoding()] = rnr;
duke@435 140 }
duke@435 141
duke@435 142 void update_reserved_argument_area_size (int size) {
duke@435 143 assert(size >= 0, "check");
duke@435 144 _reserved_argument_area_size = MAX2(_reserved_argument_area_size, size);
duke@435 145 }
duke@435 146
duke@435 147 protected:
duke@435 148 #ifndef PRODUCT
duke@435 149 static void cpu_range_check (int rnr) { assert(0 <= rnr && rnr < nof_cpu_regs, "cpu register number is too big"); }
duke@435 150 static void fpu_range_check (int rnr) { assert(0 <= rnr && rnr < nof_fpu_regs, "fpu register number is too big"); }
duke@435 151 #endif
duke@435 152
duke@435 153
duke@435 154 ByteSize sp_offset_for_monitor_base(const int idx) const;
duke@435 155
duke@435 156 Address make_new_address(ByteSize sp_offset) const;
duke@435 157
duke@435 158 ByteSize sp_offset_for_slot(const int idx) const;
duke@435 159 ByteSize sp_offset_for_double_slot(const int idx) const;
duke@435 160 ByteSize sp_offset_for_spill(const int idx) const;
duke@435 161 ByteSize sp_offset_for_monitor_lock(int monitor_index) const;
duke@435 162 ByteSize sp_offset_for_monitor_object(int monitor_index) const;
duke@435 163
duke@435 164 VMReg sp_offset2vmreg(ByteSize offset) const;
duke@435 165
duke@435 166 // platform dependent hook used to check that frame is properly
duke@435 167 // addressable on the platform. Used by sparc to verify that all
duke@435 168 // stack addresses are expressable in a simm13.
duke@435 169 bool validate_frame();
duke@435 170
duke@435 171 static LIR_Opr map_to_opr(BasicType type, VMRegPair* reg, bool incoming);
duke@435 172
duke@435 173 public:
duke@435 174 // Opr representing the stack_pointer on this platform
duke@435 175 static LIR_Opr stack_pointer();
duke@435 176
twisti@1919 177 // JSR 292
twisti@1919 178 static LIR_Opr method_handle_invoke_SP_save_opr();
twisti@1919 179
duke@435 180 static BasicTypeArray* signature_type_array_for(const ciMethod* method);
duke@435 181
duke@435 182 // for outgoing calls, these also update the reserved area to
duke@435 183 // include space for arguments and any ABI area.
twisti@3969 184 CallingConvention* c_calling_convention(const BasicTypeArray* signature);
twisti@3969 185 CallingConvention* java_calling_convention(const BasicTypeArray* signature, bool outgoing);
duke@435 186
duke@435 187 // deopt support
duke@435 188 ByteSize sp_offset_for_orig_pc() { return sp_offset_for_monitor_base(_num_monitors); }
duke@435 189
duke@435 190 static LIR_Opr as_opr(Register r) {
duke@435 191 return LIR_OprFact::single_cpu(cpu_reg2rnr(r));
duke@435 192 }
duke@435 193 static LIR_Opr as_oop_opr(Register r) {
duke@435 194 return LIR_OprFact::single_cpu_oop(cpu_reg2rnr(r));
duke@435 195 }
duke@435 196
roland@4051 197 static LIR_Opr as_metadata_opr(Register r) {
roland@4051 198 return LIR_OprFact::single_cpu_metadata(cpu_reg2rnr(r));
roland@4051 199 }
roland@4051 200
duke@435 201 FrameMap(ciMethod* method, int monitors, int reserved_argument_area_size);
duke@435 202 bool finalize_frame(int nof_slots);
duke@435 203
duke@435 204 int reserved_argument_area_size () const { return _reserved_argument_area_size; }
duke@435 205 int framesize () const { assert(_framesize != -1, "hasn't been calculated"); return _framesize; }
duke@435 206 ByteSize framesize_in_bytes () const { return in_ByteSize(framesize() * 4); }
duke@435 207 int num_monitors () const { return _num_monitors; }
duke@435 208 int num_spills () const { assert(_num_spills >= 0, "not set"); return _num_spills; }
duke@435 209 int argcount () const { assert(_argcount >= 0, "not set"); return _argcount; }
duke@435 210
duke@435 211 int oop_map_arg_count() const { return _oop_map_arg_count; }
duke@435 212
duke@435 213 CallingConvention* incoming_arguments() const { return _incoming_arguments; }
duke@435 214
duke@435 215 // convenience routines
duke@435 216 Address address_for_slot(int index, int sp_adjust = 0) const {
duke@435 217 return make_new_address(sp_offset_for_slot(index) + in_ByteSize(sp_adjust));
duke@435 218 }
duke@435 219 Address address_for_double_slot(int index, int sp_adjust = 0) const {
duke@435 220 return make_new_address(sp_offset_for_double_slot(index) + in_ByteSize(sp_adjust));
duke@435 221 }
duke@435 222 Address address_for_monitor_lock(int monitor_index) const {
duke@435 223 return make_new_address(sp_offset_for_monitor_lock(monitor_index));
duke@435 224 }
duke@435 225 Address address_for_monitor_object(int monitor_index) const {
duke@435 226 return make_new_address(sp_offset_for_monitor_object(monitor_index));
duke@435 227 }
duke@435 228
duke@435 229 // Creates Location describing desired slot and returns it via pointer
duke@435 230 // to Location object. Returns true if the stack frame offset was legal
duke@435 231 // (as defined by Location::legal_offset_in_bytes()), false otherwise.
duke@435 232 // Do not use the returned location if this returns false.
duke@435 233 bool location_for_sp_offset(ByteSize byte_offset_from_sp,
duke@435 234 Location::Type loc_type, Location* loc) const;
duke@435 235
duke@435 236 bool location_for_monitor_lock (int monitor_index, Location* loc) const {
duke@435 237 return location_for_sp_offset(sp_offset_for_monitor_lock(monitor_index), Location::normal, loc);
duke@435 238 }
duke@435 239 bool location_for_monitor_object(int monitor_index, Location* loc) const {
duke@435 240 return location_for_sp_offset(sp_offset_for_monitor_object(monitor_index), Location::oop, loc);
duke@435 241 }
duke@435 242 bool locations_for_slot (int index, Location::Type loc_type,
duke@435 243 Location* loc, Location* second = NULL) const;
duke@435 244
duke@435 245 VMReg slot_regname(int index) const {
duke@435 246 return sp_offset2vmreg(sp_offset_for_slot(index));
duke@435 247 }
duke@435 248 VMReg monitor_object_regname(int monitor_index) const {
duke@435 249 return sp_offset2vmreg(sp_offset_for_monitor_object(monitor_index));
duke@435 250 }
duke@435 251 VMReg regname(LIR_Opr opr) const;
duke@435 252
duke@435 253 static LIR_Opr caller_save_cpu_reg_at(int i) {
iveresov@2344 254 assert(i >= 0 && i < max_nof_caller_save_cpu_regs, "out of bounds");
duke@435 255 return _caller_save_cpu_regs[i];
duke@435 256 }
duke@435 257
duke@435 258 static LIR_Opr caller_save_fpu_reg_at(int i) {
duke@435 259 assert(i >= 0 && i < nof_caller_save_fpu_regs, "out of bounds");
duke@435 260 return _caller_save_fpu_regs[i];
duke@435 261 }
duke@435 262
iveresov@1939 263 static void initialize();
duke@435 264 };
duke@435 265
duke@435 266 // CallingConvention
duke@435 267 //--------------------------------------------------------
duke@435 268
duke@435 269 class CallingConvention: public ResourceObj {
duke@435 270 private:
duke@435 271 LIR_OprList* _args;
duke@435 272 int _reserved_stack_slots;
duke@435 273
duke@435 274 public:
duke@435 275 CallingConvention (LIR_OprList* args, int reserved_stack_slots)
duke@435 276 : _args(args)
duke@435 277 , _reserved_stack_slots(reserved_stack_slots) {}
duke@435 278
duke@435 279 LIR_OprList* args() { return _args; }
duke@435 280
duke@435 281 LIR_Opr at(int i) const { return _args->at(i); }
duke@435 282 int length() const { return _args->length(); }
duke@435 283
duke@435 284 // Indicates number of real frame slots used by arguments passed on stack.
duke@435 285 int reserved_stack_slots() const { return _reserved_stack_slots; }
duke@435 286
duke@435 287 #ifndef PRODUCT
duke@435 288 void print () const {
duke@435 289 for (int i = 0; i < length(); i++) {
duke@435 290 at(i)->print();
duke@435 291 }
duke@435 292 }
duke@435 293 #endif // PRODUCT
duke@435 294 };
stefank@2314 295
stefank@2314 296 #endif // SHARE_VM_C1_C1_FRAMEMAP_HPP

mercurial