| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_CLASS_TABLE_H_ | 5 #ifndef VM_CLASS_TABLE_H_ |
| 6 #define VM_CLASS_TABLE_H_ | 6 #define VM_CLASS_TABLE_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "vm/bitfield.h" | 9 #include "vm/bitfield.h" |
| 10 #include "vm/globals.h" | 10 #include "vm/globals.h" |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 void UpdateAllocatedOld(intptr_t cid, intptr_t size); | 188 void UpdateAllocatedOld(intptr_t cid, intptr_t size); |
| 189 | 189 |
| 190 // Called whenever a old GC occurs. | 190 // Called whenever a old GC occurs. |
| 191 void ResetCountersOld(); | 191 void ResetCountersOld(); |
| 192 // Called whenever a new GC occurs. | 192 // Called whenever a new GC occurs. |
| 193 void ResetCountersNew(); | 193 void ResetCountersNew(); |
| 194 // Called immediately after a new GC. | 194 // Called immediately after a new GC. |
| 195 void UpdatePromoted(); | 195 void UpdatePromoted(); |
| 196 | 196 |
| 197 // Used by the generated code. | 197 // Used by the generated code. |
| 198 uword PredefinedClassHeapStatsTableAddress() { | 198 static intptr_t ClassOffsetFor(intptr_t cid); |
| 199 return reinterpret_cast<uword>(predefined_class_heap_stats_table_); | |
| 200 } | |
| 201 | 199 |
| 202 // Used by generated code. | 200 // Used by the generated code. |
| 203 uword ClassStatsTableAddress() { | 201 ClassHeapStats** TableAddressFor(intptr_t cid); |
| 204 return reinterpret_cast<uword>(&class_heap_stats_table_); | 202 static intptr_t TableOffsetFor(intptr_t cid); |
| 205 } | 203 |
| 204 // Used by the generated code. |
| 205 ClassHeapStats** CountAddressFor(intptr_t cid, |
| 206 bool is_new_space, |
| 207 intptr_t* offset); |
| 208 |
| 209 // Used by the generated code. |
| 210 ClassHeapStats** StateAddressFor(intptr_t cid, |
| 211 intptr_t* offset); |
| 212 |
| 213 // Used by the generated code. |
| 214 static intptr_t SizeOffsetFor(intptr_t cid, bool is_new_space); |
| 206 | 215 |
| 207 ClassHeapStats* StatsWithUpdatedSize(intptr_t cid); | 216 ClassHeapStats* StatsWithUpdatedSize(intptr_t cid); |
| 208 | 217 |
| 209 void AllocationProfilePrintJSON(JSONStream* stream); | 218 void AllocationProfilePrintJSON(JSONStream* stream); |
| 210 void ResetAllocationAccumulators(); | 219 void ResetAllocationAccumulators(); |
| 211 | 220 |
| 212 // Deallocates table copies. Do not call during concurrent access to table. | 221 // Deallocates table copies. Do not call during concurrent access to table. |
| 213 void FreeOldTables(); | 222 void FreeOldTables(); |
| 214 | 223 |
| 215 void TraceAllocationsFor(intptr_t cid, bool trace); | 224 void TraceAllocationsFor(intptr_t cid, bool trace); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 238 ClassHeapStats* PreliminaryStatsAt(intptr_t cid); | 247 ClassHeapStats* PreliminaryStatsAt(intptr_t cid); |
| 239 void UpdateLiveOld(intptr_t cid, intptr_t size); | 248 void UpdateLiveOld(intptr_t cid, intptr_t size); |
| 240 void UpdateLiveNew(intptr_t cid, intptr_t size); | 249 void UpdateLiveNew(intptr_t cid, intptr_t size); |
| 241 | 250 |
| 242 DISALLOW_COPY_AND_ASSIGN(ClassTable); | 251 DISALLOW_COPY_AND_ASSIGN(ClassTable); |
| 243 }; | 252 }; |
| 244 | 253 |
| 245 } // namespace dart | 254 } // namespace dart |
| 246 | 255 |
| 247 #endif // VM_CLASS_TABLE_H_ | 256 #endif // VM_CLASS_TABLE_H_ |
| OLD | NEW |