Searched defs:ExceptionBlob (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DExceptionBlob.java32 /** ExceptionBlob: used for exception unwinding in compiled code
35 public class ExceptionBlob extends SingletonBlob { class in inherits:SingletonBlob
45 Type type = db.lookupType("ExceptionBlob");
50 public ExceptionBlob(Address addr) { method in class:ExceptionBlob
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp451 // Implementation of ExceptionBlob
454 ExceptionBlob::ExceptionBlob( function in class:ExceptionBlob
460 : SingletonBlob("ExceptionBlob", cb, sizeof(ExceptionBlob), size, frame_size, oop_maps)
464 ExceptionBlob* ExceptionBlob::create(
469 ExceptionBlob* blob = NULL;
473 unsigned int size = allocation_size(cb, sizeof(ExceptionBlob));
474 blob = new (size) ExceptionBlob(c
[all...]
H A DcodeBlob.hpp39 // ExceptionBlob : Used for stack unrolling
450 // ExceptionBlob: used for exception unwinding in compiled code (currently only used by Compiler 2)
452 class ExceptionBlob: public SingletonBlob { class in inherits:SingletonBlob
456 ExceptionBlob(
465 static ExceptionBlob* create(

Completed in 38 milliseconds