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

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

Issue 405001: Merged changes from 1.3 as well as r3285 into trunk. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: '' Created 11 years, 1 month 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 | « no previous file | src/handles.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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 DEFINE_bool(defer_negation, true, "defer negation operation") 134 DEFINE_bool(defer_negation, true, "defer negation operation")
135 135
136 // codegen.cc 136 // codegen.cc
137 DEFINE_bool(lazy, true, "use lazy compilation") 137 DEFINE_bool(lazy, true, "use lazy compilation")
138 DEFINE_bool(debug_info, true, "add debug information to compiled functions") 138 DEFINE_bool(debug_info, true, "add debug information to compiled functions")
139 139
140 // compiler.cc 140 // compiler.cc
141 DEFINE_bool(strict, false, "strict error checking") 141 DEFINE_bool(strict, false, "strict error checking")
142 DEFINE_int(min_preparse_length, 1024, 142 DEFINE_int(min_preparse_length, 1024,
143 "minimum length for automatic enable preparsing") 143 "minimum length for automatic enable preparsing")
144 DEFINE_bool(fast_compiler, true, 144 DEFINE_bool(fast_compiler, false,
145 "use the fast-mode compiler for some top-level code") 145 "use the fast-mode compiler for some top-level code")
146 DEFINE_bool(trace_bailout, false, 146 DEFINE_bool(trace_bailout, false,
147 "print reasons for failing to use fast compilation") 147 "print reasons for failing to use fast compilation")
148 148
149 // compilation-cache.cc 149 // compilation-cache.cc
150 DEFINE_bool(compilation_cache, true, "enable compilation cache") 150 DEFINE_bool(compilation_cache, true, "enable compilation cache")
151 151
152 // debug.cc 152 // debug.cc
153 DEFINE_bool(remote_debugging, false, "enable remote debugging") 153 DEFINE_bool(remote_debugging, false, "enable remote debugging")
154 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 154 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 #undef FLAG 400 #undef FLAG
401 401
402 #undef DEFINE_bool 402 #undef DEFINE_bool
403 #undef DEFINE_int 403 #undef DEFINE_int
404 #undef DEFINE_string 404 #undef DEFINE_string
405 405
406 #undef FLAG_MODE_DECLARE 406 #undef FLAG_MODE_DECLARE
407 #undef FLAG_MODE_DEFINE 407 #undef FLAG_MODE_DEFINE
408 #undef FLAG_MODE_DEFINE_DEFAULTS 408 #undef FLAG_MODE_DEFINE_DEFAULTS
409 #undef FLAG_MODE_META 409 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698