< prev index next >

src/share/vm/gc/g1/workerDataArray.hpp

Print this page
rev 13028 : imported patch 8178148-more-detailed-scan-rs-logging
rev 13030 : imported patch 8178148-workerdata-add


  31 class outputStream;
  32 
  33 template <class T>
  34 class WorkerDataArray  : public CHeapObj<mtGC> {
  35   friend class WDAPrinter;
  36 public:
  37   static const uint MaxThreadWorkItems = 3;
  38 private:
  39   T*          _data;
  40   uint        _length;
  41   const char* _title;
  42  
  43   WorkerDataArray<size_t>* _thread_work_items[MaxThreadWorkItems];
  44 
  45  public:
  46   WorkerDataArray(uint length, const char* title);
  47   ~WorkerDataArray();
  48 
  49   void link_thread_work_items(WorkerDataArray<size_t>* thread_work_items, uint index = 0);
  50   void set_thread_work_item(uint worker_i, size_t value, uint index = 0);

  51   WorkerDataArray<size_t>* thread_work_items(uint index = 0) const {
  52     assert(index < MaxThreadWorkItems, "Tried to access thread work item %u max %u", index, MaxThreadWorkItems);
  53     return _thread_work_items[index];
  54   }
  55 
  56   static T uninitialized();
  57 
  58   void set(uint worker_i, T value);
  59   T get(uint worker_i) const;
  60 
  61   void add(uint worker_i, T value);
  62 
  63   // The sum() and average() methods below consider uninitialized slots to be 0.
  64   double average() const;
  65   T sum() const;
  66 
  67   const char* title() const {
  68     return _title;
  69   }
  70 


  31 class outputStream;
  32 
  33 template <class T>
  34 class WorkerDataArray  : public CHeapObj<mtGC> {
  35   friend class WDAPrinter;
  36 public:
  37   static const uint MaxThreadWorkItems = 3;
  38 private:
  39   T*          _data;
  40   uint        _length;
  41   const char* _title;
  42  
  43   WorkerDataArray<size_t>* _thread_work_items[MaxThreadWorkItems];
  44 
  45  public:
  46   WorkerDataArray(uint length, const char* title);
  47   ~WorkerDataArray();
  48 
  49   void link_thread_work_items(WorkerDataArray<size_t>* thread_work_items, uint index = 0);
  50   void set_thread_work_item(uint worker_i, size_t value, uint index = 0);
  51   void add_thread_work_item(uint worker_i, size_t value, uint index = 0);
  52   WorkerDataArray<size_t>* thread_work_items(uint index = 0) const {
  53     assert(index < MaxThreadWorkItems, "Tried to access thread work item %u max %u", index, MaxThreadWorkItems);
  54     return _thread_work_items[index];
  55   }
  56 
  57   static T uninitialized();
  58 
  59   void set(uint worker_i, T value);
  60   T get(uint worker_i) const;
  61 
  62   void add(uint worker_i, T value);
  63 
  64   // The sum() and average() methods below consider uninitialized slots to be 0.
  65   double average() const;
  66   T sum() const;
  67 
  68   const char* title() const {
  69     return _title;
  70   }
  71 
< prev index next >