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

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

Issue 137403009: Adding a type vector to replace type cells. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Smarter vector allocation and refactoring. Created 6 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
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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 // builtins-ia32.cc 414 // builtins-ia32.cc
415 DEFINE_bool(inline_new, true, "use fast inline allocation") 415 DEFINE_bool(inline_new, true, "use fast inline allocation")
416 416
417 // checks.cc 417 // checks.cc
418 DEFINE_bool(stack_trace_on_abort, true, 418 DEFINE_bool(stack_trace_on_abort, true,
419 "print a stack trace if an assertion failure occurs") 419 "print a stack trace if an assertion failure occurs")
420 420
421 // codegen-ia32.cc / codegen-arm.cc 421 // codegen-ia32.cc / codegen-arm.cc
422 DEFINE_bool(trace_codegen, false, 422 DEFINE_bool(trace_codegen, false,
423 "print name of functions for which code is generated") 423 "print name of functions for which code is generated")
424 DEFINE_bool(trace_type_feedback, false,
425 "trace information about type feedback vector usage")
424 DEFINE_bool(trace, false, "trace function calls") 426 DEFINE_bool(trace, false, "trace function calls")
425 DEFINE_bool(mask_constants_with_cookie, true, 427 DEFINE_bool(mask_constants_with_cookie, true,
426 "use random jit cookie to mask large constants") 428 "use random jit cookie to mask large constants")
427 429
428 // codegen.cc 430 // codegen.cc
429 DEFINE_bool(lazy, true, "use lazy compilation") 431 DEFINE_bool(lazy, true, "use lazy compilation")
430 DEFINE_bool(trace_opt, false, "trace lazy optimization") 432 DEFINE_bool(trace_opt, false, "trace lazy optimization")
431 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") 433 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
432 DEFINE_bool(opt, true, "use adaptive optimizations") 434 DEFINE_bool(opt, true, "use adaptive optimizations")
433 DEFINE_bool(always_opt, false, "always try to optimize functions") 435 DEFINE_bool(always_opt, false, "always try to optimize functions")
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 #undef DEFINE_ALIAS_float 894 #undef DEFINE_ALIAS_float
893 #undef DEFINE_ALIAS_args 895 #undef DEFINE_ALIAS_args
894 896
895 #undef FLAG_MODE_DECLARE 897 #undef FLAG_MODE_DECLARE
896 #undef FLAG_MODE_DEFINE 898 #undef FLAG_MODE_DEFINE
897 #undef FLAG_MODE_DEFINE_DEFAULTS 899 #undef FLAG_MODE_DEFINE_DEFAULTS
898 #undef FLAG_MODE_META 900 #undef FLAG_MODE_META
899 #undef FLAG_MODE_DEFINE_IMPLICATIONS 901 #undef FLAG_MODE_DEFINE_IMPLICATIONS
900 902
901 #undef COMMA 903 #undef COMMA
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698