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

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

Issue 138143014: Robustified extension installation a bit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
« no previous file with comments | « src/bootstrapper.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 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 DEFINE_bool(enable_unaligned_accesses, true, 391 DEFINE_bool(enable_unaligned_accesses, true,
392 "enable unaligned accesses for ARMv7 (ARM only)") 392 "enable unaligned accesses for ARMv7 (ARM only)")
393 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, 393 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT,
394 "enable use of d16-d31 registers on ARM - this requires VFP3") 394 "enable use of d16-d31 registers on ARM - this requires VFP3")
395 DEFINE_bool(enable_vldr_imm, false, 395 DEFINE_bool(enable_vldr_imm, false,
396 "enable use of constant pools for double immediate (ARM only)") 396 "enable use of constant pools for double immediate (ARM only)")
397 397
398 // bootstrapper.cc 398 // bootstrapper.cc
399 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 399 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
400 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 400 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
401 #ifdef ADDRESS_SANITIZER
402 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") 401 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension")
403 #endif
404 DEFINE_bool(expose_gc, false, "expose gc extension") 402 DEFINE_bool(expose_gc, false, "expose gc extension")
405 DEFINE_string(expose_gc_as, NULL, 403 DEFINE_string(expose_gc_as, NULL,
406 "expose gc extension under the specified name") 404 "expose gc extension under the specified name")
407 DEFINE_implication(expose_gc_as, expose_gc) 405 DEFINE_implication(expose_gc_as, expose_gc)
408 DEFINE_bool(expose_externalize_string, false, 406 DEFINE_bool(expose_externalize_string, false,
409 "expose externalize string extension") 407 "expose externalize string extension")
410 DEFINE_bool(expose_trigger_failure, false, "expose trigger-failure extension") 408 DEFINE_bool(expose_trigger_failure, false, "expose trigger-failure extension")
411 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 409 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
412 DEFINE_bool(builtins_in_stack_traces, false, 410 DEFINE_bool(builtins_in_stack_traces, false,
413 "show built-in functions in stack traces") 411 "show built-in functions in stack traces")
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 #undef DEFINE_ALIAS_float 892 #undef DEFINE_ALIAS_float
895 #undef DEFINE_ALIAS_args 893 #undef DEFINE_ALIAS_args
896 894
897 #undef FLAG_MODE_DECLARE 895 #undef FLAG_MODE_DECLARE
898 #undef FLAG_MODE_DEFINE 896 #undef FLAG_MODE_DEFINE
899 #undef FLAG_MODE_DEFINE_DEFAULTS 897 #undef FLAG_MODE_DEFINE_DEFAULTS
900 #undef FLAG_MODE_META 898 #undef FLAG_MODE_META
901 #undef FLAG_MODE_DEFINE_IMPLICATIONS 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS
902 900
903 #undef COMMA 901 #undef COMMA
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698