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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DSafepointBlob.java32 /** SafepointBlob: handles illegal_instruction exceptions during a safepoint */
34 public class SafepointBlob extends SingletonBlob { class in inherits:SingletonBlob
44 Type type = db.lookupType("SafepointBlob");
49 public SafepointBlob(Address addr) { method in class:SafepointBlob
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp487 // Implementation of SafepointBlob
489 SafepointBlob::SafepointBlob( function in class:SafepointBlob
495 : SingletonBlob("SafepointBlob", cb, sizeof(SafepointBlob), size, frame_size, oop_maps)
499 SafepointBlob* SafepointBlob::create(
504 SafepointBlob* blob = NULL;
508 unsigned int size = allocation_size(cb, sizeof(SafepointBlob));
509 blob = new (size) SafepointBlob(c
[all...]
H A DcodeBlob.hpp40 // SafepointBlob : Used to handle illegal instruction exceptions
481 // SafepointBlob: handles illegal_instruction exceptions during a safepoint
483 class SafepointBlob: public SingletonBlob { class in inherits:SingletonBlob
487 SafepointBlob(
496 static SafepointBlob* create(

Completed in 42 milliseconds