< prev index next >

src/hotspot/share/runtime/vmStructs.cpp

Print this page

        

@@ -1276,10 +1276,11 @@
   declare_integer_type(ssize_t)                                           \
   declare_integer_type(intx)                                              \
   declare_integer_type(intptr_t)                                          \
   declare_unsigned_integer_type(uintx)                                    \
   declare_unsigned_integer_type(uintptr_t)                                \
+  declare_unsigned_integer_type(uint8_t)                                  \
   declare_unsigned_integer_type(uint32_t)                                 \
   declare_unsigned_integer_type(uint64_t)                                 \
                                                                           \
   /******************************************/                            \
   /* OopDesc hierarchy (NOTE: some missing) */                            \

@@ -2608,10 +2609,16 @@
 // enums, etc., while "declare_preprocessor_constant" must be used for
 // all #defined constants.
 
 #define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
                                                                           \
+  /****************/                                                      \
+  /* GC constants */                                                      \
+  /****************/                                                      \
+                                                                          \
+  VM_LONG_CONSTANTS_GC(declare_constant)                                  \
+                                                                          \
   /*********************/                                                 \
   /* MarkOop constants */                                                 \
   /*********************/                                                 \
                                                                           \
   /* Note: some of these are declared as long constants just for */       \
< prev index next >