| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 DEFINE_bool(enable_cmov, true, | 111 DEFINE_bool(enable_cmov, true, |
| 112 "enable use of CMOV instruction if available") | 112 "enable use of CMOV instruction if available") |
| 113 DEFINE_bool(enable_rdtsc, true, | 113 DEFINE_bool(enable_rdtsc, true, |
| 114 "enable use of RDTSC instruction if available") | 114 "enable use of RDTSC instruction if available") |
| 115 DEFINE_bool(enable_sahf, true, | 115 DEFINE_bool(enable_sahf, true, |
| 116 "enable use of SAHF instruction if available (X64 only)") | 116 "enable use of SAHF instruction if available (X64 only)") |
| 117 DEFINE_bool(enable_vfp3, true, | 117 DEFINE_bool(enable_vfp3, true, |
| 118 "enable use of VFP3 instructions if available (ARM only)") | 118 "enable use of VFP3 instructions if available (ARM only)") |
| 119 DEFINE_bool(enable_armv7, true, | 119 DEFINE_bool(enable_armv7, true, |
| 120 "enable use of ARMv7 instructions if available (ARM only)") | 120 "enable use of ARMv7 instructions if available (ARM only)") |
| 121 DEFINE_bool(enable_fpu, false, |
| 122 "enable use of MIPS FPU instructions if available (MIPS only)") |
| 121 | 123 |
| 122 // bootstrapper.cc | 124 // bootstrapper.cc |
| 123 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 125 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 124 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 126 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 125 DEFINE_bool(expose_gc, false, "expose gc extension") | 127 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 126 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 128 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| 127 DEFINE_bool(disable_native_files, false, "disable builtin natives files") | 129 DEFINE_bool(disable_native_files, false, "disable builtin natives files") |
| 128 | 130 |
| 129 // builtins-ia32.cc | 131 // builtins-ia32.cc |
| 130 DEFINE_bool(inline_new, true, "use fast inline allocation") | 132 DEFINE_bool(inline_new, true, "use fast inline allocation") |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 #undef FLAG | 435 #undef FLAG |
| 434 | 436 |
| 435 #undef DEFINE_bool | 437 #undef DEFINE_bool |
| 436 #undef DEFINE_int | 438 #undef DEFINE_int |
| 437 #undef DEFINE_string | 439 #undef DEFINE_string |
| 438 | 440 |
| 439 #undef FLAG_MODE_DECLARE | 441 #undef FLAG_MODE_DECLARE |
| 440 #undef FLAG_MODE_DEFINE | 442 #undef FLAG_MODE_DEFINE |
| 441 #undef FLAG_MODE_DEFINE_DEFAULTS | 443 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 442 #undef FLAG_MODE_META | 444 #undef FLAG_MODE_META |
| OLD | NEW |