OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 "enable use of RDTSC instruction if available") | 277 "enable use of RDTSC instruction if available") |
278 DEFINE_bool(enable_sahf, true, | 278 DEFINE_bool(enable_sahf, true, |
279 "enable use of SAHF instruction if available (X64 only)") | 279 "enable use of SAHF instruction if available (X64 only)") |
280 DEFINE_bool(enable_vfp3, true, | 280 DEFINE_bool(enable_vfp3, true, |
281 "enable use of VFP3 instructions if available - this implies " | 281 "enable use of VFP3 instructions if available - this implies " |
282 "enabling ARMv7 and VFP2 instructions (ARM only)") | 282 "enabling ARMv7 and VFP2 instructions (ARM only)") |
283 DEFINE_bool(enable_vfp2, true, | 283 DEFINE_bool(enable_vfp2, true, |
284 "enable use of VFP2 instructions if available") | 284 "enable use of VFP2 instructions if available") |
285 DEFINE_bool(enable_armv7, true, | 285 DEFINE_bool(enable_armv7, true, |
286 "enable use of ARMv7 instructions if available (ARM only)") | 286 "enable use of ARMv7 instructions if available (ARM only)") |
| 287 DEFINE_bool(enable_sudiv, true, |
| 288 "enable use of SDIV and UDIV instructions if available (ARM only)") |
287 DEFINE_bool(enable_fpu, true, | 289 DEFINE_bool(enable_fpu, true, |
288 "enable use of MIPS FPU instructions if available (MIPS only)") | 290 "enable use of MIPS FPU instructions if available (MIPS only)") |
289 | 291 |
290 // bootstrapper.cc | 292 // bootstrapper.cc |
291 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 293 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
292 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 294 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
293 DEFINE_bool(expose_gc, false, "expose gc extension") | 295 DEFINE_bool(expose_gc, false, "expose gc extension") |
294 DEFINE_bool(expose_externalize_string, false, | 296 DEFINE_bool(expose_externalize_string, false, |
295 "expose externalize string extension") | 297 "expose externalize string extension") |
296 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 298 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 #undef DEFINE_bool | 693 #undef DEFINE_bool |
692 #undef DEFINE_int | 694 #undef DEFINE_int |
693 #undef DEFINE_string | 695 #undef DEFINE_string |
694 #undef DEFINE_implication | 696 #undef DEFINE_implication |
695 | 697 |
696 #undef FLAG_MODE_DECLARE | 698 #undef FLAG_MODE_DECLARE |
697 #undef FLAG_MODE_DEFINE | 699 #undef FLAG_MODE_DEFINE |
698 #undef FLAG_MODE_DEFINE_DEFAULTS | 700 #undef FLAG_MODE_DEFINE_DEFAULTS |
699 #undef FLAG_MODE_META | 701 #undef FLAG_MODE_META |
700 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 702 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |