< prev index next >

src/hotspot/share/oops/generateOopMap.hpp

Print this page

        

@@ -69,11 +69,11 @@
   void add_delta  (int bci, int delta);
   RetTableEntry * next()  const               { return _next; }
 };
 
 
-class RetTable VALUE_OBJ_CLASS_SPEC {
+class RetTable {
  private:
   RetTableEntry *_first;
   static int _init_nof_entries;
 
   void add_jsr(int return_bci, int target_bci);   // Adds entry to list

@@ -85,11 +85,11 @@
 };
 
 //
 // CellTypeState
 //
-class CellTypeState VALUE_OBJ_CLASS_SPEC {
+class CellTypeState {
  private:
   unsigned int _state;
 
   // Masks for separating the BITS and INFO portions of a CellTypeState
   enum { info_mask            = right_n_bits(28),

@@ -286,11 +286,11 @@
 //
 //  GenerateOopMap
 //
 // Main class used to compute the pointer-maps in a Method
 //
-class GenerateOopMap VALUE_OBJ_CLASS_SPEC {
+class GenerateOopMap {
  protected:
 
   // _monitor_top is set to this constant to indicate that a monitor matching
   // problem was encountered prior to this point in control flow.
   enum { bad_monitors = -1 };
< prev index next >