forked from adafruit/circuitpython
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAllocationSize.c
74 lines (62 loc) · 2.4 KB
/
AllocationSize.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include "shared-bindings/memorymonitor/AllocationSize.h"
#include "py/gc.h"
#include "py/mpstate.h"
#include "py/runtime.h"
void common_hal_memorymonitor_allocationsize_construct(memorymonitor_allocationsize_obj_t *self) {
common_hal_memorymonitor_allocationsize_clear(self);
self->next = NULL;
self->previous = NULL;
}
void common_hal_memorymonitor_allocationsize_pause(memorymonitor_allocationsize_obj_t *self) {
*self->previous = self->next;
self->next = NULL;
self->previous = NULL;
}
void common_hal_memorymonitor_allocationsize_resume(memorymonitor_allocationsize_obj_t *self) {
if (self->previous != NULL) {
mp_raise_RuntimeError(MP_ERROR_TEXT("Already running"));
}
self->next = MP_STATE_VM(active_allocationsizes);
self->previous = (memorymonitor_allocationsize_obj_t **)&MP_STATE_VM(active_allocationsizes);
if (self->next != NULL) {
self->next->previous = &self->next;
}
MP_STATE_VM(active_allocationsizes) = self;
}
void common_hal_memorymonitor_allocationsize_clear(memorymonitor_allocationsize_obj_t *self) {
for (size_t i = 0; i < ALLOCATION_SIZE_BUCKETS; i++) {
self->buckets[i] = 0;
}
}
uint16_t common_hal_memorymonitor_allocationsize_get_len(memorymonitor_allocationsize_obj_t *self) {
return ALLOCATION_SIZE_BUCKETS;
}
size_t common_hal_memorymonitor_allocationsize_get_bytes_per_block(memorymonitor_allocationsize_obj_t *self) {
return BYTES_PER_BLOCK;
}
uint16_t common_hal_memorymonitor_allocationsize_get_item(memorymonitor_allocationsize_obj_t *self, int16_t index) {
return self->buckets[index];
}
void memorymonitor_allocationsizes_track_allocation(size_t block_count) {
memorymonitor_allocationsize_obj_t *as = MP_OBJ_TO_PTR(MP_STATE_VM(active_allocationsizes));
size_t power_of_two = 0;
block_count >>= 1;
while (block_count != 0) {
power_of_two++;
block_count >>= 1;
}
while (as != NULL) {
as->buckets[power_of_two]++;
as = as->next;
}
}
void memorymonitor_allocationsizes_reset(void) {
MP_STATE_VM(active_allocationsizes) = NULL;
}
MP_REGISTER_ROOT_POINTER(mp_obj_t active_allocationsizes);
MP_REGISTER_ROOT_POINTER(mp_obj_t active_allocationalarms);