comparison src/share/vm/oops/method.cpp @ 6950:41938af2b3d8

modifications to support non-perm-gen changes in HotSpot fixed issue when intrinsifying Class.getModifiers() for primitive classes
author Doug Simon <doug.simon@oracle.com>
date Wed, 14 Nov 2012 11:28:02 +0100
parents e522a00b91aa
children 2cb439954abf
comparison
equal deleted inserted replaced
6949:d09b0fed89db 6950:41938af2b3d8
777 set_not_c1_osr_compilable(); 777 set_not_c1_osr_compilable();
778 if (is_c2_compile(comp_level)) 778 if (is_c2_compile(comp_level))
779 set_not_c2_osr_compilable(); 779 set_not_c2_osr_compilable();
780 } 780 }
781 CompilationPolicy::policy()->disable_compilation(this); 781 CompilationPolicy::policy()->disable_compilation(this);
782
783 #ifdef GRAAL
784 oop graal_mirror = this->graal_mirror();
785 if (graal_mirror != NULL) {
786 HotSpotResolvedJavaMethod::set_canBeInlined(graal_mirror, false);
787 }
788 #endif
789 } 782 }
790 783
791 // Revert to using the interpreter and clear out the nmethod 784 // Revert to using the interpreter and clear out the nmethod
792 void Method::clear_code() { 785 void Method::clear_code() {
793 786