comparison src/share/vm/ci/ciMethod.hpp @ 17622:849eb7bfceac

8028468: Add inlining information into ciReplay Summary: Allow dump and replay inlining for specified method during a program execution. Reviewed-by: roland, twisti
author kvn
date Wed, 08 Jan 2014 10:25:50 -0800
parents b2ee5dc63353
children 4ca6dc0799b6 0bf37f737702
comparison
equal deleted inserted replaced
17621:df8573b1a44c 17622:849eb7bfceac
308 bool has_loops () const; 308 bool has_loops () const;
309 bool has_jsrs () const; 309 bool has_jsrs () const;
310 bool is_accessor () const; 310 bool is_accessor () const;
311 bool is_initializer () const; 311 bool is_initializer () const;
312 bool can_be_statically_bound() const { return _can_be_statically_bound; } 312 bool can_be_statically_bound() const { return _can_be_statically_bound; }
313 void dump_replay_data(outputStream* st);
314 bool is_boxing_method() const; 313 bool is_boxing_method() const;
315 bool is_unboxing_method() const; 314 bool is_unboxing_method() const;
315
316 // Replay data methods
317 void dump_name_as_ascii(outputStream* st);
318 void dump_replay_data(outputStream* st);
316 319
317 // Print the bytecodes of this method. 320 // Print the bytecodes of this method.
318 void print_codes_on(outputStream* st); 321 void print_codes_on(outputStream* st);
319 void print_codes() { 322 void print_codes() {
320 print_codes_on(tty); 323 print_codes_on(tty);