hotspot/src/share/vm/compiler/oopMap.hpp
changeset 30628 3c15b4a3bf4d
parent 30590 14f7f48c1377
child 30774 6745424a720f
equal deleted inserted replaced
30627:d79f16a39a8c 30628:3c15b4a3bf4d
   322   const ImmutableOopMap* find_map_at_offset(int pc_offset) const;
   322   const ImmutableOopMap* find_map_at_offset(int pc_offset) const;
   323 
   323 
   324   const ImmutableOopMapPair* pair_at(int index) const { assert(index >= 0 && index < _count, "check"); return &get_pairs()[index]; }
   324   const ImmutableOopMapPair* pair_at(int index) const { assert(index >= 0 && index < _count, "check"); return &get_pairs()[index]; }
   325 
   325 
   326   int count() const { return _count; }
   326   int count() const { return _count; }
   327   int size() const { return _size; }
   327   int nr_of_bytes() const { return _size; }
   328 
   328 
   329   void print_on(outputStream* st) const;
   329   void print_on(outputStream* st) const;
   330   void print() const { print_on(tty); }
   330   void print() const { print_on(tty); }
   331 };
   331 };
   332 
   332