Revision: 6784 Author: [email protected] Date: Tue Feb 15 00:47:14 2011 Log: ARM: Enable OSR by default.
Review URL: http://codereview.chromium.org/6526012 http://code.google.com/p/v8/source/detail?r=6784 Modified: /branches/bleeding_edge/src/flag-definitions.h ======================================= --- /branches/bleeding_edge/src/flag-definitions.h Fri Feb 11 06:34:02 2011 +++ /branches/bleeding_edge/src/flag-definitions.h Tue Feb 15 00:47:14 2011 @@ -134,10 +134,10 @@ DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") DEFINE_bool(aggressive_loop_invariant_motion, true, "aggressive motion of instructions out of loops") -#ifdef V8_TARGET_ARCH_IA32 -DEFINE_bool(use_osr, true, "use on-stack replacement") -#else +#ifdef V8_TARGET_ARCH_X64 DEFINE_bool(use_osr, false, "use on-stack replacement") +#else +DEFINE_bool(use_osr, true, "use on-stack replacement") #endif DEFINE_bool(trace_osr, false, "trace on-stack replacement") DEFINE_int(stress_runs, 0, "number of stress runs") -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
