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

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

Issue 11271: Building on regexp-ia32. (Closed)
Patch Set: Made it compile correctly. Created 12 years, 1 month 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
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 DEFINE_bool(debug_serialization, false, 284 DEFINE_bool(debug_serialization, false,
285 "write debug information into the snapshot.") 285 "write debug information into the snapshot.")
286 286
287 // spaces.cc 287 // spaces.cc
288 DEFINE_bool(collect_heap_spill_statistics, false, 288 DEFINE_bool(collect_heap_spill_statistics, false,
289 "report heap spill statistics along with heap_stats " 289 "report heap spill statistics along with heap_stats "
290 "(requires heap_stats)") 290 "(requires heap_stats)")
291 291
292 DEFINE_bool(trace_regexps, false, "trace regexp execution") 292 DEFINE_bool(trace_regexps, false, "trace regexp execution")
293 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode executon") 293 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode executon")
294 DEFINE_bool(re2k_native, false, "use native code regexp implementation")
294 295
295 // 296 //
296 // Logging and profiling only flags 297 // Logging and profiling only flags
297 // 298 //
298 #undef FLAG 299 #undef FLAG
299 #ifdef ENABLE_LOGGING_AND_PROFILING 300 #ifdef ENABLE_LOGGING_AND_PROFILING
300 #define FLAG FLAG_FULL 301 #define FLAG FLAG_FULL
301 #else 302 #else
302 #define FLAG FLAG_READONLY 303 #define FLAG FLAG_READONLY
303 #endif 304 #endif
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 #undef FLAG 341 #undef FLAG
341 342
342 #undef DEFINE_bool 343 #undef DEFINE_bool
343 #undef DEFINE_int 344 #undef DEFINE_int
344 #undef DEFINE_string 345 #undef DEFINE_string
345 346
346 #undef FLAG_MODE_DECLARE 347 #undef FLAG_MODE_DECLARE
347 #undef FLAG_MODE_DEFINE 348 #undef FLAG_MODE_DEFINE
348 #undef FLAG_MODE_DEFINE_DEFAULTS 349 #undef FLAG_MODE_DEFINE_DEFAULTS
349 #undef FLAG_MODE_META 350 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698