| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 // checks.cc | 243 // checks.cc |
| 244 DEFINE_bool(enable_slow_asserts, false, | 244 DEFINE_bool(enable_slow_asserts, false, |
| 245 "enable asserts that are slow to execute") | 245 "enable asserts that are slow to execute") |
| 246 | 246 |
| 247 // code-stubs.cc | 247 // code-stubs.cc |
| 248 DEFINE_bool(print_code_stubs, false, "print code stubs") | 248 DEFINE_bool(print_code_stubs, false, "print code stubs") |
| 249 | 249 |
| 250 // codegen-ia32.cc / codegen-arm.cc | 250 // codegen-ia32.cc / codegen-arm.cc |
| 251 DEFINE_bool(trace_codegen, false, | 251 DEFINE_bool(trace_codegen, false, |
| 252 "print name of functions for which code is generated") | 252 "print name of functions for which code is generated") |
| 253 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") | |
| 254 DEFINE_bool(print_source, false, "pretty print source code") | 253 DEFINE_bool(print_source, false, "pretty print source code") |
| 255 DEFINE_bool(print_builtin_source, false, | 254 DEFINE_bool(print_builtin_source, false, |
| 256 "pretty print source code for builtins") | 255 "pretty print source code for builtins") |
| 257 DEFINE_bool(print_ast, false, "print source AST") | 256 DEFINE_bool(print_ast, false, "print source AST") |
| 258 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 257 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") |
| 259 DEFINE_bool(trace_calls, false, "trace calls") | 258 DEFINE_bool(trace_calls, false, "trace calls") |
| 260 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") | 259 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") |
| 261 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 260 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") |
| 262 | 261 |
| 263 // compiler.cc | 262 // compiler.cc |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 // | 335 // |
| 337 #undef FLAG | 336 #undef FLAG |
| 338 #ifdef ENABLE_DISASSEMBLER | 337 #ifdef ENABLE_DISASSEMBLER |
| 339 #define FLAG FLAG_FULL | 338 #define FLAG FLAG_FULL |
| 340 #else | 339 #else |
| 341 #define FLAG FLAG_READONLY | 340 #define FLAG FLAG_READONLY |
| 342 #endif | 341 #endif |
| 343 | 342 |
| 344 // codegen-ia32.cc / codegen-arm.cc | 343 // codegen-ia32.cc / codegen-arm.cc |
| 345 DEFINE_bool(print_code, false, "print generated code") | 344 DEFINE_bool(print_code, false, "print generated code") |
| 345 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") |
| 346 | 346 |
| 347 // Cleanup... | 347 // Cleanup... |
| 348 #undef FLAG_FULL | 348 #undef FLAG_FULL |
| 349 #undef FLAG_READONLY | 349 #undef FLAG_READONLY |
| 350 #undef FLAG | 350 #undef FLAG |
| 351 | 351 |
| 352 #undef DEFINE_bool | 352 #undef DEFINE_bool |
| 353 #undef DEFINE_int | 353 #undef DEFINE_int |
| 354 #undef DEFINE_string | 354 #undef DEFINE_string |
| 355 | 355 |
| 356 #undef FLAG_MODE_DECLARE | 356 #undef FLAG_MODE_DECLARE |
| 357 #undef FLAG_MODE_DEFINE | 357 #undef FLAG_MODE_DEFINE |
| 358 #undef FLAG_MODE_DEFINE_DEFAULTS | 358 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 359 #undef FLAG_MODE_META | 359 #undef FLAG_MODE_META |
| OLD | NEW |