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

/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.hpp211 OopMap** _om_data; member in class:OopMapSet
218 OopMap** om_data() const { return _om_data; }
219 void set_om_data(OopMap** value) { _om_data = value; }
221 void set(int index,OopMap* value) { assert((index == 0) || ((index > 0) && (index < om_size())),"bad index"); _om_data[index] = value; }
229 OopMap* at(int index) const { assert((index >= 0) && (index <= om_count()),"bad index"); return _om_data[index]; }

Completed in 608 milliseconds