1 #ifndef MEMORYINSPECT_H 2 #define MEMORYINSPECT_H 9 void* memalloc(
size_t bytes,
const char* file,
int line,
const char* call);
10 void memfree(
void* ptr,
const char* file,
int line,
const char* call);
11 #define malloc(bytes) memalloc(bytes, __FILE__, __LINE__, #bytes) 12 #define free(ptr) memfree(ptr, __FILE__, __LINE__, #ptr) 19 int debugGetFrameId(
Frame* frame);
23 void debugPrintLocalVariables(int32_t* localVars, uint16_t count);
27 #endif // MEMORYINSPECT_H
Structure that will be associated with a method and holds the information necessary to run the method...
Definition: framestack.h:12
Definition: constantpool.h:9
Definition: javaclass.h:96
Definition: operandstack.h:13