src/share/vm/runtime/vmStructs.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/runtime

src/share/vm/runtime/vmStructs.cpp

Print this page
rev 7211 : [mq]: remove_ngen
rev 7212 : [mq]: remove_get_gen
rev 7213 : imported patch move_genspecs
rev 7214 : imported patch remove_n_gen
rev 7215 : imported patch remove_levels


 517   nonstatic_field(CollectedHeap,               _total_collections,                            unsigned int)                          \
 518                                                                                                                                      \
 519   nonstatic_field(CompactibleSpace,            _compaction_top,                               HeapWord*)                             \
 520   nonstatic_field(CompactibleSpace,            _first_dead,                                   HeapWord*)                             \
 521   nonstatic_field(CompactibleSpace,            _end_of_live,                                  HeapWord*)                             \
 522                                                                                                                                      \
 523   nonstatic_field(ContiguousSpace,             _top,                                          HeapWord*)                             \
 524   nonstatic_field(ContiguousSpace,             _concurrent_iteration_safe_limit,              HeapWord*)                             \
 525   nonstatic_field(ContiguousSpace,             _saved_mark_word,                              HeapWord*)                             \
 526                                                                                                                                      \
 527   nonstatic_field(DefNewGeneration,            _tenuring_threshold,                           uint)                                  \
 528   nonstatic_field(DefNewGeneration,            _age_table,                                    ageTable)                              \
 529   nonstatic_field(DefNewGeneration,            _eden_space,                                   EdenSpace*)                            \
 530   nonstatic_field(DefNewGeneration,            _from_space,                                   ContiguousSpace*)                      \
 531   nonstatic_field(DefNewGeneration,            _to_space,                                     ContiguousSpace*)                      \
 532                                                                                                                                      \
 533   nonstatic_field(EdenSpace,                   _gen,                                          DefNewGeneration*)                     \
 534                                                                                                                                      \
 535   nonstatic_field(Generation,                  _reserved,                                     MemRegion)                             \
 536   nonstatic_field(Generation,                  _virtual_space,                                VirtualSpace)                          \
 537   nonstatic_field(Generation,                  _level,                                        int)                                   \
 538   nonstatic_field(Generation,                  _stat_record,                                  Generation::StatRecord)                \
 539                                                                                                                                      \
 540   nonstatic_field(Generation::StatRecord,      invocations,                                   int)                                   \
 541   nonstatic_field(Generation::StatRecord,      accumulated_time,                              elapsedTimer)                          \
 542                                                                                                                                      \
 543   nonstatic_field(GenerationSpec,              _name,                                         Generation::Name)                      \
 544   nonstatic_field(GenerationSpec,              _init_size,                                    size_t)                                \
 545   nonstatic_field(GenerationSpec,              _max_size,                                     size_t)                                \
 546                                                                                                                                      \
 547     static_field(GenCollectedHeap,             _gch,                                          GenCollectedHeap*)                     \
 548                                                                                                                                      \
 549   nonstatic_field(GenCollectorPolicy,          _young_gen_spec,                               GenerationSpec*)                       \
 550   nonstatic_field(GenCollectorPolicy,          _old_gen_spec,                                 GenerationSpec*)                       \
 551                                                                                                                                      \
 552   nonstatic_field(HeapWord,                    i,                                             char*)                                 \
 553                                                                                                                                      \
 554   nonstatic_field(MemRegion,                   _start,                                        HeapWord*)                             \
 555   nonstatic_field(MemRegion,                   _word_size,                                    size_t)                                \
 556                                                                                                                                      \
 557   nonstatic_field(OffsetTableContigSpace,      _offsets,                                      BlockOffsetArray)                      \




 517   nonstatic_field(CollectedHeap,               _total_collections,                            unsigned int)                          \
 518                                                                                                                                      \
 519   nonstatic_field(CompactibleSpace,            _compaction_top,                               HeapWord*)                             \
 520   nonstatic_field(CompactibleSpace,            _first_dead,                                   HeapWord*)                             \
 521   nonstatic_field(CompactibleSpace,            _end_of_live,                                  HeapWord*)                             \
 522                                                                                                                                      \
 523   nonstatic_field(ContiguousSpace,             _top,                                          HeapWord*)                             \
 524   nonstatic_field(ContiguousSpace,             _concurrent_iteration_safe_limit,              HeapWord*)                             \
 525   nonstatic_field(ContiguousSpace,             _saved_mark_word,                              HeapWord*)                             \
 526                                                                                                                                      \
 527   nonstatic_field(DefNewGeneration,            _tenuring_threshold,                           uint)                                  \
 528   nonstatic_field(DefNewGeneration,            _age_table,                                    ageTable)                              \
 529   nonstatic_field(DefNewGeneration,            _eden_space,                                   EdenSpace*)                            \
 530   nonstatic_field(DefNewGeneration,            _from_space,                                   ContiguousSpace*)                      \
 531   nonstatic_field(DefNewGeneration,            _to_space,                                     ContiguousSpace*)                      \
 532                                                                                                                                      \
 533   nonstatic_field(EdenSpace,                   _gen,                                          DefNewGeneration*)                     \
 534                                                                                                                                      \
 535   nonstatic_field(Generation,                  _reserved,                                     MemRegion)                             \
 536   nonstatic_field(Generation,                  _virtual_space,                                VirtualSpace)                          \

 537   nonstatic_field(Generation,                  _stat_record,                                  Generation::StatRecord)                \
 538                                                                                                                                      \
 539   nonstatic_field(Generation::StatRecord,      invocations,                                   int)                                   \
 540   nonstatic_field(Generation::StatRecord,      accumulated_time,                              elapsedTimer)                          \
 541                                                                                                                                      \
 542   nonstatic_field(GenerationSpec,              _name,                                         Generation::Name)                      \
 543   nonstatic_field(GenerationSpec,              _init_size,                                    size_t)                                \
 544   nonstatic_field(GenerationSpec,              _max_size,                                     size_t)                                \
 545                                                                                                                                      \
 546     static_field(GenCollectedHeap,             _gch,                                          GenCollectedHeap*)                     \
 547                                                                                                                                      \
 548   nonstatic_field(GenCollectorPolicy,          _young_gen_spec,                               GenerationSpec*)                       \
 549   nonstatic_field(GenCollectorPolicy,          _old_gen_spec,                                 GenerationSpec*)                       \
 550                                                                                                                                      \
 551   nonstatic_field(HeapWord,                    i,                                             char*)                                 \
 552                                                                                                                                      \
 553   nonstatic_field(MemRegion,                   _start,                                        HeapWord*)                             \
 554   nonstatic_field(MemRegion,                   _word_size,                                    size_t)                                \
 555                                                                                                                                      \
 556   nonstatic_field(OffsetTableContigSpace,      _offsets,                                      BlockOffsetArray)                      \


src/share/vm/runtime/vmStructs.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File