Print this page
rev 1083 : [mq]: indy.compiler.inline.patch

Split Close
Expand all
Collapse all
          --- old/src/share/vm/oops/methodOop.hpp
          +++ new/src/share/vm/oops/methodOop.hpp
↓ open down ↓ 357 lines elided ↑ open up ↑
 358  358  
 359  359    // Interpreter oopmap support
 360  360    void mask_for(int bci, InterpreterOopMap* mask);
 361  361  
 362  362  #ifndef PRODUCT
 363  363    // operations on invocation counter
 364  364    void print_invocation_count() const;
 365  365  #endif
 366  366  
 367  367    // byte codes
      368 +  void    set_code(address code)      { return constMethod()->set_code(code); }
 368  369    address code_base() const           { return constMethod()->code_base(); }
 369  370    bool    contains(address bcp) const { return constMethod()->contains(bcp); }
 370  371  
 371  372    // prints byte codes
 372  373    void print_codes() const            { print_codes_on(tty); }
 373  374    void print_codes_on(outputStream* st) const                      PRODUCT_RETURN;
 374  375    void print_codes_on(int from, int to, outputStream* st) const    PRODUCT_RETURN;
 375  376  
 376  377    // checked exceptions
 377  378    int checked_exceptions_length() const
↓ open down ↓ 373 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX