lots more stuff, reaches sub_401310
[ia32rtools.git] / tools / mkbridge.c
CommitLineData
57e4efe9 1#include <stdio.h>
2#include <stdlib.h>
3#include <string.h>
4
5#include "my_assert.h"
6#include "my_str.h"
7
232aca37 8#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
3e52f54c 9#define IS(w, y) !strcmp(w, y)
232aca37 10
c36e914d 11#include "protoparse.h"
232aca37 12
13static int is_x86_reg_saved(const char *reg)
14{
15 static const char *nosave_regs[] = { "eax", "edx", "ecx" };
16 int nosave = 0;
17 int r;
18
19 for (r = 0; r < ARRAY_SIZE(nosave_regs); r++)
20 if (strcmp(reg, nosave_regs[r]) == 0)
21 nosave = 1;
22
23 return !nosave;
24}
25
c36e914d 26static void out_toasm_x86(FILE *f, char *sym, struct parsed_proto *pp)
232aca37 27{
232aca37 28 int must_save = 0;
29 int sarg_ofs = 1; // stack offset to args, in DWORDs
30 int args_repushed = 0;
31 int i;
32
c36e914d 33 for (i = 0; i < pp->argc; i++) {
34 if (pp->arg[i].reg != NULL)
35 must_save |= is_x86_reg_saved(pp->arg[i].reg);
232aca37 36 }
37
a51421fa 38 fprintf(f, ".global _%s\n", sym);
39 fprintf(f, "_%s:\n", sym);
232aca37 40
c36e914d 41 if (pp->argc_reg == 0 && !pp->is_stdcall) {
232aca37 42 fprintf(f, "\tjmp %s\n\n", sym);
43 return;
44 }
45
c36e914d 46 if (pp->argc_stack == 0 && !must_save && !pp->is_stdcall) {
232aca37 47 // load arg regs
c36e914d 48 for (i = 0; i < pp->argc; i++) {
232aca37 49 fprintf(f, "\tmovl %d(%%esp), %%%s\n",
c36e914d 50 (i + sarg_ofs) * 4, pp->arg[i].reg);
232aca37 51 }
52 fprintf(f, "\tjmp %s\n\n", sym);
53 return;
54 }
55
56 // save the regs
c36e914d 57 for (i = 0; i < pp->argc; i++) {
58 if (pp->arg[i].reg != NULL && is_x86_reg_saved(pp->arg[i].reg)) {
59 fprintf(f, "\tpushl %%%s\n", pp->arg[i].reg);
232aca37 60 sarg_ofs++;
61 }
62 }
63
64 // reconstruct arg stack
c36e914d 65 for (i = pp->argc - 1; i >= 0; i--) {
66 if (pp->arg[i].reg == NULL) {
232aca37 67 fprintf(f, "\tmovl %d(%%esp), %%eax\n",
68 (i + sarg_ofs) * 4);
69 fprintf(f, "\tpushl %%eax\n");
70 sarg_ofs++;
71 args_repushed++;
72 }
73 }
c36e914d 74 my_assert(args_repushed, pp->argc_stack);
232aca37 75
76 // load arg regs
c36e914d 77 for (i = 0; i < pp->argc; i++) {
78 if (pp->arg[i].reg != NULL) {
232aca37 79 fprintf(f, "\tmovl %d(%%esp), %%%s\n",
c36e914d 80 (i + sarg_ofs) * 4, pp->arg[i].reg);
232aca37 81 }
82 }
83
c36e914d 84 fprintf(f, "\n\t# %s\n", pp->is_stdcall ? "__stdcall" : "__cdecl");
232aca37 85 fprintf(f, "\tcall %s\n\n", sym);
86
c36e914d 87 if (args_repushed && !pp->is_stdcall)
a51421fa 88 fprintf(f, "\tadd $%d,%%esp\n", args_repushed * 4);
232aca37 89
90 // restore regs
c36e914d 91 for (i = pp->argc - 1; i >= 0; i--) {
92 if (pp->arg[i].reg != NULL && is_x86_reg_saved(pp->arg[i].reg))
93 fprintf(f, "\tpopl %%%s\n", pp->arg[i].reg);
232aca37 94 }
95
96 fprintf(f, "\tret\n\n");
97}
98
c36e914d 99static void out_fromasm_x86(FILE *f, char *sym, struct parsed_proto *pp)
232aca37 100{
232aca37 101 int sarg_ofs = 1; // stack offset to args, in DWORDs
102 int stack_args;
103 int i;
104
c36e914d 105 fprintf(f, "# %s\n", pp->is_stdcall ? "__stdcall" : "__cdecl");
232aca37 106 fprintf(f, ".global %s\n", sym);
107 fprintf(f, "%s:\n", sym);
108
c36e914d 109 if (pp->argc_reg == 0 && !pp->is_stdcall) {
232aca37 110 fprintf(f, "\tjmp _%s\n\n", sym);
111 return;
112 }
113
114 fprintf(f, "\tpushl %%edx\n"); // just in case..
115 sarg_ofs++;
116
117 // construct arg stack
c36e914d 118 stack_args = pp->argc_stack;
119 for (i = pp->argc - 1; i >= 0; i--) {
120 if (pp->arg[i].reg == NULL) {
232aca37 121 fprintf(f, "\tmovl %d(%%esp), %%edx\n",
122 (sarg_ofs + stack_args - 1) * 4);
123 fprintf(f, "\tpushl %%edx\n");
124 stack_args--;
125 }
126 else {
c36e914d 127 fprintf(f, "\tpushl %%%s\n", pp->arg[i].reg);
232aca37 128 }
129 sarg_ofs++;
130 }
131
132 // no worries about calling conventions - always __cdecl
133 fprintf(f, "\n\tcall _%s\n\n", sym);
134
135 if (sarg_ofs > 2)
a51421fa 136 fprintf(f, "\tadd $%d,%%esp\n", (sarg_ofs - 2) * 4);
232aca37 137
138 fprintf(f, "\tpopl %%edx\n");
139
c36e914d 140 if (pp->is_stdcall && pp->argc_stack)
141 fprintf(f, "\tret $%d\n\n", pp->argc_stack * 4);
232aca37 142 else
143 fprintf(f, "\tret\n\n");
144}
145
57e4efe9 146int main(int argc, char *argv[])
147{
232aca37 148 FILE *fout, *fsyms_to, *fsyms_from, *fhdr;
c36e914d 149 struct parsed_proto pp;
57e4efe9 150 char line[256];
151 char sym[256];
57e4efe9 152 int ret;
153
232aca37 154 if (argc != 5) {
155 printf("usage:\n%s <bridge.s> <toasm_symf> <fromasm_symf> <hdrf>\n",
57e4efe9 156 argv[0]);
157 return 1;
158 }
159
232aca37 160 hdrfn = argv[4];
57e4efe9 161 fhdr = fopen(hdrfn, "r");
162 my_assert_not(fhdr, NULL);
163
232aca37 164 fsyms_from = fopen(argv[3], "r");
165 my_assert_not(fsyms_from, NULL);
166
167 fsyms_to = fopen(argv[2], "r");
168 my_assert_not(fsyms_to, NULL);
57e4efe9 169
170 fout = fopen(argv[1], "w");
171 my_assert_not(fout, NULL);
172
173 fprintf(fout, ".text\n\n");
232aca37 174 fprintf(fout, "# to asm\n\n");
57e4efe9 175
232aca37 176 while (fgets(line, sizeof(line), fsyms_to))
57e4efe9 177 {
178 next_word(sym, sizeof(sym), line);
179 if (sym[0] == 0 || sym[0] == ';' || sym[0] == '#')
180 continue;
181
c36e914d 182 ret = proto_parse(fhdr, sym, &pp);
232aca37 183 if (ret)
184 goto out;
57e4efe9 185
c36e914d 186 out_toasm_x86(fout, sym, &pp);
187 proto_release(&pp);
232aca37 188 }
57e4efe9 189
232aca37 190 fprintf(fout, "# from asm\n\n");
57e4efe9 191
232aca37 192 while (fgets(line, sizeof(line), fsyms_from))
193 {
194 next_word(sym, sizeof(sym), line);
195 if (sym[0] == 0 || sym[0] == ';' || sym[0] == '#')
196 continue;
57e4efe9 197
c36e914d 198 ret = proto_parse(fhdr, sym, &pp);
232aca37 199 if (ret)
200 goto out;
57e4efe9 201
c36e914d 202 out_fromasm_x86(fout, sym, &pp);
203 proto_release(&pp);
57e4efe9 204 }
205
232aca37 206 ret = 0;
207out:
57e4efe9 208 fclose(fout);
232aca37 209 fclose(fsyms_to);
210 fclose(fsyms_from);
211 fclose(fhdr);
212 if (ret)
213 remove(argv[1]);
214
215 return ret;
57e4efe9 216}