Add JS_DumpObjects support

This commit is contained in:
HarlonWang 2024-09-18 18:10:24 +08:00
parent 6e2e68fd08
commit c46516996d
2 changed files with 14 additions and 11 deletions

View File

@ -2295,17 +2295,7 @@ void JS_FreeContext(JSContext *ctx)
JS_DumpShapes(ctx->rt); JS_DumpShapes(ctx->rt);
#endif #endif
#ifdef DUMP_OBJECTS #ifdef DUMP_OBJECTS
{ JS_DumpObjects(ctx-rt);
struct list_head *el;
JSGCObjectHeader *p;
printf("JSObjects: {\n");
JS_DumpObjectHeader(ctx->rt);
list_for_each(el, &rt->gc_obj_list) {
p = list_entry(el, JSGCObjectHeader, link);
JS_DumpGCObject(rt, p);
}
printf("}\n");
}
#endif #endif
#ifdef DUMP_MEM #ifdef DUMP_MEM
{ {
@ -6378,6 +6368,18 @@ void JS_DumpMemoryUsage(FILE *fp, const JSMemoryUsage *s, JSRuntime *rt)
} }
} }
void JS_DumpObjects(JSRuntime *rt){
struct list_head *el;
JSGCObjectHeader *p;
printf("JSObjects: {\n");
JS_DumpObjectHeader(rt);
list_for_each(el, &rt->gc_obj_list) {
p = list_entry(el, JSGCObjectHeader, link);
JS_DumpGCObject(rt, p);
}
printf("}\n");
}
JSValue JS_GetGlobalObject(JSContext *ctx) JSValue JS_GetGlobalObject(JSContext *ctx)
{ {
return JS_DupValue(ctx, ctx->global_obj); return JS_DupValue(ctx, ctx->global_obj);

View File

@ -417,6 +417,7 @@ typedef struct JSMemoryUsage {
void JS_ComputeMemoryUsage(JSRuntime *rt, JSMemoryUsage *s); void JS_ComputeMemoryUsage(JSRuntime *rt, JSMemoryUsage *s);
void JS_DumpMemoryUsage(FILE *fp, const JSMemoryUsage *s, JSRuntime *rt); void JS_DumpMemoryUsage(FILE *fp, const JSMemoryUsage *s, JSRuntime *rt);
void JS_DumpObjects(JSRuntime *rt);
/* atom support */ /* atom support */
#define JS_ATOM_NULL 0 #define JS_ATOM_NULL 0