| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 DEFINE_bool(enable_cmov, true, | 154 DEFINE_bool(enable_cmov, true, |
| 155 "enable use of CMOV instruction if available") | 155 "enable use of CMOV instruction if available") |
| 156 DEFINE_bool(enable_rdtsc, true, | 156 DEFINE_bool(enable_rdtsc, true, |
| 157 "enable use of RDTSC instruction if available") | 157 "enable use of RDTSC instruction if available") |
| 158 DEFINE_bool(enable_sahf, true, | 158 DEFINE_bool(enable_sahf, true, |
| 159 "enable use of SAHF instruction if available (X64 only)") | 159 "enable use of SAHF instruction if available (X64 only)") |
| 160 DEFINE_bool(enable_vfp3, true, | 160 DEFINE_bool(enable_vfp3, true, |
| 161 "enable use of VFP3 instructions if available (ARM only)") | 161 "enable use of VFP3 instructions if available (ARM only)") |
| 162 DEFINE_bool(enable_armv7, true, | 162 DEFINE_bool(enable_armv7, true, |
| 163 "enable use of ARMv7 instructions if available (ARM only)") | 163 "enable use of ARMv7 instructions if available (ARM only)") |
| 164 DEFINE_bool(enable_fpu, true, |
| 165 "enable use of MIPS FPU instructions if available (MIPS only)") |
| 164 | 166 |
| 165 // bootstrapper.cc | 167 // bootstrapper.cc |
| 166 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 168 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 167 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 169 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 168 DEFINE_bool(expose_gc, false, "expose gc extension") | 170 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 169 DEFINE_bool(expose_externalize_string, false, | 171 DEFINE_bool(expose_externalize_string, false, |
| 170 "expose externalize string extension") | 172 "expose externalize string extension") |
| 171 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 173 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| 172 DEFINE_bool(disable_native_files, false, "disable builtin natives files") | 174 DEFINE_bool(disable_native_files, false, "disable builtin natives files") |
| 173 | 175 |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 #undef FLAG | 541 #undef FLAG |
| 540 | 542 |
| 541 #undef DEFINE_bool | 543 #undef DEFINE_bool |
| 542 #undef DEFINE_int | 544 #undef DEFINE_int |
| 543 #undef DEFINE_string | 545 #undef DEFINE_string |
| 544 | 546 |
| 545 #undef FLAG_MODE_DECLARE | 547 #undef FLAG_MODE_DECLARE |
| 546 #undef FLAG_MODE_DEFINE | 548 #undef FLAG_MODE_DEFINE |
| 547 #undef FLAG_MODE_DEFINE_DEFAULTS | 549 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 548 #undef FLAG_MODE_META | 550 #undef FLAG_MODE_META |
| OLD | NEW |