| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 #define FLAG FLAG_FULL | 80 #define FLAG FLAG_FULL |
| 81 | 81 |
| 82 // assembler-ia32.cc / assembler-arm.cc | 82 // assembler-ia32.cc / assembler-arm.cc |
| 83 DEFINE_bool(debug_code, false, | 83 DEFINE_bool(debug_code, false, |
| 84 "generate extra code (comments, assertions) for debugging") | 84 "generate extra code (comments, assertions) for debugging") |
| 85 DEFINE_bool(emit_branch_hints, false, "emit branch hints") | 85 DEFINE_bool(emit_branch_hints, false, "emit branch hints") |
| 86 DEFINE_bool(push_pop_elimination, true, | 86 DEFINE_bool(push_pop_elimination, true, |
| 87 "eliminate redundant push/pops in assembly code") | 87 "eliminate redundant push/pops in assembly code") |
| 88 DEFINE_bool(print_push_pop_elimination, false, | 88 DEFINE_bool(print_push_pop_elimination, false, |
| 89 "print elimination of redundant push/pops in assembly code") | 89 "print elimination of redundant push/pops in assembly code") |
| 90 DEFINE_bool(eliminate_jumps, true, "eliminate jumps to jumps in assembly code") | |
| 91 DEFINE_bool(print_jump_elimination, false, | |
| 92 "print elimination of jumps to jumps in assembly code") | |
| 93 | 90 |
| 94 // bootstrapper.cc | 91 // bootstrapper.cc |
| 95 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 92 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 96 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 93 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 97 DEFINE_string(natives_file, NULL, "alternative natives file") | 94 DEFINE_string(natives_file, NULL, "alternative natives file") |
| 98 DEFINE_bool(expose_gc, false, "expose gc extension") | 95 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 99 | 96 |
| 100 // builtins-ia32.cc | 97 // builtins-ia32.cc |
| 101 DEFINE_bool(inline_new, true, "use fast inline allocation") | 98 DEFINE_bool(inline_new, true, "use fast inline allocation") |
| 102 | 99 |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 #undef FLAG | 309 #undef FLAG |
| 313 | 310 |
| 314 #undef DEFINE_bool | 311 #undef DEFINE_bool |
| 315 #undef DEFINE_int | 312 #undef DEFINE_int |
| 316 #undef DEFINE_string | 313 #undef DEFINE_string |
| 317 | 314 |
| 318 #undef FLAG_MODE_DECLARE | 315 #undef FLAG_MODE_DECLARE |
| 319 #undef FLAG_MODE_DEFINE | 316 #undef FLAG_MODE_DEFINE |
| 320 #undef FLAG_MODE_DEFINE_DEFAULTS | 317 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 321 #undef FLAG_MODE_META | 318 #undef FLAG_MODE_META |
| OLD | NEW |