comparison src/share/vm/compiler/compileBroker.hpp @ 6266:1d7922586cf6

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>
author twisti
date Tue, 24 Jul 2012 10:51:00 -0700
parents d2a62e0f25eb
children 957c266d8bc5 da91efe96a93
comparison
equal deleted inserted replaced
6241:aba91a731143 6266:1d7922586cf6
102 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false, 102 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,
103 const char* msg = NULL, bool short_form = false); 103 const char* msg = NULL, bool short_form = false);
104 104
105 public: 105 public:
106 void print_compilation(outputStream* st = tty, bool short_form = false); 106 void print_compilation(outputStream* st = tty, bool short_form = false);
107 static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL) { 107 static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false) {
108 print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(), 108 print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
109 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false, 109 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
110 msg); 110 msg, short_form);
111 } 111 }
112 112
113 static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL); 113 static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL);
114 static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { 114 static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) {
115 print_inlining(tty, method, inline_level, bci, msg); 115 print_inlining(tty, method, inline_level, bci, msg);