src/share/vm/ci/ciMethod.hpp

changeset 4866
16885e702c88
parent 4539
6a51fc70a15e
child 4936
aeaca88565e6
     1.1 --- a/src/share/vm/ci/ciMethod.hpp	Sun Mar 24 12:43:13 2013 -0700
     1.2 +++ b/src/share/vm/ci/ciMethod.hpp	Mon Mar 25 17:13:26 2013 -0700
     1.3 @@ -166,8 +166,9 @@
     1.4    // Code size for inlining decisions.
     1.5    int code_size_for_inlining();
     1.6  
     1.7 -  bool force_inline() { return get_Method()->force_inline(); }
     1.8 -  bool dont_inline()  { return get_Method()->dont_inline();  }
     1.9 +  bool caller_sensitive() { return get_Method()->caller_sensitive(); }
    1.10 +  bool force_inline()     { return get_Method()->force_inline();     }
    1.11 +  bool dont_inline()      { return get_Method()->dont_inline();      }
    1.12  
    1.13    int comp_level();
    1.14    int highest_osr_comp_level();
    1.15 @@ -264,6 +265,9 @@
    1.16    int instructions_size();
    1.17    int scale_count(int count, float prof_factor = 1.);  // make MDO count commensurate with IIC
    1.18  
    1.19 +  // Stack walking support
    1.20 +  bool is_ignored_by_security_stack_walk() const;
    1.21 +
    1.22    // JSR 292 support
    1.23    bool is_method_handle_intrinsic()  const;
    1.24    bool is_compiled_lambda_form() const;

mercurial