src/share/vm/runtime/sharedRuntime.hpp

changeset 9448
73d689add964
parent 9305
278ac6d2b59e
parent 8604
04d83ba48607
equal deleted inserted replaced
9447:1f822ff877d1 9448:73d689add964
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 /*
26 * This file has been modified by Loongson Technology in 2015. These
27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
28 * available on the same license terms set forth above.
29 */
30
25 #ifndef SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP 31 #ifndef SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP
26 #define SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP 32 #define SHARE_VM_RUNTIME_SHAREDRUNTIME_HPP
27 33
28 #include "interpreter/bytecodeHistogram.hpp" 34 #include "interpreter/bytecodeHistogram.hpp"
29 #include "interpreter/bytecodeTracer.hpp" 35 #include "interpreter/bytecodeTracer.hpp"
585 static void print_call_statistics(int comp_total); 591 static void print_call_statistics(int comp_total);
586 static void print_statistics(); 592 static void print_statistics();
587 static void print_ic_miss_histogram(); 593 static void print_ic_miss_histogram();
588 594
589 #endif // PRODUCT 595 #endif // PRODUCT
596 static void print_long(long long i);
597 static void print_int(int i);
598 static void print_float(float i);
599 static void print_double(double i);
600 static void print_str(char *str);
601
602 static void print_reg_with_pc(char *reg_name, long i, long pc);
590 }; 603 };
591 604
592 605
593 // --------------------------------------------------------------------------- 606 // ---------------------------------------------------------------------------
594 // Implementation of AdapterHandlerLibrary 607 // Implementation of AdapterHandlerLibrary

mercurial