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

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

Issue 150813004: In-heap small typed arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch for landing Created 6 years, 8 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-kind.cc ('k') | src/heap.h » ('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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 DEFINE_bool(block_concurrent_recompilation, false, 350 DEFINE_bool(block_concurrent_recompilation, false,
351 "block queued jobs until released") 351 "block queued jobs until released")
352 DEFINE_bool(concurrent_osr, false, 352 DEFINE_bool(concurrent_osr, false,
353 "concurrent on-stack replacement") 353 "concurrent on-stack replacement")
354 DEFINE_implication(concurrent_osr, concurrent_recompilation) 354 DEFINE_implication(concurrent_osr, concurrent_recompilation)
355 355
356 DEFINE_bool(omit_map_checks_for_leaf_maps, true, 356 DEFINE_bool(omit_map_checks_for_leaf_maps, true,
357 "do not emit check maps for constant values that have a leaf map, " 357 "do not emit check maps for constant values that have a leaf map, "
358 "deoptimize the optimized code if the layout of the maps changes.") 358 "deoptimize the optimized code if the layout of the maps changes.")
359 359
360 DEFINE_int(typed_array_max_size_in_heap, 64,
361 "threshold for in-heap typed array")
362
360 // Profiler flags. 363 // Profiler flags.
361 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") 364 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
362 // 0x1800 fits in the immediate field of an ARM instruction. 365 // 0x1800 fits in the immediate field of an ARM instruction.
363 DEFINE_int(interrupt_budget, 0x1800, 366 DEFINE_int(interrupt_budget, 0x1800,
364 "execution budget before interrupt is triggered") 367 "execution budget before interrupt is triggered")
365 DEFINE_int(type_info_threshold, 25, 368 DEFINE_int(type_info_threshold, 25,
366 "percentage of ICs that must have type info to allow optimization") 369 "percentage of ICs that must have type info to allow optimization")
367 DEFINE_int(self_opt_count, 130, "call count before self-optimization") 370 DEFINE_int(self_opt_count, 130, "call count before self-optimization")
368 371
369 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing") 372 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing")
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 #undef DEFINE_ALIAS_float 924 #undef DEFINE_ALIAS_float
922 #undef DEFINE_ALIAS_args 925 #undef DEFINE_ALIAS_args
923 926
924 #undef FLAG_MODE_DECLARE 927 #undef FLAG_MODE_DECLARE
925 #undef FLAG_MODE_DEFINE 928 #undef FLAG_MODE_DEFINE
926 #undef FLAG_MODE_DEFINE_DEFAULTS 929 #undef FLAG_MODE_DEFINE_DEFAULTS
927 #undef FLAG_MODE_META 930 #undef FLAG_MODE_META
928 #undef FLAG_MODE_DEFINE_IMPLICATIONS 931 #undef FLAG_MODE_DEFINE_IMPLICATIONS
929 932
930 #undef COMMA 933 #undef COMMA
OLDNEW
« no previous file with comments | « src/elements-kind.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698