src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.hpp

Thu, 27 May 2010 19:08:38 -0700

author
trims
date
Thu, 27 May 2010 19:08:38 -0700
changeset 1907
c18cbe5936b8
parent 631
d1605aabd0a1
child 1993
b2a00dd3117c
permissions
-rw-r--r--

6941466: Oracle rebranding changes for Hotspot repositories
Summary: Change all the Sun copyrights to Oracle copyright
Reviewed-by: ohair

     1 /*
     2  * Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 //
    26 // psPromotionManager is used by a single thread to manage object survival
    27 // during a scavenge. The promotion manager contains thread local data only.
    28 //
    29 // NOTE! Be carefull when allocating the stacks on cheap. If you are going
    30 // to use a promotion manager in more than one thread, the stacks MUST be
    31 // on cheap. This can lead to memory leaks, though, as they are not auto
    32 // deallocated.
    33 //
    34 // FIX ME FIX ME Add a destructor, and don't rely on the user to drain/flush/deallocate!
    35 //
    37 // Move to some global location
    38 #define HAS_BEEN_MOVED 0x1501d01d
    39 // End move to some global location
    41 class MutableSpace;
    42 class PSOldGen;
    43 class ParCompactionManager;
    45 #define PS_PM_STATS         0
    47 class PSPromotionManager : public CHeapObj {
    48   friend class PSScavenge;
    49   friend class PSRefProcTaskExecutor;
    50  private:
    51   static PSPromotionManager**         _manager_array;
    52   static OopStarTaskQueueSet*         _stack_array_depth;
    53   static OopTaskQueueSet*             _stack_array_breadth;
    54   static PSOldGen*                    _old_gen;
    55   static MutableSpace*                _young_space;
    57 #if PS_PM_STATS
    58   uint                                _total_pushes;
    59   uint                                _masked_pushes;
    61   uint                                _overflow_pushes;
    62   uint                                _max_overflow_length;
    64   uint                                _arrays_chunked;
    65   uint                                _array_chunks_processed;
    67   uint                                _total_steals;
    68   uint                                _masked_steals;
    70   void print_stats(uint i);
    71   static void print_stats();
    72 #endif // PS_PM_STATS
    74   PSYoungPromotionLAB                 _young_lab;
    75   PSOldPromotionLAB                   _old_lab;
    76   bool                                _young_gen_is_full;
    77   bool                                _old_gen_is_full;
    78   PrefetchQueue                       _prefetch_queue;
    80   OopStarTaskQueue                    _claimed_stack_depth;
    81   GrowableArray<StarTask>*            _overflow_stack_depth;
    82   OopTaskQueue                        _claimed_stack_breadth;
    83   GrowableArray<oop>*                 _overflow_stack_breadth;
    85   bool                                _depth_first;
    86   bool                                _totally_drain;
    87   uint                                _target_stack_size;
    89   uint                                _array_chunk_size;
    90   uint                                _min_array_size_for_chunking;
    92   // Accessors
    93   static PSOldGen* old_gen()         { return _old_gen; }
    94   static MutableSpace* young_space() { return _young_space; }
    96   inline static PSPromotionManager* manager_array(int index);
    97   template <class T> inline void claim_or_forward_internal_depth(T* p);
    98   template <class T> inline void claim_or_forward_internal_breadth(T* p);
   100   GrowableArray<StarTask>* overflow_stack_depth() { return _overflow_stack_depth; }
   101   GrowableArray<oop>*  overflow_stack_breadth()   { return _overflow_stack_breadth; }
   103   // On the task queues we push reference locations as well as
   104   // partially-scanned arrays (in the latter case, we push an oop to
   105   // the from-space image of the array and the length on the
   106   // from-space image indicates how many entries on the array we still
   107   // need to scan; this is basically how ParNew does partial array
   108   // scanning too). To be able to distinguish between reference
   109   // locations and partially-scanned array oops we simply mask the
   110   // latter oops with 0x01. The next three methods do the masking,
   111   // unmasking, and checking whether the oop is masked or not. Notice
   112   // that the signature of the mask and unmask methods looks a bit
   113   // strange, as they accept and return different types (oop and
   114   // oop*). This is because of the difference in types between what
   115   // the task queue holds (oop*) and oops to partially-scanned arrays
   116   // (oop). We do all the necessary casting in the mask / unmask
   117   // methods to avoid sprinkling the rest of the code with more casts.
   119   // These are added to the taskqueue so PS_CHUNKED_ARRAY_OOP_MASK (or any
   120   // future masks) can't conflict with COMPRESSED_OOP_MASK
   121 #define PS_CHUNKED_ARRAY_OOP_MASK  0x2
   123   bool is_oop_masked(StarTask p) {
   124     // If something is marked chunked it's always treated like wide oop*
   125     return (((intptr_t)(oop*)p) & PS_CHUNKED_ARRAY_OOP_MASK) ==
   126                                   PS_CHUNKED_ARRAY_OOP_MASK;
   127   }
   129   oop* mask_chunked_array_oop(oop obj) {
   130     assert(!is_oop_masked((oop*) obj), "invariant");
   131     oop* ret = (oop*) ((uintptr_t)obj | PS_CHUNKED_ARRAY_OOP_MASK);
   132     assert(is_oop_masked(ret), "invariant");
   133     return ret;
   134   }
   136   oop unmask_chunked_array_oop(StarTask p) {
   137     assert(is_oop_masked(p), "invariant");
   138     assert(!p.is_narrow(), "chunked array oops cannot be narrow");
   139     oop *chunk = (oop*)p;  // cast p to oop (uses conversion operator)
   140     oop ret = oop((oop*)((uintptr_t)chunk & ~PS_CHUNKED_ARRAY_OOP_MASK));
   141     assert(!is_oop_masked((oop*) ret), "invariant");
   142     return ret;
   143   }
   145   template <class T> void  process_array_chunk_work(oop obj,
   146                                                     int start, int end);
   147   void process_array_chunk(oop old);
   149   template <class T> void push_depth(T* p) {
   150     assert(depth_first(), "pre-condition");
   152 #if PS_PM_STATS
   153     ++_total_pushes;
   154 #endif // PS_PM_STATS
   156     if (!claimed_stack_depth()->push(p)) {
   157       overflow_stack_depth()->push(p);
   158 #if PS_PM_STATS
   159       ++_overflow_pushes;
   160       uint stack_length = (uint) overflow_stack_depth()->length();
   161       if (stack_length > _max_overflow_length) {
   162         _max_overflow_length = stack_length;
   163       }
   164 #endif // PS_PM_STATS
   165     }
   166   }
   168   void push_breadth(oop o) {
   169     assert(!depth_first(), "pre-condition");
   171 #if PS_PM_STATS
   172     ++_total_pushes;
   173 #endif // PS_PM_STATS
   175     if(!claimed_stack_breadth()->push(o)) {
   176       overflow_stack_breadth()->push(o);
   177 #if PS_PM_STATS
   178       ++_overflow_pushes;
   179       uint stack_length = (uint) overflow_stack_breadth()->length();
   180       if (stack_length > _max_overflow_length) {
   181         _max_overflow_length = stack_length;
   182       }
   183 #endif // PS_PM_STATS
   184     }
   185   }
   187  protected:
   188   static OopStarTaskQueueSet* stack_array_depth()   { return _stack_array_depth; }
   189   static OopTaskQueueSet*     stack_array_breadth() { return _stack_array_breadth; }
   191  public:
   192   // Static
   193   static void initialize();
   195   static void pre_scavenge();
   196   static void post_scavenge();
   198   static PSPromotionManager* gc_thread_promotion_manager(int index);
   199   static PSPromotionManager* vm_thread_promotion_manager();
   201   static bool steal_depth(int queue_num, int* seed, StarTask& t) {
   202     assert(stack_array_depth() != NULL, "invariant");
   203     return stack_array_depth()->steal(queue_num, seed, t);
   204   }
   206   static bool steal_breadth(int queue_num, int* seed, Task& t) {
   207     assert(stack_array_breadth() != NULL, "invariant");
   208     return stack_array_breadth()->steal(queue_num, seed, t);
   209   }
   211   PSPromotionManager();
   213   // Accessors
   214   OopStarTaskQueue* claimed_stack_depth() {
   215     return &_claimed_stack_depth;
   216   }
   217   OopTaskQueue* claimed_stack_breadth() {
   218     return &_claimed_stack_breadth;
   219   }
   221   bool young_gen_is_full()             { return _young_gen_is_full; }
   223   bool old_gen_is_full()               { return _old_gen_is_full; }
   224   void set_old_gen_is_full(bool state) { _old_gen_is_full = state; }
   226   // Promotion methods
   227   oop copy_to_survivor_space(oop o, bool depth_first);
   228   oop oop_promotion_failed(oop obj, markOop obj_mark);
   230   void reset();
   232   void flush_labs();
   233   void drain_stacks(bool totally_drain) {
   234     if (depth_first()) {
   235       drain_stacks_depth(totally_drain);
   236     } else {
   237       drain_stacks_breadth(totally_drain);
   238     }
   239   }
   240  public:
   241   void drain_stacks_cond_depth() {
   242     if (claimed_stack_depth()->size() > _target_stack_size) {
   243       drain_stacks_depth(false);
   244     }
   245   }
   246   void drain_stacks_depth(bool totally_drain);
   247   void drain_stacks_breadth(bool totally_drain);
   249   bool claimed_stack_empty() {
   250     if (depth_first()) {
   251       return claimed_stack_depth()->size() <= 0;
   252     } else {
   253       return claimed_stack_breadth()->size() <= 0;
   254     }
   255   }
   256   bool overflow_stack_empty() {
   257     if (depth_first()) {
   258       return overflow_stack_depth()->length() <= 0;
   259     } else {
   260       return overflow_stack_breadth()->length() <= 0;
   261     }
   262   }
   263   bool stacks_empty() {
   264     return claimed_stack_empty() && overflow_stack_empty();
   265   }
   266   bool depth_first() {
   267     return _depth_first;
   268   }
   270   inline void process_popped_location_depth(StarTask p);
   272   inline void flush_prefetch_queue();
   273   template <class T> inline void claim_or_forward_depth(T* p);
   274   template <class T> inline void claim_or_forward_breadth(T* p);
   276 #if PS_PM_STATS
   277   void increment_steals(oop* p = NULL) {
   278     _total_steals += 1;
   279     if (p != NULL && is_oop_masked(p)) {
   280       _masked_steals += 1;
   281     }
   282   }
   283 #endif // PS_PM_STATS
   284 };

mercurial