| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 242 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
| 243 | 243 |
| 244 // debug.cc | 244 // debug.cc |
| 245 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 245 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 246 DEFINE_bool(debugger_auto_break, true, | 246 DEFINE_bool(debugger_auto_break, true, |
| 247 "automatically set the debug break flag when debugger commands are " | 247 "automatically set the debug break flag when debugger commands are " |
| 248 "in the queue") | 248 "in the queue") |
| 249 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 249 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
| 250 | 250 |
| 251 // execution.cc | 251 // execution.cc |
| 252 DEFINE_int(stack_size, kPointerSize * 128, | 252 // Slightly less than 1MB on 64-bit, since Windows' default stack size for |
| 253 // the main execution thread is 1MB for both 32 and 64-bit. |
| 254 DEFINE_int(stack_size, kPointerSize * 123, |
| 253 "default size of stack region v8 is allowed to use (in KkBytes)") | 255 "default size of stack region v8 is allowed to use (in KkBytes)") |
| 254 | 256 |
| 255 // frames.cc | 257 // frames.cc |
| 256 DEFINE_int(max_stack_trace_source_length, 300, | 258 DEFINE_int(max_stack_trace_source_length, 300, |
| 257 "maximum length of function source code printed in a stack trace.") | 259 "maximum length of function source code printed in a stack trace.") |
| 258 | 260 |
| 259 // full-codegen.cc | 261 // full-codegen.cc |
| 260 DEFINE_bool(always_inline_smi_code, false, | 262 DEFINE_bool(always_inline_smi_code, false, |
| 261 "always inline smi code in non-opt code") | 263 "always inline smi code in non-opt code") |
| 262 | 264 |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 #undef DEFINE_bool | 589 #undef DEFINE_bool |
| 588 #undef DEFINE_int | 590 #undef DEFINE_int |
| 589 #undef DEFINE_string | 591 #undef DEFINE_string |
| 590 #undef DEFINE_implication | 592 #undef DEFINE_implication |
| 591 | 593 |
| 592 #undef FLAG_MODE_DECLARE | 594 #undef FLAG_MODE_DECLARE |
| 593 #undef FLAG_MODE_DEFINE | 595 #undef FLAG_MODE_DEFINE |
| 594 #undef FLAG_MODE_DEFINE_DEFAULTS | 596 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 595 #undef FLAG_MODE_META | 597 #undef FLAG_MODE_META |
| 596 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 598 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |