src/hotspot/share/gc/shared/gcUtil.hpp
author tschatzl
Wed, 08 Aug 2018 15:31:06 +0200
changeset 51332 c25572739e7c
parent 48157 7c4d43c26352
child 53244 9807daeb47c4
permissions -rw-r--r--
8208669: GC changes to allow enabling -Wreorder Reviewed-by: kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29580
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 25485
diff changeset
     2
 * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29580
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_GCUTIL_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29580
diff changeset
    26
#define SHARE_VM_GC_SHARED_GCUTIL_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "utilities/debug.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/globalDefinitions.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "utilities/ostream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Catch-all file for utility classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// A weighted average maintains a running, weighted average
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// of some float value (templates would be handy here if we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// need different types).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// The average is adaptive in that we smooth it for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// initial samples; we don't use the weight until we have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// enough samples for it to be meaningful.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// This serves as our best estimate of a future unknown.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12626
diff changeset
    46
class AdaptiveWeightedAverage : public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  float            _average;        // The last computed average
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  unsigned         _sample_count;   // How often we've sampled this average
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  unsigned         _weight;         // The weight used to smooth the averages
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                                    //   A higher weight favors the most
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
                                    //   recent data.
12626
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    53
  bool             _is_old;         // Has enough historical data
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    54
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    55
  const static unsigned OLD_THRESHOLD = 100;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  float            _last_sample;    // The last value sampled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
12626
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    60
  void  increment_count() {
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    61
    _sample_count++;
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    62
    if (!_is_old && _sample_count > OLD_THRESHOLD) {
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    63
      _is_old = true;
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    64
    }
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    65
  }
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    66
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  void  set_average(float avg)  { _average = avg;        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Helper function, computes an adaptive weighted average
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // given a sample and the last average
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  float compute_adaptive_average(float new_sample, float average);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Input weight must be between 0 and 100
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    75
  AdaptiveWeightedAverage(unsigned weight, float avg = 0.0) :
51332
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 48157
diff changeset
    76
    _average(avg), _sample_count(0), _weight(weight),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 48157
diff changeset
    77
    _is_old(false), _last_sample(0.0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
976
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
    80
  void clear() {
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
    81
    _average = 0;
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
    82
    _sample_count = 0;
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
    83
    _last_sample = 0;
12626
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    84
    _is_old = false;
976
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
    85
  }
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
    86
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    87
  // Useful for modifying static structures after startup.
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    88
  void  modify(size_t avg, unsigned wt, bool force = false)  {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    89
    assert(force, "Are you sure you want to call this?");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    90
    _average = (float)avg;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    91
    _weight  = wt;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    92
  }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  float    average() const       { return _average;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  unsigned weight()  const       { return _weight;        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  unsigned count()   const       { return _sample_count;  }
12626
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    98
  float    last_sample() const   { return _last_sample;   }
042841456ce1 7158457: division by zero in adaptiveweightedaverage
mikael
parents: 7397
diff changeset
    99
  bool     is_old()  const       { return _is_old;        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Update data with a new sample.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  void sample(float new_sample);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static inline float exp_avg(float avg, float sample,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                               unsigned int weight) {
29580
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 25485
diff changeset
   106
    assert(weight <= 100, "weight must be a percent");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    return (100.0F - weight) * avg / 100.0F + weight * sample / 100.0F;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static inline size_t exp_avg(size_t avg, size_t sample,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                               unsigned int weight) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    // Convert to float and back to avoid integer overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    return (size_t)exp_avg((float)avg, (float)sample, weight);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   114
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   115
  // Printing
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   116
  void print_on(outputStream* st) const;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   117
  void print() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
// A weighted average that includes a deviation from the average,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// some multiple of which is added to the average.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// This serves as our best estimate of an upper bound on a future
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// unknown.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
class AdaptivePaddedAverage : public AdaptiveWeightedAverage {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  float          _padded_avg;     // The last computed padded average
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  float          _deviation;      // Running deviation from the average
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  unsigned       _padding;        // A multiple which, added to the average,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                                  // gives us an upper bound guess.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  void set_padded_average(float avg)  { _padded_avg = avg;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  void set_deviation(float dev)       { _deviation  = dev;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  AdaptivePaddedAverage() :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    AdaptiveWeightedAverage(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _padded_avg(0.0), _deviation(0.0), _padding(0) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  AdaptivePaddedAverage(unsigned weight, unsigned padding) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    AdaptiveWeightedAverage(weight),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    _padded_avg(0.0), _deviation(0.0), _padding(padding) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Placement support
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 13963
diff changeset
   147
  void* operator new(size_t ignored, void* p) throw() { return p; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Allocator
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47216
diff changeset
   149
  void* operator new(size_t size) throw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  float padded_average() const         { return _padded_avg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  float deviation()      const         { return _deviation;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  unsigned padding()     const         { return _padding;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
976
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
   156
  void clear() {
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
   157
    AdaptiveWeightedAverage::clear();
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
   158
    _padded_avg = 0;
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
   159
    _deviation = 0;
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
   160
  }
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 1
diff changeset
   161
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  void  sample(float new_sample);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   164
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   165
  // Printing
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   166
  void print_on(outputStream* st) const;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   167
  void print() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// A weighted average that includes a deviation from the average,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// some multiple of which is added to the average.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
// This serves as our best estimate of an upper bound on a future
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// unknown.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// A special sort of padded average:  it doesn't update deviations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// if the sample is zero. The average is allowed to change. We're
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// preventing the zero samples from drastically changing our padded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
// average.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
class AdaptivePaddedNoZeroDevAverage : public AdaptivePaddedAverage {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  AdaptivePaddedNoZeroDevAverage(unsigned weight, unsigned padding) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    AdaptivePaddedAverage(weight, padding)  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // Override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void  sample(float new_sample);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   185
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   186
  // Printing
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   187
  void print_on(outputStream* st) const;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   188
  void print() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
};
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 1217
diff changeset
   190
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// Use a least squares fit to a set of data to generate a linear
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// equation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
//              y = intercept + slope * x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12626
diff changeset
   195
class LinearLeastSquareFit : public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  double _sum_x;        // sum of all independent data points x
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  double _sum_x_squared; // sum of all independent data points x**2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  double _sum_y;        // sum of all dependent data points y
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  double _sum_xy;       // sum of all x * y.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  double _intercept;     // constant term
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  double _slope;        // slope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // The weighted averages are not currently used but perhaps should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // be used to get decaying averages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  AdaptiveWeightedAverage _mean_x; // weighted mean of independent variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  AdaptiveWeightedAverage _mean_y; // weighted mean of dependent variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  LinearLeastSquareFit(unsigned weight);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void update(double x, double y);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  double y(double x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  double slope() { return _slope; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Methods to decide if a change in the dependent variable will
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 19696
diff changeset
   213
  // achieve a desired goal.  Note that these methods are not
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // complementary and both are needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  bool decrement_will_decrease();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  bool increment_will_decrease();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29580
diff changeset
   219
#endif // SHARE_VM_GC_SHARED_GCUTIL_HPP