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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 "Enable debugger script collected events") | 371 "Enable debugger script collected events") |
372 #endif | 372 #endif |
373 | 373 |
374 | 374 |
375 // | 375 // |
376 // GDB JIT integration flags. | 376 // GDB JIT integration flags. |
377 // | 377 // |
378 | 378 |
379 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)") | 379 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)") |
380 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") | 380 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects") |
| 381 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk") |
381 | 382 |
382 // | 383 // |
383 // Debug only flags | 384 // Debug only flags |
384 // | 385 // |
385 #undef FLAG | 386 #undef FLAG |
386 #ifdef DEBUG | 387 #ifdef DEBUG |
387 #define FLAG FLAG_FULL | 388 #define FLAG FLAG_FULL |
388 #else | 389 #else |
389 #define FLAG FLAG_READONLY | 390 #define FLAG FLAG_READONLY |
390 #endif | 391 #endif |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 #undef FLAG | 540 #undef FLAG |
540 | 541 |
541 #undef DEFINE_bool | 542 #undef DEFINE_bool |
542 #undef DEFINE_int | 543 #undef DEFINE_int |
543 #undef DEFINE_string | 544 #undef DEFINE_string |
544 | 545 |
545 #undef FLAG_MODE_DECLARE | 546 #undef FLAG_MODE_DECLARE |
546 #undef FLAG_MODE_DEFINE | 547 #undef FLAG_MODE_DEFINE |
547 #undef FLAG_MODE_DEFINE_DEFAULTS | 548 #undef FLAG_MODE_DEFINE_DEFAULTS |
548 #undef FLAG_MODE_META | 549 #undef FLAG_MODE_META |
OLD | NEW |