src/share/vm/code/codeBlob.cpp

Mon, 24 Sep 2012 10:30:14 -0700

author
kvn
date
Mon, 24 Sep 2012 10:30:14 -0700
changeset 4107
b31471cdc53e
parent 4037
da91efe96a93
child 4767
a5de0cc2f91c
permissions
-rw-r--r--

7200163: add CodeComments functionality to assember stubs
Summary: Pass the codeBuffer to the Stub constructor, and adapts the disassembler to print the comments.
Reviewed-by: jrose, kvn, twisti
Contributed-by: goetz.lindenmaier@sap.com

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "code/codeBlob.hpp"
stefank@2314 27 #include "code/codeCache.hpp"
stefank@2314 28 #include "code/relocInfo.hpp"
stefank@2314 29 #include "compiler/disassembler.hpp"
stefank@2314 30 #include "interpreter/bytecode.hpp"
stefank@2314 31 #include "memory/allocation.inline.hpp"
stefank@2314 32 #include "memory/heap.hpp"
stefank@2314 33 #include "oops/oop.inline.hpp"
stefank@2314 34 #include "prims/forte.hpp"
stefank@2314 35 #include "runtime/handles.inline.hpp"
stefank@2314 36 #include "runtime/interfaceSupport.hpp"
stefank@2314 37 #include "runtime/mutexLocker.hpp"
stefank@2314 38 #include "runtime/safepoint.hpp"
stefank@2314 39 #include "runtime/sharedRuntime.hpp"
stefank@2314 40 #include "runtime/vframe.hpp"
stefank@2314 41 #include "services/memoryService.hpp"
stefank@2314 42 #ifdef TARGET_ARCH_x86
stefank@2314 43 # include "nativeInst_x86.hpp"
stefank@2314 44 #endif
stefank@2314 45 #ifdef TARGET_ARCH_sparc
stefank@2314 46 # include "nativeInst_sparc.hpp"
stefank@2314 47 #endif
stefank@2314 48 #ifdef TARGET_ARCH_zero
stefank@2314 49 # include "nativeInst_zero.hpp"
stefank@2314 50 #endif
bobv@2508 51 #ifdef TARGET_ARCH_arm
bobv@2508 52 # include "nativeInst_arm.hpp"
bobv@2508 53 #endif
bobv@2508 54 #ifdef TARGET_ARCH_ppc
bobv@2508 55 # include "nativeInst_ppc.hpp"
bobv@2508 56 #endif
stefank@2314 57 #ifdef COMPILER1
stefank@2314 58 #include "c1/c1_Runtime1.hpp"
stefank@2314 59 #endif
duke@435 60
duke@435 61 unsigned int align_code_offset(int offset) {
duke@435 62 // align the size to CodeEntryAlignment
duke@435 63 return
duke@435 64 ((offset + (int)CodeHeap::header_size() + (CodeEntryAlignment-1)) & ~(CodeEntryAlignment-1))
duke@435 65 - (int)CodeHeap::header_size();
duke@435 66 }
duke@435 67
duke@435 68
duke@435 69 // This must be consistent with the CodeBlob constructor's layout actions.
duke@435 70 unsigned int CodeBlob::allocation_size(CodeBuffer* cb, int header_size) {
duke@435 71 unsigned int size = header_size;
duke@435 72 size += round_to(cb->total_relocation_size(), oopSize);
duke@435 73 // align the size to CodeEntryAlignment
duke@435 74 size = align_code_offset(size);
twisti@2103 75 size += round_to(cb->total_content_size(), oopSize);
duke@435 76 size += round_to(cb->total_oop_size(), oopSize);
coleenp@4037 77 size += round_to(cb->total_metadata_size(), oopSize);
duke@435 78 return size;
duke@435 79 }
duke@435 80
duke@435 81
duke@435 82 // Creates a simple CodeBlob. Sets up the size of the different regions.
duke@435 83 CodeBlob::CodeBlob(const char* name, int header_size, int size, int frame_complete, int locs_size) {
twisti@2103 84 assert(size == round_to(size, oopSize), "unaligned size");
twisti@2103 85 assert(locs_size == round_to(locs_size, oopSize), "unaligned size");
duke@435 86 assert(header_size == round_to(header_size, oopSize), "unaligned size");
duke@435 87 assert(!UseRelocIndex, "no space allocated for reloc index yet");
duke@435 88
duke@435 89 // Note: If UseRelocIndex is enabled, there needs to be (at least) one
duke@435 90 // extra word for the relocation information, containing the reloc
duke@435 91 // index table length. Unfortunately, the reloc index table imple-
duke@435 92 // mentation is not easily understandable and thus it is not clear
duke@435 93 // what exactly the format is supposed to be. For now, we just turn
duke@435 94 // off the use of this table (gri 7/6/2000).
duke@435 95
duke@435 96 _name = name;
duke@435 97 _size = size;
duke@435 98 _frame_complete_offset = frame_complete;
duke@435 99 _header_size = header_size;
duke@435 100 _relocation_size = locs_size;
twisti@2103 101 _content_offset = align_code_offset(header_size + _relocation_size);
twisti@2103 102 _code_offset = _content_offset;
duke@435 103 _data_offset = size;
duke@435 104 _frame_size = 0;
duke@435 105 set_oop_maps(NULL);
duke@435 106 }
duke@435 107
duke@435 108
duke@435 109 // Creates a CodeBlob from a CodeBuffer. Sets up the size of the different regions,
duke@435 110 // and copy code and relocation info.
duke@435 111 CodeBlob::CodeBlob(
duke@435 112 const char* name,
duke@435 113 CodeBuffer* cb,
duke@435 114 int header_size,
duke@435 115 int size,
duke@435 116 int frame_complete,
duke@435 117 int frame_size,
duke@435 118 OopMapSet* oop_maps
duke@435 119 ) {
twisti@2103 120 assert(size == round_to(size, oopSize), "unaligned size");
duke@435 121 assert(header_size == round_to(header_size, oopSize), "unaligned size");
duke@435 122
duke@435 123 _name = name;
duke@435 124 _size = size;
duke@435 125 _frame_complete_offset = frame_complete;
duke@435 126 _header_size = header_size;
duke@435 127 _relocation_size = round_to(cb->total_relocation_size(), oopSize);
twisti@2103 128 _content_offset = align_code_offset(header_size + _relocation_size);
twisti@2117 129 _code_offset = _content_offset + cb->total_offset_of(cb->insts());
twisti@2103 130 _data_offset = _content_offset + round_to(cb->total_content_size(), oopSize);
duke@435 131 assert(_data_offset <= size, "codeBlob is too small");
duke@435 132
duke@435 133 cb->copy_code_and_locs_to(this);
duke@435 134 set_oop_maps(oop_maps);
duke@435 135 _frame_size = frame_size;
duke@435 136 #ifdef COMPILER1
duke@435 137 // probably wrong for tiered
duke@435 138 assert(_frame_size >= -1, "must use frame size or -1 for runtime stubs");
duke@435 139 #endif // COMPILER1
duke@435 140 }
duke@435 141
duke@435 142
duke@435 143 void CodeBlob::set_oop_maps(OopMapSet* p) {
duke@435 144 // Danger Will Robinson! This method allocates a big
duke@435 145 // chunk of memory, its your job to free it.
duke@435 146 if (p != NULL) {
duke@435 147 // We need to allocate a chunk big enough to hold the OopMapSet and all of its OopMaps
zgu@3900 148 _oop_maps = (OopMapSet* )NEW_C_HEAP_ARRAY(unsigned char, p->heap_size(), mtCode);
duke@435 149 p->copy_to((address)_oop_maps);
duke@435 150 } else {
duke@435 151 _oop_maps = NULL;
duke@435 152 }
duke@435 153 }
duke@435 154
duke@435 155
never@2895 156 void CodeBlob::trace_new_stub(CodeBlob* stub, const char* name1, const char* name2) {
never@2895 157 // Do not hold the CodeCache lock during name formatting.
never@2895 158 assert(!CodeCache_lock->owned_by_self(), "release CodeCache before registering the stub");
never@2895 159
never@2895 160 if (stub != NULL) {
never@2895 161 char stub_id[256];
never@2895 162 assert(strlen(name1) + strlen(name2) < sizeof(stub_id), "");
never@2895 163 jio_snprintf(stub_id, sizeof(stub_id), "%s%s", name1, name2);
never@2895 164 if (PrintStubCode) {
kvn@4107 165 ttyLocker ttyl;
never@2895 166 tty->print_cr("Decoding %s " INTPTR_FORMAT, stub_id, (intptr_t) stub);
never@2895 167 Disassembler::decode(stub->code_begin(), stub->code_end());
kvn@4107 168 tty->cr();
never@2895 169 }
never@2895 170 Forte::register_stub(stub_id, stub->code_begin(), stub->code_end());
never@2895 171
never@2895 172 if (JvmtiExport::should_post_dynamic_code_generated()) {
never@2895 173 const char* stub_name = name2;
never@2895 174 if (name2[0] == '\0') stub_name = name1;
never@2895 175 JvmtiExport::post_dynamic_code_generated(stub_name, stub->code_begin(), stub->code_end());
never@2895 176 }
never@2895 177 }
never@2895 178
never@2895 179 // Track memory usage statistic after releasing CodeCache_lock
never@2895 180 MemoryService::track_code_cache_memory_usage();
never@2895 181 }
never@2895 182
never@2895 183
duke@435 184 void CodeBlob::flush() {
duke@435 185 if (_oop_maps) {
zgu@3900 186 FREE_C_HEAP_ARRAY(unsigned char, _oop_maps, mtCode);
duke@435 187 _oop_maps = NULL;
duke@435 188 }
duke@435 189 _comments.free();
duke@435 190 }
duke@435 191
duke@435 192
duke@435 193 OopMap* CodeBlob::oop_map_for_return_address(address return_address) {
twisti@2103 194 assert(oop_maps() != NULL, "nope");
twisti@2103 195 return oop_maps()->find_map_at_offset((intptr_t) return_address - (intptr_t) code_begin());
duke@435 196 }
duke@435 197
duke@435 198
duke@435 199 //----------------------------------------------------------------------------------------------------
duke@435 200 // Implementation of BufferBlob
duke@435 201
duke@435 202
duke@435 203 BufferBlob::BufferBlob(const char* name, int size)
duke@435 204 : CodeBlob(name, sizeof(BufferBlob), size, CodeOffsets::frame_never_safe, /*locs_size:*/ 0)
duke@435 205 {}
duke@435 206
duke@435 207 BufferBlob* BufferBlob::create(const char* name, int buffer_size) {
duke@435 208 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 209
duke@435 210 BufferBlob* blob = NULL;
duke@435 211 unsigned int size = sizeof(BufferBlob);
duke@435 212 // align the size to CodeEntryAlignment
duke@435 213 size = align_code_offset(size);
duke@435 214 size += round_to(buffer_size, oopSize);
duke@435 215 assert(name != NULL, "must provide a name");
duke@435 216 {
duke@435 217 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 218 blob = new (size) BufferBlob(name, size);
duke@435 219 }
duke@435 220 // Track memory usage statistic after releasing CodeCache_lock
duke@435 221 MemoryService::track_code_cache_memory_usage();
duke@435 222
duke@435 223 return blob;
duke@435 224 }
duke@435 225
duke@435 226
duke@435 227 BufferBlob::BufferBlob(const char* name, int size, CodeBuffer* cb)
duke@435 228 : CodeBlob(name, cb, sizeof(BufferBlob), size, CodeOffsets::frame_never_safe, 0, NULL)
duke@435 229 {}
duke@435 230
duke@435 231 BufferBlob* BufferBlob::create(const char* name, CodeBuffer* cb) {
duke@435 232 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 233
duke@435 234 BufferBlob* blob = NULL;
duke@435 235 unsigned int size = allocation_size(cb, sizeof(BufferBlob));
duke@435 236 assert(name != NULL, "must provide a name");
duke@435 237 {
duke@435 238 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 239 blob = new (size) BufferBlob(name, size, cb);
duke@435 240 }
duke@435 241 // Track memory usage statistic after releasing CodeCache_lock
duke@435 242 MemoryService::track_code_cache_memory_usage();
duke@435 243
duke@435 244 return blob;
duke@435 245 }
duke@435 246
duke@435 247
duke@435 248 void* BufferBlob::operator new(size_t s, unsigned size) {
duke@435 249 void* p = CodeCache::allocate(size);
duke@435 250 return p;
duke@435 251 }
duke@435 252
duke@435 253
duke@435 254 void BufferBlob::free( BufferBlob *blob ) {
duke@435 255 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 256 {
duke@435 257 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 258 CodeCache::free((CodeBlob*)blob);
duke@435 259 }
duke@435 260 // Track memory usage statistic after releasing CodeCache_lock
duke@435 261 MemoryService::track_code_cache_memory_usage();
duke@435 262 }
duke@435 263
twisti@1734 264
twisti@1734 265 //----------------------------------------------------------------------------------------------------
twisti@1734 266 // Implementation of AdapterBlob
twisti@1734 267
never@2018 268 AdapterBlob::AdapterBlob(int size, CodeBuffer* cb) :
never@2018 269 BufferBlob("I2C/C2I adapters", size, cb) {
never@2018 270 CodeCache::commit(this);
never@2018 271 }
never@2018 272
twisti@1734 273 AdapterBlob* AdapterBlob::create(CodeBuffer* cb) {
twisti@1734 274 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
twisti@1734 275
twisti@1734 276 AdapterBlob* blob = NULL;
twisti@1734 277 unsigned int size = allocation_size(cb, sizeof(AdapterBlob));
twisti@1734 278 {
twisti@1734 279 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
twisti@1734 280 blob = new (size) AdapterBlob(size, cb);
twisti@1734 281 }
twisti@1734 282 // Track memory usage statistic after releasing CodeCache_lock
twisti@1734 283 MemoryService::track_code_cache_memory_usage();
twisti@1734 284
twisti@1734 285 return blob;
duke@435 286 }
duke@435 287
twisti@1734 288
twisti@1734 289 //----------------------------------------------------------------------------------------------------
twisti@1734 290 // Implementation of MethodHandlesAdapterBlob
twisti@1734 291
twisti@1734 292 MethodHandlesAdapterBlob* MethodHandlesAdapterBlob::create(int buffer_size) {
twisti@1734 293 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
twisti@1734 294
twisti@1734 295 MethodHandlesAdapterBlob* blob = NULL;
twisti@1734 296 unsigned int size = sizeof(MethodHandlesAdapterBlob);
twisti@1734 297 // align the size to CodeEntryAlignment
twisti@1734 298 size = align_code_offset(size);
twisti@1734 299 size += round_to(buffer_size, oopSize);
twisti@1734 300 {
twisti@1734 301 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
twisti@1734 302 blob = new (size) MethodHandlesAdapterBlob(size);
twisti@1734 303 }
twisti@1734 304 // Track memory usage statistic after releasing CodeCache_lock
twisti@1734 305 MemoryService::track_code_cache_memory_usage();
twisti@1734 306
twisti@1734 307 return blob;
twisti@1734 308 }
twisti@1734 309
twisti@1734 310
duke@435 311 //----------------------------------------------------------------------------------------------------
duke@435 312 // Implementation of RuntimeStub
duke@435 313
duke@435 314 RuntimeStub::RuntimeStub(
duke@435 315 const char* name,
duke@435 316 CodeBuffer* cb,
duke@435 317 int size,
duke@435 318 int frame_complete,
duke@435 319 int frame_size,
duke@435 320 OopMapSet* oop_maps,
duke@435 321 bool caller_must_gc_arguments
duke@435 322 )
duke@435 323 : CodeBlob(name, cb, sizeof(RuntimeStub), size, frame_complete, frame_size, oop_maps)
duke@435 324 {
duke@435 325 _caller_must_gc_arguments = caller_must_gc_arguments;
duke@435 326 }
duke@435 327
duke@435 328
duke@435 329 RuntimeStub* RuntimeStub::new_runtime_stub(const char* stub_name,
duke@435 330 CodeBuffer* cb,
duke@435 331 int frame_complete,
duke@435 332 int frame_size,
duke@435 333 OopMapSet* oop_maps,
duke@435 334 bool caller_must_gc_arguments)
duke@435 335 {
duke@435 336 RuntimeStub* stub = NULL;
duke@435 337 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 338 {
duke@435 339 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 340 unsigned int size = allocation_size(cb, sizeof(RuntimeStub));
duke@435 341 stub = new (size) RuntimeStub(stub_name, cb, size, frame_complete, frame_size, oop_maps, caller_must_gc_arguments);
duke@435 342 }
duke@435 343
never@2895 344 trace_new_stub(stub, "RuntimeStub - ", stub_name);
duke@435 345
duke@435 346 return stub;
duke@435 347 }
duke@435 348
duke@435 349
duke@435 350 void* RuntimeStub::operator new(size_t s, unsigned size) {
duke@435 351 void* p = CodeCache::allocate(size);
duke@435 352 if (!p) fatal("Initial size of CodeCache is too small");
duke@435 353 return p;
duke@435 354 }
duke@435 355
never@2895 356 // operator new shared by all singletons:
never@2895 357 void* SingletonBlob::operator new(size_t s, unsigned size) {
never@2895 358 void* p = CodeCache::allocate(size);
never@2895 359 if (!p) fatal("Initial size of CodeCache is too small");
never@2895 360 return p;
never@2895 361 }
never@2895 362
never@2895 363
never@2895 364 //----------------------------------------------------------------------------------------------------
duke@435 365 // Implementation of DeoptimizationBlob
duke@435 366
duke@435 367 DeoptimizationBlob::DeoptimizationBlob(
duke@435 368 CodeBuffer* cb,
duke@435 369 int size,
duke@435 370 OopMapSet* oop_maps,
duke@435 371 int unpack_offset,
duke@435 372 int unpack_with_exception_offset,
duke@435 373 int unpack_with_reexecution_offset,
duke@435 374 int frame_size
duke@435 375 )
duke@435 376 : SingletonBlob("DeoptimizationBlob", cb, sizeof(DeoptimizationBlob), size, frame_size, oop_maps)
duke@435 377 {
duke@435 378 _unpack_offset = unpack_offset;
duke@435 379 _unpack_with_exception = unpack_with_exception_offset;
duke@435 380 _unpack_with_reexecution = unpack_with_reexecution_offset;
duke@435 381 #ifdef COMPILER1
duke@435 382 _unpack_with_exception_in_tls = -1;
duke@435 383 #endif
duke@435 384 }
duke@435 385
duke@435 386
duke@435 387 DeoptimizationBlob* DeoptimizationBlob::create(
duke@435 388 CodeBuffer* cb,
duke@435 389 OopMapSet* oop_maps,
duke@435 390 int unpack_offset,
duke@435 391 int unpack_with_exception_offset,
duke@435 392 int unpack_with_reexecution_offset,
duke@435 393 int frame_size)
duke@435 394 {
duke@435 395 DeoptimizationBlob* blob = NULL;
duke@435 396 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 397 {
duke@435 398 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 399 unsigned int size = allocation_size(cb, sizeof(DeoptimizationBlob));
duke@435 400 blob = new (size) DeoptimizationBlob(cb,
duke@435 401 size,
duke@435 402 oop_maps,
duke@435 403 unpack_offset,
duke@435 404 unpack_with_exception_offset,
duke@435 405 unpack_with_reexecution_offset,
duke@435 406 frame_size);
duke@435 407 }
duke@435 408
never@2895 409 trace_new_stub(blob, "DeoptimizationBlob");
duke@435 410
duke@435 411 return blob;
duke@435 412 }
duke@435 413
duke@435 414
duke@435 415 //----------------------------------------------------------------------------------------------------
duke@435 416 // Implementation of UncommonTrapBlob
duke@435 417
duke@435 418 #ifdef COMPILER2
duke@435 419 UncommonTrapBlob::UncommonTrapBlob(
duke@435 420 CodeBuffer* cb,
duke@435 421 int size,
duke@435 422 OopMapSet* oop_maps,
duke@435 423 int frame_size
duke@435 424 )
duke@435 425 : SingletonBlob("UncommonTrapBlob", cb, sizeof(UncommonTrapBlob), size, frame_size, oop_maps)
duke@435 426 {}
duke@435 427
duke@435 428
duke@435 429 UncommonTrapBlob* UncommonTrapBlob::create(
duke@435 430 CodeBuffer* cb,
duke@435 431 OopMapSet* oop_maps,
duke@435 432 int frame_size)
duke@435 433 {
duke@435 434 UncommonTrapBlob* blob = NULL;
duke@435 435 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 436 {
duke@435 437 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 438 unsigned int size = allocation_size(cb, sizeof(UncommonTrapBlob));
duke@435 439 blob = new (size) UncommonTrapBlob(cb, size, oop_maps, frame_size);
duke@435 440 }
duke@435 441
never@2895 442 trace_new_stub(blob, "UncommonTrapBlob");
duke@435 443
duke@435 444 return blob;
duke@435 445 }
duke@435 446
duke@435 447
duke@435 448 #endif // COMPILER2
duke@435 449
duke@435 450
duke@435 451 //----------------------------------------------------------------------------------------------------
duke@435 452 // Implementation of ExceptionBlob
duke@435 453
duke@435 454 #ifdef COMPILER2
duke@435 455 ExceptionBlob::ExceptionBlob(
duke@435 456 CodeBuffer* cb,
duke@435 457 int size,
duke@435 458 OopMapSet* oop_maps,
duke@435 459 int frame_size
duke@435 460 )
duke@435 461 : SingletonBlob("ExceptionBlob", cb, sizeof(ExceptionBlob), size, frame_size, oop_maps)
duke@435 462 {}
duke@435 463
duke@435 464
duke@435 465 ExceptionBlob* ExceptionBlob::create(
duke@435 466 CodeBuffer* cb,
duke@435 467 OopMapSet* oop_maps,
duke@435 468 int frame_size)
duke@435 469 {
duke@435 470 ExceptionBlob* blob = NULL;
duke@435 471 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 472 {
duke@435 473 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 474 unsigned int size = allocation_size(cb, sizeof(ExceptionBlob));
duke@435 475 blob = new (size) ExceptionBlob(cb, size, oop_maps, frame_size);
duke@435 476 }
duke@435 477
never@2895 478 trace_new_stub(blob, "ExceptionBlob");
duke@435 479
duke@435 480 return blob;
duke@435 481 }
duke@435 482
duke@435 483
duke@435 484 #endif // COMPILER2
duke@435 485
duke@435 486
duke@435 487 //----------------------------------------------------------------------------------------------------
duke@435 488 // Implementation of SafepointBlob
duke@435 489
duke@435 490 SafepointBlob::SafepointBlob(
duke@435 491 CodeBuffer* cb,
duke@435 492 int size,
duke@435 493 OopMapSet* oop_maps,
duke@435 494 int frame_size
duke@435 495 )
duke@435 496 : SingletonBlob("SafepointBlob", cb, sizeof(SafepointBlob), size, frame_size, oop_maps)
duke@435 497 {}
duke@435 498
duke@435 499
duke@435 500 SafepointBlob* SafepointBlob::create(
duke@435 501 CodeBuffer* cb,
duke@435 502 OopMapSet* oop_maps,
duke@435 503 int frame_size)
duke@435 504 {
duke@435 505 SafepointBlob* blob = NULL;
duke@435 506 ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
duke@435 507 {
duke@435 508 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 509 unsigned int size = allocation_size(cb, sizeof(SafepointBlob));
duke@435 510 blob = new (size) SafepointBlob(cb, size, oop_maps, frame_size);
duke@435 511 }
duke@435 512
never@2895 513 trace_new_stub(blob, "SafepointBlob");
duke@435 514
duke@435 515 return blob;
duke@435 516 }
duke@435 517
duke@435 518
duke@435 519 //----------------------------------------------------------------------------------------------------
duke@435 520 // Verification and printing
duke@435 521
duke@435 522 void CodeBlob::verify() {
duke@435 523 ShouldNotReachHere();
duke@435 524 }
duke@435 525
bobv@2036 526 void CodeBlob::print_on(outputStream* st) const {
bobv@2036 527 st->print_cr("[CodeBlob (" INTPTR_FORMAT ")]", this);
bobv@2036 528 st->print_cr("Framesize: %d", _frame_size);
duke@435 529 }
duke@435 530
duke@435 531 void CodeBlob::print_value_on(outputStream* st) const {
duke@435 532 st->print_cr("[CodeBlob]");
duke@435 533 }
duke@435 534
duke@435 535 void BufferBlob::verify() {
duke@435 536 // unimplemented
duke@435 537 }
duke@435 538
bobv@2036 539 void BufferBlob::print_on(outputStream* st) const {
bobv@2036 540 CodeBlob::print_on(st);
bobv@2036 541 print_value_on(st);
duke@435 542 }
duke@435 543
duke@435 544 void BufferBlob::print_value_on(outputStream* st) const {
duke@435 545 st->print_cr("BufferBlob (" INTPTR_FORMAT ") used for %s", this, name());
duke@435 546 }
duke@435 547
duke@435 548 void RuntimeStub::verify() {
duke@435 549 // unimplemented
duke@435 550 }
duke@435 551
bobv@2036 552 void RuntimeStub::print_on(outputStream* st) const {
kvn@4107 553 ttyLocker ttyl;
bobv@2036 554 CodeBlob::print_on(st);
bobv@2036 555 st->print("Runtime Stub (" INTPTR_FORMAT "): ", this);
bobv@2036 556 st->print_cr(name());
bobv@2036 557 Disassembler::decode((CodeBlob*)this, st);
duke@435 558 }
duke@435 559
duke@435 560 void RuntimeStub::print_value_on(outputStream* st) const {
duke@435 561 st->print("RuntimeStub (" INTPTR_FORMAT "): ", this); st->print(name());
duke@435 562 }
duke@435 563
duke@435 564 void SingletonBlob::verify() {
duke@435 565 // unimplemented
duke@435 566 }
duke@435 567
bobv@2036 568 void SingletonBlob::print_on(outputStream* st) const {
kvn@4107 569 ttyLocker ttyl;
bobv@2036 570 CodeBlob::print_on(st);
bobv@2036 571 st->print_cr(name());
bobv@2036 572 Disassembler::decode((CodeBlob*)this, st);
duke@435 573 }
duke@435 574
duke@435 575 void SingletonBlob::print_value_on(outputStream* st) const {
duke@435 576 st->print_cr(name());
duke@435 577 }
duke@435 578
duke@435 579 void DeoptimizationBlob::print_value_on(outputStream* st) const {
duke@435 580 st->print_cr("Deoptimization (frame not available)");
duke@435 581 }

mercurial