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

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

Issue 6321012: Version 3.0.9... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler.cc ('k') | src/frames.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 #if defined(WEBOS__) 359 #if defined(WEBOS__)
360 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events") 360 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
361 DEFINE_bool(debug_script_collected_events, false, 361 DEFINE_bool(debug_script_collected_events, false,
362 "Enable debugger script collected events") 362 "Enable debugger script collected events")
363 #else 363 #else
364 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events") 364 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
365 DEFINE_bool(debug_script_collected_events, true, 365 DEFINE_bool(debug_script_collected_events, true,
366 "Enable debugger script collected events") 366 "Enable debugger script collected events")
367 #endif 367 #endif
368 368
369
370 //
371 // GDB JIT integration flags.
372 //
373
374 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
375 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
376
369 // 377 //
370 // Debug only flags 378 // Debug only flags
371 // 379 //
372 #undef FLAG 380 #undef FLAG
373 #ifdef DEBUG 381 #ifdef DEBUG
374 #define FLAG FLAG_FULL 382 #define FLAG FLAG_FULL
375 #else 383 #else
376 #define FLAG FLAG_READONLY 384 #define FLAG FLAG_READONLY
377 #endif 385 #endif
378 386
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 #undef FLAG 535 #undef FLAG
528 536
529 #undef DEFINE_bool 537 #undef DEFINE_bool
530 #undef DEFINE_int 538 #undef DEFINE_int
531 #undef DEFINE_string 539 #undef DEFINE_string
532 540
533 #undef FLAG_MODE_DECLARE 541 #undef FLAG_MODE_DECLARE
534 #undef FLAG_MODE_DEFINE 542 #undef FLAG_MODE_DEFINE
535 #undef FLAG_MODE_DEFINE_DEFAULTS 543 #undef FLAG_MODE_DEFINE_DEFAULTS
536 #undef FLAG_MODE_META 544 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698