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

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

Issue 6905098: ARM: Support hardfloat in SCons build and make it a build time setting (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added CAN_USE_VFP_INSTRUCTIONS when hardfloat is used Created 9 years, 7 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.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 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 137 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
138 DEFINE_bool(aggressive_loop_invariant_motion, true, 138 DEFINE_bool(aggressive_loop_invariant_motion, true,
139 "aggressive motion of instructions out of loops") 139 "aggressive motion of instructions out of loops")
140 DEFINE_bool(use_osr, true, "use on-stack replacement") 140 DEFINE_bool(use_osr, true, "use on-stack replacement")
141 141
142 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 142 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
143 DEFINE_int(stress_runs, 0, "number of stress runs") 143 DEFINE_int(stress_runs, 0, "number of stress runs")
144 DEFINE_bool(optimize_closures, true, "optimize closures") 144 DEFINE_bool(optimize_closures, true, "optimize closures")
145 145
146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 146 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
147 DEFINE_bool(hardfloat, false,
148 "use hardware floating point ABI")
149 DEFINE_bool(debug_code, false, 147 DEFINE_bool(debug_code, false,
150 "generate extra code (assertions) for debugging") 148 "generate extra code (assertions) for debugging")
151 DEFINE_bool(code_comments, false, "emit comments in code disassembly") 149 DEFINE_bool(code_comments, false, "emit comments in code disassembly")
152 DEFINE_bool(emit_branch_hints, false, "emit branch hints") 150 DEFINE_bool(emit_branch_hints, false, "emit branch hints")
153 DEFINE_bool(peephole_optimization, true, 151 DEFINE_bool(peephole_optimization, true,
154 "perform peephole optimizations in assembly code") 152 "perform peephole optimizations in assembly code")
155 DEFINE_bool(print_peephole_optimization, false, 153 DEFINE_bool(print_peephole_optimization, false,
156 "print peephole optimizations in assembly code") 154 "print peephole optimizations in assembly code")
157 DEFINE_bool(enable_sse2, true, 155 DEFINE_bool(enable_sse2, true,
158 "enable use of SSE2 instructions if available") 156 "enable use of SSE2 instructions if available")
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 #undef FLAG 553 #undef FLAG
556 554
557 #undef DEFINE_bool 555 #undef DEFINE_bool
558 #undef DEFINE_int 556 #undef DEFINE_int
559 #undef DEFINE_string 557 #undef DEFINE_string
560 558
561 #undef FLAG_MODE_DECLARE 559 #undef FLAG_MODE_DECLARE
562 #undef FLAG_MODE_DEFINE 560 #undef FLAG_MODE_DEFINE
563 #undef FLAG_MODE_DEFINE_DEFAULTS 561 #undef FLAG_MODE_DEFINE_DEFAULTS
564 #undef FLAG_MODE_META 562 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698