OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 #endif | 365 #endif |
366 | 366 |
367 | 367 |
368 // | 368 // |
369 // GDB JIT integration flags. | 369 // GDB JIT integration flags. |
370 // | 370 // |
371 | 371 |
372 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)") | 372 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)") |
373 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") | 373 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") |
374 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk") | 374 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk") |
| 375 DEFINE_string(gdbjit_dump_filter, "", |
| 376 "dump only objects containing this substring") |
375 | 377 |
376 // | 378 // |
377 // Debug only flags | 379 // Debug only flags |
378 // | 380 // |
379 #undef FLAG | 381 #undef FLAG |
380 #ifdef DEBUG | 382 #ifdef DEBUG |
381 #define FLAG FLAG_FULL | 383 #define FLAG FLAG_FULL |
382 #else | 384 #else |
383 #define FLAG FLAG_READONLY | 385 #define FLAG FLAG_READONLY |
384 #endif | 386 #endif |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 #undef FLAG | 531 #undef FLAG |
530 | 532 |
531 #undef DEFINE_bool | 533 #undef DEFINE_bool |
532 #undef DEFINE_int | 534 #undef DEFINE_int |
533 #undef DEFINE_string | 535 #undef DEFINE_string |
534 | 536 |
535 #undef FLAG_MODE_DECLARE | 537 #undef FLAG_MODE_DECLARE |
536 #undef FLAG_MODE_DEFINE | 538 #undef FLAG_MODE_DEFINE |
537 #undef FLAG_MODE_DEFINE_DEFAULTS | 539 #undef FLAG_MODE_DEFINE_DEFAULTS |
538 #undef FLAG_MODE_META | 540 #undef FLAG_MODE_META |
OLD | NEW |