get rid of some duplication
[ia32rtools.git] / tools / mkbridge.c
CommitLineData
7637b6cc 1/*
2 * ia32rtools
3 * (C) notaz, 2013,2014
4 *
5 * This work is licensed under the terms of 3-clause BSD license.
6 * See COPYING file in the top-level directory.
7 */
8
57e4efe9 9#include <stdio.h>
10#include <stdlib.h>
11#include <string.h>
12
13#include "my_assert.h"
14#include "my_str.h"
30845119 15#include "common.h"
232aca37 16
c36e914d 17#include "protoparse.h"
232aca37 18
1f84f6b3 19static const char *c_save_regs[] = { "ebx", "esi", "edi", "ebp" };
20
232aca37 21static int is_x86_reg_saved(const char *reg)
22{
23 static const char *nosave_regs[] = { "eax", "edx", "ecx" };
24 int nosave = 0;
25 int r;
26
27 for (r = 0; r < ARRAY_SIZE(nosave_regs); r++)
28 if (strcmp(reg, nosave_regs[r]) == 0)
29 nosave = 1;
30
31 return !nosave;
32}
33
bd2eb956 34// output decorated name
35static const char *pp_to_name(const struct parsed_proto *pp)
36{
37 static char buf[256];
38 char atval[16];
39
40 if (!pp->is_fastcall && pp->argc_reg != 0) {
41 // can only be handled by __cdecl C func
42 snprintf(buf, sizeof(buf), "_%s", pp->name);
43 return buf;
44 }
45
46 atval[0] = 0;
47 if (pp->is_stdcall) {
48 snprintf(atval, sizeof(atval), "@%d",
49 pp->argc * 4);
50 }
51 snprintf(buf, sizeof(buf), "%s%s%s",
52 pp->is_fastcall ? "@" : "_",
53 pp->name, atval);
54
55 return buf;
56}
57
58static void out_toasm_x86(FILE *f, const char *sym_out,
59 const struct parsed_proto *pp)
232aca37 60{
232aca37 61 int must_save = 0;
62 int sarg_ofs = 1; // stack offset to args, in DWORDs
63 int args_repushed = 0;
4f12f671 64 int argc_repush;
bd2eb956 65 const char *name;
232aca37 66 int i;
67
4f12f671 68 argc_repush = pp->argc;
69 if (pp->is_vararg)
70 argc_repush = ARRAY_SIZE(pp->arg); // hopefully enough?
71
c36e914d 72 for (i = 0; i < pp->argc; i++) {
73 if (pp->arg[i].reg != NULL)
74 must_save |= is_x86_reg_saved(pp->arg[i].reg);
232aca37 75 }
76
bd2eb956 77 name = pp_to_name(pp);
78 fprintf(f, ".global %s\n", name);
79 fprintf(f, "%s:\n", name);
232aca37 80
c0050df6 81 if (pp->argc_reg == 0 || pp->is_fastcall) {
82 fprintf(f, "\t# %s\n",
83 pp->is_fastcall ? "__fastcall" :
84 (pp->is_stdcall ? "__stdcall" : "__cdecl"));
54e763a1 85 fprintf(f, "\tjmp %s\n\n", sym_out);
232aca37 86 return;
87 }
88
4f12f671 89 if (pp->argc_stack == 0 && !must_save && !pp->is_stdcall
1f84f6b3 90 && !pp->is_vararg && !pp->has_retreg)
4f12f671 91 {
232aca37 92 // load arg regs
c36e914d 93 for (i = 0; i < pp->argc; i++) {
232aca37 94 fprintf(f, "\tmovl %d(%%esp), %%%s\n",
c36e914d 95 (i + sarg_ofs) * 4, pp->arg[i].reg);
232aca37 96 }
54e763a1 97 fprintf(f, "\tjmp %s\n\n", sym_out);
232aca37 98 return;
99 }
100
1f84f6b3 101 // asm_stack_args | saved_regs | ra | args_from_c
102
232aca37 103 // save the regs
1f84f6b3 104 // because we don't always know what we are calling,
105 // be safe and save everything that has to be saved in __cdecl
106 for (i = 0; i < ARRAY_SIZE(c_save_regs); i++) {
107 fprintf(f, "\tpushl %%%s\n", c_save_regs[i]);
108 sarg_ofs++;
232aca37 109 }
110
1f84f6b3 111 // reconstruct arg stack for asm
4f12f671 112 for (i = argc_repush - 1; i >= 0; i--) {
c36e914d 113 if (pp->arg[i].reg == NULL) {
232aca37 114 fprintf(f, "\tmovl %d(%%esp), %%eax\n",
115 (i + sarg_ofs) * 4);
116 fprintf(f, "\tpushl %%eax\n");
117 sarg_ofs++;
118 args_repushed++;
119 }
120 }
232aca37 121
122 // load arg regs
c36e914d 123 for (i = 0; i < pp->argc; i++) {
124 if (pp->arg[i].reg != NULL) {
232aca37 125 fprintf(f, "\tmovl %d(%%esp), %%%s\n",
c36e914d 126 (i + sarg_ofs) * 4, pp->arg[i].reg);
1f84f6b3 127 if (pp->arg[i].type.is_retreg)
128 fprintf(f, "\tmovl (%%%s), %%%s\n",
129 pp->arg[i].reg, pp->arg[i].reg);
232aca37 130 }
131 }
132
c36e914d 133 fprintf(f, "\n\t# %s\n", pp->is_stdcall ? "__stdcall" : "__cdecl");
54e763a1 134 fprintf(f, "\tcall %s\n\n", sym_out);
232aca37 135
1f84f6b3 136 if (args_repushed && !pp->is_stdcall) {
a51421fa 137 fprintf(f, "\tadd $%d,%%esp\n", args_repushed * 4);
1f84f6b3 138 sarg_ofs -= args_repushed;
139 }
232aca37 140
1f84f6b3 141 // update the retreg regs
142 if (pp->has_retreg) {
143 for (i = 0; i < pp->argc; i++) {
144 if (pp->arg[i].type.is_retreg) {
145 fprintf(f, "\tmovl %d(%%esp), %%ecx\n"
146 "\tmovl %%%s, (%%ecx)\n",
147 (i + sarg_ofs) * 4, pp->arg[i].reg);
148 }
149 }
232aca37 150 }
151
1f84f6b3 152 // restore regs
153 for (i = ARRAY_SIZE(c_save_regs) - 1; i >= 0; i--)
154 fprintf(f, "\tpopl %%%s\n", c_save_regs[i]);
155
232aca37 156 fprintf(f, "\tret\n\n");
157}
158
54e763a1 159static void out_fromasm_x86(FILE *f, const char *sym,
160 const struct parsed_proto *pp)
232aca37 161{
1f84f6b3 162 int reg_ofs[ARRAY_SIZE(pp->arg)];
232aca37 163 int sarg_ofs = 1; // stack offset to args, in DWORDs
7ae48d73 164 int saved_regs = 0;
1f84f6b3 165 int ecx_ofs = -1;
166 int edx_ofs = -1;
f2de0a97 167 int c_is_stdcall;
4f12f671 168 int argc_repush;
232aca37 169 int stack_args;
7ae48d73 170 int ret64;
232aca37 171 int i;
172
4f12f671 173 argc_repush = pp->argc;
174 stack_args = pp->argc_stack;
175 if (pp->is_vararg) {
176 argc_repush = ARRAY_SIZE(pp->arg); // hopefully enough?
177 stack_args = argc_repush - pp->argc_reg;
178 }
179
7ae48d73 180 ret64 = strstr(pp->ret_type.name, "int64") != NULL;
181
c0050df6 182 fprintf(f, "# %s",
183 pp->is_fastcall ? "__fastcall" :
184 (pp->is_stdcall ? "__stdcall" : "__cdecl"));
7ae48d73 185 if (ret64)
186 fprintf(f, " ret64");
187 fprintf(f, "\n.global %s\n", sym);
232aca37 188 fprintf(f, "%s:\n", sym);
189
f2de0a97 190 if ((pp->argc_reg == 0 || pp->is_fastcall)
191 && !IS(pp->name, "storm_491")) // wants edx save :(
192 {
bd2eb956 193 fprintf(f, "\tjmp %s\n\n", pp_to_name(pp));
232aca37 194 return;
195 }
196
f2de0a97 197 c_is_stdcall = (pp->argc_reg == 0 && pp->is_stdcall);
198
7ae48d73 199 // at least sc sub_47B150 needs edx to be preserved
200 // int64 returns use edx:eax - no edx save
201 // we use ecx also as scratch
202 fprintf(f, "\tpushl %%ecx\n");
203 saved_regs++;
232aca37 204 sarg_ofs++;
1f84f6b3 205 ecx_ofs = sarg_ofs;
7ae48d73 206 if (!ret64) {
207 fprintf(f, "\tpushl %%edx\n");
208 saved_regs++;
209 sarg_ofs++;
1f84f6b3 210 edx_ofs = sarg_ofs;
211 }
212
213 // need space for retreg args
214 if (pp->has_retreg) {
215 for (i = 0; i < pp->argc; i++) {
216 if (!pp->arg[i].type.is_retreg)
217 continue;
218 if (IS(pp->arg[i].reg, "ecx") && ecx_ofs >= 0) {
219 reg_ofs[i] = ecx_ofs;
220 continue;
221 }
222 if (IS(pp->arg[i].reg, "edx") && edx_ofs >= 0) {
223 reg_ofs[i] = edx_ofs;
224 continue;
225 }
226 fprintf(f, "\tpushl %%%s\n", pp->arg[i].reg);
227 saved_regs++;
228 sarg_ofs++;
229 reg_ofs[i] = sarg_ofs;
230 }
7ae48d73 231 }
232aca37 232
233 // construct arg stack
4f12f671 234 for (i = argc_repush - 1; i >= 0; i--) {
c36e914d 235 if (pp->arg[i].reg == NULL) {
7ae48d73 236 fprintf(f, "\tmovl %d(%%esp), %%ecx\n",
232aca37 237 (sarg_ofs + stack_args - 1) * 4);
7ae48d73 238 fprintf(f, "\tpushl %%ecx\n");
232aca37 239 stack_args--;
240 }
241 else {
1f84f6b3 242 const char *reg = pp->arg[i].reg;
243 if (pp->arg[i].type.is_retreg) {
244 reg = "ecx";
245 fprintf(f, "\tlea %d(%%esp), %%ecx\n",
246 (sarg_ofs - reg_ofs[i]) * 4);
247 }
248 else if (IS(reg, "ecx"))
7ae48d73 249 // must reload original ecx
250 fprintf(f, "\tmovl %d(%%esp), %%ecx\n",
f3d05b09 251 (sarg_ofs - 2) * 4);
252
1f84f6b3 253 fprintf(f, "\tpushl %%%s\n", reg);
232aca37 254 }
255 sarg_ofs++;
256 }
257
bd2eb956 258 fprintf(f, "\n\tcall %s\n\n", pp_to_name(pp));
232aca37 259
f2de0a97 260 if (!c_is_stdcall && sarg_ofs > saved_regs + 1)
7ae48d73 261 fprintf(f, "\tadd $%d,%%esp\n",
262 (sarg_ofs - (saved_regs + 1)) * 4);
232aca37 263
1f84f6b3 264 // pop retregs
265 if (pp->has_retreg) {
266 for (i = pp->argc - 1; i >= 0; i--) {
267 if (!pp->arg[i].type.is_retreg)
268 continue;
269 if (IS(pp->arg[i].reg, "ecx") && ecx_ofs >= 0) {
270 continue;
271 }
272 if (IS(pp->arg[i].reg, "edx") && edx_ofs >= 0) {
273 continue;
274 }
275 fprintf(f, "\tpopl %%%s\n", pp->arg[i].reg);
276 }
277 }
278
7ae48d73 279 if (!ret64)
280 fprintf(f, "\tpopl %%edx\n");
281 fprintf(f, "\tpopl %%ecx\n");
232aca37 282
c36e914d 283 if (pp->is_stdcall && pp->argc_stack)
284 fprintf(f, "\tret $%d\n\n", pp->argc_stack * 4);
232aca37 285 else
286 fprintf(f, "\tret\n\n");
287}
288
57e4efe9 289int main(int argc, char *argv[])
290{
232aca37 291 FILE *fout, *fsyms_to, *fsyms_from, *fhdr;
bd96f656 292 const struct parsed_proto *pp;
57e4efe9 293 char line[256];
54e763a1 294 char sym_noat[256];
57e4efe9 295 char sym[256];
54e763a1 296 char *p;
297 int ret = 1;
57e4efe9 298
232aca37 299 if (argc != 5) {
300 printf("usage:\n%s <bridge.s> <toasm_symf> <fromasm_symf> <hdrf>\n",
57e4efe9 301 argv[0]);
302 return 1;
303 }
304
232aca37 305 hdrfn = argv[4];
57e4efe9 306 fhdr = fopen(hdrfn, "r");
307 my_assert_not(fhdr, NULL);
308
232aca37 309 fsyms_from = fopen(argv[3], "r");
310 my_assert_not(fsyms_from, NULL);
311
312 fsyms_to = fopen(argv[2], "r");
313 my_assert_not(fsyms_to, NULL);
57e4efe9 314
315 fout = fopen(argv[1], "w");
316 my_assert_not(fout, NULL);
317
318 fprintf(fout, ".text\n\n");
232aca37 319 fprintf(fout, "# to asm\n\n");
57e4efe9 320
232aca37 321 while (fgets(line, sizeof(line), fsyms_to))
57e4efe9 322 {
323 next_word(sym, sizeof(sym), line);
324 if (sym[0] == 0 || sym[0] == ';' || sym[0] == '#')
325 continue;
326
54e763a1 327 // IDA asm doesn't do '@' notation..
328 strcpy(sym_noat, sym);
329 p = strchr(sym_noat, '@');
330 if (p != NULL)
331 *p = 0;
332
36595fd2 333 pp = proto_parse(fhdr, sym_noat, 0);
bd96f656 334 if (pp == NULL)
232aca37 335 goto out;
57e4efe9 336
bd2eb956 337 out_toasm_x86(fout, sym_noat, pp);
232aca37 338 }
57e4efe9 339
232aca37 340 fprintf(fout, "# from asm\n\n");
57e4efe9 341
232aca37 342 while (fgets(line, sizeof(line), fsyms_from))
343 {
344 next_word(sym, sizeof(sym), line);
345 if (sym[0] == 0 || sym[0] == ';' || sym[0] == '#')
346 continue;
57e4efe9 347
36595fd2 348 pp = proto_parse(fhdr, sym, 0);
bd96f656 349 if (pp == NULL)
232aca37 350 goto out;
57e4efe9 351
bd96f656 352 out_fromasm_x86(fout, sym, pp);
57e4efe9 353 }
354
232aca37 355 ret = 0;
356out:
57e4efe9 357 fclose(fout);
232aca37 358 fclose(fsyms_to);
359 fclose(fsyms_from);
360 fclose(fhdr);
361 if (ret)
362 remove(argv[1]);
363
364 return ret;
57e4efe9 365}