X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tools%2Fmkbridge.c;h=8b4650420326d20fadd6380640dedea09f9b6628;hb=4741fdfeb90852f33f8954f67aaf9c32f2969c7d;hp=1e2f458acb537982637dd89184ec8e5c65cb463d;hpb=4f12f6710a7063a10190be9fc45158c6ee46800c;p=ia32rtools.git diff --git a/tools/mkbridge.c b/tools/mkbridge.c index 1e2f458..8b46504 100644 --- a/tools/mkbridge.c +++ b/tools/mkbridge.c @@ -23,7 +23,8 @@ static int is_x86_reg_saved(const char *reg) return !nosave; } -static void out_toasm_x86(FILE *f, char *sym, struct parsed_proto *pp) +static void out_toasm_x86(FILE *f, const char *sym_in, + const char *sym_out, const struct parsed_proto *pp) { int must_save = 0; int sarg_ofs = 1; // stack offset to args, in DWORDs @@ -40,11 +41,14 @@ static void out_toasm_x86(FILE *f, char *sym, struct parsed_proto *pp) must_save |= is_x86_reg_saved(pp->arg[i].reg); } - fprintf(f, ".global _%s\n", sym); - fprintf(f, "_%s:\n", sym); + fprintf(f, ".global %s%s\n", pp->is_fastcall ? "@" : "_", sym_in); + fprintf(f, "%s%s:\n", pp->is_fastcall ? "@" : "_", sym_in); - if (pp->argc_reg == 0 && !pp->is_stdcall) { - fprintf(f, "\tjmp %s\n\n", sym); + if (pp->argc_reg == 0 || pp->is_fastcall) { + fprintf(f, "\t# %s\n", + pp->is_fastcall ? "__fastcall" : + (pp->is_stdcall ? "__stdcall" : "__cdecl")); + fprintf(f, "\tjmp %s\n\n", sym_out); return; } @@ -56,7 +60,7 @@ static void out_toasm_x86(FILE *f, char *sym, struct parsed_proto *pp) fprintf(f, "\tmovl %d(%%esp), %%%s\n", (i + sarg_ofs) * 4, pp->arg[i].reg); } - fprintf(f, "\tjmp %s\n\n", sym); + fprintf(f, "\tjmp %s\n\n", sym_out); return; } @@ -89,7 +93,7 @@ static void out_toasm_x86(FILE *f, char *sym, struct parsed_proto *pp) } fprintf(f, "\n\t# %s\n", pp->is_stdcall ? "__stdcall" : "__cdecl"); - fprintf(f, "\tcall %s\n\n", sym); + fprintf(f, "\tcall %s\n\n", sym_out); if (args_repushed && !pp->is_stdcall) fprintf(f, "\tadd $%d,%%esp\n", args_repushed * 4); @@ -103,11 +107,15 @@ static void out_toasm_x86(FILE *f, char *sym, struct parsed_proto *pp) fprintf(f, "\tret\n\n"); } -static void out_fromasm_x86(FILE *f, char *sym, struct parsed_proto *pp) +static void out_fromasm_x86(FILE *f, const char *sym, + const struct parsed_proto *pp) { int sarg_ofs = 1; // stack offset to args, in DWORDs + int saved_regs = 0; + int c_is_stdcall; int argc_repush; int stack_args; + int ret64; int i; argc_repush = pp->argc; @@ -117,30 +125,53 @@ static void out_fromasm_x86(FILE *f, char *sym, struct parsed_proto *pp) stack_args = argc_repush - pp->argc_reg; } - fprintf(f, "# %s\n", pp->is_stdcall ? "__stdcall" : "__cdecl"); - fprintf(f, ".global %s\n", sym); + ret64 = strstr(pp->ret_type.name, "int64") != NULL; + + fprintf(f, "# %s", + pp->is_fastcall ? "__fastcall" : + (pp->is_stdcall ? "__stdcall" : "__cdecl")); + if (ret64) + fprintf(f, " ret64"); + fprintf(f, "\n.global %s\n", sym); fprintf(f, "%s:\n", sym); - if (pp->argc_reg == 0 && !pp->is_stdcall) { - fprintf(f, "\tjmp _%s\n\n", sym); + if ((pp->argc_reg == 0 || pp->is_fastcall) + && !IS(pp->name, "storm_491")) // wants edx save :( + { + fprintf(f, "\tjmp %s%s", + pp->is_fastcall ? "@" : "_", sym); + if (pp->is_stdcall) + fprintf(f, "@%d", pp->argc * 4); + fprintf(f, "\n\n"); return; } - fprintf(f, "\tpushl %%edx\n"); // just in case.. + c_is_stdcall = (pp->argc_reg == 0 && pp->is_stdcall); + + // at least sc sub_47B150 needs edx to be preserved + // int64 returns use edx:eax - no edx save + // we use ecx also as scratch + fprintf(f, "\tpushl %%ecx\n"); + saved_regs++; sarg_ofs++; + if (!ret64) { + fprintf(f, "\tpushl %%edx\n"); + saved_regs++; + sarg_ofs++; + } // construct arg stack for (i = argc_repush - 1; i >= 0; i--) { if (pp->arg[i].reg == NULL) { - fprintf(f, "\tmovl %d(%%esp), %%edx\n", + fprintf(f, "\tmovl %d(%%esp), %%ecx\n", (sarg_ofs + stack_args - 1) * 4); - fprintf(f, "\tpushl %%edx\n"); + fprintf(f, "\tpushl %%ecx\n"); stack_args--; } else { - if (IS(pp->arg[i].reg, "edx")) - // must reload original edx - fprintf(f, "\tmovl %d(%%esp), %%edx\n", + if (IS(pp->arg[i].reg, "ecx")) + // must reload original ecx + fprintf(f, "\tmovl %d(%%esp), %%ecx\n", (sarg_ofs - 2) * 4); fprintf(f, "\tpushl %%%s\n", pp->arg[i].reg); @@ -148,13 +179,18 @@ static void out_fromasm_x86(FILE *f, char *sym, struct parsed_proto *pp) sarg_ofs++; } - // no worries about calling conventions - always __cdecl - fprintf(f, "\n\tcall _%s\n\n", sym); + fprintf(f, "\n\tcall _%s", sym); + if (c_is_stdcall) + fprintf(f, "@%d", pp->argc_stack * 4); + fprintf(f, "\n\n"); - if (sarg_ofs > 2) - fprintf(f, "\tadd $%d,%%esp\n", (sarg_ofs - 2) * 4); + if (!c_is_stdcall && sarg_ofs > saved_regs + 1) + fprintf(f, "\tadd $%d,%%esp\n", + (sarg_ofs - (saved_regs + 1)) * 4); - fprintf(f, "\tpopl %%edx\n"); + if (!ret64) + fprintf(f, "\tpopl %%edx\n"); + fprintf(f, "\tpopl %%ecx\n"); if (pp->is_stdcall && pp->argc_stack) fprintf(f, "\tret $%d\n\n", pp->argc_stack * 4); @@ -165,10 +201,12 @@ static void out_fromasm_x86(FILE *f, char *sym, struct parsed_proto *pp) int main(int argc, char *argv[]) { FILE *fout, *fsyms_to, *fsyms_from, *fhdr; - struct parsed_proto pp; + const struct parsed_proto *pp; char line[256]; + char sym_noat[256]; char sym[256]; - int ret; + char *p; + int ret = 1; if (argc != 5) { printf("usage:\n%s \n", @@ -198,12 +236,17 @@ int main(int argc, char *argv[]) if (sym[0] == 0 || sym[0] == ';' || sym[0] == '#') continue; - ret = proto_parse(fhdr, sym, &pp); - if (ret) + // IDA asm doesn't do '@' notation.. + strcpy(sym_noat, sym); + p = strchr(sym_noat, '@'); + if (p != NULL) + *p = 0; + + pp = proto_parse(fhdr, sym_noat, 0); + if (pp == NULL) goto out; - out_toasm_x86(fout, sym, &pp); - proto_release(&pp); + out_toasm_x86(fout, sym, sym_noat, pp); } fprintf(fout, "# from asm\n\n"); @@ -214,12 +257,11 @@ int main(int argc, char *argv[]) if (sym[0] == 0 || sym[0] == ';' || sym[0] == '#') continue; - ret = proto_parse(fhdr, sym, &pp); - if (ret) + pp = proto_parse(fhdr, sym, 0); + if (pp == NULL) goto out; - out_fromasm_x86(fout, sym, &pp); - proto_release(&pp); + out_fromasm_x86(fout, sym, pp); } ret = 0;