comparison src/share/vm/runtime/arguments.cpp @ 710:e5b0439ef4ae

6655638: dynamic languages need method handles Summary: initial implementation, with known omissions (x86/64, sparc, compiler optim., c-oops, C++ interp.) Reviewed-by: kvn, twisti, never
author jrose
date Wed, 08 Apr 2009 10:56:49 -0700
parents fbde8ec322d0
children 6e33bfd4139b
comparison
equal deleted inserted replaced
709:1d037ecd7960 710:e5b0439ef4ae
2617 UseCounterDecay = false; 2617 UseCounterDecay = false;
2618 } 2618 }
2619 } 2619 }
2620 #endif // PRODUCT 2620 #endif // PRODUCT
2621 2621
2622 if (EnableMethodHandles && !AnonymousClasses) {
2623 if (!FLAG_IS_DEFAULT(AnonymousClasses)) {
2624 warning("forcing AnonymousClasses true to enable EnableMethodHandles");
2625 }
2626 AnonymousClasses = true;
2627 }
2628
2622 if (PrintGCDetails) { 2629 if (PrintGCDetails) {
2623 // Turn on -verbose:gc options as well 2630 // Turn on -verbose:gc options as well
2624 PrintGC = true; 2631 PrintGC = true;
2625 if (FLAG_IS_DEFAULT(TraceClassUnloading)) { 2632 if (FLAG_IS_DEFAULT(TraceClassUnloading)) {
2626 TraceClassUnloading = true; 2633 TraceClassUnloading = true;