src/share/vm/oops/methodData.hpp

Wed, 27 Apr 2016 01:25:04 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:25:04 +0800
changeset 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/
changeset: 6782:28b50d07f6f8
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_OOPS_METHODDATAOOP_HPP
aoqi@0 26 #define SHARE_VM_OOPS_METHODDATAOOP_HPP
aoqi@0 27
aoqi@0 28 #include "interpreter/bytecodes.hpp"
aoqi@0 29 #include "memory/universe.hpp"
aoqi@0 30 #include "oops/method.hpp"
aoqi@0 31 #include "oops/oop.hpp"
aoqi@0 32 #include "runtime/orderAccess.hpp"
aoqi@0 33
aoqi@0 34 class BytecodeStream;
aoqi@0 35 class KlassSizeStats;
aoqi@0 36
aoqi@0 37 // The MethodData object collects counts and other profile information
aoqi@0 38 // during zeroth-tier (interpretive) and first-tier execution.
aoqi@0 39 // The profile is used later by compilation heuristics. Some heuristics
aoqi@0 40 // enable use of aggressive (or "heroic") optimizations. An aggressive
aoqi@0 41 // optimization often has a down-side, a corner case that it handles
aoqi@0 42 // poorly, but which is thought to be rare. The profile provides
aoqi@0 43 // evidence of this rarity for a given method or even BCI. It allows
aoqi@0 44 // the compiler to back out of the optimization at places where it
aoqi@0 45 // has historically been a poor choice. Other heuristics try to use
aoqi@0 46 // specific information gathered about types observed at a given site.
aoqi@0 47 //
aoqi@0 48 // All data in the profile is approximate. It is expected to be accurate
aoqi@0 49 // on the whole, but the system expects occasional inaccuraces, due to
aoqi@0 50 // counter overflow, multiprocessor races during data collection, space
aoqi@0 51 // limitations, missing MDO blocks, etc. Bad or missing data will degrade
aoqi@0 52 // optimization quality but will not affect correctness. Also, each MDO
aoqi@0 53 // is marked with its birth-date ("creation_mileage") which can be used
aoqi@0 54 // to assess the quality ("maturity") of its data.
aoqi@0 55 //
aoqi@0 56 // Short (<32-bit) counters are designed to overflow to a known "saturated"
aoqi@0 57 // state. Also, certain recorded per-BCI events are given one-bit counters
aoqi@0 58 // which overflow to a saturated state which applied to all counters at
aoqi@0 59 // that BCI. In other words, there is a small lattice which approximates
aoqi@0 60 // the ideal of an infinite-precision counter for each event at each BCI,
aoqi@0 61 // and the lattice quickly "bottoms out" in a state where all counters
aoqi@0 62 // are taken to be indefinitely large.
aoqi@0 63 //
aoqi@0 64 // The reader will find many data races in profile gathering code, starting
aoqi@0 65 // with invocation counter incrementation. None of these races harm correct
aoqi@0 66 // execution of the compiled code.
aoqi@0 67
aoqi@0 68 // forward decl
aoqi@0 69 class ProfileData;
aoqi@0 70
aoqi@0 71 // DataLayout
aoqi@0 72 //
aoqi@0 73 // Overlay for generic profiling data.
aoqi@0 74 class DataLayout VALUE_OBJ_CLASS_SPEC {
aoqi@0 75 friend class VMStructs;
aoqi@0 76
aoqi@0 77 private:
aoqi@0 78 // Every data layout begins with a header. This header
aoqi@0 79 // contains a tag, which is used to indicate the size/layout
aoqi@0 80 // of the data, 4 bits of flags, which can be used in any way,
aoqi@0 81 // 4 bits of trap history (none/one reason/many reasons),
aoqi@0 82 // and a bci, which is used to tie this piece of data to a
aoqi@0 83 // specific bci in the bytecodes.
aoqi@0 84 union {
aoqi@0 85 intptr_t _bits;
aoqi@0 86 struct {
aoqi@0 87 u1 _tag;
aoqi@0 88 u1 _flags;
aoqi@0 89 u2 _bci;
aoqi@0 90 } _struct;
aoqi@0 91 } _header;
aoqi@0 92
aoqi@0 93 // The data layout has an arbitrary number of cells, each sized
aoqi@0 94 // to accomodate a pointer or an integer.
aoqi@0 95 intptr_t _cells[1];
aoqi@0 96
aoqi@0 97 // Some types of data layouts need a length field.
aoqi@0 98 static bool needs_array_len(u1 tag);
aoqi@0 99
aoqi@0 100 public:
aoqi@0 101 enum {
aoqi@0 102 counter_increment = 1
aoqi@0 103 };
aoqi@0 104
aoqi@0 105 enum {
aoqi@0 106 cell_size = sizeof(intptr_t)
aoqi@0 107 };
aoqi@0 108
aoqi@0 109 // Tag values
aoqi@0 110 enum {
aoqi@0 111 no_tag,
aoqi@0 112 bit_data_tag,
aoqi@0 113 counter_data_tag,
aoqi@0 114 jump_data_tag,
aoqi@0 115 receiver_type_data_tag,
aoqi@0 116 virtual_call_data_tag,
aoqi@0 117 ret_data_tag,
aoqi@0 118 branch_data_tag,
aoqi@0 119 multi_branch_data_tag,
aoqi@0 120 arg_info_data_tag,
aoqi@0 121 call_type_data_tag,
aoqi@0 122 virtual_call_type_data_tag,
aoqi@0 123 parameters_type_data_tag,
aoqi@0 124 speculative_trap_data_tag
aoqi@0 125 };
aoqi@0 126
aoqi@0 127 enum {
aoqi@0 128 // The _struct._flags word is formatted as [trap_state:4 | flags:4].
aoqi@0 129 // The trap state breaks down further as [recompile:1 | reason:3].
aoqi@0 130 // This further breakdown is defined in deoptimization.cpp.
aoqi@0 131 // See Deoptimization::trap_state_reason for an assert that
aoqi@0 132 // trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT.
aoqi@0 133 //
aoqi@0 134 // The trap_state is collected only if ProfileTraps is true.
aoqi@0 135 trap_bits = 1+3, // 3: enough to distinguish [0..Reason_RECORDED_LIMIT].
aoqi@0 136 trap_shift = BitsPerByte - trap_bits,
aoqi@0 137 trap_mask = right_n_bits(trap_bits),
aoqi@0 138 trap_mask_in_place = (trap_mask << trap_shift),
aoqi@0 139 flag_limit = trap_shift,
aoqi@0 140 flag_mask = right_n_bits(flag_limit),
aoqi@0 141 first_flag = 0
aoqi@0 142 };
aoqi@0 143
aoqi@0 144 // Size computation
aoqi@0 145 static int header_size_in_bytes() {
aoqi@0 146 return cell_size;
aoqi@0 147 }
aoqi@0 148 static int header_size_in_cells() {
aoqi@0 149 return 1;
aoqi@0 150 }
aoqi@0 151
aoqi@0 152 static int compute_size_in_bytes(int cell_count) {
aoqi@0 153 return header_size_in_bytes() + cell_count * cell_size;
aoqi@0 154 }
aoqi@0 155
aoqi@0 156 // Initialization
aoqi@0 157 void initialize(u1 tag, u2 bci, int cell_count);
aoqi@0 158
aoqi@0 159 // Accessors
aoqi@0 160 u1 tag() {
aoqi@0 161 return _header._struct._tag;
aoqi@0 162 }
aoqi@0 163
aoqi@0 164 // Return a few bits of trap state. Range is [0..trap_mask].
aoqi@0 165 // The state tells if traps with zero, one, or many reasons have occurred.
aoqi@0 166 // It also tells whether zero or many recompilations have occurred.
aoqi@0 167 // The associated trap histogram in the MDO itself tells whether
aoqi@0 168 // traps are common or not. If a BCI shows that a trap X has
aoqi@0 169 // occurred, and the MDO shows N occurrences of X, we make the
aoqi@0 170 // simplifying assumption that all N occurrences can be blamed
aoqi@0 171 // on that BCI.
aoqi@0 172 int trap_state() const {
aoqi@0 173 return ((_header._struct._flags >> trap_shift) & trap_mask);
aoqi@0 174 }
aoqi@0 175
aoqi@0 176 void set_trap_state(int new_state) {
aoqi@0 177 assert(ProfileTraps, "used only under +ProfileTraps");
aoqi@0 178 uint old_flags = (_header._struct._flags & flag_mask);
aoqi@0 179 _header._struct._flags = (new_state << trap_shift) | old_flags;
aoqi@0 180 }
aoqi@0 181
aoqi@0 182 u1 flags() const {
aoqi@0 183 return _header._struct._flags;
aoqi@0 184 }
aoqi@0 185
aoqi@0 186 u2 bci() const {
aoqi@0 187 return _header._struct._bci;
aoqi@0 188 }
aoqi@0 189
aoqi@0 190 void set_header(intptr_t value) {
aoqi@0 191 _header._bits = value;
aoqi@0 192 }
aoqi@0 193 intptr_t header() {
aoqi@0 194 return _header._bits;
aoqi@0 195 }
aoqi@0 196 void set_cell_at(int index, intptr_t value) {
aoqi@0 197 _cells[index] = value;
aoqi@0 198 }
aoqi@0 199 void release_set_cell_at(int index, intptr_t value) {
aoqi@0 200 OrderAccess::release_store_ptr(&_cells[index], value);
aoqi@0 201 }
aoqi@0 202 intptr_t cell_at(int index) const {
aoqi@0 203 return _cells[index];
aoqi@0 204 }
aoqi@0 205
aoqi@0 206 void set_flag_at(int flag_number) {
aoqi@0 207 assert(flag_number < flag_limit, "oob");
aoqi@0 208 _header._struct._flags |= (0x1 << flag_number);
aoqi@0 209 }
aoqi@0 210 bool flag_at(int flag_number) const {
aoqi@0 211 assert(flag_number < flag_limit, "oob");
aoqi@0 212 return (_header._struct._flags & (0x1 << flag_number)) != 0;
aoqi@0 213 }
aoqi@0 214
aoqi@0 215 // Low-level support for code generation.
aoqi@0 216 static ByteSize header_offset() {
aoqi@0 217 return byte_offset_of(DataLayout, _header);
aoqi@0 218 }
aoqi@0 219 static ByteSize tag_offset() {
aoqi@0 220 return byte_offset_of(DataLayout, _header._struct._tag);
aoqi@0 221 }
aoqi@0 222 static ByteSize flags_offset() {
aoqi@0 223 return byte_offset_of(DataLayout, _header._struct._flags);
aoqi@0 224 }
aoqi@0 225 static ByteSize bci_offset() {
aoqi@0 226 return byte_offset_of(DataLayout, _header._struct._bci);
aoqi@0 227 }
aoqi@0 228 static ByteSize cell_offset(int index) {
aoqi@0 229 return byte_offset_of(DataLayout, _cells) + in_ByteSize(index * cell_size);
aoqi@0 230 }
aoqi@0 231 #ifdef CC_INTERP
aoqi@0 232 static int cell_offset_in_bytes(int index) {
aoqi@0 233 return (int)offset_of(DataLayout, _cells[index]);
aoqi@0 234 }
aoqi@0 235 #endif // CC_INTERP
aoqi@0 236 // Return a value which, when or-ed as a byte into _flags, sets the flag.
aoqi@0 237 static int flag_number_to_byte_constant(int flag_number) {
aoqi@0 238 assert(0 <= flag_number && flag_number < flag_limit, "oob");
aoqi@0 239 DataLayout temp; temp.set_header(0);
aoqi@0 240 temp.set_flag_at(flag_number);
aoqi@0 241 return temp._header._struct._flags;
aoqi@0 242 }
aoqi@0 243 // Return a value which, when or-ed as a word into _header, sets the flag.
aoqi@0 244 static intptr_t flag_mask_to_header_mask(int byte_constant) {
aoqi@0 245 DataLayout temp; temp.set_header(0);
aoqi@0 246 temp._header._struct._flags = byte_constant;
aoqi@0 247 return temp._header._bits;
aoqi@0 248 }
aoqi@0 249
aoqi@0 250 ProfileData* data_in();
aoqi@0 251
aoqi@0 252 // GC support
aoqi@0 253 void clean_weak_klass_links(BoolObjectClosure* cl);
aoqi@0 254 };
aoqi@0 255
aoqi@0 256
aoqi@0 257 // ProfileData class hierarchy
aoqi@0 258 class ProfileData;
aoqi@0 259 class BitData;
aoqi@0 260 class CounterData;
aoqi@0 261 class ReceiverTypeData;
aoqi@0 262 class VirtualCallData;
aoqi@0 263 class VirtualCallTypeData;
aoqi@0 264 class RetData;
aoqi@0 265 class CallTypeData;
aoqi@0 266 class JumpData;
aoqi@0 267 class BranchData;
aoqi@0 268 class ArrayData;
aoqi@0 269 class MultiBranchData;
aoqi@0 270 class ArgInfoData;
aoqi@0 271 class ParametersTypeData;
aoqi@0 272 class SpeculativeTrapData;
aoqi@0 273
aoqi@0 274 // ProfileData
aoqi@0 275 //
aoqi@0 276 // A ProfileData object is created to refer to a section of profiling
aoqi@0 277 // data in a structured way.
aoqi@0 278 class ProfileData : public ResourceObj {
aoqi@0 279 friend class TypeEntries;
aoqi@0 280 friend class ReturnTypeEntry;
aoqi@0 281 friend class TypeStackSlotEntries;
aoqi@0 282 private:
aoqi@0 283 #ifndef PRODUCT
aoqi@0 284 enum {
aoqi@0 285 tab_width_one = 16,
aoqi@0 286 tab_width_two = 36
aoqi@0 287 };
aoqi@0 288 #endif // !PRODUCT
aoqi@0 289
aoqi@0 290 // This is a pointer to a section of profiling data.
aoqi@0 291 DataLayout* _data;
aoqi@0 292
aoqi@0 293 char* print_data_on_helper(const MethodData* md) const;
aoqi@0 294
aoqi@0 295 protected:
aoqi@0 296 DataLayout* data() { return _data; }
aoqi@0 297 const DataLayout* data() const { return _data; }
aoqi@0 298
aoqi@0 299 enum {
aoqi@0 300 cell_size = DataLayout::cell_size
aoqi@0 301 };
aoqi@0 302
aoqi@0 303 public:
aoqi@0 304 // How many cells are in this?
aoqi@0 305 virtual int cell_count() const {
aoqi@0 306 ShouldNotReachHere();
aoqi@0 307 return -1;
aoqi@0 308 }
aoqi@0 309
aoqi@0 310 // Return the size of this data.
aoqi@0 311 int size_in_bytes() {
aoqi@0 312 return DataLayout::compute_size_in_bytes(cell_count());
aoqi@0 313 }
aoqi@0 314
aoqi@0 315 protected:
aoqi@0 316 // Low-level accessors for underlying data
aoqi@0 317 void set_intptr_at(int index, intptr_t value) {
aoqi@0 318 assert(0 <= index && index < cell_count(), "oob");
aoqi@0 319 data()->set_cell_at(index, value);
aoqi@0 320 }
aoqi@0 321 void release_set_intptr_at(int index, intptr_t value) {
aoqi@0 322 assert(0 <= index && index < cell_count(), "oob");
aoqi@0 323 data()->release_set_cell_at(index, value);
aoqi@0 324 }
aoqi@0 325 intptr_t intptr_at(int index) const {
aoqi@0 326 assert(0 <= index && index < cell_count(), "oob");
aoqi@0 327 return data()->cell_at(index);
aoqi@0 328 }
aoqi@0 329 void set_uint_at(int index, uint value) {
aoqi@0 330 set_intptr_at(index, (intptr_t) value);
aoqi@0 331 }
aoqi@0 332 void release_set_uint_at(int index, uint value) {
aoqi@0 333 release_set_intptr_at(index, (intptr_t) value);
aoqi@0 334 }
aoqi@0 335 uint uint_at(int index) const {
aoqi@0 336 return (uint)intptr_at(index);
aoqi@0 337 }
aoqi@0 338 void set_int_at(int index, int value) {
aoqi@0 339 set_intptr_at(index, (intptr_t) value);
aoqi@0 340 }
aoqi@0 341 void release_set_int_at(int index, int value) {
aoqi@0 342 release_set_intptr_at(index, (intptr_t) value);
aoqi@0 343 }
aoqi@0 344 int int_at(int index) const {
aoqi@0 345 return (int)intptr_at(index);
aoqi@0 346 }
aoqi@0 347 int int_at_unchecked(int index) const {
aoqi@0 348 return (int)data()->cell_at(index);
aoqi@0 349 }
aoqi@0 350 void set_oop_at(int index, oop value) {
aoqi@0 351 set_intptr_at(index, cast_from_oop<intptr_t>(value));
aoqi@0 352 }
aoqi@0 353 oop oop_at(int index) const {
aoqi@0 354 return cast_to_oop(intptr_at(index));
aoqi@0 355 }
aoqi@0 356
aoqi@0 357 void set_flag_at(int flag_number) {
aoqi@0 358 data()->set_flag_at(flag_number);
aoqi@0 359 }
aoqi@0 360 bool flag_at(int flag_number) const {
aoqi@0 361 return data()->flag_at(flag_number);
aoqi@0 362 }
aoqi@0 363
aoqi@0 364 // two convenient imports for use by subclasses:
aoqi@0 365 static ByteSize cell_offset(int index) {
aoqi@0 366 return DataLayout::cell_offset(index);
aoqi@0 367 }
aoqi@0 368 static int flag_number_to_byte_constant(int flag_number) {
aoqi@0 369 return DataLayout::flag_number_to_byte_constant(flag_number);
aoqi@0 370 }
aoqi@0 371
aoqi@0 372 ProfileData(DataLayout* data) {
aoqi@0 373 _data = data;
aoqi@0 374 }
aoqi@0 375
aoqi@0 376 #ifdef CC_INTERP
aoqi@0 377 // Static low level accessors for DataLayout with ProfileData's semantics.
aoqi@0 378
aoqi@0 379 static int cell_offset_in_bytes(int index) {
aoqi@0 380 return DataLayout::cell_offset_in_bytes(index);
aoqi@0 381 }
aoqi@0 382
aoqi@0 383 static void increment_uint_at_no_overflow(DataLayout* layout, int index,
aoqi@0 384 int inc = DataLayout::counter_increment) {
aoqi@0 385 uint count = ((uint)layout->cell_at(index)) + inc;
aoqi@0 386 if (count == 0) return;
aoqi@0 387 layout->set_cell_at(index, (intptr_t) count);
aoqi@0 388 }
aoqi@0 389
aoqi@0 390 static int int_at(DataLayout* layout, int index) {
aoqi@0 391 return (int)layout->cell_at(index);
aoqi@0 392 }
aoqi@0 393
aoqi@0 394 static int uint_at(DataLayout* layout, int index) {
aoqi@0 395 return (uint)layout->cell_at(index);
aoqi@0 396 }
aoqi@0 397
aoqi@0 398 static oop oop_at(DataLayout* layout, int index) {
aoqi@0 399 return cast_to_oop(layout->cell_at(index));
aoqi@0 400 }
aoqi@0 401
aoqi@0 402 static void set_intptr_at(DataLayout* layout, int index, intptr_t value) {
aoqi@0 403 layout->set_cell_at(index, (intptr_t) value);
aoqi@0 404 }
aoqi@0 405
aoqi@0 406 static void set_flag_at(DataLayout* layout, int flag_number) {
aoqi@0 407 layout->set_flag_at(flag_number);
aoqi@0 408 }
aoqi@0 409 #endif // CC_INTERP
aoqi@0 410
aoqi@0 411 public:
aoqi@0 412 // Constructor for invalid ProfileData.
aoqi@0 413 ProfileData();
aoqi@0 414
aoqi@0 415 u2 bci() const {
aoqi@0 416 return data()->bci();
aoqi@0 417 }
aoqi@0 418
aoqi@0 419 address dp() {
aoqi@0 420 return (address)_data;
aoqi@0 421 }
aoqi@0 422
aoqi@0 423 int trap_state() const {
aoqi@0 424 return data()->trap_state();
aoqi@0 425 }
aoqi@0 426 void set_trap_state(int new_state) {
aoqi@0 427 data()->set_trap_state(new_state);
aoqi@0 428 }
aoqi@0 429
aoqi@0 430 // Type checking
aoqi@0 431 virtual bool is_BitData() const { return false; }
aoqi@0 432 virtual bool is_CounterData() const { return false; }
aoqi@0 433 virtual bool is_JumpData() const { return false; }
aoqi@0 434 virtual bool is_ReceiverTypeData()const { return false; }
aoqi@0 435 virtual bool is_VirtualCallData() const { return false; }
aoqi@0 436 virtual bool is_RetData() const { return false; }
aoqi@0 437 virtual bool is_BranchData() const { return false; }
aoqi@0 438 virtual bool is_ArrayData() const { return false; }
aoqi@0 439 virtual bool is_MultiBranchData() const { return false; }
aoqi@0 440 virtual bool is_ArgInfoData() const { return false; }
aoqi@0 441 virtual bool is_CallTypeData() const { return false; }
aoqi@0 442 virtual bool is_VirtualCallTypeData()const { return false; }
aoqi@0 443 virtual bool is_ParametersTypeData() const { return false; }
aoqi@0 444 virtual bool is_SpeculativeTrapData()const { return false; }
aoqi@0 445
aoqi@0 446
aoqi@0 447 BitData* as_BitData() const {
aoqi@0 448 assert(is_BitData(), "wrong type");
aoqi@0 449 return is_BitData() ? (BitData*) this : NULL;
aoqi@0 450 }
aoqi@0 451 CounterData* as_CounterData() const {
aoqi@0 452 assert(is_CounterData(), "wrong type");
aoqi@0 453 return is_CounterData() ? (CounterData*) this : NULL;
aoqi@0 454 }
aoqi@0 455 JumpData* as_JumpData() const {
aoqi@0 456 assert(is_JumpData(), "wrong type");
aoqi@0 457 return is_JumpData() ? (JumpData*) this : NULL;
aoqi@0 458 }
aoqi@0 459 ReceiverTypeData* as_ReceiverTypeData() const {
aoqi@0 460 assert(is_ReceiverTypeData(), "wrong type");
aoqi@0 461 return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL;
aoqi@0 462 }
aoqi@0 463 VirtualCallData* as_VirtualCallData() const {
aoqi@0 464 assert(is_VirtualCallData(), "wrong type");
aoqi@0 465 return is_VirtualCallData() ? (VirtualCallData*)this : NULL;
aoqi@0 466 }
aoqi@0 467 RetData* as_RetData() const {
aoqi@0 468 assert(is_RetData(), "wrong type");
aoqi@0 469 return is_RetData() ? (RetData*) this : NULL;
aoqi@0 470 }
aoqi@0 471 BranchData* as_BranchData() const {
aoqi@0 472 assert(is_BranchData(), "wrong type");
aoqi@0 473 return is_BranchData() ? (BranchData*) this : NULL;
aoqi@0 474 }
aoqi@0 475 ArrayData* as_ArrayData() const {
aoqi@0 476 assert(is_ArrayData(), "wrong type");
aoqi@0 477 return is_ArrayData() ? (ArrayData*) this : NULL;
aoqi@0 478 }
aoqi@0 479 MultiBranchData* as_MultiBranchData() const {
aoqi@0 480 assert(is_MultiBranchData(), "wrong type");
aoqi@0 481 return is_MultiBranchData() ? (MultiBranchData*)this : NULL;
aoqi@0 482 }
aoqi@0 483 ArgInfoData* as_ArgInfoData() const {
aoqi@0 484 assert(is_ArgInfoData(), "wrong type");
aoqi@0 485 return is_ArgInfoData() ? (ArgInfoData*)this : NULL;
aoqi@0 486 }
aoqi@0 487 CallTypeData* as_CallTypeData() const {
aoqi@0 488 assert(is_CallTypeData(), "wrong type");
aoqi@0 489 return is_CallTypeData() ? (CallTypeData*)this : NULL;
aoqi@0 490 }
aoqi@0 491 VirtualCallTypeData* as_VirtualCallTypeData() const {
aoqi@0 492 assert(is_VirtualCallTypeData(), "wrong type");
aoqi@0 493 return is_VirtualCallTypeData() ? (VirtualCallTypeData*)this : NULL;
aoqi@0 494 }
aoqi@0 495 ParametersTypeData* as_ParametersTypeData() const {
aoqi@0 496 assert(is_ParametersTypeData(), "wrong type");
aoqi@0 497 return is_ParametersTypeData() ? (ParametersTypeData*)this : NULL;
aoqi@0 498 }
aoqi@0 499 SpeculativeTrapData* as_SpeculativeTrapData() const {
aoqi@0 500 assert(is_SpeculativeTrapData(), "wrong type");
aoqi@0 501 return is_SpeculativeTrapData() ? (SpeculativeTrapData*)this : NULL;
aoqi@0 502 }
aoqi@0 503
aoqi@0 504
aoqi@0 505 // Subclass specific initialization
aoqi@0 506 virtual void post_initialize(BytecodeStream* stream, MethodData* mdo) {}
aoqi@0 507
aoqi@0 508 // GC support
aoqi@0 509 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {}
aoqi@0 510
aoqi@0 511 // CI translation: ProfileData can represent both MethodDataOop data
aoqi@0 512 // as well as CIMethodData data. This function is provided for translating
aoqi@0 513 // an oop in a ProfileData to the ci equivalent. Generally speaking,
aoqi@0 514 // most ProfileData don't require any translation, so we provide the null
aoqi@0 515 // translation here, and the required translators are in the ci subclasses.
aoqi@0 516 virtual void translate_from(const ProfileData* data) {}
aoqi@0 517
aoqi@0 518 virtual void print_data_on(outputStream* st, const char* extra = NULL) const {
aoqi@0 519 ShouldNotReachHere();
aoqi@0 520 }
aoqi@0 521
aoqi@0 522 void print_data_on(outputStream* st, const MethodData* md) const;
aoqi@0 523
aoqi@0 524 #ifndef PRODUCT
aoqi@0 525 void print_shared(outputStream* st, const char* name, const char* extra) const;
aoqi@0 526 void tab(outputStream* st, bool first = false) const;
aoqi@0 527 #endif
aoqi@0 528 };
aoqi@0 529
aoqi@0 530 // BitData
aoqi@0 531 //
aoqi@0 532 // A BitData holds a flag or two in its header.
aoqi@0 533 class BitData : public ProfileData {
aoqi@0 534 protected:
aoqi@0 535 enum {
aoqi@0 536 // null_seen:
aoqi@0 537 // saw a null operand (cast/aastore/instanceof)
aoqi@0 538 null_seen_flag = DataLayout::first_flag + 0
aoqi@0 539 };
aoqi@0 540 enum { bit_cell_count = 0 }; // no additional data fields needed.
aoqi@0 541 public:
aoqi@0 542 BitData(DataLayout* layout) : ProfileData(layout) {
aoqi@0 543 }
aoqi@0 544
aoqi@0 545 virtual bool is_BitData() const { return true; }
aoqi@0 546
aoqi@0 547 static int static_cell_count() {
aoqi@0 548 return bit_cell_count;
aoqi@0 549 }
aoqi@0 550
aoqi@0 551 virtual int cell_count() const {
aoqi@0 552 return static_cell_count();
aoqi@0 553 }
aoqi@0 554
aoqi@0 555 // Accessor
aoqi@0 556
aoqi@0 557 // The null_seen flag bit is specially known to the interpreter.
aoqi@0 558 // Consulting it allows the compiler to avoid setting up null_check traps.
aoqi@0 559 bool null_seen() { return flag_at(null_seen_flag); }
aoqi@0 560 void set_null_seen() { set_flag_at(null_seen_flag); }
aoqi@0 561
aoqi@0 562
aoqi@0 563 // Code generation support
aoqi@0 564 static int null_seen_byte_constant() {
aoqi@0 565 return flag_number_to_byte_constant(null_seen_flag);
aoqi@0 566 }
aoqi@0 567
aoqi@0 568 static ByteSize bit_data_size() {
aoqi@0 569 return cell_offset(bit_cell_count);
aoqi@0 570 }
aoqi@0 571
aoqi@0 572 #ifdef CC_INTERP
aoqi@0 573 static int bit_data_size_in_bytes() {
aoqi@0 574 return cell_offset_in_bytes(bit_cell_count);
aoqi@0 575 }
aoqi@0 576
aoqi@0 577 static void set_null_seen(DataLayout* layout) {
aoqi@0 578 set_flag_at(layout, null_seen_flag);
aoqi@0 579 }
aoqi@0 580
aoqi@0 581 static DataLayout* advance(DataLayout* layout) {
aoqi@0 582 return (DataLayout*) (((address)layout) + (ssize_t)BitData::bit_data_size_in_bytes());
aoqi@0 583 }
aoqi@0 584 #endif // CC_INTERP
aoqi@0 585
aoqi@0 586 #ifndef PRODUCT
aoqi@0 587 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 588 #endif
aoqi@0 589 };
aoqi@0 590
aoqi@0 591 // CounterData
aoqi@0 592 //
aoqi@0 593 // A CounterData corresponds to a simple counter.
aoqi@0 594 class CounterData : public BitData {
aoqi@0 595 protected:
aoqi@0 596 enum {
aoqi@0 597 count_off,
aoqi@0 598 counter_cell_count
aoqi@0 599 };
aoqi@0 600 public:
aoqi@0 601 CounterData(DataLayout* layout) : BitData(layout) {}
aoqi@0 602
aoqi@0 603 virtual bool is_CounterData() const { return true; }
aoqi@0 604
aoqi@0 605 static int static_cell_count() {
aoqi@0 606 return counter_cell_count;
aoqi@0 607 }
aoqi@0 608
aoqi@0 609 virtual int cell_count() const {
aoqi@0 610 return static_cell_count();
aoqi@0 611 }
aoqi@0 612
aoqi@0 613 // Direct accessor
aoqi@0 614 uint count() const {
aoqi@0 615 return uint_at(count_off);
aoqi@0 616 }
aoqi@0 617
aoqi@0 618 // Code generation support
aoqi@0 619 static ByteSize count_offset() {
aoqi@0 620 return cell_offset(count_off);
aoqi@0 621 }
aoqi@0 622 static ByteSize counter_data_size() {
aoqi@0 623 return cell_offset(counter_cell_count);
aoqi@0 624 }
aoqi@0 625
aoqi@0 626 void set_count(uint count) {
aoqi@0 627 set_uint_at(count_off, count);
aoqi@0 628 }
aoqi@0 629
aoqi@0 630 #ifdef CC_INTERP
aoqi@0 631 static int counter_data_size_in_bytes() {
aoqi@0 632 return cell_offset_in_bytes(counter_cell_count);
aoqi@0 633 }
aoqi@0 634
aoqi@0 635 static void increment_count_no_overflow(DataLayout* layout) {
aoqi@0 636 increment_uint_at_no_overflow(layout, count_off);
aoqi@0 637 }
aoqi@0 638
aoqi@0 639 // Support counter decrementation at checkcast / subtype check failed.
aoqi@0 640 static void decrement_count(DataLayout* layout) {
aoqi@0 641 increment_uint_at_no_overflow(layout, count_off, -1);
aoqi@0 642 }
aoqi@0 643
aoqi@0 644 static DataLayout* advance(DataLayout* layout) {
aoqi@0 645 return (DataLayout*) (((address)layout) + (ssize_t)CounterData::counter_data_size_in_bytes());
aoqi@0 646 }
aoqi@0 647 #endif // CC_INTERP
aoqi@0 648
aoqi@0 649 #ifndef PRODUCT
aoqi@0 650 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 651 #endif
aoqi@0 652 };
aoqi@0 653
aoqi@0 654 // JumpData
aoqi@0 655 //
aoqi@0 656 // A JumpData is used to access profiling information for a direct
aoqi@0 657 // branch. It is a counter, used for counting the number of branches,
aoqi@0 658 // plus a data displacement, used for realigning the data pointer to
aoqi@0 659 // the corresponding target bci.
aoqi@0 660 class JumpData : public ProfileData {
aoqi@0 661 protected:
aoqi@0 662 enum {
aoqi@0 663 taken_off_set,
aoqi@0 664 displacement_off_set,
aoqi@0 665 jump_cell_count
aoqi@0 666 };
aoqi@0 667
aoqi@0 668 void set_displacement(int displacement) {
aoqi@0 669 set_int_at(displacement_off_set, displacement);
aoqi@0 670 }
aoqi@0 671
aoqi@0 672 public:
aoqi@0 673 JumpData(DataLayout* layout) : ProfileData(layout) {
aoqi@0 674 assert(layout->tag() == DataLayout::jump_data_tag ||
aoqi@0 675 layout->tag() == DataLayout::branch_data_tag, "wrong type");
aoqi@0 676 }
aoqi@0 677
aoqi@0 678 virtual bool is_JumpData() const { return true; }
aoqi@0 679
aoqi@0 680 static int static_cell_count() {
aoqi@0 681 return jump_cell_count;
aoqi@0 682 }
aoqi@0 683
aoqi@0 684 virtual int cell_count() const {
aoqi@0 685 return static_cell_count();
aoqi@0 686 }
aoqi@0 687
aoqi@0 688 // Direct accessor
aoqi@0 689 uint taken() const {
aoqi@0 690 return uint_at(taken_off_set);
aoqi@0 691 }
aoqi@0 692
aoqi@0 693 void set_taken(uint cnt) {
aoqi@0 694 set_uint_at(taken_off_set, cnt);
aoqi@0 695 }
aoqi@0 696
aoqi@0 697 // Saturating counter
aoqi@0 698 uint inc_taken() {
aoqi@0 699 uint cnt = taken() + 1;
aoqi@0 700 // Did we wrap? Will compiler screw us??
aoqi@0 701 if (cnt == 0) cnt--;
aoqi@0 702 set_uint_at(taken_off_set, cnt);
aoqi@0 703 return cnt;
aoqi@0 704 }
aoqi@0 705
aoqi@0 706 int displacement() const {
aoqi@0 707 return int_at(displacement_off_set);
aoqi@0 708 }
aoqi@0 709
aoqi@0 710 // Code generation support
aoqi@0 711 static ByteSize taken_offset() {
aoqi@0 712 return cell_offset(taken_off_set);
aoqi@0 713 }
aoqi@0 714
aoqi@0 715 static ByteSize displacement_offset() {
aoqi@0 716 return cell_offset(displacement_off_set);
aoqi@0 717 }
aoqi@0 718
aoqi@0 719 #ifdef CC_INTERP
aoqi@0 720 static void increment_taken_count_no_overflow(DataLayout* layout) {
aoqi@0 721 increment_uint_at_no_overflow(layout, taken_off_set);
aoqi@0 722 }
aoqi@0 723
aoqi@0 724 static DataLayout* advance_taken(DataLayout* layout) {
aoqi@0 725 return (DataLayout*) (((address)layout) + (ssize_t)int_at(layout, displacement_off_set));
aoqi@0 726 }
aoqi@0 727
aoqi@0 728 static uint taken_count(DataLayout* layout) {
aoqi@0 729 return (uint) uint_at(layout, taken_off_set);
aoqi@0 730 }
aoqi@0 731 #endif // CC_INTERP
aoqi@0 732
aoqi@0 733 // Specific initialization.
aoqi@0 734 void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 735
aoqi@0 736 #ifndef PRODUCT
aoqi@0 737 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 738 #endif
aoqi@0 739 };
aoqi@0 740
aoqi@0 741 // Entries in a ProfileData object to record types: it can either be
aoqi@0 742 // none (no profile), unknown (conflicting profile data) or a klass if
aoqi@0 743 // a single one is seen. Whether a null reference was seen is also
aoqi@0 744 // recorded. No counter is associated with the type and a single type
aoqi@0 745 // is tracked (unlike VirtualCallData).
aoqi@0 746 class TypeEntries {
aoqi@0 747
aoqi@0 748 public:
aoqi@0 749
aoqi@0 750 // A single cell is used to record information for a type:
aoqi@0 751 // - the cell is initialized to 0
aoqi@0 752 // - when a type is discovered it is stored in the cell
aoqi@0 753 // - bit zero of the cell is used to record whether a null reference
aoqi@0 754 // was encountered or not
aoqi@0 755 // - bit 1 is set to record a conflict in the type information
aoqi@0 756
aoqi@0 757 enum {
aoqi@0 758 null_seen = 1,
aoqi@0 759 type_mask = ~null_seen,
aoqi@0 760 type_unknown = 2,
aoqi@0 761 status_bits = null_seen | type_unknown,
aoqi@0 762 type_klass_mask = ~status_bits
aoqi@0 763 };
aoqi@0 764
aoqi@0 765 // what to initialize a cell to
aoqi@0 766 static intptr_t type_none() {
aoqi@0 767 return 0;
aoqi@0 768 }
aoqi@0 769
aoqi@0 770 // null seen = bit 0 set?
aoqi@0 771 static bool was_null_seen(intptr_t v) {
aoqi@0 772 return (v & null_seen) != 0;
aoqi@0 773 }
aoqi@0 774
aoqi@0 775 // conflicting type information = bit 1 set?
aoqi@0 776 static bool is_type_unknown(intptr_t v) {
aoqi@0 777 return (v & type_unknown) != 0;
aoqi@0 778 }
aoqi@0 779
aoqi@0 780 // not type information yet = all bits cleared, ignoring bit 0?
aoqi@0 781 static bool is_type_none(intptr_t v) {
aoqi@0 782 return (v & type_mask) == 0;
aoqi@0 783 }
aoqi@0 784
aoqi@0 785 // recorded type: cell without bit 0 and 1
aoqi@0 786 static intptr_t klass_part(intptr_t v) {
aoqi@0 787 intptr_t r = v & type_klass_mask;
aoqi@0 788 return r;
aoqi@0 789 }
aoqi@0 790
aoqi@0 791 // type recorded
aoqi@0 792 static Klass* valid_klass(intptr_t k) {
aoqi@0 793 if (!is_type_none(k) &&
aoqi@0 794 !is_type_unknown(k)) {
aoqi@0 795 Klass* res = (Klass*)klass_part(k);
aoqi@0 796 assert(res != NULL, "invalid");
aoqi@0 797 return res;
aoqi@0 798 } else {
aoqi@0 799 return NULL;
aoqi@0 800 }
aoqi@0 801 }
aoqi@0 802
aoqi@0 803 static intptr_t with_status(intptr_t k, intptr_t in) {
aoqi@0 804 return k | (in & status_bits);
aoqi@0 805 }
aoqi@0 806
aoqi@0 807 static intptr_t with_status(Klass* k, intptr_t in) {
aoqi@0 808 return with_status((intptr_t)k, in);
aoqi@0 809 }
aoqi@0 810
aoqi@0 811 #ifndef PRODUCT
aoqi@0 812 static void print_klass(outputStream* st, intptr_t k);
aoqi@0 813 #endif
aoqi@0 814
aoqi@0 815 // GC support
aoqi@0 816 static bool is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p);
aoqi@0 817
aoqi@0 818 protected:
aoqi@0 819 // ProfileData object these entries are part of
aoqi@0 820 ProfileData* _pd;
aoqi@0 821 // offset within the ProfileData object where the entries start
aoqi@0 822 const int _base_off;
aoqi@0 823
aoqi@0 824 TypeEntries(int base_off)
aoqi@0 825 : _base_off(base_off), _pd(NULL) {}
aoqi@0 826
aoqi@0 827 void set_intptr_at(int index, intptr_t value) {
aoqi@0 828 _pd->set_intptr_at(index, value);
aoqi@0 829 }
aoqi@0 830
aoqi@0 831 intptr_t intptr_at(int index) const {
aoqi@0 832 return _pd->intptr_at(index);
aoqi@0 833 }
aoqi@0 834
aoqi@0 835 public:
aoqi@0 836 void set_profile_data(ProfileData* pd) {
aoqi@0 837 _pd = pd;
aoqi@0 838 }
aoqi@0 839 };
aoqi@0 840
aoqi@0 841 // Type entries used for arguments passed at a call and parameters on
aoqi@0 842 // method entry. 2 cells per entry: one for the type encoded as in
aoqi@0 843 // TypeEntries and one initialized with the stack slot where the
aoqi@0 844 // profiled object is to be found so that the interpreter can locate
aoqi@0 845 // it quickly.
aoqi@0 846 class TypeStackSlotEntries : public TypeEntries {
aoqi@0 847
aoqi@0 848 private:
aoqi@0 849 enum {
aoqi@0 850 stack_slot_entry,
aoqi@0 851 type_entry,
aoqi@0 852 per_arg_cell_count
aoqi@0 853 };
aoqi@0 854
aoqi@0 855 // offset of cell for stack slot for entry i within ProfileData object
aoqi@0 856 int stack_slot_offset(int i) const {
aoqi@0 857 return _base_off + stack_slot_local_offset(i);
aoqi@0 858 }
aoqi@0 859
aoqi@0 860 protected:
aoqi@0 861 const int _number_of_entries;
aoqi@0 862
aoqi@0 863 // offset of cell for type for entry i within ProfileData object
aoqi@0 864 int type_offset(int i) const {
aoqi@0 865 return _base_off + type_local_offset(i);
aoqi@0 866 }
aoqi@0 867
aoqi@0 868 public:
aoqi@0 869
aoqi@0 870 TypeStackSlotEntries(int base_off, int nb_entries)
aoqi@0 871 : TypeEntries(base_off), _number_of_entries(nb_entries) {}
aoqi@0 872
aoqi@0 873 static int compute_cell_count(Symbol* signature, bool include_receiver, int max);
aoqi@0 874
aoqi@0 875 void post_initialize(Symbol* signature, bool has_receiver, bool include_receiver);
aoqi@0 876
aoqi@0 877 // offset of cell for stack slot for entry i within this block of cells for a TypeStackSlotEntries
aoqi@0 878 static int stack_slot_local_offset(int i) {
aoqi@0 879 return i * per_arg_cell_count + stack_slot_entry;
aoqi@0 880 }
aoqi@0 881
aoqi@0 882 // offset of cell for type for entry i within this block of cells for a TypeStackSlotEntries
aoqi@0 883 static int type_local_offset(int i) {
aoqi@0 884 return i * per_arg_cell_count + type_entry;
aoqi@0 885 }
aoqi@0 886
aoqi@0 887 // stack slot for entry i
aoqi@0 888 uint stack_slot(int i) const {
aoqi@0 889 assert(i >= 0 && i < _number_of_entries, "oob");
aoqi@0 890 return _pd->uint_at(stack_slot_offset(i));
aoqi@0 891 }
aoqi@0 892
aoqi@0 893 // set stack slot for entry i
aoqi@0 894 void set_stack_slot(int i, uint num) {
aoqi@0 895 assert(i >= 0 && i < _number_of_entries, "oob");
aoqi@0 896 _pd->set_uint_at(stack_slot_offset(i), num);
aoqi@0 897 }
aoqi@0 898
aoqi@0 899 // type for entry i
aoqi@0 900 intptr_t type(int i) const {
aoqi@0 901 assert(i >= 0 && i < _number_of_entries, "oob");
aoqi@0 902 return _pd->intptr_at(type_offset(i));
aoqi@0 903 }
aoqi@0 904
aoqi@0 905 // set type for entry i
aoqi@0 906 void set_type(int i, intptr_t k) {
aoqi@0 907 assert(i >= 0 && i < _number_of_entries, "oob");
aoqi@0 908 _pd->set_intptr_at(type_offset(i), k);
aoqi@0 909 }
aoqi@0 910
aoqi@0 911 static ByteSize per_arg_size() {
aoqi@0 912 return in_ByteSize(per_arg_cell_count * DataLayout::cell_size);
aoqi@0 913 }
aoqi@0 914
aoqi@0 915 static int per_arg_count() {
aoqi@0 916 return per_arg_cell_count ;
aoqi@0 917 }
aoqi@0 918
aoqi@0 919 // GC support
aoqi@0 920 void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
aoqi@0 921
aoqi@0 922 #ifndef PRODUCT
aoqi@0 923 void print_data_on(outputStream* st) const;
aoqi@0 924 #endif
aoqi@0 925 };
aoqi@0 926
aoqi@0 927 // Type entry used for return from a call. A single cell to record the
aoqi@0 928 // type.
aoqi@0 929 class ReturnTypeEntry : public TypeEntries {
aoqi@0 930
aoqi@0 931 private:
aoqi@0 932 enum {
aoqi@0 933 cell_count = 1
aoqi@0 934 };
aoqi@0 935
aoqi@0 936 public:
aoqi@0 937 ReturnTypeEntry(int base_off)
aoqi@0 938 : TypeEntries(base_off) {}
aoqi@0 939
aoqi@0 940 void post_initialize() {
aoqi@0 941 set_type(type_none());
aoqi@0 942 }
aoqi@0 943
aoqi@0 944 intptr_t type() const {
aoqi@0 945 return _pd->intptr_at(_base_off);
aoqi@0 946 }
aoqi@0 947
aoqi@0 948 void set_type(intptr_t k) {
aoqi@0 949 _pd->set_intptr_at(_base_off, k);
aoqi@0 950 }
aoqi@0 951
aoqi@0 952 static int static_cell_count() {
aoqi@0 953 return cell_count;
aoqi@0 954 }
aoqi@0 955
aoqi@0 956 static ByteSize size() {
aoqi@0 957 return in_ByteSize(cell_count * DataLayout::cell_size);
aoqi@0 958 }
aoqi@0 959
aoqi@0 960 ByteSize type_offset() {
aoqi@0 961 return DataLayout::cell_offset(_base_off);
aoqi@0 962 }
aoqi@0 963
aoqi@0 964 // GC support
aoqi@0 965 void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
aoqi@0 966
aoqi@0 967 #ifndef PRODUCT
aoqi@0 968 void print_data_on(outputStream* st) const;
aoqi@0 969 #endif
aoqi@0 970 };
aoqi@0 971
aoqi@0 972 // Entries to collect type information at a call: contains arguments
aoqi@0 973 // (TypeStackSlotEntries), a return type (ReturnTypeEntry) and a
aoqi@0 974 // number of cells. Because the number of cells for the return type is
aoqi@0 975 // smaller than the number of cells for the type of an arguments, the
aoqi@0 976 // number of cells is used to tell how many arguments are profiled and
aoqi@0 977 // whether a return value is profiled. See has_arguments() and
aoqi@0 978 // has_return().
aoqi@0 979 class TypeEntriesAtCall {
aoqi@0 980 private:
aoqi@0 981 static int stack_slot_local_offset(int i) {
aoqi@0 982 return header_cell_count() + TypeStackSlotEntries::stack_slot_local_offset(i);
aoqi@0 983 }
aoqi@0 984
aoqi@0 985 static int argument_type_local_offset(int i) {
aoqi@0 986 return header_cell_count() + TypeStackSlotEntries::type_local_offset(i);;
aoqi@0 987 }
aoqi@0 988
aoqi@0 989 public:
aoqi@0 990
aoqi@0 991 static int header_cell_count() {
aoqi@0 992 return 1;
aoqi@0 993 }
aoqi@0 994
aoqi@0 995 static int cell_count_local_offset() {
aoqi@0 996 return 0;
aoqi@0 997 }
aoqi@0 998
aoqi@0 999 static int compute_cell_count(BytecodeStream* stream);
aoqi@0 1000
aoqi@0 1001 static void initialize(DataLayout* dl, int base, int cell_count) {
aoqi@0 1002 int off = base + cell_count_local_offset();
aoqi@0 1003 dl->set_cell_at(off, cell_count - base - header_cell_count());
aoqi@0 1004 }
aoqi@0 1005
aoqi@0 1006 static bool arguments_profiling_enabled();
aoqi@0 1007 static bool return_profiling_enabled();
aoqi@0 1008
aoqi@0 1009 // Code generation support
aoqi@0 1010 static ByteSize cell_count_offset() {
aoqi@0 1011 return in_ByteSize(cell_count_local_offset() * DataLayout::cell_size);
aoqi@0 1012 }
aoqi@0 1013
aoqi@0 1014 static ByteSize args_data_offset() {
aoqi@0 1015 return in_ByteSize(header_cell_count() * DataLayout::cell_size);
aoqi@0 1016 }
aoqi@0 1017
aoqi@0 1018 static ByteSize stack_slot_offset(int i) {
aoqi@0 1019 return in_ByteSize(stack_slot_local_offset(i) * DataLayout::cell_size);
aoqi@0 1020 }
aoqi@0 1021
aoqi@0 1022 static ByteSize argument_type_offset(int i) {
aoqi@0 1023 return in_ByteSize(argument_type_local_offset(i) * DataLayout::cell_size);
aoqi@0 1024 }
aoqi@0 1025
aoqi@0 1026 static ByteSize return_only_size() {
aoqi@0 1027 return ReturnTypeEntry::size() + in_ByteSize(header_cell_count() * DataLayout::cell_size);
aoqi@0 1028 }
aoqi@0 1029
aoqi@0 1030 };
aoqi@0 1031
aoqi@0 1032 // CallTypeData
aoqi@0 1033 //
aoqi@0 1034 // A CallTypeData is used to access profiling information about a non
aoqi@0 1035 // virtual call for which we collect type information about arguments
aoqi@0 1036 // and return value.
aoqi@0 1037 class CallTypeData : public CounterData {
aoqi@0 1038 private:
aoqi@0 1039 // entries for arguments if any
aoqi@0 1040 TypeStackSlotEntries _args;
aoqi@0 1041 // entry for return type if any
aoqi@0 1042 ReturnTypeEntry _ret;
aoqi@0 1043
aoqi@0 1044 int cell_count_global_offset() const {
aoqi@0 1045 return CounterData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset();
aoqi@0 1046 }
aoqi@0 1047
aoqi@0 1048 // number of cells not counting the header
aoqi@0 1049 int cell_count_no_header() const {
aoqi@0 1050 return uint_at(cell_count_global_offset());
aoqi@0 1051 }
aoqi@0 1052
aoqi@0 1053 void check_number_of_arguments(int total) {
aoqi@0 1054 assert(number_of_arguments() == total, "should be set in DataLayout::initialize");
aoqi@0 1055 }
aoqi@0 1056
aoqi@0 1057 public:
aoqi@0 1058 CallTypeData(DataLayout* layout) :
aoqi@0 1059 CounterData(layout),
aoqi@0 1060 _args(CounterData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()),
aoqi@0 1061 _ret(cell_count() - ReturnTypeEntry::static_cell_count())
aoqi@0 1062 {
aoqi@0 1063 assert(layout->tag() == DataLayout::call_type_data_tag, "wrong type");
aoqi@0 1064 // Some compilers (VC++) don't want this passed in member initialization list
aoqi@0 1065 _args.set_profile_data(this);
aoqi@0 1066 _ret.set_profile_data(this);
aoqi@0 1067 }
aoqi@0 1068
aoqi@0 1069 const TypeStackSlotEntries* args() const {
aoqi@0 1070 assert(has_arguments(), "no profiling of arguments");
aoqi@0 1071 return &_args;
aoqi@0 1072 }
aoqi@0 1073
aoqi@0 1074 const ReturnTypeEntry* ret() const {
aoqi@0 1075 assert(has_return(), "no profiling of return value");
aoqi@0 1076 return &_ret;
aoqi@0 1077 }
aoqi@0 1078
aoqi@0 1079 virtual bool is_CallTypeData() const { return true; }
aoqi@0 1080
aoqi@0 1081 static int static_cell_count() {
aoqi@0 1082 return -1;
aoqi@0 1083 }
aoqi@0 1084
aoqi@0 1085 static int compute_cell_count(BytecodeStream* stream) {
aoqi@0 1086 return CounterData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream);
aoqi@0 1087 }
aoqi@0 1088
aoqi@0 1089 static void initialize(DataLayout* dl, int cell_count) {
aoqi@0 1090 TypeEntriesAtCall::initialize(dl, CounterData::static_cell_count(), cell_count);
aoqi@0 1091 }
aoqi@0 1092
aoqi@0 1093 virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 1094
aoqi@0 1095 virtual int cell_count() const {
aoqi@0 1096 return CounterData::static_cell_count() +
aoqi@0 1097 TypeEntriesAtCall::header_cell_count() +
aoqi@0 1098 int_at_unchecked(cell_count_global_offset());
aoqi@0 1099 }
aoqi@0 1100
aoqi@0 1101 int number_of_arguments() const {
aoqi@0 1102 return cell_count_no_header() / TypeStackSlotEntries::per_arg_count();
aoqi@0 1103 }
aoqi@0 1104
aoqi@0 1105 void set_argument_type(int i, Klass* k) {
aoqi@0 1106 assert(has_arguments(), "no arguments!");
aoqi@0 1107 intptr_t current = _args.type(i);
aoqi@0 1108 _args.set_type(i, TypeEntries::with_status(k, current));
aoqi@0 1109 }
aoqi@0 1110
aoqi@0 1111 void set_return_type(Klass* k) {
aoqi@0 1112 assert(has_return(), "no return!");
aoqi@0 1113 intptr_t current = _ret.type();
aoqi@0 1114 _ret.set_type(TypeEntries::with_status(k, current));
aoqi@0 1115 }
aoqi@0 1116
aoqi@0 1117 // An entry for a return value takes less space than an entry for an
aoqi@0 1118 // argument so if the number of cells exceeds the number of cells
aoqi@0 1119 // needed for an argument, this object contains type information for
aoqi@0 1120 // at least one argument.
aoqi@0 1121 bool has_arguments() const {
aoqi@0 1122 bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count();
aoqi@0 1123 assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments");
aoqi@0 1124 return res;
aoqi@0 1125 }
aoqi@0 1126
aoqi@0 1127 // An entry for a return value takes less space than an entry for an
aoqi@0 1128 // argument, so if the remainder of the number of cells divided by
aoqi@0 1129 // the number of cells for an argument is not null, a return value
aoqi@0 1130 // is profiled in this object.
aoqi@0 1131 bool has_return() const {
aoqi@0 1132 bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0;
aoqi@0 1133 assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values");
aoqi@0 1134 return res;
aoqi@0 1135 }
aoqi@0 1136
aoqi@0 1137 // Code generation support
aoqi@0 1138 static ByteSize args_data_offset() {
aoqi@0 1139 return cell_offset(CounterData::static_cell_count()) + TypeEntriesAtCall::args_data_offset();
aoqi@0 1140 }
aoqi@0 1141
aoqi@0 1142 // GC support
aoqi@0 1143 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
aoqi@0 1144 if (has_arguments()) {
aoqi@0 1145 _args.clean_weak_klass_links(is_alive_closure);
aoqi@0 1146 }
aoqi@0 1147 if (has_return()) {
aoqi@0 1148 _ret.clean_weak_klass_links(is_alive_closure);
aoqi@0 1149 }
aoqi@0 1150 }
aoqi@0 1151
aoqi@0 1152 #ifndef PRODUCT
aoqi@0 1153 virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1154 #endif
aoqi@0 1155 };
aoqi@0 1156
aoqi@0 1157 // ReceiverTypeData
aoqi@0 1158 //
aoqi@0 1159 // A ReceiverTypeData is used to access profiling information about a
aoqi@0 1160 // dynamic type check. It consists of a counter which counts the total times
aoqi@0 1161 // that the check is reached, and a series of (Klass*, count) pairs
aoqi@0 1162 // which are used to store a type profile for the receiver of the check.
aoqi@0 1163 class ReceiverTypeData : public CounterData {
aoqi@0 1164 protected:
aoqi@0 1165 enum {
aoqi@0 1166 receiver0_offset = counter_cell_count,
aoqi@0 1167 count0_offset,
aoqi@0 1168 receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset
aoqi@0 1169 };
aoqi@0 1170
aoqi@0 1171 public:
aoqi@0 1172 ReceiverTypeData(DataLayout* layout) : CounterData(layout) {
aoqi@0 1173 assert(layout->tag() == DataLayout::receiver_type_data_tag ||
aoqi@0 1174 layout->tag() == DataLayout::virtual_call_data_tag ||
aoqi@0 1175 layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
aoqi@0 1176 }
aoqi@0 1177
aoqi@0 1178 virtual bool is_ReceiverTypeData() const { return true; }
aoqi@0 1179
aoqi@0 1180 static int static_cell_count() {
aoqi@0 1181 return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count;
aoqi@0 1182 }
aoqi@0 1183
aoqi@0 1184 virtual int cell_count() const {
aoqi@0 1185 return static_cell_count();
aoqi@0 1186 }
aoqi@0 1187
aoqi@0 1188 // Direct accessors
aoqi@0 1189 static uint row_limit() {
aoqi@0 1190 return TypeProfileWidth;
aoqi@0 1191 }
aoqi@0 1192 static int receiver_cell_index(uint row) {
aoqi@0 1193 return receiver0_offset + row * receiver_type_row_cell_count;
aoqi@0 1194 }
aoqi@0 1195 static int receiver_count_cell_index(uint row) {
aoqi@0 1196 return count0_offset + row * receiver_type_row_cell_count;
aoqi@0 1197 }
aoqi@0 1198
aoqi@0 1199 Klass* receiver(uint row) const {
aoqi@0 1200 assert(row < row_limit(), "oob");
aoqi@0 1201
aoqi@0 1202 Klass* recv = (Klass*)intptr_at(receiver_cell_index(row));
aoqi@0 1203 assert(recv == NULL || recv->is_klass(), "wrong type");
aoqi@0 1204 return recv;
aoqi@0 1205 }
aoqi@0 1206
aoqi@0 1207 void set_receiver(uint row, Klass* k) {
aoqi@0 1208 assert((uint)row < row_limit(), "oob");
aoqi@0 1209 set_intptr_at(receiver_cell_index(row), (uintptr_t)k);
aoqi@0 1210 }
aoqi@0 1211
aoqi@0 1212 uint receiver_count(uint row) const {
aoqi@0 1213 assert(row < row_limit(), "oob");
aoqi@0 1214 return uint_at(receiver_count_cell_index(row));
aoqi@0 1215 }
aoqi@0 1216
aoqi@0 1217 void set_receiver_count(uint row, uint count) {
aoqi@0 1218 assert(row < row_limit(), "oob");
aoqi@0 1219 set_uint_at(receiver_count_cell_index(row), count);
aoqi@0 1220 }
aoqi@0 1221
aoqi@0 1222 void clear_row(uint row) {
aoqi@0 1223 assert(row < row_limit(), "oob");
aoqi@0 1224 // Clear total count - indicator of polymorphic call site.
aoqi@0 1225 // The site may look like as monomorphic after that but
aoqi@0 1226 // it allow to have more accurate profiling information because
aoqi@0 1227 // there was execution phase change since klasses were unloaded.
aoqi@0 1228 // If the site is still polymorphic then MDO will be updated
aoqi@0 1229 // to reflect it. But it could be the case that the site becomes
aoqi@0 1230 // only bimorphic. Then keeping total count not 0 will be wrong.
aoqi@0 1231 // Even if we use monomorphic (when it is not) for compilation
aoqi@0 1232 // we will only have trap, deoptimization and recompile again
aoqi@0 1233 // with updated MDO after executing method in Interpreter.
aoqi@0 1234 // An additional receiver will be recorded in the cleaned row
aoqi@0 1235 // during next call execution.
aoqi@0 1236 //
aoqi@0 1237 // Note: our profiling logic works with empty rows in any slot.
aoqi@0 1238 // We do sorting a profiling info (ciCallProfile) for compilation.
aoqi@0 1239 //
aoqi@0 1240 set_count(0);
aoqi@0 1241 set_receiver(row, NULL);
aoqi@0 1242 set_receiver_count(row, 0);
aoqi@0 1243 }
aoqi@0 1244
aoqi@0 1245 // Code generation support
aoqi@0 1246 static ByteSize receiver_offset(uint row) {
aoqi@0 1247 return cell_offset(receiver_cell_index(row));
aoqi@0 1248 }
aoqi@0 1249 static ByteSize receiver_count_offset(uint row) {
aoqi@0 1250 return cell_offset(receiver_count_cell_index(row));
aoqi@0 1251 }
aoqi@0 1252 static ByteSize receiver_type_data_size() {
aoqi@0 1253 return cell_offset(static_cell_count());
aoqi@0 1254 }
aoqi@0 1255
aoqi@0 1256 // GC support
aoqi@0 1257 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
aoqi@0 1258
aoqi@0 1259 #ifdef CC_INTERP
aoqi@0 1260 static int receiver_type_data_size_in_bytes() {
aoqi@0 1261 return cell_offset_in_bytes(static_cell_count());
aoqi@0 1262 }
aoqi@0 1263
aoqi@0 1264 static Klass *receiver_unchecked(DataLayout* layout, uint row) {
aoqi@0 1265 Klass* recv = (Klass*)layout->cell_at(receiver_cell_index(row));
aoqi@0 1266 return recv;
aoqi@0 1267 }
aoqi@0 1268
aoqi@0 1269 static void increment_receiver_count_no_overflow(DataLayout* layout, Klass *rcvr) {
aoqi@0 1270 const int num_rows = row_limit();
aoqi@0 1271 // Receiver already exists?
aoqi@0 1272 for (int row = 0; row < num_rows; row++) {
aoqi@0 1273 if (receiver_unchecked(layout, row) == rcvr) {
aoqi@0 1274 increment_uint_at_no_overflow(layout, receiver_count_cell_index(row));
aoqi@0 1275 return;
aoqi@0 1276 }
aoqi@0 1277 }
aoqi@0 1278 // New receiver, find a free slot.
aoqi@0 1279 for (int row = 0; row < num_rows; row++) {
aoqi@0 1280 if (receiver_unchecked(layout, row) == NULL) {
aoqi@0 1281 set_intptr_at(layout, receiver_cell_index(row), (intptr_t)rcvr);
aoqi@0 1282 increment_uint_at_no_overflow(layout, receiver_count_cell_index(row));
aoqi@0 1283 return;
aoqi@0 1284 }
aoqi@0 1285 }
aoqi@0 1286 // Receiver did not match any saved receiver and there is no empty row for it.
aoqi@0 1287 // Increment total counter to indicate polymorphic case.
aoqi@0 1288 increment_count_no_overflow(layout);
aoqi@0 1289 }
aoqi@0 1290
aoqi@0 1291 static DataLayout* advance(DataLayout* layout) {
aoqi@0 1292 return (DataLayout*) (((address)layout) + (ssize_t)ReceiverTypeData::receiver_type_data_size_in_bytes());
aoqi@0 1293 }
aoqi@0 1294 #endif // CC_INTERP
aoqi@0 1295
aoqi@0 1296 #ifndef PRODUCT
aoqi@0 1297 void print_receiver_data_on(outputStream* st) const;
aoqi@0 1298 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1299 #endif
aoqi@0 1300 };
aoqi@0 1301
aoqi@0 1302 // VirtualCallData
aoqi@0 1303 //
aoqi@0 1304 // A VirtualCallData is used to access profiling information about a
aoqi@0 1305 // virtual call. For now, it has nothing more than a ReceiverTypeData.
aoqi@0 1306 class VirtualCallData : public ReceiverTypeData {
aoqi@0 1307 public:
aoqi@0 1308 VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) {
aoqi@0 1309 assert(layout->tag() == DataLayout::virtual_call_data_tag ||
aoqi@0 1310 layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
aoqi@0 1311 }
aoqi@0 1312
aoqi@0 1313 virtual bool is_VirtualCallData() const { return true; }
aoqi@0 1314
aoqi@0 1315 static int static_cell_count() {
aoqi@0 1316 // At this point we could add more profile state, e.g., for arguments.
aoqi@0 1317 // But for now it's the same size as the base record type.
aoqi@0 1318 return ReceiverTypeData::static_cell_count();
aoqi@0 1319 }
aoqi@0 1320
aoqi@0 1321 virtual int cell_count() const {
aoqi@0 1322 return static_cell_count();
aoqi@0 1323 }
aoqi@0 1324
aoqi@0 1325 // Direct accessors
aoqi@0 1326 static ByteSize virtual_call_data_size() {
aoqi@0 1327 return cell_offset(static_cell_count());
aoqi@0 1328 }
aoqi@0 1329
aoqi@0 1330 #ifdef CC_INTERP
aoqi@0 1331 static int virtual_call_data_size_in_bytes() {
aoqi@0 1332 return cell_offset_in_bytes(static_cell_count());
aoqi@0 1333 }
aoqi@0 1334
aoqi@0 1335 static DataLayout* advance(DataLayout* layout) {
aoqi@0 1336 return (DataLayout*) (((address)layout) + (ssize_t)VirtualCallData::virtual_call_data_size_in_bytes());
aoqi@0 1337 }
aoqi@0 1338 #endif // CC_INTERP
aoqi@0 1339
aoqi@0 1340 #ifndef PRODUCT
aoqi@0 1341 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1342 #endif
aoqi@0 1343 };
aoqi@0 1344
aoqi@0 1345 // VirtualCallTypeData
aoqi@0 1346 //
aoqi@0 1347 // A VirtualCallTypeData is used to access profiling information about
aoqi@0 1348 // a virtual call for which we collect type information about
aoqi@0 1349 // arguments and return value.
aoqi@0 1350 class VirtualCallTypeData : public VirtualCallData {
aoqi@0 1351 private:
aoqi@0 1352 // entries for arguments if any
aoqi@0 1353 TypeStackSlotEntries _args;
aoqi@0 1354 // entry for return type if any
aoqi@0 1355 ReturnTypeEntry _ret;
aoqi@0 1356
aoqi@0 1357 int cell_count_global_offset() const {
aoqi@0 1358 return VirtualCallData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset();
aoqi@0 1359 }
aoqi@0 1360
aoqi@0 1361 // number of cells not counting the header
aoqi@0 1362 int cell_count_no_header() const {
aoqi@0 1363 return uint_at(cell_count_global_offset());
aoqi@0 1364 }
aoqi@0 1365
aoqi@0 1366 void check_number_of_arguments(int total) {
aoqi@0 1367 assert(number_of_arguments() == total, "should be set in DataLayout::initialize");
aoqi@0 1368 }
aoqi@0 1369
aoqi@0 1370 public:
aoqi@0 1371 VirtualCallTypeData(DataLayout* layout) :
aoqi@0 1372 VirtualCallData(layout),
aoqi@0 1373 _args(VirtualCallData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()),
aoqi@0 1374 _ret(cell_count() - ReturnTypeEntry::static_cell_count())
aoqi@0 1375 {
aoqi@0 1376 assert(layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
aoqi@0 1377 // Some compilers (VC++) don't want this passed in member initialization list
aoqi@0 1378 _args.set_profile_data(this);
aoqi@0 1379 _ret.set_profile_data(this);
aoqi@0 1380 }
aoqi@0 1381
aoqi@0 1382 const TypeStackSlotEntries* args() const {
aoqi@0 1383 assert(has_arguments(), "no profiling of arguments");
aoqi@0 1384 return &_args;
aoqi@0 1385 }
aoqi@0 1386
aoqi@0 1387 const ReturnTypeEntry* ret() const {
aoqi@0 1388 assert(has_return(), "no profiling of return value");
aoqi@0 1389 return &_ret;
aoqi@0 1390 }
aoqi@0 1391
aoqi@0 1392 virtual bool is_VirtualCallTypeData() const { return true; }
aoqi@0 1393
aoqi@0 1394 static int static_cell_count() {
aoqi@0 1395 return -1;
aoqi@0 1396 }
aoqi@0 1397
aoqi@0 1398 static int compute_cell_count(BytecodeStream* stream) {
aoqi@0 1399 return VirtualCallData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream);
aoqi@0 1400 }
aoqi@0 1401
aoqi@0 1402 static void initialize(DataLayout* dl, int cell_count) {
aoqi@0 1403 TypeEntriesAtCall::initialize(dl, VirtualCallData::static_cell_count(), cell_count);
aoqi@0 1404 }
aoqi@0 1405
aoqi@0 1406 virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 1407
aoqi@0 1408 virtual int cell_count() const {
aoqi@0 1409 return VirtualCallData::static_cell_count() +
aoqi@0 1410 TypeEntriesAtCall::header_cell_count() +
aoqi@0 1411 int_at_unchecked(cell_count_global_offset());
aoqi@0 1412 }
aoqi@0 1413
aoqi@0 1414 int number_of_arguments() const {
aoqi@0 1415 return cell_count_no_header() / TypeStackSlotEntries::per_arg_count();
aoqi@0 1416 }
aoqi@0 1417
aoqi@0 1418 void set_argument_type(int i, Klass* k) {
aoqi@0 1419 assert(has_arguments(), "no arguments!");
aoqi@0 1420 intptr_t current = _args.type(i);
aoqi@0 1421 _args.set_type(i, TypeEntries::with_status(k, current));
aoqi@0 1422 }
aoqi@0 1423
aoqi@0 1424 void set_return_type(Klass* k) {
aoqi@0 1425 assert(has_return(), "no return!");
aoqi@0 1426 intptr_t current = _ret.type();
aoqi@0 1427 _ret.set_type(TypeEntries::with_status(k, current));
aoqi@0 1428 }
aoqi@0 1429
aoqi@0 1430 // An entry for a return value takes less space than an entry for an
aoqi@0 1431 // argument, so if the remainder of the number of cells divided by
aoqi@0 1432 // the number of cells for an argument is not null, a return value
aoqi@0 1433 // is profiled in this object.
aoqi@0 1434 bool has_return() const {
aoqi@0 1435 bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0;
aoqi@0 1436 assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values");
aoqi@0 1437 return res;
aoqi@0 1438 }
aoqi@0 1439
aoqi@0 1440 // An entry for a return value takes less space than an entry for an
aoqi@0 1441 // argument so if the number of cells exceeds the number of cells
aoqi@0 1442 // needed for an argument, this object contains type information for
aoqi@0 1443 // at least one argument.
aoqi@0 1444 bool has_arguments() const {
aoqi@0 1445 bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count();
aoqi@0 1446 assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments");
aoqi@0 1447 return res;
aoqi@0 1448 }
aoqi@0 1449
aoqi@0 1450 // Code generation support
aoqi@0 1451 static ByteSize args_data_offset() {
aoqi@0 1452 return cell_offset(VirtualCallData::static_cell_count()) + TypeEntriesAtCall::args_data_offset();
aoqi@0 1453 }
aoqi@0 1454
aoqi@0 1455 // GC support
aoqi@0 1456 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
aoqi@0 1457 ReceiverTypeData::clean_weak_klass_links(is_alive_closure);
aoqi@0 1458 if (has_arguments()) {
aoqi@0 1459 _args.clean_weak_klass_links(is_alive_closure);
aoqi@0 1460 }
aoqi@0 1461 if (has_return()) {
aoqi@0 1462 _ret.clean_weak_klass_links(is_alive_closure);
aoqi@0 1463 }
aoqi@0 1464 }
aoqi@0 1465
aoqi@0 1466 #ifndef PRODUCT
aoqi@0 1467 virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1468 #endif
aoqi@0 1469 };
aoqi@0 1470
aoqi@0 1471 // RetData
aoqi@0 1472 //
aoqi@0 1473 // A RetData is used to access profiling information for a ret bytecode.
aoqi@0 1474 // It is composed of a count of the number of times that the ret has
aoqi@0 1475 // been executed, followed by a series of triples of the form
aoqi@0 1476 // (bci, count, di) which count the number of times that some bci was the
aoqi@0 1477 // target of the ret and cache a corresponding data displacement.
aoqi@0 1478 class RetData : public CounterData {
aoqi@0 1479 protected:
aoqi@0 1480 enum {
aoqi@0 1481 bci0_offset = counter_cell_count,
aoqi@0 1482 count0_offset,
aoqi@0 1483 displacement0_offset,
aoqi@0 1484 ret_row_cell_count = (displacement0_offset + 1) - bci0_offset
aoqi@0 1485 };
aoqi@0 1486
aoqi@0 1487 void set_bci(uint row, int bci) {
aoqi@0 1488 assert((uint)row < row_limit(), "oob");
aoqi@0 1489 set_int_at(bci0_offset + row * ret_row_cell_count, bci);
aoqi@0 1490 }
aoqi@0 1491 void release_set_bci(uint row, int bci) {
aoqi@0 1492 assert((uint)row < row_limit(), "oob");
aoqi@0 1493 // 'release' when setting the bci acts as a valid flag for other
aoqi@0 1494 // threads wrt bci_count and bci_displacement.
aoqi@0 1495 release_set_int_at(bci0_offset + row * ret_row_cell_count, bci);
aoqi@0 1496 }
aoqi@0 1497 void set_bci_count(uint row, uint count) {
aoqi@0 1498 assert((uint)row < row_limit(), "oob");
aoqi@0 1499 set_uint_at(count0_offset + row * ret_row_cell_count, count);
aoqi@0 1500 }
aoqi@0 1501 void set_bci_displacement(uint row, int disp) {
aoqi@0 1502 set_int_at(displacement0_offset + row * ret_row_cell_count, disp);
aoqi@0 1503 }
aoqi@0 1504
aoqi@0 1505 public:
aoqi@0 1506 RetData(DataLayout* layout) : CounterData(layout) {
aoqi@0 1507 assert(layout->tag() == DataLayout::ret_data_tag, "wrong type");
aoqi@0 1508 }
aoqi@0 1509
aoqi@0 1510 virtual bool is_RetData() const { return true; }
aoqi@0 1511
aoqi@0 1512 enum {
aoqi@0 1513 no_bci = -1 // value of bci when bci1/2 are not in use.
aoqi@0 1514 };
aoqi@0 1515
aoqi@0 1516 static int static_cell_count() {
aoqi@0 1517 return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count;
aoqi@0 1518 }
aoqi@0 1519
aoqi@0 1520 virtual int cell_count() const {
aoqi@0 1521 return static_cell_count();
aoqi@0 1522 }
aoqi@0 1523
aoqi@0 1524 static uint row_limit() {
aoqi@0 1525 return BciProfileWidth;
aoqi@0 1526 }
aoqi@0 1527 static int bci_cell_index(uint row) {
aoqi@0 1528 return bci0_offset + row * ret_row_cell_count;
aoqi@0 1529 }
aoqi@0 1530 static int bci_count_cell_index(uint row) {
aoqi@0 1531 return count0_offset + row * ret_row_cell_count;
aoqi@0 1532 }
aoqi@0 1533 static int bci_displacement_cell_index(uint row) {
aoqi@0 1534 return displacement0_offset + row * ret_row_cell_count;
aoqi@0 1535 }
aoqi@0 1536
aoqi@0 1537 // Direct accessors
aoqi@0 1538 int bci(uint row) const {
aoqi@0 1539 return int_at(bci_cell_index(row));
aoqi@0 1540 }
aoqi@0 1541 uint bci_count(uint row) const {
aoqi@0 1542 return uint_at(bci_count_cell_index(row));
aoqi@0 1543 }
aoqi@0 1544 int bci_displacement(uint row) const {
aoqi@0 1545 return int_at(bci_displacement_cell_index(row));
aoqi@0 1546 }
aoqi@0 1547
aoqi@0 1548 // Interpreter Runtime support
aoqi@0 1549 address fixup_ret(int return_bci, MethodData* mdo);
aoqi@0 1550
aoqi@0 1551 // Code generation support
aoqi@0 1552 static ByteSize bci_offset(uint row) {
aoqi@0 1553 return cell_offset(bci_cell_index(row));
aoqi@0 1554 }
aoqi@0 1555 static ByteSize bci_count_offset(uint row) {
aoqi@0 1556 return cell_offset(bci_count_cell_index(row));
aoqi@0 1557 }
aoqi@0 1558 static ByteSize bci_displacement_offset(uint row) {
aoqi@0 1559 return cell_offset(bci_displacement_cell_index(row));
aoqi@0 1560 }
aoqi@0 1561
aoqi@0 1562 #ifdef CC_INTERP
aoqi@0 1563 static DataLayout* advance(MethodData *md, int bci);
aoqi@0 1564 #endif // CC_INTERP
aoqi@0 1565
aoqi@0 1566 // Specific initialization.
aoqi@0 1567 void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 1568
aoqi@0 1569 #ifndef PRODUCT
aoqi@0 1570 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1571 #endif
aoqi@0 1572 };
aoqi@0 1573
aoqi@0 1574 // BranchData
aoqi@0 1575 //
aoqi@0 1576 // A BranchData is used to access profiling data for a two-way branch.
aoqi@0 1577 // It consists of taken and not_taken counts as well as a data displacement
aoqi@0 1578 // for the taken case.
aoqi@0 1579 class BranchData : public JumpData {
aoqi@0 1580 protected:
aoqi@0 1581 enum {
aoqi@0 1582 not_taken_off_set = jump_cell_count,
aoqi@0 1583 branch_cell_count
aoqi@0 1584 };
aoqi@0 1585
aoqi@0 1586 void set_displacement(int displacement) {
aoqi@0 1587 set_int_at(displacement_off_set, displacement);
aoqi@0 1588 }
aoqi@0 1589
aoqi@0 1590 public:
aoqi@0 1591 BranchData(DataLayout* layout) : JumpData(layout) {
aoqi@0 1592 assert(layout->tag() == DataLayout::branch_data_tag, "wrong type");
aoqi@0 1593 }
aoqi@0 1594
aoqi@0 1595 virtual bool is_BranchData() const { return true; }
aoqi@0 1596
aoqi@0 1597 static int static_cell_count() {
aoqi@0 1598 return branch_cell_count;
aoqi@0 1599 }
aoqi@0 1600
aoqi@0 1601 virtual int cell_count() const {
aoqi@0 1602 return static_cell_count();
aoqi@0 1603 }
aoqi@0 1604
aoqi@0 1605 // Direct accessor
aoqi@0 1606 uint not_taken() const {
aoqi@0 1607 return uint_at(not_taken_off_set);
aoqi@0 1608 }
aoqi@0 1609
aoqi@0 1610 void set_not_taken(uint cnt) {
aoqi@0 1611 set_uint_at(not_taken_off_set, cnt);
aoqi@0 1612 }
aoqi@0 1613
aoqi@0 1614 uint inc_not_taken() {
aoqi@0 1615 uint cnt = not_taken() + 1;
aoqi@0 1616 // Did we wrap? Will compiler screw us??
aoqi@0 1617 if (cnt == 0) cnt--;
aoqi@0 1618 set_uint_at(not_taken_off_set, cnt);
aoqi@0 1619 return cnt;
aoqi@0 1620 }
aoqi@0 1621
aoqi@0 1622 // Code generation support
aoqi@0 1623 static ByteSize not_taken_offset() {
aoqi@0 1624 return cell_offset(not_taken_off_set);
aoqi@0 1625 }
aoqi@0 1626 static ByteSize branch_data_size() {
aoqi@0 1627 return cell_offset(branch_cell_count);
aoqi@0 1628 }
aoqi@0 1629
aoqi@0 1630 #ifdef CC_INTERP
aoqi@0 1631 static int branch_data_size_in_bytes() {
aoqi@0 1632 return cell_offset_in_bytes(branch_cell_count);
aoqi@0 1633 }
aoqi@0 1634
aoqi@0 1635 static void increment_not_taken_count_no_overflow(DataLayout* layout) {
aoqi@0 1636 increment_uint_at_no_overflow(layout, not_taken_off_set);
aoqi@0 1637 }
aoqi@0 1638
aoqi@0 1639 static DataLayout* advance_not_taken(DataLayout* layout) {
aoqi@0 1640 return (DataLayout*) (((address)layout) + (ssize_t)BranchData::branch_data_size_in_bytes());
aoqi@0 1641 }
aoqi@0 1642 #endif // CC_INTERP
aoqi@0 1643
aoqi@0 1644 // Specific initialization.
aoqi@0 1645 void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 1646
aoqi@0 1647 #ifndef PRODUCT
aoqi@0 1648 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1649 #endif
aoqi@0 1650 };
aoqi@0 1651
aoqi@0 1652 // ArrayData
aoqi@0 1653 //
aoqi@0 1654 // A ArrayData is a base class for accessing profiling data which does
aoqi@0 1655 // not have a statically known size. It consists of an array length
aoqi@0 1656 // and an array start.
aoqi@0 1657 class ArrayData : public ProfileData {
aoqi@0 1658 protected:
aoqi@0 1659 friend class DataLayout;
aoqi@0 1660
aoqi@0 1661 enum {
aoqi@0 1662 array_len_off_set,
aoqi@0 1663 array_start_off_set
aoqi@0 1664 };
aoqi@0 1665
aoqi@0 1666 uint array_uint_at(int index) const {
aoqi@0 1667 int aindex = index + array_start_off_set;
aoqi@0 1668 return uint_at(aindex);
aoqi@0 1669 }
aoqi@0 1670 int array_int_at(int index) const {
aoqi@0 1671 int aindex = index + array_start_off_set;
aoqi@0 1672 return int_at(aindex);
aoqi@0 1673 }
aoqi@0 1674 oop array_oop_at(int index) const {
aoqi@0 1675 int aindex = index + array_start_off_set;
aoqi@0 1676 return oop_at(aindex);
aoqi@0 1677 }
aoqi@0 1678 void array_set_int_at(int index, int value) {
aoqi@0 1679 int aindex = index + array_start_off_set;
aoqi@0 1680 set_int_at(aindex, value);
aoqi@0 1681 }
aoqi@0 1682
aoqi@0 1683 #ifdef CC_INTERP
aoqi@0 1684 // Static low level accessors for DataLayout with ArrayData's semantics.
aoqi@0 1685
aoqi@0 1686 static void increment_array_uint_at_no_overflow(DataLayout* layout, int index) {
aoqi@0 1687 int aindex = index + array_start_off_set;
aoqi@0 1688 increment_uint_at_no_overflow(layout, aindex);
aoqi@0 1689 }
aoqi@0 1690
aoqi@0 1691 static int array_int_at(DataLayout* layout, int index) {
aoqi@0 1692 int aindex = index + array_start_off_set;
aoqi@0 1693 return int_at(layout, aindex);
aoqi@0 1694 }
aoqi@0 1695 #endif // CC_INTERP
aoqi@0 1696
aoqi@0 1697 // Code generation support for subclasses.
aoqi@0 1698 static ByteSize array_element_offset(int index) {
aoqi@0 1699 return cell_offset(array_start_off_set + index);
aoqi@0 1700 }
aoqi@0 1701
aoqi@0 1702 public:
aoqi@0 1703 ArrayData(DataLayout* layout) : ProfileData(layout) {}
aoqi@0 1704
aoqi@0 1705 virtual bool is_ArrayData() const { return true; }
aoqi@0 1706
aoqi@0 1707 static int static_cell_count() {
aoqi@0 1708 return -1;
aoqi@0 1709 }
aoqi@0 1710
aoqi@0 1711 int array_len() const {
aoqi@0 1712 return int_at_unchecked(array_len_off_set);
aoqi@0 1713 }
aoqi@0 1714
aoqi@0 1715 virtual int cell_count() const {
aoqi@0 1716 return array_len() + 1;
aoqi@0 1717 }
aoqi@0 1718
aoqi@0 1719 // Code generation support
aoqi@0 1720 static ByteSize array_len_offset() {
aoqi@0 1721 return cell_offset(array_len_off_set);
aoqi@0 1722 }
aoqi@0 1723 static ByteSize array_start_offset() {
aoqi@0 1724 return cell_offset(array_start_off_set);
aoqi@0 1725 }
aoqi@0 1726 };
aoqi@0 1727
aoqi@0 1728 // MultiBranchData
aoqi@0 1729 //
aoqi@0 1730 // A MultiBranchData is used to access profiling information for
aoqi@0 1731 // a multi-way branch (*switch bytecodes). It consists of a series
aoqi@0 1732 // of (count, displacement) pairs, which count the number of times each
aoqi@0 1733 // case was taken and specify the data displacment for each branch target.
aoqi@0 1734 class MultiBranchData : public ArrayData {
aoqi@0 1735 protected:
aoqi@0 1736 enum {
aoqi@0 1737 default_count_off_set,
aoqi@0 1738 default_disaplacement_off_set,
aoqi@0 1739 case_array_start
aoqi@0 1740 };
aoqi@0 1741 enum {
aoqi@0 1742 relative_count_off_set,
aoqi@0 1743 relative_displacement_off_set,
aoqi@0 1744 per_case_cell_count
aoqi@0 1745 };
aoqi@0 1746
aoqi@0 1747 void set_default_displacement(int displacement) {
aoqi@0 1748 array_set_int_at(default_disaplacement_off_set, displacement);
aoqi@0 1749 }
aoqi@0 1750 void set_displacement_at(int index, int displacement) {
aoqi@0 1751 array_set_int_at(case_array_start +
aoqi@0 1752 index * per_case_cell_count +
aoqi@0 1753 relative_displacement_off_set,
aoqi@0 1754 displacement);
aoqi@0 1755 }
aoqi@0 1756
aoqi@0 1757 public:
aoqi@0 1758 MultiBranchData(DataLayout* layout) : ArrayData(layout) {
aoqi@0 1759 assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type");
aoqi@0 1760 }
aoqi@0 1761
aoqi@0 1762 virtual bool is_MultiBranchData() const { return true; }
aoqi@0 1763
aoqi@0 1764 static int compute_cell_count(BytecodeStream* stream);
aoqi@0 1765
aoqi@0 1766 int number_of_cases() const {
aoqi@0 1767 int alen = array_len() - 2; // get rid of default case here.
aoqi@0 1768 assert(alen % per_case_cell_count == 0, "must be even");
aoqi@0 1769 return (alen / per_case_cell_count);
aoqi@0 1770 }
aoqi@0 1771
aoqi@0 1772 uint default_count() const {
aoqi@0 1773 return array_uint_at(default_count_off_set);
aoqi@0 1774 }
aoqi@0 1775 int default_displacement() const {
aoqi@0 1776 return array_int_at(default_disaplacement_off_set);
aoqi@0 1777 }
aoqi@0 1778
aoqi@0 1779 uint count_at(int index) const {
aoqi@0 1780 return array_uint_at(case_array_start +
aoqi@0 1781 index * per_case_cell_count +
aoqi@0 1782 relative_count_off_set);
aoqi@0 1783 }
aoqi@0 1784 int displacement_at(int index) const {
aoqi@0 1785 return array_int_at(case_array_start +
aoqi@0 1786 index * per_case_cell_count +
aoqi@0 1787 relative_displacement_off_set);
aoqi@0 1788 }
aoqi@0 1789
aoqi@0 1790 // Code generation support
aoqi@0 1791 static ByteSize default_count_offset() {
aoqi@0 1792 return array_element_offset(default_count_off_set);
aoqi@0 1793 }
aoqi@0 1794 static ByteSize default_displacement_offset() {
aoqi@0 1795 return array_element_offset(default_disaplacement_off_set);
aoqi@0 1796 }
aoqi@0 1797 static ByteSize case_count_offset(int index) {
aoqi@0 1798 return case_array_offset() +
aoqi@0 1799 (per_case_size() * index) +
aoqi@0 1800 relative_count_offset();
aoqi@0 1801 }
aoqi@0 1802 static ByteSize case_array_offset() {
aoqi@0 1803 return array_element_offset(case_array_start);
aoqi@0 1804 }
aoqi@0 1805 static ByteSize per_case_size() {
aoqi@0 1806 return in_ByteSize(per_case_cell_count) * cell_size;
aoqi@0 1807 }
aoqi@0 1808 static ByteSize relative_count_offset() {
aoqi@0 1809 return in_ByteSize(relative_count_off_set) * cell_size;
aoqi@0 1810 }
aoqi@0 1811 static ByteSize relative_displacement_offset() {
aoqi@0 1812 return in_ByteSize(relative_displacement_off_set) * cell_size;
aoqi@0 1813 }
aoqi@0 1814
aoqi@0 1815 #ifdef CC_INTERP
aoqi@0 1816 static void increment_count_no_overflow(DataLayout* layout, int index) {
aoqi@0 1817 if (index == -1) {
aoqi@0 1818 increment_array_uint_at_no_overflow(layout, default_count_off_set);
aoqi@0 1819 } else {
aoqi@0 1820 increment_array_uint_at_no_overflow(layout, case_array_start +
aoqi@0 1821 index * per_case_cell_count +
aoqi@0 1822 relative_count_off_set);
aoqi@0 1823 }
aoqi@0 1824 }
aoqi@0 1825
aoqi@0 1826 static DataLayout* advance(DataLayout* layout, int index) {
aoqi@0 1827 if (index == -1) {
aoqi@0 1828 return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, default_disaplacement_off_set));
aoqi@0 1829 } else {
aoqi@0 1830 return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, case_array_start +
aoqi@0 1831 index * per_case_cell_count +
aoqi@0 1832 relative_displacement_off_set));
aoqi@0 1833 }
aoqi@0 1834 }
aoqi@0 1835 #endif // CC_INTERP
aoqi@0 1836
aoqi@0 1837 // Specific initialization.
aoqi@0 1838 void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 1839
aoqi@0 1840 #ifndef PRODUCT
aoqi@0 1841 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1842 #endif
aoqi@0 1843 };
aoqi@0 1844
aoqi@0 1845 class ArgInfoData : public ArrayData {
aoqi@0 1846
aoqi@0 1847 public:
aoqi@0 1848 ArgInfoData(DataLayout* layout) : ArrayData(layout) {
aoqi@0 1849 assert(layout->tag() == DataLayout::arg_info_data_tag, "wrong type");
aoqi@0 1850 }
aoqi@0 1851
aoqi@0 1852 virtual bool is_ArgInfoData() const { return true; }
aoqi@0 1853
aoqi@0 1854
aoqi@0 1855 int number_of_args() const {
aoqi@0 1856 return array_len();
aoqi@0 1857 }
aoqi@0 1858
aoqi@0 1859 uint arg_modified(int arg) const {
aoqi@0 1860 return array_uint_at(arg);
aoqi@0 1861 }
aoqi@0 1862
aoqi@0 1863 void set_arg_modified(int arg, uint val) {
aoqi@0 1864 array_set_int_at(arg, val);
aoqi@0 1865 }
aoqi@0 1866
aoqi@0 1867 #ifndef PRODUCT
aoqi@0 1868 void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1869 #endif
aoqi@0 1870 };
aoqi@0 1871
aoqi@0 1872 // ParametersTypeData
aoqi@0 1873 //
aoqi@0 1874 // A ParametersTypeData is used to access profiling information about
aoqi@0 1875 // types of parameters to a method
aoqi@0 1876 class ParametersTypeData : public ArrayData {
aoqi@0 1877
aoqi@0 1878 private:
aoqi@0 1879 TypeStackSlotEntries _parameters;
aoqi@0 1880
aoqi@0 1881 static int stack_slot_local_offset(int i) {
aoqi@0 1882 assert_profiling_enabled();
aoqi@0 1883 return array_start_off_set + TypeStackSlotEntries::stack_slot_local_offset(i);
aoqi@0 1884 }
aoqi@0 1885
aoqi@0 1886 static int type_local_offset(int i) {
aoqi@0 1887 assert_profiling_enabled();
aoqi@0 1888 return array_start_off_set + TypeStackSlotEntries::type_local_offset(i);
aoqi@0 1889 }
aoqi@0 1890
aoqi@0 1891 static bool profiling_enabled();
aoqi@0 1892 static void assert_profiling_enabled() {
aoqi@0 1893 assert(profiling_enabled(), "method parameters profiling should be on");
aoqi@0 1894 }
aoqi@0 1895
aoqi@0 1896 public:
aoqi@0 1897 ParametersTypeData(DataLayout* layout) : ArrayData(layout), _parameters(1, number_of_parameters()) {
aoqi@0 1898 assert(layout->tag() == DataLayout::parameters_type_data_tag, "wrong type");
aoqi@0 1899 // Some compilers (VC++) don't want this passed in member initialization list
aoqi@0 1900 _parameters.set_profile_data(this);
aoqi@0 1901 }
aoqi@0 1902
aoqi@0 1903 static int compute_cell_count(Method* m);
aoqi@0 1904
aoqi@0 1905 virtual bool is_ParametersTypeData() const { return true; }
aoqi@0 1906
aoqi@0 1907 virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
aoqi@0 1908
aoqi@0 1909 int number_of_parameters() const {
aoqi@0 1910 return array_len() / TypeStackSlotEntries::per_arg_count();
aoqi@0 1911 }
aoqi@0 1912
aoqi@0 1913 const TypeStackSlotEntries* parameters() const { return &_parameters; }
aoqi@0 1914
aoqi@0 1915 uint stack_slot(int i) const {
aoqi@0 1916 return _parameters.stack_slot(i);
aoqi@0 1917 }
aoqi@0 1918
aoqi@0 1919 void set_type(int i, Klass* k) {
aoqi@0 1920 intptr_t current = _parameters.type(i);
aoqi@0 1921 _parameters.set_type(i, TypeEntries::with_status((intptr_t)k, current));
aoqi@0 1922 }
aoqi@0 1923
aoqi@0 1924 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
aoqi@0 1925 _parameters.clean_weak_klass_links(is_alive_closure);
aoqi@0 1926 }
aoqi@0 1927
aoqi@0 1928 #ifndef PRODUCT
aoqi@0 1929 virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1930 #endif
aoqi@0 1931
aoqi@0 1932 static ByteSize stack_slot_offset(int i) {
aoqi@0 1933 return cell_offset(stack_slot_local_offset(i));
aoqi@0 1934 }
aoqi@0 1935
aoqi@0 1936 static ByteSize type_offset(int i) {
aoqi@0 1937 return cell_offset(type_local_offset(i));
aoqi@0 1938 }
aoqi@0 1939 };
aoqi@0 1940
aoqi@0 1941 // SpeculativeTrapData
aoqi@0 1942 //
aoqi@0 1943 // A SpeculativeTrapData is used to record traps due to type
aoqi@0 1944 // speculation. It records the root of the compilation: that type
aoqi@0 1945 // speculation is wrong in the context of one compilation (for
aoqi@0 1946 // method1) doesn't mean it's wrong in the context of another one (for
aoqi@0 1947 // method2). Type speculation could have more/different data in the
aoqi@0 1948 // context of the compilation of method2 and it's worthwhile to try an
aoqi@0 1949 // optimization that failed for compilation of method1 in the context
aoqi@0 1950 // of compilation of method2.
aoqi@0 1951 // Space for SpeculativeTrapData entries is allocated from the extra
aoqi@0 1952 // data space in the MDO. If we run out of space, the trap data for
aoqi@0 1953 // the ProfileData at that bci is updated.
aoqi@0 1954 class SpeculativeTrapData : public ProfileData {
aoqi@0 1955 protected:
aoqi@0 1956 enum {
aoqi@0 1957 method_offset,
aoqi@0 1958 speculative_trap_cell_count
aoqi@0 1959 };
aoqi@0 1960 public:
aoqi@0 1961 SpeculativeTrapData(DataLayout* layout) : ProfileData(layout) {
aoqi@0 1962 assert(layout->tag() == DataLayout::speculative_trap_data_tag, "wrong type");
aoqi@0 1963 }
aoqi@0 1964
aoqi@0 1965 virtual bool is_SpeculativeTrapData() const { return true; }
aoqi@0 1966
aoqi@0 1967 static int static_cell_count() {
aoqi@0 1968 return speculative_trap_cell_count;
aoqi@0 1969 }
aoqi@0 1970
aoqi@0 1971 virtual int cell_count() const {
aoqi@0 1972 return static_cell_count();
aoqi@0 1973 }
aoqi@0 1974
aoqi@0 1975 // Direct accessor
aoqi@0 1976 Method* method() const {
aoqi@0 1977 return (Method*)intptr_at(method_offset);
aoqi@0 1978 }
aoqi@0 1979
aoqi@0 1980 void set_method(Method* m) {
aoqi@0 1981 set_intptr_at(method_offset, (intptr_t)m);
aoqi@0 1982 }
aoqi@0 1983
aoqi@0 1984 #ifndef PRODUCT
aoqi@0 1985 virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
aoqi@0 1986 #endif
aoqi@0 1987 };
aoqi@0 1988
aoqi@0 1989 // MethodData*
aoqi@0 1990 //
aoqi@0 1991 // A MethodData* holds information which has been collected about
aoqi@0 1992 // a method. Its layout looks like this:
aoqi@0 1993 //
aoqi@0 1994 // -----------------------------
aoqi@0 1995 // | header |
aoqi@0 1996 // | klass |
aoqi@0 1997 // -----------------------------
aoqi@0 1998 // | method |
aoqi@0 1999 // | size of the MethodData* |
aoqi@0 2000 // -----------------------------
aoqi@0 2001 // | Data entries... |
aoqi@0 2002 // | (variable size) |
aoqi@0 2003 // | |
aoqi@0 2004 // . .
aoqi@0 2005 // . .
aoqi@0 2006 // . .
aoqi@0 2007 // | |
aoqi@0 2008 // -----------------------------
aoqi@0 2009 //
aoqi@0 2010 // The data entry area is a heterogeneous array of DataLayouts. Each
aoqi@0 2011 // DataLayout in the array corresponds to a specific bytecode in the
aoqi@0 2012 // method. The entries in the array are sorted by the corresponding
aoqi@0 2013 // bytecode. Access to the data is via resource-allocated ProfileData,
aoqi@0 2014 // which point to the underlying blocks of DataLayout structures.
aoqi@0 2015 //
aoqi@0 2016 // During interpretation, if profiling in enabled, the interpreter
aoqi@0 2017 // maintains a method data pointer (mdp), which points at the entry
aoqi@0 2018 // in the array corresponding to the current bci. In the course of
aoqi@0 2019 // intepretation, when a bytecode is encountered that has profile data
aoqi@0 2020 // associated with it, the entry pointed to by mdp is updated, then the
aoqi@0 2021 // mdp is adjusted to point to the next appropriate DataLayout. If mdp
aoqi@0 2022 // is NULL to begin with, the interpreter assumes that the current method
aoqi@0 2023 // is not (yet) being profiled.
aoqi@0 2024 //
aoqi@0 2025 // In MethodData* parlance, "dp" is a "data pointer", the actual address
aoqi@0 2026 // of a DataLayout element. A "di" is a "data index", the offset in bytes
aoqi@0 2027 // from the base of the data entry array. A "displacement" is the byte offset
aoqi@0 2028 // in certain ProfileData objects that indicate the amount the mdp must be
aoqi@0 2029 // adjusted in the event of a change in control flow.
aoqi@0 2030 //
aoqi@0 2031
aoqi@0 2032 CC_INTERP_ONLY(class BytecodeInterpreter;)
aoqi@0 2033
aoqi@0 2034 class MethodData : public Metadata {
aoqi@0 2035 friend class VMStructs;
aoqi@0 2036 CC_INTERP_ONLY(friend class BytecodeInterpreter;)
aoqi@0 2037 private:
aoqi@0 2038 friend class ProfileData;
aoqi@0 2039
aoqi@0 2040 // Back pointer to the Method*
aoqi@0 2041 Method* _method;
aoqi@0 2042
aoqi@0 2043 // Size of this oop in bytes
aoqi@0 2044 int _size;
aoqi@0 2045
aoqi@0 2046 // Cached hint for bci_to_dp and bci_to_data
aoqi@0 2047 int _hint_di;
aoqi@0 2048
aoqi@0 2049 Mutex _extra_data_lock;
aoqi@0 2050
aoqi@0 2051 MethodData(methodHandle method, int size, TRAPS);
aoqi@0 2052 public:
aoqi@0 2053 static MethodData* allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS);
aoqi@0 2054 MethodData() : _extra_data_lock(Monitor::leaf, "MDO extra data lock") {}; // For ciMethodData
aoqi@0 2055
aoqi@0 2056 bool is_methodData() const volatile { return true; }
aoqi@0 2057
aoqi@0 2058 // Whole-method sticky bits and flags
aoqi@0 2059 enum {
aoqi@0 2060 _trap_hist_limit = 19, // decoupled from Deoptimization::Reason_LIMIT
aoqi@0 2061 _trap_hist_mask = max_jubyte,
aoqi@0 2062 _extra_data_count = 4 // extra DataLayout headers, for trap history
aoqi@0 2063 }; // Public flag values
aoqi@0 2064 private:
aoqi@0 2065 uint _nof_decompiles; // count of all nmethod removals
aoqi@0 2066 uint _nof_overflow_recompiles; // recompile count, excluding recomp. bits
aoqi@0 2067 uint _nof_overflow_traps; // trap count, excluding _trap_hist
aoqi@0 2068 union {
aoqi@0 2069 intptr_t _align;
aoqi@0 2070 u1 _array[_trap_hist_limit];
aoqi@0 2071 } _trap_hist;
aoqi@0 2072
aoqi@0 2073 // Support for interprocedural escape analysis, from Thomas Kotzmann.
aoqi@0 2074 intx _eflags; // flags on escape information
aoqi@0 2075 intx _arg_local; // bit set of non-escaping arguments
aoqi@0 2076 intx _arg_stack; // bit set of stack-allocatable arguments
aoqi@0 2077 intx _arg_returned; // bit set of returned arguments
aoqi@0 2078
aoqi@0 2079 int _creation_mileage; // method mileage at MDO creation
aoqi@0 2080
aoqi@0 2081 // How many invocations has this MDO seen?
aoqi@0 2082 // These counters are used to determine the exact age of MDO.
aoqi@0 2083 // We need those because in tiered a method can be concurrently
aoqi@0 2084 // executed at different levels.
aoqi@0 2085 InvocationCounter _invocation_counter;
aoqi@0 2086 // Same for backedges.
aoqi@0 2087 InvocationCounter _backedge_counter;
aoqi@0 2088 // Counter values at the time profiling started.
aoqi@0 2089 int _invocation_counter_start;
aoqi@0 2090 int _backedge_counter_start;
aoqi@0 2091
aoqi@0 2092 #if INCLUDE_RTM_OPT
aoqi@0 2093 // State of RTM code generation during compilation of the method
aoqi@0 2094 int _rtm_state;
aoqi@0 2095 #endif
aoqi@0 2096
aoqi@0 2097 // Number of loops and blocks is computed when compiling the first
aoqi@0 2098 // time with C1. It is used to determine if method is trivial.
aoqi@0 2099 short _num_loops;
aoqi@0 2100 short _num_blocks;
aoqi@0 2101 // Highest compile level this method has ever seen.
aoqi@0 2102 u1 _highest_comp_level;
aoqi@0 2103 // Same for OSR level
aoqi@0 2104 u1 _highest_osr_comp_level;
aoqi@0 2105 // Does this method contain anything worth profiling?
aoqi@0 2106 bool _would_profile;
aoqi@0 2107
aoqi@0 2108 // Size of _data array in bytes. (Excludes header and extra_data fields.)
aoqi@0 2109 int _data_size;
aoqi@0 2110
aoqi@0 2111 // data index for the area dedicated to parameters. -1 if no
aoqi@0 2112 // parameter profiling.
aoqi@0 2113 int _parameters_type_data_di;
aoqi@0 2114
aoqi@0 2115 // Beginning of the data entries
aoqi@0 2116 intptr_t _data[1];
aoqi@0 2117
aoqi@0 2118 // Helper for size computation
aoqi@0 2119 static int compute_data_size(BytecodeStream* stream);
aoqi@0 2120 static int bytecode_cell_count(Bytecodes::Code code);
aoqi@0 2121 static bool is_speculative_trap_bytecode(Bytecodes::Code code);
aoqi@0 2122 enum { no_profile_data = -1, variable_cell_count = -2 };
aoqi@0 2123
aoqi@0 2124 // Helper for initialization
aoqi@0 2125 DataLayout* data_layout_at(int data_index) const {
aoqi@0 2126 assert(data_index % sizeof(intptr_t) == 0, "unaligned");
aoqi@0 2127 return (DataLayout*) (((address)_data) + data_index);
aoqi@0 2128 }
aoqi@0 2129
aoqi@0 2130 // Initialize an individual data segment. Returns the size of
aoqi@0 2131 // the segment in bytes.
aoqi@0 2132 int initialize_data(BytecodeStream* stream, int data_index);
aoqi@0 2133
aoqi@0 2134 // Helper for data_at
aoqi@0 2135 DataLayout* limit_data_position() const {
aoqi@0 2136 return (DataLayout*)((address)data_base() + _data_size);
aoqi@0 2137 }
aoqi@0 2138 bool out_of_bounds(int data_index) const {
aoqi@0 2139 return data_index >= data_size();
aoqi@0 2140 }
aoqi@0 2141
aoqi@0 2142 // Give each of the data entries a chance to perform specific
aoqi@0 2143 // data initialization.
aoqi@0 2144 void post_initialize(BytecodeStream* stream);
aoqi@0 2145
aoqi@0 2146 // hint accessors
aoqi@0 2147 int hint_di() const { return _hint_di; }
aoqi@0 2148 void set_hint_di(int di) {
aoqi@0 2149 assert(!out_of_bounds(di), "hint_di out of bounds");
aoqi@0 2150 _hint_di = di;
aoqi@0 2151 }
aoqi@0 2152 ProfileData* data_before(int bci) {
aoqi@0 2153 // avoid SEGV on this edge case
aoqi@0 2154 if (data_size() == 0)
aoqi@0 2155 return NULL;
aoqi@0 2156 int hint = hint_di();
aoqi@0 2157 if (data_layout_at(hint)->bci() <= bci)
aoqi@0 2158 return data_at(hint);
aoqi@0 2159 return first_data();
aoqi@0 2160 }
aoqi@0 2161
aoqi@0 2162 // What is the index of the first data entry?
aoqi@0 2163 int first_di() const { return 0; }
aoqi@0 2164
aoqi@0 2165 ProfileData* bci_to_extra_data_helper(int bci, Method* m, DataLayout*& dp, bool concurrent);
aoqi@0 2166 // Find or create an extra ProfileData:
aoqi@0 2167 ProfileData* bci_to_extra_data(int bci, Method* m, bool create_if_missing);
aoqi@0 2168
aoqi@0 2169 // return the argument info cell
aoqi@0 2170 ArgInfoData *arg_info();
aoqi@0 2171
aoqi@0 2172 enum {
aoqi@0 2173 no_type_profile = 0,
aoqi@0 2174 type_profile_jsr292 = 1,
aoqi@0 2175 type_profile_all = 2
aoqi@0 2176 };
aoqi@0 2177
aoqi@0 2178 static bool profile_jsr292(methodHandle m, int bci);
aoqi@0 2179 static int profile_arguments_flag();
aoqi@0 2180 static bool profile_all_arguments();
aoqi@0 2181 static bool profile_arguments_for_invoke(methodHandle m, int bci);
aoqi@0 2182 static int profile_return_flag();
aoqi@0 2183 static bool profile_all_return();
aoqi@0 2184 static bool profile_return_for_invoke(methodHandle m, int bci);
aoqi@0 2185 static int profile_parameters_flag();
aoqi@0 2186 static bool profile_parameters_jsr292_only();
aoqi@0 2187 static bool profile_all_parameters();
aoqi@0 2188
aoqi@0 2189 void clean_extra_data(BoolObjectClosure* is_alive);
aoqi@0 2190 void clean_extra_data_helper(DataLayout* dp, int shift, bool reset = false);
aoqi@0 2191 void verify_extra_data_clean(BoolObjectClosure* is_alive);
aoqi@0 2192
aoqi@0 2193 public:
aoqi@0 2194 static int header_size() {
aoqi@0 2195 return sizeof(MethodData)/wordSize;
aoqi@0 2196 }
aoqi@0 2197
aoqi@0 2198 // Compute the size of a MethodData* before it is created.
aoqi@0 2199 static int compute_allocation_size_in_bytes(methodHandle method);
aoqi@0 2200 static int compute_allocation_size_in_words(methodHandle method);
aoqi@0 2201 static int compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps);
aoqi@0 2202
aoqi@0 2203 // Determine if a given bytecode can have profile information.
aoqi@0 2204 static bool bytecode_has_profile(Bytecodes::Code code) {
aoqi@0 2205 return bytecode_cell_count(code) != no_profile_data;
aoqi@0 2206 }
aoqi@0 2207
aoqi@0 2208 // reset into original state
aoqi@0 2209 void init();
aoqi@0 2210
aoqi@0 2211 // My size
aoqi@0 2212 int size_in_bytes() const { return _size; }
aoqi@0 2213 int size() const { return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord); }
aoqi@0 2214 #if INCLUDE_SERVICES
aoqi@0 2215 void collect_statistics(KlassSizeStats *sz) const;
aoqi@0 2216 #endif
aoqi@0 2217
aoqi@0 2218 int creation_mileage() const { return _creation_mileage; }
aoqi@0 2219 void set_creation_mileage(int x) { _creation_mileage = x; }
aoqi@0 2220
aoqi@0 2221 int invocation_count() {
aoqi@0 2222 if (invocation_counter()->carry()) {
aoqi@0 2223 return InvocationCounter::count_limit;
aoqi@0 2224 }
aoqi@0 2225 return invocation_counter()->count();
aoqi@0 2226 }
aoqi@0 2227 int backedge_count() {
aoqi@0 2228 if (backedge_counter()->carry()) {
aoqi@0 2229 return InvocationCounter::count_limit;
aoqi@0 2230 }
aoqi@0 2231 return backedge_counter()->count();
aoqi@0 2232 }
aoqi@0 2233
aoqi@0 2234 int invocation_count_start() {
aoqi@0 2235 if (invocation_counter()->carry()) {
aoqi@0 2236 return 0;
aoqi@0 2237 }
aoqi@0 2238 return _invocation_counter_start;
aoqi@0 2239 }
aoqi@0 2240
aoqi@0 2241 int backedge_count_start() {
aoqi@0 2242 if (backedge_counter()->carry()) {
aoqi@0 2243 return 0;
aoqi@0 2244 }
aoqi@0 2245 return _backedge_counter_start;
aoqi@0 2246 }
aoqi@0 2247
aoqi@0 2248 int invocation_count_delta() { return invocation_count() - invocation_count_start(); }
aoqi@0 2249 int backedge_count_delta() { return backedge_count() - backedge_count_start(); }
aoqi@0 2250
aoqi@0 2251 void reset_start_counters() {
aoqi@0 2252 _invocation_counter_start = invocation_count();
aoqi@0 2253 _backedge_counter_start = backedge_count();
aoqi@0 2254 }
aoqi@0 2255
aoqi@0 2256 InvocationCounter* invocation_counter() { return &_invocation_counter; }
aoqi@0 2257 InvocationCounter* backedge_counter() { return &_backedge_counter; }
aoqi@0 2258
aoqi@0 2259 #if INCLUDE_RTM_OPT
aoqi@0 2260 int rtm_state() const {
aoqi@0 2261 return _rtm_state;
aoqi@0 2262 }
aoqi@0 2263 void set_rtm_state(RTMState rstate) {
aoqi@0 2264 _rtm_state = (int)rstate;
aoqi@0 2265 }
aoqi@0 2266 void atomic_set_rtm_state(RTMState rstate) {
aoqi@0 2267 Atomic::store((int)rstate, &_rtm_state);
aoqi@0 2268 }
aoqi@0 2269
aoqi@0 2270 static int rtm_state_offset_in_bytes() {
aoqi@0 2271 return offset_of(MethodData, _rtm_state);
aoqi@0 2272 }
aoqi@0 2273 #endif
aoqi@0 2274
aoqi@0 2275 void set_would_profile(bool p) { _would_profile = p; }
aoqi@0 2276 bool would_profile() const { return _would_profile; }
aoqi@0 2277
aoqi@0 2278 int highest_comp_level() const { return _highest_comp_level; }
aoqi@0 2279 void set_highest_comp_level(int level) { _highest_comp_level = level; }
aoqi@0 2280 int highest_osr_comp_level() const { return _highest_osr_comp_level; }
aoqi@0 2281 void set_highest_osr_comp_level(int level) { _highest_osr_comp_level = level; }
aoqi@0 2282
aoqi@0 2283 int num_loops() const { return _num_loops; }
aoqi@0 2284 void set_num_loops(int n) { _num_loops = n; }
aoqi@0 2285 int num_blocks() const { return _num_blocks; }
aoqi@0 2286 void set_num_blocks(int n) { _num_blocks = n; }
aoqi@0 2287
aoqi@0 2288 bool is_mature() const; // consult mileage and ProfileMaturityPercentage
aoqi@0 2289 static int mileage_of(Method* m);
aoqi@0 2290
aoqi@0 2291 // Support for interprocedural escape analysis, from Thomas Kotzmann.
aoqi@0 2292 enum EscapeFlag {
aoqi@0 2293 estimated = 1 << 0,
aoqi@0 2294 return_local = 1 << 1,
aoqi@0 2295 return_allocated = 1 << 2,
aoqi@0 2296 allocated_escapes = 1 << 3,
aoqi@0 2297 unknown_modified = 1 << 4
aoqi@0 2298 };
aoqi@0 2299
aoqi@0 2300 intx eflags() { return _eflags; }
aoqi@0 2301 intx arg_local() { return _arg_local; }
aoqi@0 2302 intx arg_stack() { return _arg_stack; }
aoqi@0 2303 intx arg_returned() { return _arg_returned; }
aoqi@0 2304 uint arg_modified(int a) { ArgInfoData *aid = arg_info();
aoqi@0 2305 assert(aid != NULL, "arg_info must be not null");
aoqi@0 2306 assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
aoqi@0 2307 return aid->arg_modified(a); }
aoqi@0 2308
aoqi@0 2309 void set_eflags(intx v) { _eflags = v; }
aoqi@0 2310 void set_arg_local(intx v) { _arg_local = v; }
aoqi@0 2311 void set_arg_stack(intx v) { _arg_stack = v; }
aoqi@0 2312 void set_arg_returned(intx v) { _arg_returned = v; }
aoqi@0 2313 void set_arg_modified(int a, uint v) { ArgInfoData *aid = arg_info();
aoqi@0 2314 assert(aid != NULL, "arg_info must be not null");
aoqi@0 2315 assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
aoqi@0 2316 aid->set_arg_modified(a, v); }
aoqi@0 2317
aoqi@0 2318 void clear_escape_info() { _eflags = _arg_local = _arg_stack = _arg_returned = 0; }
aoqi@0 2319
aoqi@0 2320 // Location and size of data area
aoqi@0 2321 address data_base() const {
aoqi@0 2322 return (address) _data;
aoqi@0 2323 }
aoqi@0 2324 int data_size() const {
aoqi@0 2325 return _data_size;
aoqi@0 2326 }
aoqi@0 2327
aoqi@0 2328 // Accessors
aoqi@0 2329 Method* method() const { return _method; }
aoqi@0 2330
aoqi@0 2331 // Get the data at an arbitrary (sort of) data index.
aoqi@0 2332 ProfileData* data_at(int data_index) const;
aoqi@0 2333
aoqi@0 2334 // Walk through the data in order.
aoqi@0 2335 ProfileData* first_data() const { return data_at(first_di()); }
aoqi@0 2336 ProfileData* next_data(ProfileData* current) const;
aoqi@0 2337 bool is_valid(ProfileData* current) const { return current != NULL; }
aoqi@0 2338
aoqi@0 2339 // Convert a dp (data pointer) to a di (data index).
aoqi@0 2340 int dp_to_di(address dp) const {
aoqi@0 2341 return dp - ((address)_data);
aoqi@0 2342 }
aoqi@0 2343
aoqi@0 2344 address di_to_dp(int di) {
aoqi@0 2345 return (address)data_layout_at(di);
aoqi@0 2346 }
aoqi@0 2347
aoqi@0 2348 // bci to di/dp conversion.
aoqi@0 2349 address bci_to_dp(int bci);
aoqi@0 2350 int bci_to_di(int bci) {
aoqi@0 2351 return dp_to_di(bci_to_dp(bci));
aoqi@0 2352 }
aoqi@0 2353
aoqi@0 2354 // Get the data at an arbitrary bci, or NULL if there is none.
aoqi@0 2355 ProfileData* bci_to_data(int bci);
aoqi@0 2356
aoqi@0 2357 // Same, but try to create an extra_data record if one is needed:
aoqi@0 2358 ProfileData* allocate_bci_to_data(int bci, Method* m) {
aoqi@0 2359 ProfileData* data = NULL;
aoqi@0 2360 // If m not NULL, try to allocate a SpeculativeTrapData entry
aoqi@0 2361 if (m == NULL) {
aoqi@0 2362 data = bci_to_data(bci);
aoqi@0 2363 }
aoqi@0 2364 if (data != NULL) {
aoqi@0 2365 return data;
aoqi@0 2366 }
aoqi@0 2367 data = bci_to_extra_data(bci, m, true);
aoqi@0 2368 if (data != NULL) {
aoqi@0 2369 return data;
aoqi@0 2370 }
aoqi@0 2371 // If SpeculativeTrapData allocation fails try to allocate a
aoqi@0 2372 // regular entry
aoqi@0 2373 data = bci_to_data(bci);
aoqi@0 2374 if (data != NULL) {
aoqi@0 2375 return data;
aoqi@0 2376 }
aoqi@0 2377 return bci_to_extra_data(bci, NULL, true);
aoqi@0 2378 }
aoqi@0 2379
aoqi@0 2380 // Add a handful of extra data records, for trap tracking.
aoqi@0 2381 DataLayout* extra_data_base() const { return limit_data_position(); }
aoqi@0 2382 DataLayout* extra_data_limit() const { return (DataLayout*)((address)this + size_in_bytes()); }
aoqi@0 2383 int extra_data_size() const { return (address)extra_data_limit()
aoqi@0 2384 - (address)extra_data_base(); }
aoqi@0 2385 static DataLayout* next_extra(DataLayout* dp);
aoqi@0 2386
aoqi@0 2387 // Return (uint)-1 for overflow.
aoqi@0 2388 uint trap_count(int reason) const {
aoqi@0 2389 assert((uint)reason < _trap_hist_limit, "oob");
aoqi@0 2390 return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1;
aoqi@0 2391 }
aoqi@0 2392 // For loops:
aoqi@0 2393 static uint trap_reason_limit() { return _trap_hist_limit; }
aoqi@0 2394 static uint trap_count_limit() { return _trap_hist_mask; }
aoqi@0 2395 uint inc_trap_count(int reason) {
aoqi@0 2396 // Count another trap, anywhere in this method.
aoqi@0 2397 assert(reason >= 0, "must be single trap");
aoqi@0 2398 if ((uint)reason < _trap_hist_limit) {
aoqi@0 2399 uint cnt1 = 1 + _trap_hist._array[reason];
aoqi@0 2400 if ((cnt1 & _trap_hist_mask) != 0) { // if no counter overflow...
aoqi@0 2401 _trap_hist._array[reason] = cnt1;
aoqi@0 2402 return cnt1;
aoqi@0 2403 } else {
aoqi@0 2404 return _trap_hist_mask + (++_nof_overflow_traps);
aoqi@0 2405 }
aoqi@0 2406 } else {
aoqi@0 2407 // Could not represent the count in the histogram.
aoqi@0 2408 return (++_nof_overflow_traps);
aoqi@0 2409 }
aoqi@0 2410 }
aoqi@0 2411
aoqi@0 2412 uint overflow_trap_count() const {
aoqi@0 2413 return _nof_overflow_traps;
aoqi@0 2414 }
aoqi@0 2415 uint overflow_recompile_count() const {
aoqi@0 2416 return _nof_overflow_recompiles;
aoqi@0 2417 }
aoqi@0 2418 void inc_overflow_recompile_count() {
aoqi@0 2419 _nof_overflow_recompiles += 1;
aoqi@0 2420 }
aoqi@0 2421 uint decompile_count() const {
aoqi@0 2422 return _nof_decompiles;
aoqi@0 2423 }
aoqi@0 2424 void inc_decompile_count() {
aoqi@0 2425 _nof_decompiles += 1;
aoqi@0 2426 if (decompile_count() > (uint)PerMethodRecompilationCutoff) {
aoqi@0 2427 method()->set_not_compilable(CompLevel_full_optimization, true, "decompile_count > PerMethodRecompilationCutoff");
aoqi@0 2428 }
aoqi@0 2429 }
aoqi@0 2430
aoqi@0 2431 // Return pointer to area dedicated to parameters in MDO
aoqi@0 2432 ParametersTypeData* parameters_type_data() const {
aoqi@0 2433 return _parameters_type_data_di != -1 ? data_layout_at(_parameters_type_data_di)->data_in()->as_ParametersTypeData() : NULL;
aoqi@0 2434 }
aoqi@0 2435
aoqi@0 2436 int parameters_type_data_di() const {
aoqi@0 2437 assert(_parameters_type_data_di != -1, "no args type data");
aoqi@0 2438 return _parameters_type_data_di;
aoqi@0 2439 }
aoqi@0 2440
aoqi@0 2441 // Support for code generation
aoqi@0 2442 static ByteSize data_offset() {
aoqi@0 2443 return byte_offset_of(MethodData, _data[0]);
aoqi@0 2444 }
aoqi@0 2445
aoqi@0 2446 static ByteSize invocation_counter_offset() {
aoqi@0 2447 return byte_offset_of(MethodData, _invocation_counter);
aoqi@0 2448 }
aoqi@0 2449 static ByteSize backedge_counter_offset() {
aoqi@0 2450 return byte_offset_of(MethodData, _backedge_counter);
aoqi@0 2451 }
aoqi@0 2452
aoqi@0 2453 static ByteSize parameters_type_data_di_offset() {
aoqi@0 2454 return byte_offset_of(MethodData, _parameters_type_data_di);
aoqi@0 2455 }
aoqi@0 2456
aoqi@0 2457 // Deallocation support - no pointer fields to deallocate
aoqi@0 2458 void deallocate_contents(ClassLoaderData* loader_data) {}
aoqi@0 2459
aoqi@0 2460 // GC support
aoqi@0 2461 void set_size(int object_size_in_bytes) { _size = object_size_in_bytes; }
aoqi@0 2462
aoqi@0 2463 // Printing
aoqi@0 2464 #ifndef PRODUCT
aoqi@0 2465 void print_on (outputStream* st) const;
aoqi@0 2466 #endif
aoqi@0 2467 void print_value_on(outputStream* st) const;
aoqi@0 2468
aoqi@0 2469 #ifndef PRODUCT
aoqi@0 2470 // printing support for method data
aoqi@0 2471 void print_data_on(outputStream* st) const;
aoqi@0 2472 #endif
aoqi@0 2473
aoqi@0 2474 const char* internal_name() const { return "{method data}"; }
aoqi@0 2475
aoqi@0 2476 // verification
aoqi@0 2477 void verify_on(outputStream* st);
aoqi@0 2478 void verify_data_on(outputStream* st);
aoqi@0 2479
aoqi@0 2480 static bool profile_parameters_for_method(methodHandle m);
aoqi@0 2481 static bool profile_arguments();
aoqi@0 2482 static bool profile_arguments_jsr292_only();
aoqi@0 2483 static bool profile_return();
aoqi@0 2484 static bool profile_parameters();
aoqi@0 2485 static bool profile_return_jsr292_only();
aoqi@0 2486
aoqi@0 2487 void clean_method_data(BoolObjectClosure* is_alive);
aoqi@0 2488 };
aoqi@0 2489
aoqi@0 2490 #endif // SHARE_VM_OOPS_METHODDATAOOP_HPP

mercurial