Searched refs:BytecodePairHistogram (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp146 // Implementation of BytecodePairHistogram
148 int BytecodePairHistogram::_index;
149 int BytecodePairHistogram::_counters[BytecodePairHistogram::number_of_pairs];
152 void BytecodePairHistogram::reset() {
160 void BytecodePairHistogram::print(float cutoff) {
H A DbytecodeHistogram.hpp74 // BytecodePairHistogram collects number of executions of bytecode pairs.
77 class BytecodePairHistogram: AllStatic { class in inherits:AllStatic
H A Dinterpreter.cpp91 if (PrintBytecodePairHistogram) BytecodePairHistogram::reset();
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_64.cpp1958 __ mov32(rbx, ExternalAddress((address) &BytecodePairHistogram::_index));
1959 __ shrl(rbx, BytecodePairHistogram::log2_number_of_codes);
1962 BytecodePairHistogram::log2_number_of_codes);
1963 __ mov32(ExternalAddress((address) &BytecodePairHistogram::_index), rbx);
1964 __ lea(rscratch1, ExternalAddress((address) BytecodePairHistogram::_counters));
H A DtemplateInterpreter_x86_32.cpp1919 __ mov32(ExternalAddress((address) &BytecodePairHistogram::_index), rbx);
1920 __ shrl(rbx, BytecodePairHistogram::log2_number_of_codes);
1921 __ orl(rbx, ((int)t->bytecode()) << BytecodePairHistogram::log2_number_of_codes);
1922 ExternalAddress table((address) BytecodePairHistogram::_counters);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp2024 AddressLiteral index (&BytecodePairHistogram::_index);
2025 AddressLiteral counters((address) &BytecodePairHistogram::_counters);
2032 __ srl( G4_scratch, BytecodePairHistogram::log2_number_of_codes, G4_scratch );
2033 __ set( ((int)t->bytecode()) << BytecodePairHistogram::log2_number_of_codes, G3_scratch );
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.cpp309 BytecodePairHistogram::print();

Completed in 51 milliseconds