Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: src/flag-definitions.h

Issue 998001: Loop peeling for inner loops.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/data-flow.cc ('k') | src/parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "try to use the speculative optimizing backend for all code") 153 "try to use the speculative optimizing backend for all code")
154 DEFINE_bool(trace_bailout, false, 154 DEFINE_bool(trace_bailout, false,
155 "print reasons for falling back to using the classic V8 backend") 155 "print reasons for falling back to using the classic V8 backend")
156 DEFINE_bool(safe_int32_compiler, false, 156 DEFINE_bool(safe_int32_compiler, false,
157 "enable optimized side-effect-free int32 expressions.") 157 "enable optimized side-effect-free int32 expressions.")
158 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") 158 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations")
159 159
160 // compilation-cache.cc 160 // compilation-cache.cc
161 DEFINE_bool(compilation_cache, true, "enable compilation cache") 161 DEFINE_bool(compilation_cache, true, "enable compilation cache")
162 162
163 // data-flow.cc
164 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.")
165
163 // debug.cc 166 // debug.cc
164 DEFINE_bool(remote_debugging, false, "enable remote debugging") 167 DEFINE_bool(remote_debugging, false, "enable remote debugging")
165 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 168 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
166 DEFINE_bool(debugger_auto_break, true, 169 DEFINE_bool(debugger_auto_break, true,
167 "automatically set the debug break flag when debugger commands are " 170 "automatically set the debug break flag when debugger commands are "
168 "in the queue") 171 "in the queue")
169 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 172 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
170 173
171 // frames.cc 174 // frames.cc
172 DEFINE_int(max_stack_trace_source_length, 300, 175 DEFINE_int(max_stack_trace_source_length, 300,
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 #undef FLAG 430 #undef FLAG
428 431
429 #undef DEFINE_bool 432 #undef DEFINE_bool
430 #undef DEFINE_int 433 #undef DEFINE_int
431 #undef DEFINE_string 434 #undef DEFINE_string
432 435
433 #undef FLAG_MODE_DECLARE 436 #undef FLAG_MODE_DECLARE
434 #undef FLAG_MODE_DEFINE 437 #undef FLAG_MODE_DEFINE
435 #undef FLAG_MODE_DEFINE_DEFAULTS 438 #undef FLAG_MODE_DEFINE_DEFAULTS
436 #undef FLAG_MODE_META 439 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/data-flow.cc ('k') | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698