| OLD | NEW |
| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 // mark-compact.cc | 148 // mark-compact.cc |
| 149 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 149 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
| 150 DEFINE_bool(never_compact, false, | 150 DEFINE_bool(never_compact, false, |
| 151 "Never perform compaction on full GC - testing only") | 151 "Never perform compaction on full GC - testing only") |
| 152 DEFINE_bool(cleanup_ics_at_gc, true, | 152 DEFINE_bool(cleanup_ics_at_gc, true, |
| 153 "Flush inline caches prior to mark compact collection.") | 153 "Flush inline caches prior to mark compact collection.") |
| 154 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 154 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, |
| 155 "Flush code caches in maps during mark compact cycle.") | 155 "Flush code caches in maps during mark compact cycle.") |
| 156 | 156 |
| 157 DEFINE_bool(canonicalize_object_literal_maps, true, |
| 158 "Canonicalize maps for object literals.") |
| 159 |
| 157 // mksnapshot.cc | 160 // mksnapshot.cc |
| 158 DEFINE_bool(h, false, "print this message") | 161 DEFINE_bool(h, false, "print this message") |
| 159 | 162 |
| 160 // parser.cc | 163 // parser.cc |
| 161 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 164 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 162 | 165 |
| 163 // simulator-arm.cc | 166 // simulator-arm.cc |
| 164 DEFINE_bool(trace_sim, false, "trace simulator execution") | 167 DEFINE_bool(trace_sim, false, "trace simulator execution") |
| 165 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 168 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 166 | 169 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 #undef FLAG | 312 #undef FLAG |
| 310 | 313 |
| 311 #undef DEFINE_bool | 314 #undef DEFINE_bool |
| 312 #undef DEFINE_int | 315 #undef DEFINE_int |
| 313 #undef DEFINE_string | 316 #undef DEFINE_string |
| 314 | 317 |
| 315 #undef FLAG_MODE_DECLARE | 318 #undef FLAG_MODE_DECLARE |
| 316 #undef FLAG_MODE_DEFINE | 319 #undef FLAG_MODE_DEFINE |
| 317 #undef FLAG_MODE_DEFINE_DEFAULTS | 320 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 318 #undef FLAG_MODE_META | 321 #undef FLAG_MODE_META |
| OLD | NEW |