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

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

Issue 173773003: MIPS: Add flag for testing long branch mode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 | « no previous file | src/mips/assembler-mips.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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 "enable use of SDIV and UDIV instructions if available (ARM only)") 391 "enable use of SDIV and UDIV instructions if available (ARM only)")
392 DEFINE_bool(enable_movw_movt, false, 392 DEFINE_bool(enable_movw_movt, false,
393 "enable loading 32-bit constant by means of movw/movt " 393 "enable loading 32-bit constant by means of movw/movt "
394 "instruction pairs (ARM only)") 394 "instruction pairs (ARM only)")
395 DEFINE_bool(enable_unaligned_accesses, true, 395 DEFINE_bool(enable_unaligned_accesses, true,
396 "enable unaligned accesses for ARMv7 (ARM only)") 396 "enable unaligned accesses for ARMv7 (ARM only)")
397 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, 397 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT,
398 "enable use of d16-d31 registers on ARM - this requires VFP3") 398 "enable use of d16-d31 registers on ARM - this requires VFP3")
399 DEFINE_bool(enable_vldr_imm, false, 399 DEFINE_bool(enable_vldr_imm, false,
400 "enable use of constant pools for double immediate (ARM only)") 400 "enable use of constant pools for double immediate (ARM only)")
401 DEFINE_bool(force_long_branches, false,
402 "force all emitted branches to be in long mode (MIPS only)")
401 403
402 // bootstrapper.cc 404 // bootstrapper.cc
403 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 405 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
404 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 406 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
405 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") 407 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension")
406 DEFINE_bool(expose_gc, false, "expose gc extension") 408 DEFINE_bool(expose_gc, false, "expose gc extension")
407 DEFINE_string(expose_gc_as, NULL, 409 DEFINE_string(expose_gc_as, NULL,
408 "expose gc extension under the specified name") 410 "expose gc extension under the specified name")
409 DEFINE_implication(expose_gc_as, expose_gc) 411 DEFINE_implication(expose_gc_as, expose_gc)
410 DEFINE_bool(expose_externalize_string, false, 412 DEFINE_bool(expose_externalize_string, false,
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 #undef DEFINE_ALIAS_float 917 #undef DEFINE_ALIAS_float
916 #undef DEFINE_ALIAS_args 918 #undef DEFINE_ALIAS_args
917 919
918 #undef FLAG_MODE_DECLARE 920 #undef FLAG_MODE_DECLARE
919 #undef FLAG_MODE_DEFINE 921 #undef FLAG_MODE_DEFINE
920 #undef FLAG_MODE_DEFINE_DEFAULTS 922 #undef FLAG_MODE_DEFINE_DEFAULTS
921 #undef FLAG_MODE_META 923 #undef FLAG_MODE_META
922 #undef FLAG_MODE_DEFINE_IMPLICATIONS 924 #undef FLAG_MODE_DEFINE_IMPLICATIONS
923 925
924 #undef COMMA 926 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698