src/share/vm/utilities/intHisto.hpp

Tue, 24 Jul 2018 13:22:11 +0800

author
aoqi
date
Tue, 24 Jul 2018 13:22:11 +0800
changeset 9137
dc1769738300
parent 6876
710a3c8b516e
permissions
-rw-r--r--

#7048 added Loongson release info to hs_err crash files

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_UTILITIES_INTHISTO_HPP
aoqi@0 26 #define SHARE_VM_UTILITIES_INTHISTO_HPP
aoqi@0 27
aoqi@0 28 #include "memory/allocation.hpp"
aoqi@0 29 #include "utilities/growableArray.hpp"
aoqi@0 30
aoqi@0 31 // This class implements a simple histogram.
aoqi@0 32
aoqi@0 33 // A histogram summarizes a series of "measurements", each of which is
aoqi@0 34 // assumed (required in this implementation) to have an outcome that is a
aoqi@0 35 // non-negative integer. The histogram efficiently maps measurement outcomes
aoqi@0 36 // to the number of measurements had that outcome.
aoqi@0 37
aoqi@0 38 // To print the results, invoke print() on your Histogram*.
aoqi@0 39
aoqi@0 40 // Note: there is already an existing "Histogram" class, in file
aoqi@0 41 // histogram.{hpp,cpp}, but to my mind that's not a histogram, it's a table
aoqi@0 42 // mapping strings to counts. To be a histogram (IMHO) it needs to map
aoqi@0 43 // numbers (in fact, integers) to number of occurrences of that number.
aoqi@0 44
aoqi@0 45 // ysr: (i am not sure i agree with the above note.) i suspect we want to have a
aoqi@0 46 // histogram template that will map an arbitrary type (with a defined order
aoqi@0 47 // relation) to a count.
aoqi@0 48
aoqi@0 49
aoqi@0 50 class IntHistogram : public CHeapObj<mtInternal> {
aoqi@0 51 protected:
aoqi@0 52 int _max;
aoqi@0 53 int _tot;
aoqi@0 54 GrowableArray<int>* _elements;
aoqi@0 55
aoqi@0 56 public:
aoqi@0 57 // Create a new, empty table. "est" is an estimate of the maximum outcome
aoqi@0 58 // that will be added, and "max" is an outcome such that all outcomes at
aoqi@0 59 // least that large will be bundled with it.
aoqi@0 60 IntHistogram(int est, int max);
aoqi@0 61 // Add a measurement with the given outcome to the sequence.
aoqi@0 62 void add_entry(int outcome);
aoqi@0 63 // Return the number of entries recorded so far with the given outcome.
aoqi@0 64 int entries_for_outcome(int outcome);
aoqi@0 65 // Return the total number of entries recorded so far.
aoqi@0 66 int total_entries() { return _tot; }
aoqi@0 67 // Return the number of entries recorded so far with the given outcome as
aoqi@0 68 // a fraction of the total number recorded so far.
aoqi@0 69 double fraction_for_outcome(int outcome) {
aoqi@0 70 return
aoqi@0 71 (double)entries_for_outcome(outcome)/
aoqi@0 72 (double)total_entries();
aoqi@0 73 }
aoqi@0 74 // Print the histogram on the given output stream.
aoqi@0 75 void print_on(outputStream* st) const;
aoqi@0 76 };
aoqi@0 77
aoqi@0 78 #endif // SHARE_VM_UTILITIES_INTHISTO_HPP

mercurial