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

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

Issue 12220040: Add --trace-array-abuse to help find OOB accesses. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove changed test Created 7 years, 10 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/elements.cc ('k') | src/objects.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 DEFINE_int(max_opt_count, 10, 356 DEFINE_int(max_opt_count, 10,
357 "maximum number of optimization attempts before giving up.") 357 "maximum number of optimization attempts before giving up.")
358 358
359 // compilation-cache.cc 359 // compilation-cache.cc
360 DEFINE_bool(compilation_cache, true, "enable compilation cache") 360 DEFINE_bool(compilation_cache, true, "enable compilation cache")
361 361
362 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 362 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
363 363
364 // debug.cc 364 // debug.cc
365 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 365 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
366 DEFINE_bool(trace_array_abuse, false, "trace out-of-bounds array accesses")
366 DEFINE_bool(debugger_auto_break, true, 367 DEFINE_bool(debugger_auto_break, true,
367 "automatically set the debug break flag when debugger commands are " 368 "automatically set the debug break flag when debugger commands are "
368 "in the queue") 369 "in the queue")
369 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 370 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
370 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") 371 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting")
371 372
372 // execution.cc 373 // execution.cc
373 // Slightly less than 1MB on 64-bit, since Windows' default stack size for 374 // Slightly less than 1MB on 64-bit, since Windows' default stack size for
374 // the main execution thread is 1MB for both 32 and 64-bit. 375 // the main execution thread is 1MB for both 32 and 64-bit.
375 DEFINE_int(stack_size, kPointerSize * 123, 376 DEFINE_int(stack_size, kPointerSize * 123,
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 #undef DEFINE_bool 734 #undef DEFINE_bool
734 #undef DEFINE_int 735 #undef DEFINE_int
735 #undef DEFINE_string 736 #undef DEFINE_string
736 #undef DEFINE_implication 737 #undef DEFINE_implication
737 738
738 #undef FLAG_MODE_DECLARE 739 #undef FLAG_MODE_DECLARE
739 #undef FLAG_MODE_DEFINE 740 #undef FLAG_MODE_DEFINE
740 #undef FLAG_MODE_DEFINE_DEFAULTS 741 #undef FLAG_MODE_DEFINE_DEFAULTS
741 #undef FLAG_MODE_META 742 #undef FLAG_MODE_META
742 #undef FLAG_MODE_DEFINE_IMPLICATIONS 743 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/elements.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698