Revision: 10630 Author: [email protected] Date: Wed Feb 8 01:55:25 2012 Log: Remove unused --peephole-optimization flag.
[email protected] BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/9361022 http://code.google.com/p/v8/source/detail?r=10630 Modified: /branches/bleeding_edge/src/flag-definitions.h /branches/bleeding_edge/src/v8.cc ======================================= --- /branches/bleeding_edge/src/flag-definitions.h Tue Feb 7 08:34:26 2012 +++ /branches/bleeding_edge/src/flag-definitions.h Wed Feb 8 01:55:25 2012 @@ -168,8 +168,6 @@ DEFINE_bool(debug_code, false, "generate extra code (assertions) for debugging") DEFINE_bool(code_comments, false, "emit comments in code disassembly") -DEFINE_bool(peephole_optimization, true, - "perform peephole optimizations in assembly code") DEFINE_bool(enable_sse2, true, "enable use of SSE2 instructions if available") DEFINE_bool(enable_sse3, true, ======================================= --- /branches/bleeding_edge/src/v8.cc Fri Jan 13 05:09:52 2012 +++ /branches/bleeding_edge/src/v8.cc Wed Feb 8 01:55:25 2012 @@ -1,4 +1,4 @@ -// Copyright 2011 the V8 project authors. All rights reserved. +// Copyright 2012 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: @@ -255,9 +255,6 @@ RuntimeProfiler::GlobalSetup(); - // Peephole optimization might interfere with deoptimization. - FLAG_peephole_optimization = !use_crankshaft_; - ElementsAccessor::InitializeOncePerProcess(); if (FLAG_stress_compaction) { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
