Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: src/flag-definitions.h

Issue 6995161: Extend gdb-jit support (OSX/locals+parameters/prettyprint) (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Rebase. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler.cc ('k') | src/gdb-jit.h » ('j') | src/gdb-jit.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/gdb-jit.h » ('j') | src/gdb-jit.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698