OLD | NEW |
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 old_gen_promotion_limit_(kMinimumPromotionLimit), | 120 old_gen_promotion_limit_(kMinimumPromotionLimit), |
121 old_gen_allocation_limit_(kMinimumAllocationLimit), | 121 old_gen_allocation_limit_(kMinimumAllocationLimit), |
122 external_allocation_limit_(0), | 122 external_allocation_limit_(0), |
123 amount_of_external_allocated_memory_(0), | 123 amount_of_external_allocated_memory_(0), |
124 amount_of_external_allocated_memory_at_last_global_gc_(0), | 124 amount_of_external_allocated_memory_at_last_global_gc_(0), |
125 old_gen_exhausted_(false), | 125 old_gen_exhausted_(false), |
126 hidden_symbol_(NULL), | 126 hidden_symbol_(NULL), |
127 global_gc_prologue_callback_(NULL), | 127 global_gc_prologue_callback_(NULL), |
128 global_gc_epilogue_callback_(NULL), | 128 global_gc_epilogue_callback_(NULL), |
129 gc_safe_size_of_old_object_(NULL), | 129 gc_safe_size_of_old_object_(NULL), |
| 130 total_regexp_code_generated_(0), |
130 tracer_(NULL), | 131 tracer_(NULL), |
131 young_survivors_after_last_gc_(0), | 132 young_survivors_after_last_gc_(0), |
132 high_survival_rate_period_length_(0), | 133 high_survival_rate_period_length_(0), |
133 survival_rate_(0), | 134 survival_rate_(0), |
134 previous_survival_rate_trend_(Heap::STABLE), | 135 previous_survival_rate_trend_(Heap::STABLE), |
135 survival_rate_trend_(Heap::STABLE), | 136 survival_rate_trend_(Heap::STABLE), |
136 max_gc_pause_(0), | 137 max_gc_pause_(0), |
137 max_alive_after_gc_(0), | 138 max_alive_after_gc_(0), |
138 min_in_mutator_(kMaxInt), | 139 min_in_mutator_(kMaxInt), |
139 alive_after_last_gc_(0), | 140 alive_after_last_gc_(0), |
(...skipping 5721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5861 } | 5862 } |
5862 | 5863 |
5863 | 5864 |
5864 void ExternalStringTable::TearDown() { | 5865 void ExternalStringTable::TearDown() { |
5865 new_space_strings_.Free(); | 5866 new_space_strings_.Free(); |
5866 old_space_strings_.Free(); | 5867 old_space_strings_.Free(); |
5867 } | 5868 } |
5868 | 5869 |
5869 | 5870 |
5870 } } // namespace v8::internal | 5871 } } // namespace v8::internal |
OLD | NEW |