HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ram.c
Go to the documentation of this file.
1 
13 #include "user_config.h"
15 #undef calloc
16 #undef free
18 #undef malloc
20 
27 size_t heaptop()
28 {
29  volatile size_t heap_end;
30 
31  // I looked at the malloc source code to figure these all out
32  // if malloc_heap_end and breakval are 0 then we use the stack bootom plus a margin
33 
34  if( (size_t) __malloc_heap_end )
35  heap_end = (size_t) __malloc_heap_end;
36  else if(__brkval)
37  heap_end = (size_t) __brkval;
38  else
39  heap_end = (size_t) SP - (size_t) __malloc_margin;
40 
41  return(heap_end);
42 
43 }
50 size_t freeRam ()
51 {
52  size_t total;
53  size_t heap_end;
54 
55  heap_end = heaptop();
56 
57  total = (unsigned long) SP - (unsigned long) heap_end;
58 
59  return ( total );
60 }
61 
62 
69 void PrintFree()
70 {
71  // See https://www.nongnu.org/avr-libc/user-manual/malloc.html
72  // static initial values for __malloc_heap_start and end
73 
74  size_t ram;
75  size_t heap_end;
76 
77  // I looked at the malloc source code to figure these all out
78 
79  ram = freeRam();
80  heap_end = heaptop();
81 
82 #ifdef AVR
83  printf("Free Ram: %5u\n", (unsigned int) ram);
84 
85  printf(" Stack Top: %5u, End: %5u\n", (unsigned int*) &__stack, (unsigned int) SP);
86  printf(" Stack Used: %5u\n", (unsigned int*) &__stack - (unsigned int*) SP);
87 
88  printf(" Heap Start: %5u, End: %5u\n",
89  (unsigned int) __malloc_heap_start, (unsigned int)heap_end);
90 
91  printf(" BSS Start: %5u, End: %5u\n",
92  (unsigned int)&__bss_start, (unsigned int)&__bss_end);
93 
94  printf(" Data Start: %5u, End: %5u\n",
95  (unsigned int)&__data_start, (unsigned int)&__data_end);
96 #endif
97 #ifdef ESP8266
98  printf("Free Ram: %8lu\n", (unsigned int) ram);
99 
100  printf(" Stack Top: %8lu, End: %8lu\n", (unsigned int*) &__stack, (unsigned int) SP);
101  printf(" Stack Used: %8lu\n", (unsigned int*) &__stack - (unsigned int*) SP);
102 
103  printf(" Heap Start: %8lu, End: %8lu\n",
104  (unsigned int) __malloc_heap_start, (unsigned int)heap_end);
105 
106  printf(" BSS Start: %8lu, End: %8lu\n",
107  (unsigned int)&__bss_start, (unsigned int)&__bss_end);
108 
109  printf(" Data Start: %8lu, End: %8lu\n",
110  (unsigned int)&__data_start, (unsigned int)&__data_end);
111 #endif
112 
113 }
114 
115 
122 void *safecalloc(int size, int elements)
123 {
124  void *p = calloc(size, elements);
125  if(!p)
126  {
127  printf("safecalloc(%d,%d) failed!\n", size, elements);
128  }
129  return(p);
130 }
131 
132 
139 void *safemalloc(size_t size)
140 {
141  void *p = calloc(size, 1);
142  if(!p)
143  {
144  printf("safemalloc(%d) failed!\n", (int) size);
145  }
146  return(p);
147 }
148 
149 
158 void safefree(void *p)
159 {
160  size_t heap_end;
161 
162  if(p == NULL)
163  return;
164 
165  heap_end = heaptop();
166 
167  if( ((size_t) p >= (size_t) __malloc_heap_start) && ((size_t) p <= heap_end) )
168  {
169  free(p);
170  return;
171  }
172  printf("safefree: FREE ERROR start(%lu), end(%lu)\n", (size_t) p, (size_t) heap_end);
173  PrintFree();
174 }
printf
MEMSPACE int printf(const char *format,...)
__stack
void * __stack
freeRam
size_t freeRam()
Return AVR Free memory for Malloc.
Definition: ram.c:50
free
#define free(p)
Definition: user_config.h:126
safecalloc
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
Definition: ram.c:122
safefree
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
Definition: ram.c:158
__malloc_heap_start
char * __malloc_heap_start
safemalloc
void * safemalloc(size_t size)
Safe Malloc - Display Error message if Malloc fails.
Definition: ram.c:139
NULL
#define NULL
Definition: user_config.h:85
user_config.h
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
size_t
unsigned long int size_t
Definition: user_config.h:93
__malloc_heap_end
char * __malloc_heap_end
calloc
#define calloc(n, s)
Definition: user_config.h:129
PrintFree
void PrintFree()
Display AVR free memory of each type>
Definition: ram.c:69
__malloc_margin
size_t __malloc_margin
heaptop
size_t heaptop()
calloc may be aliased to safecalloc
Definition: ram.c:27
__brkval
char * __brkval