| OLD | NEW |
| 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 Loading... |
| 153 | 153 |
| 154 DEFINE_bool(canonicalize_object_literal_maps, true, | 154 DEFINE_bool(canonicalize_object_literal_maps, true, |
| 155 "Canonicalize maps for object literals.") | 155 "Canonicalize maps for object literals.") |
| 156 | 156 |
| 157 // mksnapshot.cc | 157 // mksnapshot.cc |
| 158 DEFINE_bool(h, false, "print this message") | 158 DEFINE_bool(h, false, "print this message") |
| 159 | 159 |
| 160 // parser.cc | 160 // parser.cc |
| 161 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 161 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 162 | 162 |
| 163 // rewriter.cc |
| 164 DEFINE_bool(optimize_ast, true, "optimize the ast") |
| 165 |
| 163 // simulator-arm.cc | 166 // simulator-arm.cc |
| 164 DEFINE_bool(trace_sim, false, "trace simulator execution") | 167 DEFINE_bool(trace_sim, false, "trace simulator execution") |
| 165 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 168 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 166 | 169 |
| 167 // top.cc | 170 // top.cc |
| 168 DEFINE_bool(trace_exception, false, | 171 DEFINE_bool(trace_exception, false, |
| 169 "print stack trace when throwing exceptions") | 172 "print stack trace when throwing exceptions") |
| 170 DEFINE_bool(preallocate_message_memory, false, | 173 DEFINE_bool(preallocate_message_memory, false, |
| 171 "preallocate some memory to build stack traces.") | 174 "preallocate some memory to build stack traces.") |
| 172 | 175 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 #undef FLAG | 315 #undef FLAG |
| 313 | 316 |
| 314 #undef DEFINE_bool | 317 #undef DEFINE_bool |
| 315 #undef DEFINE_int | 318 #undef DEFINE_int |
| 316 #undef DEFINE_string | 319 #undef DEFINE_string |
| 317 | 320 |
| 318 #undef FLAG_MODE_DECLARE | 321 #undef FLAG_MODE_DECLARE |
| 319 #undef FLAG_MODE_DEFINE | 322 #undef FLAG_MODE_DEFINE |
| 320 #undef FLAG_MODE_DEFINE_DEFAULTS | 323 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 321 #undef FLAG_MODE_META | 324 #undef FLAG_MODE_META |
| OLD | NEW |