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

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

Issue 11040025: Revert r12646 "Support for SDIV" because of failing V8 benchmark. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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/arm/simulator-arm.cc ('k') | src/platform-linux.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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "enable use of RDTSC instruction if available") 277 "enable use of RDTSC instruction if available")
278 DEFINE_bool(enable_sahf, true, 278 DEFINE_bool(enable_sahf, true,
279 "enable use of SAHF instruction if available (X64 only)") 279 "enable use of SAHF instruction if available (X64 only)")
280 DEFINE_bool(enable_vfp3, true, 280 DEFINE_bool(enable_vfp3, true,
281 "enable use of VFP3 instructions if available - this implies " 281 "enable use of VFP3 instructions if available - this implies "
282 "enabling ARMv7 and VFP2 instructions (ARM only)") 282 "enabling ARMv7 and VFP2 instructions (ARM only)")
283 DEFINE_bool(enable_vfp2, true, 283 DEFINE_bool(enable_vfp2, true,
284 "enable use of VFP2 instructions if available") 284 "enable use of VFP2 instructions if available")
285 DEFINE_bool(enable_armv7, true, 285 DEFINE_bool(enable_armv7, true,
286 "enable use of ARMv7 instructions if available (ARM only)") 286 "enable use of ARMv7 instructions if available (ARM only)")
287 DEFINE_bool(enable_sudiv, true,
288 "enable use of SDIV and UDIV instructions if available (ARM only)")
289 DEFINE_bool(enable_fpu, true, 287 DEFINE_bool(enable_fpu, true,
290 "enable use of MIPS FPU instructions if available (MIPS only)") 288 "enable use of MIPS FPU instructions if available (MIPS only)")
291 289
292 // bootstrapper.cc 290 // bootstrapper.cc
293 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 291 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
294 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 292 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
295 DEFINE_bool(expose_gc, false, "expose gc extension") 293 DEFINE_bool(expose_gc, false, "expose gc extension")
296 DEFINE_bool(expose_externalize_string, false, 294 DEFINE_bool(expose_externalize_string, false,
297 "expose externalize string extension") 295 "expose externalize string extension")
298 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 296 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 #undef DEFINE_bool 695 #undef DEFINE_bool
698 #undef DEFINE_int 696 #undef DEFINE_int
699 #undef DEFINE_string 697 #undef DEFINE_string
700 #undef DEFINE_implication 698 #undef DEFINE_implication
701 699
702 #undef FLAG_MODE_DECLARE 700 #undef FLAG_MODE_DECLARE
703 #undef FLAG_MODE_DEFINE 701 #undef FLAG_MODE_DEFINE
704 #undef FLAG_MODE_DEFINE_DEFAULTS 702 #undef FLAG_MODE_DEFINE_DEFAULTS
705 #undef FLAG_MODE_META 703 #undef FLAG_MODE_META
706 #undef FLAG_MODE_DEFINE_IMPLICATIONS 704 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | src/platform-linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698