< prev index next >

src/share/vm/runtime/vmStructs.cpp

Print this page
rev 7742 : [mq]: old_patch
rev 7743 : imported patch new_fix


 533   nonstatic_field(DefNewGeneration,            _next_gen,                                     Generation*)                           \
 534   nonstatic_field(DefNewGeneration,            _tenuring_threshold,                           uint)                                  \
 535   nonstatic_field(DefNewGeneration,            _age_table,                                    ageTable)                              \
 536   nonstatic_field(DefNewGeneration,            _eden_space,                                   ContiguousSpace*)                      \
 537   nonstatic_field(DefNewGeneration,            _from_space,                                   ContiguousSpace*)                      \
 538   nonstatic_field(DefNewGeneration,            _to_space,                                     ContiguousSpace*)                      \
 539                                                                                                                                      \
 540   nonstatic_field(Generation,                  _reserved,                                     MemRegion)                             \
 541   nonstatic_field(Generation,                  _virtual_space,                                VirtualSpace)                          \
 542   nonstatic_field(Generation,                  _level,                                        int)                                   \
 543   nonstatic_field(Generation,                  _stat_record,                                  Generation::StatRecord)                \
 544                                                                                                                                      \
 545   nonstatic_field(Generation::StatRecord,      invocations,                                   int)                                   \
 546   nonstatic_field(Generation::StatRecord,      accumulated_time,                              elapsedTimer)                          \
 547                                                                                                                                      \
 548   nonstatic_field(GenerationSpec,              _name,                                         Generation::Name)                      \
 549   nonstatic_field(GenerationSpec,              _init_size,                                    size_t)                                \
 550   nonstatic_field(GenerationSpec,              _max_size,                                     size_t)                                \
 551                                                                                                                                      \
 552     static_field(GenCollectedHeap,             _gch,                                          GenCollectedHeap*)                     \


 553  nonstatic_field(GenCollectedHeap,             _n_gens,                                       int)                                   \
 554   nonstatic_field(GenCollectedHeap,            _gen_specs,                                    GenerationSpec**)                      \
 555                                                                                                                                      \
 556   nonstatic_field(HeapWord,                    i,                                             char*)                                 \
 557                                                                                                                                      \
 558   nonstatic_field(MemRegion,                   _start,                                        HeapWord*)                             \
 559   nonstatic_field(MemRegion,                   _word_size,                                    size_t)                                \
 560                                                                                                                                      \
 561   nonstatic_field(OffsetTableContigSpace,      _offsets,                                      BlockOffsetArray)                      \
 562                                                                                                                                      \
 563   nonstatic_field(TenuredGeneration,           _min_heap_delta_bytes,                         size_t)                                \
 564   nonstatic_field(TenuredGeneration,           _the_space,                                    ContiguousSpace*)                      \
 565                                                                                                                                      \
 566   nonstatic_field(Space,                       _bottom,                                       HeapWord*)                             \
 567   nonstatic_field(Space,                       _end,                                          HeapWord*)                             \
 568                                                                                                                                      \
 569   nonstatic_field(ThreadLocalAllocBuffer,      _start,                                        HeapWord*)                             \
 570   nonstatic_field(ThreadLocalAllocBuffer,      _top,                                          HeapWord*)                             \
 571   nonstatic_field(ThreadLocalAllocBuffer,      _end,                                          HeapWord*)                             \
 572   nonstatic_field(ThreadLocalAllocBuffer,      _desired_size,                                 size_t)                                \




 533   nonstatic_field(DefNewGeneration,            _next_gen,                                     Generation*)                           \
 534   nonstatic_field(DefNewGeneration,            _tenuring_threshold,                           uint)                                  \
 535   nonstatic_field(DefNewGeneration,            _age_table,                                    ageTable)                              \
 536   nonstatic_field(DefNewGeneration,            _eden_space,                                   ContiguousSpace*)                      \
 537   nonstatic_field(DefNewGeneration,            _from_space,                                   ContiguousSpace*)                      \
 538   nonstatic_field(DefNewGeneration,            _to_space,                                     ContiguousSpace*)                      \
 539                                                                                                                                      \
 540   nonstatic_field(Generation,                  _reserved,                                     MemRegion)                             \
 541   nonstatic_field(Generation,                  _virtual_space,                                VirtualSpace)                          \
 542   nonstatic_field(Generation,                  _level,                                        int)                                   \
 543   nonstatic_field(Generation,                  _stat_record,                                  Generation::StatRecord)                \
 544                                                                                                                                      \
 545   nonstatic_field(Generation::StatRecord,      invocations,                                   int)                                   \
 546   nonstatic_field(Generation::StatRecord,      accumulated_time,                              elapsedTimer)                          \
 547                                                                                                                                      \
 548   nonstatic_field(GenerationSpec,              _name,                                         Generation::Name)                      \
 549   nonstatic_field(GenerationSpec,              _init_size,                                    size_t)                                \
 550   nonstatic_field(GenerationSpec,              _max_size,                                     size_t)                                \
 551                                                                                                                                      \
 552     static_field(GenCollectedHeap,             _gch,                                          GenCollectedHeap*)                     \
 553   nonstatic_field(GenCollectedHeap,            _young_gen,                                    Generation*)                           \
 554   nonstatic_field(GenCollectedHeap,            _old_gen,                                      Generation*)                           \
 555  nonstatic_field(GenCollectedHeap,             _n_gens,                                       int)                                   \
 556   nonstatic_field(GenCollectedHeap,            _gen_specs,                                    GenerationSpec**)                      \
 557                                                                                                                                      \
 558   nonstatic_field(HeapWord,                    i,                                             char*)                                 \
 559                                                                                                                                      \
 560   nonstatic_field(MemRegion,                   _start,                                        HeapWord*)                             \
 561   nonstatic_field(MemRegion,                   _word_size,                                    size_t)                                \
 562                                                                                                                                      \
 563   nonstatic_field(OffsetTableContigSpace,      _offsets,                                      BlockOffsetArray)                      \
 564                                                                                                                                      \
 565   nonstatic_field(TenuredGeneration,           _min_heap_delta_bytes,                         size_t)                                \
 566   nonstatic_field(TenuredGeneration,           _the_space,                                    ContiguousSpace*)                      \
 567                                                                                                                                      \
 568   nonstatic_field(Space,                       _bottom,                                       HeapWord*)                             \
 569   nonstatic_field(Space,                       _end,                                          HeapWord*)                             \
 570                                                                                                                                      \
 571   nonstatic_field(ThreadLocalAllocBuffer,      _start,                                        HeapWord*)                             \
 572   nonstatic_field(ThreadLocalAllocBuffer,      _top,                                          HeapWord*)                             \
 573   nonstatic_field(ThreadLocalAllocBuffer,      _end,                                          HeapWord*)                             \
 574   nonstatic_field(ThreadLocalAllocBuffer,      _desired_size,                                 size_t)                                \


< prev index next >