| OLD | NEW |
| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 return new_space_.CommittedMemory() + | 205 return new_space_.CommittedMemory() + |
| 206 old_pointer_space_->CommittedMemory() + | 206 old_pointer_space_->CommittedMemory() + |
| 207 old_data_space_->CommittedMemory() + | 207 old_data_space_->CommittedMemory() + |
| 208 code_space_->CommittedMemory() + | 208 code_space_->CommittedMemory() + |
| 209 map_space_->CommittedMemory() + | 209 map_space_->CommittedMemory() + |
| 210 cell_space_->CommittedMemory() + | 210 cell_space_->CommittedMemory() + |
| 211 lo_space_->Size(); | 211 lo_space_->Size(); |
| 212 } | 212 } |
| 213 | 213 |
| 214 | |
| 215 size_t Heap::CommittedPhysicalMemory() { | |
| 216 if (!HasBeenSetUp()) return 0; | |
| 217 | |
| 218 return new_space_.CommittedPhysicalMemory() + | |
| 219 old_pointer_space_->CommittedPhysicalMemory() + | |
| 220 old_data_space_->CommittedPhysicalMemory() + | |
| 221 code_space_->CommittedPhysicalMemory() + | |
| 222 map_space_->CommittedPhysicalMemory() + | |
| 223 cell_space_->CommittedPhysicalMemory() + | |
| 224 lo_space_->CommittedPhysicalMemory(); | |
| 225 } | |
| 226 | |
| 227 | |
| 228 intptr_t Heap::CommittedMemoryExecutable() { | 214 intptr_t Heap::CommittedMemoryExecutable() { |
| 229 if (!HasBeenSetUp()) return 0; | 215 if (!HasBeenSetUp()) return 0; |
| 230 | 216 |
| 231 return isolate()->memory_allocator()->SizeExecutable(); | 217 return isolate()->memory_allocator()->SizeExecutable(); |
| 232 } | 218 } |
| 233 | 219 |
| 234 | 220 |
| 235 intptr_t Heap::Available() { | 221 intptr_t Heap::Available() { |
| 236 if (!HasBeenSetUp()) return 0; | 222 if (!HasBeenSetUp()) return 0; |
| 237 | 223 |
| (...skipping 7105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7343 static_cast<int>(object_sizes_last_time_[index])); | 7329 static_cast<int>(object_sizes_last_time_[index])); |
| 7344 FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(ADJUST_LAST_TIME_OBJECT_COUNT) | 7330 FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(ADJUST_LAST_TIME_OBJECT_COUNT) |
| 7345 #undef ADJUST_LAST_TIME_OBJECT_COUNT | 7331 #undef ADJUST_LAST_TIME_OBJECT_COUNT |
| 7346 | 7332 |
| 7347 memcpy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); | 7333 memcpy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); |
| 7348 memcpy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); | 7334 memcpy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); |
| 7349 ClearObjectStats(); | 7335 ClearObjectStats(); |
| 7350 } | 7336 } |
| 7351 | 7337 |
| 7352 } } // namespace v8::internal | 7338 } } // namespace v8::internal |
| OLD | NEW |