comparison src/share/vm/ci/ciStreams.hpp @ 6822:f6b0eb4e44cf

7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path Reviewed-by: jrose, kvn
author twisti
date Mon, 01 Oct 2012 14:50:10 -0700
parents da91efe96a93
children d13d7aba8c12
comparison
equal deleted inserted replaced
6811:1b582b1bf7cb 6822:f6b0eb4e44cf
255 255
256 ciInstanceKlass* get_declared_field_holder(); 256 ciInstanceKlass* get_declared_field_holder();
257 int get_field_holder_index(); 257 int get_field_holder_index();
258 int get_field_signature_index(); 258 int get_field_signature_index();
259 259
260 ciMethod* get_method(bool& will_link, ciSignature* *declared_signature_result); 260 ciMethod* get_method(bool& will_link, ciSignature* *declared_signature_result);
261 bool has_appendix(); 261 bool has_appendix();
262 ciObject* get_appendix(); 262 ciObject* get_appendix();
263 ciKlass* get_declared_method_holder(); 263 bool has_method_type();
264 int get_method_holder_index(); 264 ciMethodType* get_method_type();
265 int get_method_signature_index(); 265 ciKlass* get_declared_method_holder();
266 int get_method_holder_index();
267 int get_method_signature_index();
266 268
267 // Get the resolved references arrays from the constant pool 269 // Get the resolved references arrays from the constant pool
268 ciObjArray* get_resolved_references(); 270 ciObjArray* get_resolved_references();
269 }; 271 };
270 272