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

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

Issue 6520017: mimic the jsc shell function run() for latest sunspider (Closed)
Patch Set: Add run() as an extension Created 9 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
« no previous file with comments | « src/extensions/run-extension.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "enable use of ARMv7 instructions if available (ARM only)") 167 "enable use of ARMv7 instructions if available (ARM only)")
168 DEFINE_bool(enable_fpu, true, 168 DEFINE_bool(enable_fpu, true,
169 "enable use of MIPS FPU instructions if available (MIPS only)") 169 "enable use of MIPS FPU instructions if available (MIPS only)")
170 170
171 // bootstrapper.cc 171 // bootstrapper.cc
172 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 172 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
173 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 173 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
174 DEFINE_bool(expose_gc, false, "expose gc extension") 174 DEFINE_bool(expose_gc, false, "expose gc extension")
175 DEFINE_bool(expose_externalize_string, false, 175 DEFINE_bool(expose_externalize_string, false,
176 "expose externalize string extension") 176 "expose externalize string extension")
177 DEFINE_bool(expose_run, false, "expose run extension")
177 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 178 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
178 DEFINE_bool(disable_native_files, false, "disable builtin natives files") 179 DEFINE_bool(disable_native_files, false, "disable builtin natives files")
179 180
180 // builtins-ia32.cc 181 // builtins-ia32.cc
181 DEFINE_bool(inline_new, true, "use fast inline allocation") 182 DEFINE_bool(inline_new, true, "use fast inline allocation")
182 183
183 // checks.cc 184 // checks.cc
184 DEFINE_bool(stack_trace_on_abort, true, 185 DEFINE_bool(stack_trace_on_abort, true,
185 "print a stack trace if an assertion failure occurs") 186 "print a stack trace if an assertion failure occurs")
186 187
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 #undef FLAG 548 #undef FLAG
548 549
549 #undef DEFINE_bool 550 #undef DEFINE_bool
550 #undef DEFINE_int 551 #undef DEFINE_int
551 #undef DEFINE_string 552 #undef DEFINE_string
552 553
553 #undef FLAG_MODE_DECLARE 554 #undef FLAG_MODE_DECLARE
554 #undef FLAG_MODE_DEFINE 555 #undef FLAG_MODE_DEFINE
555 #undef FLAG_MODE_DEFINE_DEFAULTS 556 #undef FLAG_MODE_DEFINE_DEFAULTS
556 #undef FLAG_MODE_META 557 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/extensions/run-extension.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698