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

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

Issue 208503007: Revert "This implements allocating small typed arrays in heap." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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/full-codegen.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 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
363 // Profiler flags. 360 // Profiler flags.
364 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") 361 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
365 // 0x1800 fits in the immediate field of an ARM instruction. 362 // 0x1800 fits in the immediate field of an ARM instruction.
366 DEFINE_int(interrupt_budget, 0x1800, 363 DEFINE_int(interrupt_budget, 0x1800,
367 "execution budget before interrupt is triggered") 364 "execution budget before interrupt is triggered")
368 DEFINE_int(type_info_threshold, 25, 365 DEFINE_int(type_info_threshold, 25,
369 "percentage of ICs that must have type info to allow optimization") 366 "percentage of ICs that must have type info to allow optimization")
370 DEFINE_int(self_opt_count, 130, "call count before self-optimization") 367 DEFINE_int(self_opt_count, 130, "call count before self-optimization")
371 368
372 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing") 369 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing")
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 #undef DEFINE_ALIAS_float 921 #undef DEFINE_ALIAS_float
925 #undef DEFINE_ALIAS_args 922 #undef DEFINE_ALIAS_args
926 923
927 #undef FLAG_MODE_DECLARE 924 #undef FLAG_MODE_DECLARE
928 #undef FLAG_MODE_DEFINE 925 #undef FLAG_MODE_DEFINE
929 #undef FLAG_MODE_DEFINE_DEFAULTS 926 #undef FLAG_MODE_DEFINE_DEFAULTS
930 #undef FLAG_MODE_META 927 #undef FLAG_MODE_META
931 #undef FLAG_MODE_DEFINE_IMPLICATIONS 928 #undef FLAG_MODE_DEFINE_IMPLICATIONS
932 929
933 #undef COMMA 930 #undef COMMA
OLDNEW
« no previous file with comments | « src/elements-kind.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698