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