--- old/src/hotspot/share/gc/shared/vmStructs_gc.hpp 2018-05-21 15:02:17.141309514 +0200 +++ new/src/hotspot/share/gc/shared/vmStructs_gc.hpp 2018-05-21 15:02:17.009309627 +0200 @@ -47,6 +47,9 @@ #include "gc/serial/defNewGeneration.hpp" #include "gc/serial/vmStructs_serial.hpp" #endif +#if INCLUDE_EPSILONGC +#include "gc/epsilon/vmStructs_epsilon.hpp" +#endif #define VM_STRUCTS_GC(nonstatic_field, \ volatile_nonstatic_field, \ @@ -64,6 +67,9 @@ SERIALGC_ONLY(VM_STRUCTS_SERIALGC(nonstatic_field, \ volatile_nonstatic_field, \ static_field)) \ + EPSILONGC_ONLY(VM_STRUCTS_EPSILONGC(nonstatic_field, \ + volatile_nonstatic_field, \ + static_field)) \ /**********************************************************************************/ \ /* Generation and Space hierarchies */ \ /**********************************************************************************/ \ @@ -162,6 +168,9 @@ SERIALGC_ONLY(VM_TYPES_SERIALGC(declare_type, \ declare_toplevel_type, \ declare_integer_type)) \ + EPSILONGC_ONLY(VM_TYPES_EPSILONGC(declare_type, \ + declare_toplevel_type, \ + declare_integer_type)) \ /******************************************/ \ /* Generation and space hierarchies */ \ /* (needed for run-time type information) */ \ @@ -231,6 +240,8 @@ declare_constant_with_value)) \ SERIALGC_ONLY(VM_INT_CONSTANTS_SERIALGC(declare_constant, \ declare_constant_with_value)) \ + EPSILONGC_ONLY(VM_INT_CONSTANTS_EPSILONGC(declare_constant, \ + declare_constant_with_value)) \ \ /********************************************/ \ /* Generation and Space Hierarchy Constants */ \