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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapSet.java35 public class OopMapSet extends VMObject { class in inherits:VMObject
36 private static final boolean DEBUG = System.getProperty("sun.jvm.hotspot.compiler.OopMapSet.DEBUG") != null;
85 Type type = db.lookupType("OopMapSet");
100 public OopMapSet(Address addr) { method in class:OopMapSet
104 /** Returns the number of OopMaps in this OopMapSet */
177 OopMapSet maps = cb.getOopMaps();
235 OopMapSet maps = cb.getOopMaps();
236 Assert.that((maps != null) && (maps.getSize() > 0), "found null or empty OopMapSet for CodeBlob");
242 OopMapSet maps = cb.getOopMaps();
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp203 // OopMapSet
205 OopMapSet::OopMapSet() { function in class:OopMapSet
213 void OopMapSet::grow_om_data() {
222 void OopMapSet::copy_to(address addr) {
226 memcpy(addr,this,sizeof(OopMapSet));
227 temp += sizeof(OopMapSet);
229 // Do the needed fixups to the new OopMapSet
230 OopMapSet* new_set = (OopMapSet*)add
[all...]
H A DoopMap.hpp206 class OopMapSet : public ResourceObj { class in inherits:ResourceObj
224 OopMapSet();
226 // returns the number of OopMaps in this OopMapSet

Completed in 129 milliseconds