src/share/vm/interpreter/bytecodeHistogram.hpp

Tue, 24 Jul 2012 10:51:00 -0700

author
twisti
date
Tue, 24 Jul 2012 10:51:00 -0700
changeset 3969
1d7922586cf6
parent 2314
f95d63e2154a
child 6876
710a3c8b516e
permissions
-rw-r--r--

7023639: JSR 292 method handle invocation needs a fast path for compiled code
6984705: JSR 292 method handle creation should not go through JNI
Summary: remove assembly code for JDK 7 chained method handles
Reviewed-by: jrose, twisti, kvn, mhaupt
Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>

duke@435 1 /*
stefank@2314 2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_INTERPRETER_BYTECODEHISTOGRAM_HPP
stefank@2314 26 #define SHARE_VM_INTERPRETER_BYTECODEHISTOGRAM_HPP
stefank@2314 27
stefank@2314 28 #include "interpreter/bytecodes.hpp"
stefank@2314 29 #include "memory/allocation.hpp"
stefank@2314 30
duke@435 31 // BytecodeCounter counts the number of bytecodes executed
duke@435 32
duke@435 33 class BytecodeCounter: AllStatic {
duke@435 34 private:
duke@435 35 NOT_PRODUCT(static int _counter_value;)
duke@435 36 NOT_PRODUCT(static jlong _reset_time;)
duke@435 37
duke@435 38 friend class TemplateInterpreterGenerator;
duke@435 39 friend class BytecodeInterpreter;
duke@435 40
duke@435 41 public:
duke@435 42 // Initialization
duke@435 43 static void reset() PRODUCT_RETURN;
duke@435 44
duke@435 45 // Counter info (all info since last reset)
duke@435 46 static int counter_value() PRODUCT_RETURN0 NOT_PRODUCT({ return _counter_value; });
duke@435 47 static double elapsed_time() PRODUCT_RETURN0; // in seconds
duke@435 48 static double frequency() PRODUCT_RETURN0; // bytecodes/seconds
duke@435 49
duke@435 50 // Counter printing
duke@435 51 static void print() PRODUCT_RETURN;
duke@435 52 };
duke@435 53
duke@435 54
duke@435 55 // BytecodeHistogram collects number of executions of bytecodes
duke@435 56
duke@435 57 class BytecodeHistogram: AllStatic {
duke@435 58 private:
duke@435 59 NOT_PRODUCT(static int _counters[Bytecodes::number_of_codes];) // a counter for each bytecode
duke@435 60
duke@435 61 friend class TemplateInterpreterGenerator;
duke@435 62 friend class InterpreterGenerator;
duke@435 63 friend class BytecodeInterpreter;
duke@435 64
duke@435 65 public:
duke@435 66 // Initialization
duke@435 67 static void reset() PRODUCT_RETURN; // reset counters
duke@435 68
duke@435 69 // Profile printing
duke@435 70 static void print(float cutoff = 0.01F) PRODUCT_RETURN; // cutoff in percent
duke@435 71 };
duke@435 72
duke@435 73
duke@435 74 // BytecodePairHistogram collects number of executions of bytecode pairs.
duke@435 75 // A bytecode pair is any sequence of two consequtive bytecodes.
duke@435 76
duke@435 77 class BytecodePairHistogram: AllStatic {
duke@435 78 public: // for SparcWorks
duke@435 79 enum Constants {
duke@435 80 log2_number_of_codes = 8, // use a power of 2 for faster addressing
duke@435 81 number_of_codes = 1 << log2_number_of_codes, // must be no less than Bytecodes::number_of_codes
duke@435 82 number_of_pairs = number_of_codes * number_of_codes
duke@435 83 };
duke@435 84
duke@435 85 private:
duke@435 86 NOT_PRODUCT(static int _index;) // new bytecode is shifted in - used to index into _counters
duke@435 87 NOT_PRODUCT(static int _counters[number_of_pairs];) // a counter for each pair
duke@435 88
duke@435 89 friend class TemplateInterpreterGenerator;
duke@435 90 friend class InterpreterGenerator;
duke@435 91
duke@435 92 public:
duke@435 93 // Initialization
duke@435 94 static void reset() PRODUCT_RETURN; // reset counters
duke@435 95
duke@435 96 // Profile printing
duke@435 97 static void print(float cutoff = 0.01F) PRODUCT_RETURN; // cutoff in percent
duke@435 98 };
stefank@2314 99
stefank@2314 100 #endif // SHARE_VM_INTERPRETER_BYTECODEHISTOGRAM_HPP

mercurial