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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 DEFINE_bool(dump_counters, false, "Dump counters on exit") | 349 DEFINE_bool(dump_counters, false, "Dump counters on exit") |
350 DEFINE_bool(debugger, false, "Enable JavaScript debugger") | 350 DEFINE_bool(debugger, false, "Enable JavaScript debugger") |
351 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " | 351 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " |
352 "debugger agent in another process") | 352 "debugger agent in another process") |
353 DEFINE_bool(debugger_agent, false, "Enable debugger agent") | 353 DEFINE_bool(debugger_agent, false, "Enable debugger agent") |
354 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") | 354 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") |
355 DEFINE_string(map_counters, NULL, "Map counters to a file") | 355 DEFINE_string(map_counters, NULL, "Map counters to a file") |
356 DEFINE_args(js_arguments, JSArguments(), | 356 DEFINE_args(js_arguments, JSArguments(), |
357 "Pass all remaining arguments to the script. Alias for \"--\".") | 357 "Pass all remaining arguments to the script. Alias for \"--\".") |
358 | 358 |
| 359 |
| 360 DEFINE_bool(gdbjit, false, "enable GDBJIT interface") |
| 361 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") |
| 362 |
359 // | 363 // |
360 // Debug only flags | 364 // Debug only flags |
361 // | 365 // |
362 #undef FLAG | 366 #undef FLAG |
363 #ifdef DEBUG | 367 #ifdef DEBUG |
364 #define FLAG FLAG_FULL | 368 #define FLAG FLAG_FULL |
365 #else | 369 #else |
366 #define FLAG FLAG_READONLY | 370 #define FLAG FLAG_READONLY |
367 #endif | 371 #endif |
368 | 372 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 #undef FLAG | 521 #undef FLAG |
518 | 522 |
519 #undef DEFINE_bool | 523 #undef DEFINE_bool |
520 #undef DEFINE_int | 524 #undef DEFINE_int |
521 #undef DEFINE_string | 525 #undef DEFINE_string |
522 | 526 |
523 #undef FLAG_MODE_DECLARE | 527 #undef FLAG_MODE_DECLARE |
524 #undef FLAG_MODE_DEFINE | 528 #undef FLAG_MODE_DEFINE |
525 #undef FLAG_MODE_DEFINE_DEFAULTS | 529 #undef FLAG_MODE_DEFINE_DEFAULTS |
526 #undef FLAG_MODE_META | 530 #undef FLAG_MODE_META |
OLD | NEW |