mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-03-29 03:15:09 +00:00
Reformat CHash.CC
This commit is contained in:
parent
b179792268
commit
b7cb14ccb2
3 changed files with 89 additions and 75 deletions
Binary file not shown.
|
@ -2,7 +2,8 @@ I64 HashEntrySize(CHashSrcSym *tmph)
|
||||||
{//Logical size of a std system hash entry.
|
{//Logical size of a std system hash entry.
|
||||||
CDebugInfo *debug_info;
|
CDebugInfo *debug_info;
|
||||||
CBinFile *bfh;
|
CBinFile *bfh;
|
||||||
switch (HashTypeNum(tmph)) {
|
switch (HashTypeNum(tmph))
|
||||||
|
{
|
||||||
case HTt_DEFINE_STR:
|
case HTt_DEFINE_STR:
|
||||||
return MSize(tmph(CHashDefineStr *)->data);
|
return MSize(tmph(CHashDefineStr *)->data);
|
||||||
case HTt_GLOBAL_VAR:
|
case HTt_GLOBAL_VAR:
|
||||||
|
@ -11,8 +12,7 @@ I64 HashEntrySize(CHashSrcSym *tmph)
|
||||||
return tmph(CHashClass *)->size;
|
return tmph(CHashClass *)->size;
|
||||||
case HTt_FUN:
|
case HTt_FUN:
|
||||||
if (debug_info = tmph->debug_info)
|
if (debug_info = tmph->debug_info)
|
||||||
return debug_info->body[debug_info->max_line+1-debug_info->min_line]
|
return debug_info->body[debug_info->max_line + 1 - debug_info->min_line] - debug_info->body[0];
|
||||||
-debug_info->body[0];
|
|
||||||
else
|
else
|
||||||
return -1;
|
return -1;
|
||||||
case HTt_FILE:
|
case HTt_FILE:
|
||||||
|
@ -20,7 +20,8 @@ I64 HashEntrySize(CHashSrcSym *tmph)
|
||||||
case HTt_MODULE:
|
case HTt_MODULE:
|
||||||
if (StrCompare(tmph->str, KERNEL_MODULE_NAME))
|
if (StrCompare(tmph->str, KERNEL_MODULE_NAME))
|
||||||
return MSize(tmph(CHashGeneric *)->user_data0);
|
return MSize(tmph(CHashGeneric *)->user_data0);
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
bfh = mem_boot_base - sizeof(CBinFile);
|
bfh = mem_boot_base - sizeof(CBinFile);
|
||||||
return bfh->file_size;
|
return bfh->file_size;
|
||||||
}
|
}
|
||||||
|
@ -36,7 +37,8 @@ I64 HashEntrySize2(CHashSrcSym *tmph)
|
||||||
I64 res = MSize2(tmph);
|
I64 res = MSize2(tmph);
|
||||||
if (!(tmph->type & HTT_DICT_WORD))
|
if (!(tmph->type & HTT_DICT_WORD))
|
||||||
res += MSize2(tmph->str);
|
res += MSize2(tmph->str);
|
||||||
if (tmph->type & HTG_SRC_SYM) {
|
if (tmph->type & HTG_SRC_SYM)
|
||||||
|
{
|
||||||
res += MSize2(tmph->src_link);
|
res += MSize2(tmph->src_link);
|
||||||
res += MSize2(tmph->idx);
|
res += MSize2(tmph->idx);
|
||||||
res += MSize2(tmph->import_name);
|
res += MSize2(tmph->import_name);
|
||||||
|
@ -45,26 +47,27 @@ I64 HashEntrySize2(CHashSrcSym *tmph)
|
||||||
res += MSize2(tmph->debug_info);
|
res += MSize2(tmph->debug_info);
|
||||||
if (tmph->type & HTT_CLASS)
|
if (tmph->type & HTT_CLASS)
|
||||||
res += MemberListSize(tmph);
|
res += MemberListSize(tmph);
|
||||||
else if (tmph->type & HTT_FUN) {
|
else if (tmph->type & HTT_FUN)
|
||||||
|
{
|
||||||
res += MemberListSize(tmph);
|
res += MemberListSize(tmph);
|
||||||
if (debug_info = tmph->debug_info)
|
if (debug_info = tmph->debug_info)
|
||||||
//This should be $LK,"MSize",A="MN:MSize"$() but it would crash on AOT .BIN file funs.
|
//This should be $LK,"MSize",A="MN:MSize"$() but it would crash on AOT .BIN file funs.
|
||||||
res+=debug_info->body[debug_info->max_line+1-debug_info->min_line]
|
res += debug_info->body[debug_info->max_line + 1 - debug_info->min_line] - debug_info->body[0];
|
||||||
-debug_info->body[0];
|
}
|
||||||
} else if (tmph->type&HTT_DEFINE_STR)
|
else if (tmph->type & HTT_DEFINE_STR)
|
||||||
res += MSize2(tmph(CHashDefineStr *)->data);
|
res += MSize2(tmph(CHashDefineStr *)->data);
|
||||||
else if (tmph->type & HTT_GLOBAL_VAR) {
|
else if (tmph->type & HTT_GLOBAL_VAR)
|
||||||
|
{
|
||||||
res += LinkedListSize(tmph(CHashGlobalVar *)->dim.next);
|
res += LinkedListSize(tmph(CHashGlobalVar *)->dim.next);
|
||||||
if (!(tmph(CHashGlobalVar *)->flags & GVF_ALIAS))
|
if (!(tmph(CHashGlobalVar *)->flags & GVF_ALIAS))
|
||||||
res += MSize2(tmph(CHashGlobalVar *)->data_addr);
|
res += MSize2(tmph(CHashGlobalVar *)->data_addr);
|
||||||
if (tmph(CHashGlobalVar *)->fun_ptr)
|
if (tmph(CHashGlobalVar *)->fun_ptr)
|
||||||
res+=HashEntrySize2(tmph(CHashGlobalVar *)->fun_ptr
|
res += HashEntrySize2(tmph(CHashGlobalVar *)->fun_ptr - tmph(CHashGlobalVar *)->fun_ptr->ptr_stars_count);
|
||||||
-tmph(CHashGlobalVar *)->fun_ptr->ptr_stars_count);
|
|
||||||
}
|
}
|
||||||
} else if (tmph->type & HTT_FILE)
|
}
|
||||||
|
else if (tmph->type & HTT_FILE)
|
||||||
res += MSize2(tmph(CHashGeneric *)->user_data0);
|
res += MSize2(tmph(CHashGeneric *)->user_data0);
|
||||||
else if (tmph->type & HTT_MODULE &&
|
else if (tmph->type & HTT_MODULE && StrCompare(tmph->str, KERNEL_MODULE_NAME))
|
||||||
StrCompare(tmph->str,KERNEL_MODULE_NAME))
|
|
||||||
res += MSize2(tmph(CHashGeneric *)->user_data0);
|
res += MSize2(tmph(CHashGeneric *)->user_data0);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
@ -75,9 +78,11 @@ I64 HashTableSize2(CHashTable *table)
|
||||||
CHashSrcSym *tmph;
|
CHashSrcSym *tmph;
|
||||||
if (!table)
|
if (!table)
|
||||||
return 0;
|
return 0;
|
||||||
for (i=0;i<=table->mask;i++) {
|
for (i = 0; i <= table->mask; i++)
|
||||||
|
{
|
||||||
tmph = table->body[i];
|
tmph = table->body[i];
|
||||||
while (tmph) {
|
while (tmph)
|
||||||
|
{
|
||||||
res += HashEntrySize2(tmph);
|
res += HashEntrySize2(tmph);
|
||||||
tmph = tmph->next;
|
tmph = tmph->next;
|
||||||
}
|
}
|
||||||
|
@ -98,21 +103,28 @@ U0 MapFileWrite(CHashTable *h,U8 *map_name,U8 drv_let)
|
||||||
|
|
||||||
doc = DocNew(map_name);
|
doc = DocNew(map_name);
|
||||||
doc->flags |= DOCF_NO_CURSOR;
|
doc->flags |= DOCF_NO_CURSOR;
|
||||||
for (i=0;i<=h->mask;i++) {
|
for (i = 0; i <= h->mask; i++)
|
||||||
|
{
|
||||||
tmph = h->body[i];
|
tmph = h->body[i];
|
||||||
while (tmph) {
|
while (tmph)
|
||||||
if (tmph->src_link && !(tmph->type & (HTF_IMPORT | HTF_PRIVATE))) {
|
{
|
||||||
|
if (tmph->src_link && !(tmph->type & (HTF_IMPORT | HTF_PRIVATE)))
|
||||||
|
{
|
||||||
src_link = StrNew(tmph->src_link);
|
src_link = StrNew(tmph->src_link);
|
||||||
if (drv_let && StrLen(src_link) >= 4)
|
if (drv_let && StrLen(src_link) >= 4)
|
||||||
src_link[3] = drv_let;
|
src_link[3] = drv_let;
|
||||||
if (debug_info=tmph->debug_info) {
|
if (debug_info = tmph->debug_info)
|
||||||
size=offset(CDebugInfo.body)+
|
{
|
||||||
sizeof(U32)*(debug_info->max_line+2-debug_info->min_line);
|
size = offset(CDebugInfo.body) + sizeof(U32) * (debug_info->max_line + 2 - debug_info->min_line);
|
||||||
if (size>MSize(debug_info)) {
|
if (size > MSize(debug_info))
|
||||||
|
{
|
||||||
"Corrupt Map Entry\n";
|
"Corrupt Map Entry\n";
|
||||||
debug_info = NULL;
|
debug_info = NULL;
|
||||||
} else {
|
}
|
||||||
if (debug_info->min_line<=debug_info->max_line) {
|
else
|
||||||
|
{
|
||||||
|
if (debug_info->min_line <= debug_info->max_line)
|
||||||
|
{
|
||||||
tmpb = CAlloc(sizeof(CDocBin));
|
tmpb = CAlloc(sizeof(CDocBin));
|
||||||
tmpb->size = size;
|
tmpb->size = size;
|
||||||
tmpb->data = MAlloc(size);
|
tmpb->data = MAlloc(size);
|
||||||
|
@ -120,13 +132,13 @@ U0 MapFileWrite(CHashTable *h,U8 *map_name,U8 drv_let)
|
||||||
tmpb->num = doc->cur_bin_num++;
|
tmpb->num = doc->cur_bin_num++;
|
||||||
tmpb->use_count = 1;
|
tmpb->use_count = 1;
|
||||||
QueueInsert(tmpb, doc->bin_head.last);
|
QueueInsert(tmpb, doc->bin_head.last);
|
||||||
} else
|
}
|
||||||
|
else
|
||||||
debug_info = NULL;
|
debug_info = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (debug_info)
|
if (debug_info)
|
||||||
DocPrint(doc,"$$LK,\"%s\",A=\"%s\",BI=%d$$\n",
|
DocPrint(doc,"$$LK,\"%s\",A=\"%s\",BI=%d$$\n", tmph->str, src_link, tmpb->num);
|
||||||
tmph->str,src_link,tmpb->num);
|
|
||||||
else
|
else
|
||||||
DocPrint(doc,"$$LK,\"%s\",A=\"%s\"$$\n", tmph->str, src_link);
|
DocPrint(doc,"$$LK,\"%s\",A=\"%s\"$$\n", tmph->str, src_link);
|
||||||
|
|
||||||
|
@ -139,3 +151,4 @@ U0 MapFileWrite(CHashTable *h,U8 *map_name,U8 drv_let)
|
||||||
DocWrite(doc);
|
DocWrite(doc);
|
||||||
DocDel(doc);
|
DocDel(doc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@ StartOS.CC
|
||||||
BackFB.CC
|
BackFB.CC
|
||||||
CExcept.CC
|
CExcept.CC
|
||||||
CExterns.CC
|
CExterns.CC
|
||||||
|
CHash.CC
|
||||||
CInit.CC
|
CInit.CC
|
||||||
CompilerA.HH
|
CompilerA.HH
|
||||||
CompilerB.HH
|
CompilerB.HH
|
||||||
|
|
Loading…
Reference in a new issue