minor makefile update
[ia32rtools.git] / tools / translate.c
CommitLineData
33c35af6 1#define _GNU_SOURCE
c36e914d 2#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5
6#include "my_assert.h"
7#include "my_str.h"
8
9#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
10#define IS(w, y) !strcmp(w, y)
39b168b8 11#define IS_START(w, y) !strncmp(w, y, strlen(y))
c36e914d 12
13#include "protoparse.h"
14
06c5d854 15static const char *asmfn;
c36e914d 16static int asmln;
06c5d854 17static FILE *g_fhdr;
c36e914d 18
940e8e66 19#define anote(fmt, ...) \
20 printf("%s:%d: note: " fmt, asmfn, asmln, ##__VA_ARGS__)
c36e914d 21#define awarn(fmt, ...) \
940e8e66 22 printf("%s:%d: warning: " fmt, asmfn, asmln, ##__VA_ARGS__)
c36e914d 23#define aerr(fmt, ...) do { \
940e8e66 24 printf("%s:%d: error: " fmt, asmfn, asmln, ##__VA_ARGS__); \
33c35af6 25 fcloseall(); \
c36e914d 26 exit(1); \
27} while (0)
28
054f95b2 29#include "masm_tools.h"
30
69a3cdfc 31enum op_flags {
87bf6cec 32 OPF_RMD = (1 << 0), /* removed or optimized out */
33 OPF_DATA = (1 << 1), /* data processing - writes to dst opr */
34 OPF_FLAGS = (1 << 2), /* sets flags */
5c024ef7 35 OPF_JMP = (1 << 3), /* branch, call */
36 OPF_CJMP = (1 << 4), /* cond. branch (cc or jecxz) */
37 OPF_CC = (1 << 5), /* uses flags */
38 OPF_TAIL = (1 << 6), /* ret or tail call */
39 OPF_RSAVE = (1 << 7), /* push/pop is local reg save/load */
40 OPF_REP = (1 << 8), /* prefixed by rep */
41 OPF_REPZ = (1 << 9), /* rep is repe/repz */
42 OPF_REPNZ = (1 << 10), /* rep is repne/repnz */
43 OPF_FARG = (1 << 11), /* push collected as func arg (no reuse) */
44 OPF_EBP_S = (1 << 12), /* ebp used as scratch here, not BP */
45 OPF_DF = (1 << 13), /* DF flag set */
2fe80fdb 46 OPF_ATAIL = (1 << 14), /* tail call with reused arg frame */
cb090db0 47 OPF_32BIT = (1 << 15), /* 32bit division */
037f4971 48 OPF_LOCK = (1 << 16), /* op has lock prefix */
c36e914d 49};
50
51enum op_op {
52 OP_INVAL,
33c35af6 53 OP_NOP,
c36e914d 54 OP_PUSH,
55 OP_POP,
591721d7 56 OP_LEAVE,
c36e914d 57 OP_MOV,
850c9265 58 OP_LEA,
59 OP_MOVZX,
60 OP_MOVSX,
108e9fe3 61 OP_XCHG,
850c9265 62 OP_NOT,
5101a5f9 63 OP_CDQ,
092f64e1 64 OP_LODS,
33c35af6 65 OP_STOS,
d4e3b5db 66 OP_MOVS,
7ba45c34 67 OP_CMPS,
591721d7 68 OP_SCAS,
69 OP_STD,
70 OP_CLD,
c36e914d 71 OP_RET,
72 OP_ADD,
91977a1c 73 OP_SUB,
850c9265 74 OP_AND,
75 OP_OR,
76 OP_XOR,
77 OP_SHL,
78 OP_SHR,
79 OP_SAR,
d4e3b5db 80 OP_ROL,
81 OP_ROR,
cb090db0 82 OP_RCL,
83 OP_RCR,
69a3cdfc 84 OP_ADC,
850c9265 85 OP_SBB,
1f84f6b3 86 OP_BSF,
850c9265 87 OP_INC,
88 OP_DEC,
5101a5f9 89 OP_NEG,
850c9265 90 OP_MUL,
91 OP_IMUL,
5101a5f9 92 OP_DIV,
93 OP_IDIV,
c36e914d 94 OP_TEST,
95 OP_CMP,
96 OP_CALL,
97 OP_JMP,
5c024ef7 98 OP_JECXZ,
092f64e1 99 OP_JCC,
100 OP_SCC,
c36e914d 101};
102
103enum opr_type {
87bf6cec 104 OPT_UNSPEC,
105 OPT_REG,
106 OPT_REGMEM,
107 OPT_LABEL,
850c9265 108 OPT_OFFSET,
87bf6cec 109 OPT_CONST,
c36e914d 110};
111
2b43685d 112// must be sorted (larger len must be further in enum)
c36e914d 113enum opr_lenmod {
91977a1c 114 OPLM_UNSPEC,
115 OPLM_BYTE,
116 OPLM_WORD,
117 OPLM_DWORD,
c36e914d 118};
119
850c9265 120#define MAX_OPERANDS 3
c36e914d 121
122struct parsed_opr {
91977a1c 123 enum opr_type type;
124 enum opr_lenmod lmod;
7ba45c34 125 unsigned int is_ptr:1; // pointer in C
126 unsigned int is_array:1; // array in C
a3684be1 127 unsigned int type_from_var:1; // .. in header, sometimes wrong
2b43685d 128 unsigned int size_mismatch:1; // type override differs from C
129 unsigned int size_lt:1; // type override is larger than C
ddaf8bd7 130 unsigned int had_ds:1; // had ds: prefix
c7ed83dd 131 const struct parsed_proto *pp; // for OPT_LABEL
91977a1c 132 int reg;
133 unsigned int val;
c7ed83dd 134 char name[112];
c36e914d 135};
136
137struct parsed_op {
91977a1c 138 enum op_op op;
139 struct parsed_opr operand[MAX_OPERANDS];
69a3cdfc 140 unsigned int flags;
092f64e1 141 unsigned char pfo;
142 unsigned char pfo_inv;
143 unsigned char operand_cnt;
144 unsigned char pad;
69a3cdfc 145 int regmask_src; // all referensed regs
146 int regmask_dst;
940e8e66 147 int pfomask; // flagop: parsed_flag_op that can't be delayed
de50b98b 148 int argnum; // push: altered before call arg #
940e8e66 149 int cc_scratch; // scratch storage during analysis
4c45fa73 150 int bt_i; // branch target for branches
151 struct parsed_data *btj;// branch targets for jumptables
c7ed83dd 152 struct parsed_proto *pp;// parsed_proto for OP_CALL
91977a1c 153 void *datap;
8eb12e72 154 int asmln;
91977a1c 155};
156
69a3cdfc 157// datap:
092f64e1 158// OP_CALL - parser proto hint (str)
2b43685d 159// (OPF_CC) - point to one of (OPF_FLAGS) that affects cc op
5c024ef7 160// OP_POP - point to OP_PUSH in push/pop pair
69a3cdfc 161
91977a1c 162struct parsed_equ {
163 char name[64];
164 enum opr_lenmod lmod;
165 int offset;
c36e914d 166};
167
4c45fa73 168struct parsed_data {
169 char label[256];
170 enum opr_type type;
171 enum opr_lenmod lmod;
172 int count;
173 int count_alloc;
174 struct {
175 union {
176 char *label;
63df67be 177 unsigned int val;
4c45fa73 178 } u;
179 int bt_i;
180 } *d;
181};
182
183struct label_ref {
184 int i;
185 struct label_ref *next;
186};
187
1bafb621 188enum ida_func_attr {
189 IDAFA_BP_FRAME = (1 << 0),
190 IDAFA_LIB_FUNC = (1 << 1),
191 IDAFA_STATIC = (1 << 2),
192 IDAFA_NORETURN = (1 << 3),
193 IDAFA_THUNK = (1 << 4),
194 IDAFA_FPD = (1 << 5),
195};
196
197#define MAX_OPS 4096
c36e914d 198
199static struct parsed_op ops[MAX_OPS];
91977a1c 200static struct parsed_equ *g_eqs;
201static int g_eqcnt;
037f4971 202static char g_labels[MAX_OPS][48];
4c45fa73 203static struct label_ref g_label_refs[MAX_OPS];
bd96f656 204static const struct parsed_proto *g_func_pp;
4c45fa73 205static struct parsed_data *g_func_pd;
206static int g_func_pd_cnt;
91977a1c 207static char g_func[256];
208static char g_comment[256];
209static int g_bp_frame;
1bafb621 210static int g_sp_frame;
a2c1d768 211static int g_stack_frame_used;
1bafb621 212static int g_stack_fsz;
4c45fa73 213static int g_ida_func_attr;
89ff3147 214static int g_allow_regfunc;
91977a1c 215#define ferr(op_, fmt, ...) do { \
8eb12e72 216 printf("%s:%d: error: [%s] '%s': " fmt, asmfn, (op_)->asmln, g_func, \
850c9265 217 dump_op(op_), ##__VA_ARGS__); \
33c35af6 218 fcloseall(); \
91977a1c 219 exit(1); \
220} while (0)
de50b98b 221#define fnote(op_, fmt, ...) \
8eb12e72 222 printf("%s:%d: note: [%s] '%s': " fmt, asmfn, (op_)->asmln, g_func, \
de50b98b 223 dump_op(op_), ##__VA_ARGS__)
91977a1c 224
225#define MAX_REGS 8
226
227const char *regs_r32[] = { "eax", "ebx", "ecx", "edx", "esi", "edi", "ebp", "esp" };
228const char *regs_r16[] = { "ax", "bx", "cx", "dx", "si", "di", "bp", "sp" };
229const char *regs_r8l[] = { "al", "bl", "cl", "dl" };
230const char *regs_r8h[] = { "ah", "bh", "ch", "dh" };
231
232enum x86_regs { xUNSPEC = -1, xAX, xBX, xCX, xDX, xSI, xDI, xBP, xSP };
233
69a3cdfc 234// possible basic comparison types (without inversion)
235enum parsed_flag_op {
236 PFO_O, // 0 OF=1
237 PFO_C, // 2 CF=1
238 PFO_Z, // 4 ZF=1
239 PFO_BE, // 6 CF=1||ZF=1
240 PFO_S, // 8 SF=1
241 PFO_P, // a PF=1
242 PFO_L, // c SF!=OF
243 PFO_LE, // e ZF=1||SF!=OF
244};
245
246static const char *parsed_flag_op_names[] = {
247 "o", "c", "z", "be", "s", "p", "l", "le"
248};
249
91977a1c 250static int char_array_i(const char *array[], size_t len, const char *s)
251{
252 int i;
c36e914d 253
91977a1c 254 for (i = 0; i < len; i++)
255 if (IS(s, array[i]))
256 return i;
c36e914d 257
91977a1c 258 return -1;
259}
260
63df67be 261static void printf_number(char *buf, size_t buf_size,
262 unsigned long number)
91977a1c 263{
5101a5f9 264 // output in C-friendly form
265 snprintf(buf, buf_size, number < 10 ? "%lu" : "0x%02lx", number);
266}
91977a1c 267
5101a5f9 268static int parse_reg(enum opr_lenmod *reg_lmod, const char *s)
269{
270 int reg;
91977a1c 271
5101a5f9 272 reg = char_array_i(regs_r32, ARRAY_SIZE(regs_r32), s);
273 if (reg >= 0) {
274 *reg_lmod = OPLM_DWORD;
275 return reg;
91977a1c 276 }
5101a5f9 277 reg = char_array_i(regs_r16, ARRAY_SIZE(regs_r16), s);
278 if (reg >= 0) {
279 *reg_lmod = OPLM_WORD;
280 return reg;
281 }
282 reg = char_array_i(regs_r8h, ARRAY_SIZE(regs_r8h), s);
283 if (reg >= 0) {
284 *reg_lmod = OPLM_BYTE;
285 return reg;
286 }
287 reg = char_array_i(regs_r8l, ARRAY_SIZE(regs_r8l), s);
288 if (reg >= 0) {
289 *reg_lmod = OPLM_BYTE;
290 return reg;
850c9265 291 }
292
293 return -1;
91977a1c 294}
295
5101a5f9 296static int parse_indmode(char *name, int *regmask, int need_c_cvt)
297{
298 enum opr_lenmod lmod;
299 char cvtbuf[256];
300 char *d = cvtbuf;
301 char *s = name;
302 char w[64];
303 long number;
304 int reg;
305 int c = 0;
306
307 *d = 0;
308
309 while (*s != 0) {
310 d += strlen(d);
311 while (my_isblank(*s))
312 s++;
313 for (; my_issep(*s); d++, s++)
314 *d = *s;
315 while (my_isblank(*s))
316 s++;
317 *d = 0;
318
87bf6cec 319 // skip 'ds:' prefix
39b168b8 320 if (IS_START(s, "ds:"))
87bf6cec 321 s += 3;
322
5101a5f9 323 s = next_idt(w, sizeof(w), s);
324 if (w[0] == 0)
325 break;
326 c++;
327
328 reg = parse_reg(&lmod, w);
329 if (reg >= 0) {
330 *regmask |= 1 << reg;
331 goto pass;
332 }
333
334 if ('0' <= w[0] && w[0] <= '9') {
335 number = parse_number(w);
336 printf_number(d, sizeof(cvtbuf) - (d - cvtbuf), number);
337 continue;
338 }
339
340 // probably some label/identifier - pass
341
342pass:
343 snprintf(d, sizeof(cvtbuf) - (d - cvtbuf), "%s", w);
344 }
345
346 if (need_c_cvt)
347 strcpy(name, cvtbuf);
348
349 return c;
350}
351
4c45fa73 352static int is_reg_in_str(const char *s)
353{
354 int i;
355
356 if (strlen(s) < 3 || (s[3] && !my_issep(s[3]) && !my_isblank(s[3])))
357 return 0;
358
359 for (i = 0; i < ARRAY_SIZE(regs_r32); i++)
360 if (!strncmp(s, regs_r32[i], 3))
361 return 1;
362
363 return 0;
364}
365
366static const char *parse_stack_el(const char *name, char *extra_reg)
d4e3b5db 367{
4c45fa73 368 const char *p, *p2, *s;
1bafb621 369 char *endp = NULL;
d4e3b5db 370 char buf[32];
1bafb621 371 long val;
d4e3b5db 372 int len;
373
4c45fa73 374 p = name;
375 if (IS_START(p + 3, "+ebp+") && is_reg_in_str(p)) {
376 p += 4;
377 if (extra_reg != NULL) {
378 strncpy(extra_reg, name, 3);
379 extra_reg[4] = 0;
380 }
d4e3b5db 381 }
4c45fa73 382
383 if (IS_START(p, "ebp+")) {
384 p += 4;
385
386 p2 = strchr(p, '+');
387 if (p2 != NULL && is_reg_in_str(p)) {
388 if (extra_reg != NULL) {
389 strncpy(extra_reg, p, p2 - p);
390 extra_reg[p2 - p] = 0;
391 }
392 p = p2 + 1;
393 }
394
395 if (!('0' <= *p && *p <= '9'))
396 return p;
397
398 return NULL;
399 }
400
39b168b8 401 if (!IS_START(name, "esp+"))
d4e3b5db 402 return NULL;
403
037f4971 404 s = name + 4;
405 p = strchr(s, '+');
d4e3b5db 406 if (p) {
037f4971 407 if (is_reg_in_str(s)) {
408 if (extra_reg != NULL) {
409 strncpy(extra_reg, s, p - s);
410 extra_reg[p - s] = 0;
411 }
412 s = p + 1;
413 p = strchr(s, '+');
414 if (p == NULL)
415 aerr("%s IDA stackvar not set?\n", __func__);
416 }
1bafb621 417 if (!('0' <= *s && *s <= '9')) {
037f4971 418 aerr("%s IDA stackvar offset not set?\n", __func__);
d4e3b5db 419 return NULL;
1bafb621 420 }
421 if (s[0] == '0' && s[1] == 'x')
422 s += 2;
423 len = p - s;
d4e3b5db 424 if (len < sizeof(buf) - 1) {
1bafb621 425 strncpy(buf, s, len);
d4e3b5db 426 buf[len] = 0;
1bafb621 427 val = strtol(buf, &endp, 16);
428 if (val == 0 || *endp != 0) {
429 aerr("%s num parse fail for '%s'\n", __func__, buf);
430 return NULL;
431 }
d4e3b5db 432 }
433 p++;
434 }
435 else
436 p = name + 4;
437
438 if ('0' <= *p && *p <= '9')
439 return NULL;
440
441 return p;
442}
443
850c9265 444static int guess_lmod_from_name(struct parsed_opr *opr)
445{
446 if (!strncmp(opr->name, "dword_", 6)) {
447 opr->lmod = OPLM_DWORD;
448 return 1;
449 }
450 if (!strncmp(opr->name, "word_", 5)) {
451 opr->lmod = OPLM_WORD;
452 return 1;
453 }
454 if (!strncmp(opr->name, "byte_", 5)) {
455 opr->lmod = OPLM_BYTE;
456 return 1;
457 }
458 return 0;
459}
460
3ebea2cf 461static int guess_lmod_from_c_type(enum opr_lenmod *lmod,
462 const struct parsed_type *c_type)
06c5d854 463{
06c5d854 464 static const char *dword_types[] = {
da87ae38 465 "int", "_DWORD", "UINT_PTR", "DWORD",
4741fdfe 466 "WPARAM", "LPARAM", "UINT", "__int32",
467 "LONG", "HIMC",
06c5d854 468 };
469 static const char *word_types[] = {
fe18709a 470 "uint16_t", "int16_t", "_WORD", "WORD",
2b43685d 471 "unsigned __int16", "__int16",
06c5d854 472 };
473 static const char *byte_types[] = {
2b43685d 474 "uint8_t", "int8_t", "char",
89ff3147 475 "unsigned __int8", "__int8", "BYTE", "_BYTE",
4741fdfe 476 "CHAR", "_UNKNOWN",
b4878d2b 477 // structures.. deal the same as with _UNKNOWN for now
478 "CRITICAL_SECTION",
06c5d854 479 };
3ebea2cf 480 const char *n;
06c5d854 481 int i;
482
3ebea2cf 483 if (c_type->is_ptr) {
484 *lmod = OPLM_DWORD;
06c5d854 485 return 1;
486 }
487
3ebea2cf 488 n = skip_type_mod(c_type->name);
06c5d854 489
3ebea2cf 490 for (i = 0; i < ARRAY_SIZE(dword_types); i++) {
491 if (IS(n, dword_types[i])) {
492 *lmod = OPLM_DWORD;
06c5d854 493 return 1;
494 }
495 }
496
497 for (i = 0; i < ARRAY_SIZE(word_types); i++) {
3ebea2cf 498 if (IS(n, word_types[i])) {
499 *lmod = OPLM_WORD;
06c5d854 500 return 1;
501 }
502 }
503
504 for (i = 0; i < ARRAY_SIZE(byte_types); i++) {
3ebea2cf 505 if (IS(n, byte_types[i])) {
506 *lmod = OPLM_BYTE;
06c5d854 507 return 1;
508 }
509 }
510
06c5d854 511 return 0;
512}
513
c7ed83dd 514static char *default_cast_to(char *buf, size_t buf_size,
515 struct parsed_opr *opr)
516{
517 buf[0] = 0;
518
519 if (!opr->is_ptr)
520 return buf;
521 if (opr->pp == NULL || opr->pp->type.name == NULL
522 || opr->pp->is_fptr)
523 {
524 snprintf(buf, buf_size, "%s", "(void *)");
525 return buf;
526 }
527
528 snprintf(buf, buf_size, "(%s)", opr->pp->type.name);
529 return buf;
530}
531
4c45fa73 532static enum opr_type lmod_from_directive(const char *d)
533{
534 if (IS(d, "dd"))
535 return OPLM_DWORD;
536 else if (IS(d, "dw"))
537 return OPLM_WORD;
538 else if (IS(d, "db"))
539 return OPLM_BYTE;
540
541 aerr("unhandled directive: '%s'\n", d);
542 return OPLM_UNSPEC;
543}
544
5101a5f9 545static void setup_reg_opr(struct parsed_opr *opr, int reg, enum opr_lenmod lmod,
546 int *regmask)
547{
548 opr->type = OPT_REG;
549 opr->reg = reg;
550 opr->lmod = lmod;
551 *regmask |= 1 << reg;
552}
553
39b168b8 554static struct parsed_equ *equ_find(struct parsed_op *po, const char *name,
555 int *extra_offs);
87bf6cec 556
69a3cdfc 557static int parse_operand(struct parsed_opr *opr,
558 int *regmask, int *regmask_indirect,
1bafb621 559 char words[16][256], int wordc, int w, unsigned int op_flags)
c36e914d 560{
bd96f656 561 const struct parsed_proto *pp;
850c9265 562 enum opr_lenmod tmplmod;
63df67be 563 unsigned long number;
89ff3147 564 char buf[256];
850c9265 565 int ret, len;
1bafb621 566 int wordc_in;
89ff3147 567 char *p;
850c9265 568 int i;
c36e914d 569
1bafb621 570 if (w >= wordc)
571 aerr("parse_operand w %d, wordc %d\n", w, wordc);
c36e914d 572
1bafb621 573 opr->reg = xUNSPEC;
91977a1c 574
1bafb621 575 for (i = w; i < wordc; i++) {
576 len = strlen(words[i]);
577 if (words[i][len - 1] == ',') {
578 words[i][len - 1] = 0;
579 wordc = i + 1;
580 break;
581 }
582 }
c36e914d 583
1bafb621 584 wordc_in = wordc - w;
c36e914d 585
1bafb621 586 if ((op_flags & OPF_JMP) && wordc_in > 0
587 && !('0' <= words[w][0] && words[w][0] <= '9'))
588 {
589 const char *label = NULL;
590
591 if (wordc_in == 3 && !strncmp(words[w], "near", 4)
592 && IS(words[w + 1], "ptr"))
593 label = words[w + 2];
594 else if (wordc_in == 2 && IS(words[w], "short"))
595 label = words[w + 1];
596 else if (wordc_in == 1
597 && strchr(words[w], '[') == NULL
598 && parse_reg(&tmplmod, words[w]) < 0)
599 label = words[w];
600
601 if (label != NULL) {
602 opr->type = OPT_LABEL;
ddaf8bd7 603 if (IS_START(label, "ds:")) {
604 opr->had_ds = 1;
39b168b8 605 label += 3;
ddaf8bd7 606 }
1bafb621 607 strcpy(opr->name, label);
608 return wordc;
609 }
610 }
c36e914d 611
1bafb621 612 if (wordc_in >= 3) {
613 if (IS(words[w + 1], "ptr")) {
614 if (IS(words[w], "dword"))
615 opr->lmod = OPLM_DWORD;
616 else if (IS(words[w], "word"))
617 opr->lmod = OPLM_WORD;
618 else if (IS(words[w], "byte"))
619 opr->lmod = OPLM_BYTE;
620 else
621 aerr("type parsing failed\n");
622 w += 2;
623 wordc_in = wordc - w;
624 }
625 }
626
39b168b8 627 if (wordc_in == 2) {
628 if (IS(words[w], "offset")) {
629 opr->type = OPT_OFFSET;
27ebfaed 630 opr->lmod = OPLM_DWORD;
39b168b8 631 strcpy(opr->name, words[w + 1]);
27ebfaed 632 pp = proto_parse(g_fhdr, opr->name, 1);
633 goto do_label;
39b168b8 634 }
635 if (IS(words[w], "(offset")) {
89ff3147 636 p = strchr(words[w + 1], ')');
39b168b8 637 if (p == NULL)
638 aerr("parse of bracketed offset failed\n");
639 *p = 0;
640 opr->type = OPT_OFFSET;
641 strcpy(opr->name, words[w + 1]);
642 return wordc;
643 }
1bafb621 644 }
c36e914d 645
1bafb621 646 if (wordc_in != 1)
850c9265 647 aerr("parse_operand 1 word expected\n");
c36e914d 648
ddaf8bd7 649 if (IS_START(words[w], "ds:")) {
650 opr->had_ds = 1;
89ff3147 651 memmove(words[w], words[w] + 3, strlen(words[w]) - 2);
ddaf8bd7 652 }
89ff3147 653 strcpy(opr->name, words[w]);
c36e914d 654
850c9265 655 if (words[w][0] == '[') {
656 opr->type = OPT_REGMEM;
657 ret = sscanf(words[w], "[%[^]]]", opr->name);
658 if (ret != 1)
659 aerr("[] parse failure\n");
87bf6cec 660
5101a5f9 661 parse_indmode(opr->name, regmask_indirect, 1);
4c45fa73 662 if (opr->lmod == OPLM_UNSPEC && parse_stack_el(opr->name, NULL)) {
87bf6cec 663 // might be an equ
d4e3b5db 664 struct parsed_equ *eq =
4c45fa73 665 equ_find(NULL, parse_stack_el(opr->name, NULL), &i);
87bf6cec 666 if (eq)
667 opr->lmod = eq->lmod;
668 }
850c9265 669 return wordc;
670 }
671 else if (strchr(words[w], '[')) {
672 // label[reg] form
89ff3147 673 p = strchr(words[w], '[');
850c9265 674 opr->type = OPT_REGMEM;
89ff3147 675 parse_indmode(p, regmask_indirect, 0);
676 strncpy(buf, words[w], p - words[w]);
677 buf[p - words[w]] = 0;
678 pp = proto_parse(g_fhdr, buf, 1);
679 goto do_label;
850c9265 680 }
681 else if (('0' <= words[w][0] && words[w][0] <= '9')
682 || words[w][0] == '-')
683 {
5101a5f9 684 number = parse_number(words[w]);
91977a1c 685 opr->type = OPT_CONST;
5101a5f9 686 opr->val = number;
687 printf_number(opr->name, sizeof(opr->name), number);
91977a1c 688 return wordc;
850c9265 689 }
c36e914d 690
5101a5f9 691 ret = parse_reg(&tmplmod, opr->name);
692 if (ret >= 0) {
693 setup_reg_opr(opr, ret, tmplmod, regmask);
850c9265 694 return wordc;
695 }
696
697 // most likely var in data segment
698 opr->type = OPT_LABEL;
36595fd2 699 pp = proto_parse(g_fhdr, opr->name, 0);
89ff3147 700
701do_label:
bd96f656 702 if (pp != NULL) {
1cd4a663 703 if (pp->is_fptr || pp->is_func) {
06c5d854 704 opr->lmod = OPLM_DWORD;
705 opr->is_ptr = 1;
706 }
2b43685d 707 else {
840257f6 708 tmplmod = OPLM_UNSPEC;
bd96f656 709 if (!guess_lmod_from_c_type(&tmplmod, &pp->type))
2b43685d 710 anote("unhandled C type '%s' for '%s'\n",
bd96f656 711 pp->type.name, opr->name);
2b43685d 712
a3684be1 713 if (opr->lmod == OPLM_UNSPEC) {
2b43685d 714 opr->lmod = tmplmod;
a3684be1 715 opr->type_from_var = 1;
716 }
2b43685d 717 else if (opr->lmod != tmplmod) {
718 opr->size_mismatch = 1;
719 if (tmplmod < opr->lmod)
720 opr->size_lt = 1;
721 }
a652aa9f 722 opr->is_ptr = pp->type.is_ptr;
3ebea2cf 723 }
bd96f656 724 opr->is_array = pp->type.is_array;
06c5d854 725 }
c7ed83dd 726 opr->pp = pp;
06c5d854 727
850c9265 728 if (opr->lmod == OPLM_UNSPEC)
729 guess_lmod_from_name(opr);
850c9265 730 return wordc;
c36e914d 731}
732
33c35af6 733static const struct {
734 const char *name;
735 unsigned int flags;
736} pref_table[] = {
737 { "rep", OPF_REP },
7ba45c34 738 { "repe", OPF_REP|OPF_REPZ },
739 { "repz", OPF_REP|OPF_REPZ },
740 { "repne", OPF_REP|OPF_REPNZ },
741 { "repnz", OPF_REP|OPF_REPNZ },
037f4971 742 { "lock", OPF_LOCK }, // ignored for now..
33c35af6 743};
744
5c024ef7 745#define OPF_CJMP_CC (OPF_JMP|OPF_CJMP|OPF_CC)
746
c36e914d 747static const struct {
850c9265 748 const char *name;
749 enum op_op op;
092f64e1 750 unsigned short minopr;
751 unsigned short maxopr;
69a3cdfc 752 unsigned int flags;
092f64e1 753 unsigned char pfo;
754 unsigned char pfo_inv;
c36e914d 755} op_table[] = {
33c35af6 756 { "nop", OP_NOP, 0, 0, 0 },
69a3cdfc 757 { "push", OP_PUSH, 1, 1, 0 },
758 { "pop", OP_POP, 1, 1, OPF_DATA },
591721d7 759 { "leave",OP_LEAVE, 0, 0, OPF_DATA },
69a3cdfc 760 { "mov" , OP_MOV, 2, 2, OPF_DATA },
761 { "lea", OP_LEA, 2, 2, OPF_DATA },
762 { "movzx",OP_MOVZX, 2, 2, OPF_DATA },
763 { "movsx",OP_MOVSX, 2, 2, OPF_DATA },
108e9fe3 764 { "xchg", OP_XCHG, 2, 2, OPF_DATA },
69a3cdfc 765 { "not", OP_NOT, 1, 1, OPF_DATA },
5101a5f9 766 { "cdq", OP_CDQ, 0, 0, OPF_DATA },
092f64e1 767 { "lodsb",OP_LODS, 0, 0, OPF_DATA },
768 { "lodsw",OP_LODS, 0, 0, OPF_DATA },
769 { "lodsd",OP_LODS, 0, 0, OPF_DATA },
33c35af6 770 { "stosb",OP_STOS, 0, 0, OPF_DATA },
771 { "stosw",OP_STOS, 0, 0, OPF_DATA },
772 { "stosd",OP_STOS, 0, 0, OPF_DATA },
d4e3b5db 773 { "movsb",OP_MOVS, 0, 0, OPF_DATA },
774 { "movsw",OP_MOVS, 0, 0, OPF_DATA },
775 { "movsd",OP_MOVS, 0, 0, OPF_DATA },
7ba45c34 776 { "cmpsb",OP_CMPS, 0, 0, OPF_DATA|OPF_FLAGS },
777 { "cmpsw",OP_CMPS, 0, 0, OPF_DATA|OPF_FLAGS },
778 { "cmpsd",OP_CMPS, 0, 0, OPF_DATA|OPF_FLAGS },
591721d7 779 { "scasb",OP_SCAS, 0, 0, OPF_DATA|OPF_FLAGS },
780 { "scasw",OP_SCAS, 0, 0, OPF_DATA|OPF_FLAGS },
781 { "scasd",OP_SCAS, 0, 0, OPF_DATA|OPF_FLAGS },
782 { "std", OP_STD, 0, 0, OPF_DATA }, // special flag
783 { "cld", OP_CLD, 0, 0, OPF_DATA },
69a3cdfc 784 { "add", OP_ADD, 2, 2, OPF_DATA|OPF_FLAGS },
785 { "sub", OP_SUB, 2, 2, OPF_DATA|OPF_FLAGS },
786 { "and", OP_AND, 2, 2, OPF_DATA|OPF_FLAGS },
787 { "or", OP_OR, 2, 2, OPF_DATA|OPF_FLAGS },
788 { "xor", OP_XOR, 2, 2, OPF_DATA|OPF_FLAGS },
789 { "shl", OP_SHL, 2, 2, OPF_DATA|OPF_FLAGS },
790 { "shr", OP_SHR, 2, 2, OPF_DATA|OPF_FLAGS },
791 { "sal", OP_SHL, 2, 2, OPF_DATA|OPF_FLAGS },
792 { "sar", OP_SAR, 2, 2, OPF_DATA|OPF_FLAGS },
d4e3b5db 793 { "rol", OP_ROL, 2, 2, OPF_DATA|OPF_FLAGS },
794 { "ror", OP_ROR, 2, 2, OPF_DATA|OPF_FLAGS },
092f64e1 795 { "rcl", OP_RCL, 2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
796 { "rcr", OP_RCR, 2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
797 { "adc", OP_ADC, 2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
798 { "sbb", OP_SBB, 2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
1f84f6b3 799 { "bsf", OP_BSF, 2, 2, OPF_DATA|OPF_FLAGS },
69a3cdfc 800 { "inc", OP_INC, 1, 1, OPF_DATA|OPF_FLAGS },
801 { "dec", OP_DEC, 1, 1, OPF_DATA|OPF_FLAGS },
5101a5f9 802 { "neg", OP_NEG, 1, 1, OPF_DATA|OPF_FLAGS },
803 { "mul", OP_MUL, 1, 1, OPF_DATA|OPF_FLAGS },
69a3cdfc 804 { "imul", OP_IMUL, 1, 3, OPF_DATA|OPF_FLAGS },
5101a5f9 805 { "div", OP_DIV, 1, 1, OPF_DATA|OPF_FLAGS },
806 { "idiv", OP_IDIV, 1, 1, OPF_DATA|OPF_FLAGS },
69a3cdfc 807 { "test", OP_TEST, 2, 2, OPF_FLAGS },
808 { "cmp", OP_CMP, 2, 2, OPF_FLAGS },
a3684be1 809 { "retn", OP_RET, 0, 1, OPF_TAIL },
de50b98b 810 { "call", OP_CALL, 1, 1, OPF_JMP|OPF_DATA|OPF_FLAGS },
69a3cdfc 811 { "jmp", OP_JMP, 1, 1, OPF_JMP },
5c024ef7 812 { "jecxz",OP_JECXZ, 1, 1, OPF_JMP|OPF_CJMP },
092f64e1 813 { "jo", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_O, 0 }, // 70 OF=1
814 { "jno", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_O, 1 }, // 71 OF=0
815 { "jc", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_C, 0 }, // 72 CF=1
816 { "jb", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_C, 0 }, // 72
817 { "jnc", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_C, 1 }, // 73 CF=0
818 { "jnb", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_C, 1 }, // 73
819 { "jae", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_C, 1 }, // 73
820 { "jz", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_Z, 0 }, // 74 ZF=1
821 { "je", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_Z, 0 }, // 74
822 { "jnz", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_Z, 1 }, // 75 ZF=0
823 { "jne", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_Z, 1 }, // 75
824 { "jbe", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_BE, 0 }, // 76 CF=1||ZF=1
825 { "jna", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_BE, 0 }, // 76
826 { "ja", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_BE, 1 }, // 77 CF=0&&ZF=0
827 { "jnbe", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_BE, 1 }, // 77
828 { "js", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_S, 0 }, // 78 SF=1
829 { "jns", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_S, 1 }, // 79 SF=0
830 { "jp", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_P, 0 }, // 7a PF=1
831 { "jpe", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_P, 0 }, // 7a
832 { "jnp", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_P, 1 }, // 7b PF=0
833 { "jpo", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_P, 1 }, // 7b
834 { "jl", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_L, 0 }, // 7c SF!=OF
835 { "jnge", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_L, 0 }, // 7c
836 { "jge", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_L, 1 }, // 7d SF=OF
837 { "jnl", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_L, 1 }, // 7d
838 { "jle", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_LE, 0 }, // 7e ZF=1||SF!=OF
839 { "jng", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_LE, 0 }, // 7e
840 { "jg", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_LE, 1 }, // 7f ZF=0&&SF=OF
841 { "jnle", OP_JCC, 1, 1, OPF_CJMP_CC, PFO_LE, 1 }, // 7f
842 { "seto", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_O, 0 },
843 { "setno", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_O, 1 },
844 { "setc", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_C, 0 },
845 { "setb", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_C, 0 },
846 { "setnc", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_C, 1 },
847 { "setae", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_C, 1 },
848 { "setnb", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_C, 1 },
849 { "setz", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_Z, 0 },
850 { "sete", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_Z, 0 },
851 { "setnz", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_Z, 1 },
852 { "setne", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_Z, 1 },
853 { "setbe", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_BE, 0 },
854 { "setna", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_BE, 0 },
855 { "seta", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_BE, 1 },
856 { "setnbe", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_BE, 1 },
857 { "sets", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_S, 0 },
858 { "setns", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_S, 1 },
859 { "setp", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_P, 0 },
860 { "setpe", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_P, 0 },
861 { "setnp", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_P, 1 },
862 { "setpo", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_P, 1 },
863 { "setl", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_L, 0 },
864 { "setnge", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_L, 0 },
865 { "setge", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_L, 1 },
866 { "setnl", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_L, 1 },
867 { "setle", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_LE, 0 },
868 { "setng", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_LE, 0 },
869 { "setg", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_LE, 1 },
870 { "setnle", OP_SCC, 1, 1, OPF_DATA|OPF_CC, PFO_LE, 1 },
69a3cdfc 871};
c36e914d 872
873static void parse_op(struct parsed_op *op, char words[16][256], int wordc)
874{
bfa4a6ee 875 enum opr_lenmod lmod = OPLM_UNSPEC;
33c35af6 876 int prefix_flags = 0;
69a3cdfc 877 int regmask_ind;
878 int regmask;
33c35af6 879 int op_w = 0;
91977a1c 880 int opr = 0;
33c35af6 881 int w = 0;
91977a1c 882 int i;
c36e914d 883
33c35af6 884 for (i = 0; i < ARRAY_SIZE(pref_table); i++) {
885 if (IS(words[w], pref_table[i].name)) {
886 prefix_flags = pref_table[i].flags;
887 break;
888 }
889 }
890
891 if (prefix_flags) {
892 if (wordc <= 1)
893 aerr("lone prefix: '%s'\n", words[0]);
894 w++;
895 }
896
897 op_w = w;
91977a1c 898 for (i = 0; i < ARRAY_SIZE(op_table); i++) {
33c35af6 899 if (IS(words[w], op_table[i].name))
69a3cdfc 900 break;
901 }
c36e914d 902
69a3cdfc 903 if (i == ARRAY_SIZE(op_table))
904 aerr("unhandled op: '%s'\n", words[0]);
33c35af6 905 w++;
c36e914d 906
69a3cdfc 907 op->op = op_table[i].op;
33c35af6 908 op->flags = op_table[i].flags | prefix_flags;
092f64e1 909 op->pfo = op_table[i].pfo;
910 op->pfo_inv = op_table[i].pfo_inv;
69a3cdfc 911 op->regmask_src = op->regmask_dst = 0;
8eb12e72 912 op->asmln = asmln;
69a3cdfc 913
914 for (opr = 0; opr < op_table[i].minopr; opr++) {
915 regmask = regmask_ind = 0;
916 w = parse_operand(&op->operand[opr], &regmask, &regmask_ind,
917 words, wordc, w, op->flags);
918
919 if (opr == 0 && (op->flags & OPF_DATA))
920 op->regmask_dst = regmask;
921 // for now, mark dst as src too
922 op->regmask_src |= regmask | regmask_ind;
923 }
c36e914d 924
69a3cdfc 925 for (; w < wordc && opr < op_table[i].maxopr; opr++) {
926 w = parse_operand(&op->operand[opr],
927 &op->regmask_src, &op->regmask_src,
928 words, wordc, w, op->flags);
91977a1c 929 }
c36e914d 930
91977a1c 931 if (w < wordc)
932 aerr("parse_op %s incomplete: %d/%d\n",
933 words[0], w, wordc);
5101a5f9 934
935 // special cases
936 op->operand_cnt = opr;
937 if (!strncmp(op_table[i].name, "set", 3))
938 op->operand[0].lmod = OPLM_BYTE;
939
940 // ops with implicit argumets
941 switch (op->op) {
942 case OP_CDQ:
943 op->operand_cnt = 2;
944 setup_reg_opr(&op->operand[0], xDX, OPLM_DWORD, &op->regmask_dst);
945 setup_reg_opr(&op->operand[1], xAX, OPLM_DWORD, &op->regmask_src);
946 break;
947
092f64e1 948 case OP_LODS:
33c35af6 949 case OP_STOS:
591721d7 950 case OP_SCAS:
33c35af6 951 if (op->operand_cnt != 0)
952 break;
591721d7 953 if (words[op_w][4] == 'b')
33c35af6 954 lmod = OPLM_BYTE;
591721d7 955 else if (words[op_w][4] == 'w')
33c35af6 956 lmod = OPLM_WORD;
591721d7 957 else if (words[op_w][4] == 'd')
33c35af6 958 lmod = OPLM_DWORD;
959 op->operand_cnt = 3;
092f64e1 960 setup_reg_opr(&op->operand[0], op->op == OP_LODS ? xSI : xDI,
961 lmod, &op->regmask_src);
d4e3b5db 962 setup_reg_opr(&op->operand[1], xCX, OPLM_DWORD, &op->regmask_src);
963 op->regmask_dst = op->regmask_src;
092f64e1 964 setup_reg_opr(&op->operand[2], xAX, OPLM_DWORD,
965 op->op == OP_LODS ? &op->regmask_dst : &op->regmask_src);
33c35af6 966 break;
967
d4e3b5db 968 case OP_MOVS:
7ba45c34 969 case OP_CMPS:
d4e3b5db 970 if (op->operand_cnt != 0)
971 break;
7ba45c34 972 if (words[op_w][4] == 'b')
d4e3b5db 973 lmod = OPLM_BYTE;
7ba45c34 974 else if (words[op_w][4] == 'w')
d4e3b5db 975 lmod = OPLM_WORD;
7ba45c34 976 else if (words[op_w][4] == 'd')
d4e3b5db 977 lmod = OPLM_DWORD;
978 op->operand_cnt = 3;
979 setup_reg_opr(&op->operand[0], xDI, lmod, &op->regmask_src);
980 setup_reg_opr(&op->operand[1], xSI, OPLM_DWORD, &op->regmask_src);
981 setup_reg_opr(&op->operand[2], xCX, OPLM_DWORD, &op->regmask_src);
982 op->regmask_dst = op->regmask_src;
983 break;
984
108e9fe3 985 case OP_XCHG:
986 op->regmask_src |= op->regmask_dst;
987 op->regmask_dst |= op->regmask_src;
092f64e1 988 goto check_align;
108e9fe3 989
5c024ef7 990 case OP_JECXZ:
991 op->operand_cnt = 1;
992 op->regmask_src = 1 << xCX;
993 op->operand[0].type = OPT_REG;
994 op->operand[0].reg = xCX;
995 op->operand[0].lmod = OPLM_DWORD;
996 break;
997
5101a5f9 998 case OP_IMUL:
999 if (op->operand_cnt != 1)
1000 break;
1001 // fallthrough
1002 case OP_MUL:
1003 // singleop mul
1004 op->regmask_dst = (1 << xDX) | (1 << xAX);
1005 op->regmask_src |= (1 << xAX);
1006 if (op->operand[0].lmod == OPLM_UNSPEC)
1007 op->operand[0].lmod = OPLM_DWORD;
1008 break;
1009
1010 case OP_DIV:
1011 case OP_IDIV:
1012 // we could set up operands for edx:eax, but there is no real need to
1013 // (see is_opr_modified())
1014 regmask = (1 << xDX) | (1 << xAX);
1015 op->regmask_dst = regmask;
1016 op->regmask_src |= regmask;
1017 if (op->operand[0].lmod == OPLM_UNSPEC)
1018 op->operand[0].lmod = OPLM_DWORD;
1019 break;
1020
1021 case OP_SHL:
1022 case OP_SHR:
1023 case OP_SAR:
d4e3b5db 1024 case OP_ROL:
1025 case OP_ROR:
5101a5f9 1026 if (op->operand[1].lmod == OPLM_UNSPEC)
1027 op->operand[1].lmod = OPLM_BYTE;
1028 break;
1029
7ba45c34 1030 case OP_PUSH:
1031 if (op->operand[0].lmod == OPLM_UNSPEC
1032 && (op->operand[0].type == OPT_CONST
1033 || op->operand[0].type == OPT_OFFSET
1034 || op->operand[0].type == OPT_LABEL))
1035 op->operand[0].lmod = OPLM_DWORD;
1036 break;
1037
3ebea2cf 1038 // alignment
1039 case OP_MOV:
092f64e1 1040 check_align:
3ebea2cf 1041 if (op->operand[0].type == OPT_REG && op->operand[1].type == OPT_REG
092f64e1 1042 && op->operand[0].lmod == op->operand[1].lmod
1043 && op->operand[0].reg == op->operand[1].reg
1044 && IS(op->operand[0].name, op->operand[1].name)) // ah, al..
3ebea2cf 1045 {
1046 op->flags |= OPF_RMD;
092f64e1 1047 op->regmask_src = op->regmask_dst = 0;
3ebea2cf 1048 }
1049 break;
1050
de50b98b 1051 case OP_LEA:
1052 if (op->operand[0].type == OPT_REG
1053 && op->operand[1].type == OPT_REGMEM)
1054 {
1055 char buf[16];
1056 snprintf(buf, sizeof(buf), "%s+0", op->operand[0].name);
1057 if (IS(buf, op->operand[1].name))
1058 op->flags |= OPF_RMD;
1059 }
1060 break;
1061
89ff3147 1062 case OP_CALL:
1063 // trashed regs must be explicitly detected later
1064 op->regmask_dst = 0;
1065 break;
1066
5101a5f9 1067 default:
1068 break;
1069 }
c36e914d 1070}
1071
092f64e1 1072static const char *op_name(struct parsed_op *po)
850c9265 1073{
092f64e1 1074 static char buf[16];
1075 char *p;
850c9265 1076 int i;
1077
092f64e1 1078 if (po->op == OP_JCC || po->op == OP_SCC) {
1079 p = buf;
1080 *p++ = (po->op == OP_JCC) ? 'j' : 's';
1081 if (po->pfo_inv)
1082 *p++ = 'n';
1083 strcpy(p, parsed_flag_op_names[po->pfo]);
1084 return buf;
1085 }
1086
850c9265 1087 for (i = 0; i < ARRAY_SIZE(op_table); i++)
092f64e1 1088 if (op_table[i].op == po->op)
850c9265 1089 return op_table[i].name;
1090
1091 return "???";
1092}
1093
1094// debug
1095static const char *dump_op(struct parsed_op *po)
1096{
1097 static char out[128];
1098 char *p = out;
1099 int i;
1100
4c45fa73 1101 if (po == NULL)
1102 return "???";
1103
092f64e1 1104 snprintf(out, sizeof(out), "%s", op_name(po));
850c9265 1105 for (i = 0; i < po->operand_cnt; i++) {
1106 p += strlen(p);
1107 if (i > 0)
1108 *p++ = ',';
1109 snprintf(p, sizeof(out) - (p - out),
1110 po->operand[i].type == OPT_REGMEM ? " [%s]" : " %s",
1111 po->operand[i].name);
1112 }
1113
1114 return out;
1115}
1116
4c45fa73 1117static const char *lmod_type_u(struct parsed_op *po,
1118 enum opr_lenmod lmod)
1119{
1120 switch (lmod) {
1121 case OPLM_DWORD:
1122 return "u32";
1123 case OPLM_WORD:
1124 return "u16";
1125 case OPLM_BYTE:
1126 return "u8";
1127 default:
1128 ferr(po, "invalid lmod: %d\n", lmod);
1129 return "(_invalid_)";
1130 }
1131}
1132
d4e3b5db 1133static const char *lmod_cast_u(struct parsed_op *po,
1134 enum opr_lenmod lmod)
1135{
1136 switch (lmod) {
1137 case OPLM_DWORD:
1138 return "";
1139 case OPLM_WORD:
1140 return "(u16)";
1141 case OPLM_BYTE:
1142 return "(u8)";
1143 default:
1144 ferr(po, "invalid lmod: %d\n", lmod);
1145 return "(_invalid_)";
1146 }
1147}
1148
1149static const char *lmod_cast_u_ptr(struct parsed_op *po,
1150 enum opr_lenmod lmod)
1151{
1152 switch (lmod) {
1153 case OPLM_DWORD:
1154 return "*(u32 *)";
1155 case OPLM_WORD:
1156 return "*(u16 *)";
1157 case OPLM_BYTE:
1158 return "*(u8 *)";
1159 default:
1160 ferr(po, "invalid lmod: %d\n", lmod);
1161 return "(_invalid_)";
1162 }
1163}
1164
1165static const char *lmod_cast_s(struct parsed_op *po,
1166 enum opr_lenmod lmod)
1167{
1168 switch (lmod) {
1169 case OPLM_DWORD:
1170 return "(s32)";
1171 case OPLM_WORD:
1172 return "(s16)";
1173 case OPLM_BYTE:
1174 return "(s8)";
1175 default:
1176 ferr(po, "%s: invalid lmod: %d\n", __func__, lmod);
1177 return "(_invalid_)";
1178 }
1179}
1180
1181static const char *lmod_cast(struct parsed_op *po,
1182 enum opr_lenmod lmod, int is_signed)
1183{
1184 return is_signed ?
1185 lmod_cast_s(po, lmod) :
1186 lmod_cast_u(po, lmod);
1187}
1188
1189static int lmod_bytes(struct parsed_op *po, enum opr_lenmod lmod)
1190{
1191 switch (lmod) {
1192 case OPLM_DWORD:
1193 return 4;
1194 case OPLM_WORD:
1195 return 2;
1196 case OPLM_BYTE:
1197 return 1;
1198 default:
1199 ferr(po, "%s: invalid lmod: %d\n", __func__, lmod);
1200 return 0;
1201 }
1202}
1203
91977a1c 1204static const char *opr_name(struct parsed_op *po, int opr_num)
c36e914d 1205{
91977a1c 1206 if (opr_num >= po->operand_cnt)
1207 ferr(po, "opr OOR: %d/%d\n", opr_num, po->operand_cnt);
1208 return po->operand[opr_num].name;
c36e914d 1209}
1210
91977a1c 1211static unsigned int opr_const(struct parsed_op *po, int opr_num)
c36e914d 1212{
91977a1c 1213 if (opr_num >= po->operand_cnt)
1214 ferr(po, "opr OOR: %d/%d\n", opr_num, po->operand_cnt);
1215 if (po->operand[opr_num].type != OPT_CONST)
1216 ferr(po, "opr %d: const expected\n", opr_num);
1217 return po->operand[opr_num].val;
1218}
c36e914d 1219
91977a1c 1220static const char *opr_reg_p(struct parsed_op *po, struct parsed_opr *popr)
1221{
1222 if ((unsigned int)popr->reg >= MAX_REGS)
1223 ferr(po, "invalid reg: %d\n", popr->reg);
1224 return regs_r32[popr->reg];
1225}
c36e914d 1226
a2c1d768 1227// cast1 is the "final" cast
1228static const char *simplify_cast(const char *cast1, const char *cast2)
1229{
1230 static char buf[256];
1231
1232 if (cast1[0] == 0)
1233 return cast2;
1234 if (cast2[0] == 0)
1235 return cast1;
1236 if (IS(cast1, cast2))
1237 return cast1;
1238 if (IS(cast1, "(s8)") && IS(cast2, "(u8)"))
1239 return cast1;
1240 if (IS(cast1, "(s16)") && IS(cast2, "(u16)"))
1241 return cast1;
1242 if (IS(cast1, "(u8)") && IS_START(cast2, "*(u8 *)"))
1243 return cast2;
1244 if (IS(cast1, "(u16)") && IS_START(cast2, "*(u16 *)"))
1245 return cast2;
1cd4a663 1246 if (strchr(cast1, '*') && IS_START(cast2, "(u32)"))
1247 return cast1;
a2c1d768 1248
1249 snprintf(buf, sizeof(buf), "%s%s", cast1, cast2);
1250 return buf;
1251}
1252
1253static const char *simplify_cast_num(const char *cast, unsigned int val)
1254{
1255 if (IS(cast, "(u8)") && val < 0x100)
1256 return "";
1257 if (IS(cast, "(s8)") && val < 0x80)
1258 return "";
1259 if (IS(cast, "(u16)") && val < 0x10000)
1260 return "";
1261 if (IS(cast, "(s16)") && val < 0x8000)
1262 return "";
1263 if (IS(cast, "(s32)") && val < 0x80000000)
1264 return "";
1265
1266 return cast;
1267}
1268
39b168b8 1269static struct parsed_equ *equ_find(struct parsed_op *po, const char *name,
1270 int *extra_offs)
91977a1c 1271{
39b168b8 1272 const char *p;
1273 char *endp;
1274 int namelen;
850c9265 1275 int i;
1276
39b168b8 1277 *extra_offs = 0;
1278 namelen = strlen(name);
1279
1280 p = strchr(name, '+');
1281 if (p != NULL) {
1282 namelen = p - name;
1283 if (namelen <= 0)
1284 ferr(po, "equ parse failed for '%s'\n", name);
1285
1286 if (IS_START(p, "0x"))
1287 p += 2;
1288 *extra_offs = strtol(p, &endp, 16);
1289 if (*endp != 0)
1290 ferr(po, "equ parse failed for '%s'\n", name);
1291 }
1292
850c9265 1293 for (i = 0; i < g_eqcnt; i++)
39b168b8 1294 if (strncmp(g_eqs[i].name, name, namelen) == 0
1295 && g_eqs[i].name[namelen] == 0)
850c9265 1296 break;
87bf6cec 1297 if (i >= g_eqcnt) {
1298 if (po != NULL)
1299 ferr(po, "unresolved equ name: '%s'\n", name);
1300 return NULL;
1301 }
850c9265 1302
1303 return &g_eqs[i];
1304}
1305
1cd4a663 1306static int is_stack_access(struct parsed_op *po,
1307 const struct parsed_opr *popr)
850c9265 1308{
1cd4a663 1309 return (parse_stack_el(popr->name, NULL)
1310 || (g_bp_frame && !(po->flags & OPF_EBP_S)
1311 && IS_START(popr->name, "ebp")));
1312}
1313
1314static void parse_stack_access(struct parsed_op *po,
1315 const char *name, char *ofs_reg, int *offset_out,
037f4971 1316 int *stack_ra_out, const char **bp_arg_out, int is_lea)
1cd4a663 1317{
1318 const char *bp_arg = "";
1319 const char *p = NULL;
91977a1c 1320 struct parsed_equ *eq;
4f12f671 1321 char *endp = NULL;
d4e3b5db 1322 int stack_ra = 0;
39b168b8 1323 int offset = 0;
91977a1c 1324
1cd4a663 1325 ofs_reg[0] = 0;
a3684be1 1326
1327 if (IS_START(name, "ebp-")
1328 || (IS_START(name, "ebp+") && '0' <= name[4] && name[4] <= '9'))
1329 {
1330 p = name + 4;
1331 if (IS_START(p, "0x"))
1332 p += 2;
1333 offset = strtoul(p, &endp, 16);
1334 if (name[3] == '-')
1335 offset = -offset;
1336 if (*endp != 0)
1337 ferr(po, "ebp- parse of '%s' failed\n", name);
1338 }
1339 else {
4f12f671 1340 bp_arg = parse_stack_el(name, ofs_reg);
1341 snprintf(g_comment, sizeof(g_comment), "%s", bp_arg);
1342 eq = equ_find(po, bp_arg, &offset);
1343 if (eq == NULL)
1344 ferr(po, "detected but missing eq\n");
1345 offset += eq->offset;
1346 }
39b168b8 1347
d4e3b5db 1348 if (!strncmp(name, "ebp", 3))
1349 stack_ra = 4;
1350
037f4971 1351 // yes it sometimes LEAs ra for compares..
1352 if (!is_lea && ofs_reg[0] == 0
1353 && stack_ra <= offset && offset < stack_ra + 4)
1354 {
39b168b8 1355 ferr(po, "reference to ra? %d %d\n", offset, stack_ra);
037f4971 1356 }
d4e3b5db 1357
1cd4a663 1358 *offset_out = offset;
1359 *stack_ra_out = stack_ra;
1360 if (bp_arg_out)
1361 *bp_arg_out = bp_arg;
1362}
1363
1364static void stack_frame_access(struct parsed_op *po,
1365 struct parsed_opr *popr, char *buf, size_t buf_size,
1366 const char *name, const char *cast, int is_src, int is_lea)
1367{
1368 enum opr_lenmod tmp_lmod = OPLM_UNSPEC;
1369 const char *prefix = "";
1370 const char *bp_arg = NULL;
1371 char ofs_reg[16] = { 0, };
1372 int i, arg_i, arg_s;
1373 int unaligned = 0;
1374 int stack_ra = 0;
1375 int offset = 0;
1376 int sf_ofs;
1377 int lim;
1378
1379 if (po->flags & OPF_EBP_S)
1380 ferr(po, "stack_frame_access while ebp is scratch\n");
1381
037f4971 1382 parse_stack_access(po, name, ofs_reg, &offset,
1383 &stack_ra, &bp_arg, is_lea);
1cd4a663 1384
4f12f671 1385 if (offset > stack_ra)
1386 {
39b168b8 1387 arg_i = (offset - stack_ra - 4) / 4;
bd96f656 1388 if (arg_i < 0 || arg_i >= g_func_pp->argc_stack)
4f12f671 1389 {
bd96f656 1390 if (g_func_pp->is_vararg
1391 && arg_i == g_func_pp->argc_stack && is_lea)
1392 {
4f12f671 1393 // should be va_list
1394 if (cast[0] == 0)
1395 cast = "(u32)";
1396 snprintf(buf, buf_size, "%sap", cast);
1397 return;
1398 }
1399 ferr(po, "offset %d (%s,%d) doesn't map to any arg\n",
1400 offset, bp_arg, arg_i);
1401 }
4c45fa73 1402 if (ofs_reg[0] != 0)
7ba45c34 1403 ferr(po, "offset reg on arg access?\n");
91977a1c 1404
bd96f656 1405 for (i = arg_s = 0; i < g_func_pp->argc; i++) {
1406 if (g_func_pp->arg[i].reg != NULL)
91977a1c 1407 continue;
1408 if (arg_s == arg_i)
1409 break;
1410 arg_s++;
1411 }
bd96f656 1412 if (i == g_func_pp->argc)
91977a1c 1413 ferr(po, "arg %d not in prototype?\n", arg_i);
850c9265 1414
bd96f656 1415 popr->is_ptr = g_func_pp->arg[i].type.is_ptr;
de50b98b 1416
1417 switch (popr->lmod)
7ba45c34 1418 {
1419 case OPLM_BYTE:
4f12f671 1420 if (is_lea)
1421 ferr(po, "lea/byte to arg?\n");
7ba45c34 1422 if (is_src && (offset & 3) == 0)
a2c1d768 1423 snprintf(buf, buf_size, "%sa%d",
1424 simplify_cast(cast, "(u8)"), i + 1);
7ba45c34 1425 else
a2c1d768 1426 snprintf(buf, buf_size, "%sBYTE%d(a%d)",
1427 cast, offset & 3, i + 1);
7ba45c34 1428 break;
1429
1430 case OPLM_WORD:
4f12f671 1431 if (is_lea)
1432 ferr(po, "lea/word to arg?\n");
a3684be1 1433 if (offset & 1) {
1434 unaligned = 1;
1435 if (!is_src) {
1436 if (offset & 2)
1437 ferr(po, "problematic arg store\n");
a2c1d768 1438 snprintf(buf, buf_size, "%s((char *)&a%d + 1)",
1439 simplify_cast(cast, "*(u16 *)"), i + 1);
a3684be1 1440 }
1441 else
1442 ferr(po, "unaligned arg word load\n");
1443 }
1444 else if (is_src && (offset & 2) == 0)
a2c1d768 1445 snprintf(buf, buf_size, "%sa%d",
1446 simplify_cast(cast, "(u16)"), i + 1);
7ba45c34 1447 else
a2c1d768 1448 snprintf(buf, buf_size, "%s%sWORD(a%d)",
1449 cast, (offset & 2) ? "HI" : "LO", i + 1);
7ba45c34 1450 break;
1451
1452 case OPLM_DWORD:
3ebea2cf 1453 if (cast[0])
1454 prefix = cast;
1455 else if (is_src)
1456 prefix = "(u32)";
a3684be1 1457
de50b98b 1458 if (offset & 3) {
a3684be1 1459 unaligned = 1;
2b43685d 1460 if (is_lea)
1461 snprintf(buf, buf_size, "(u32)&a%d + %d",
1462 i + 1, offset & 3);
a3684be1 1463 else if (!is_src)
1464 ferr(po, "unaligned arg store\n");
1465 else {
1466 // mov edx, [ebp+arg_4+2]; movsx ecx, dx
2b43685d 1467 snprintf(buf, buf_size, "%s(a%d >> %d)",
1468 prefix, i + 1, (offset & 3) * 8);
a3684be1 1469 }
de50b98b 1470 }
1471 else {
1472 snprintf(buf, buf_size, "%s%sa%d",
1473 prefix, is_lea ? "&" : "", i + 1);
1474 }
7ba45c34 1475 break;
1476
1477 default:
de50b98b 1478 ferr(po, "bp_arg bad lmod: %d\n", popr->lmod);
7ba45c34 1479 }
1480
a3684be1 1481 if (unaligned)
1482 snprintf(g_comment, sizeof(g_comment), "%s unaligned", bp_arg);
1483
7ba45c34 1484 // common problem
bd96f656 1485 guess_lmod_from_c_type(&tmp_lmod, &g_func_pp->arg[i].type);
a2c1d768 1486 if (tmp_lmod != OPLM_DWORD
1487 && (unaligned || (!is_src && tmp_lmod < popr->lmod)))
1488 {
1489 ferr(po, "bp_arg arg%d/w offset %d and type '%s' is too small\n",
1490 i + 1, offset, g_func_pp->arg[i].type.name);
1491 }
4741fdfe 1492 // can't check this because msvc likes to reuse
1493 // arg space for scratch..
1494 //if (popr->is_ptr && popr->lmod != OPLM_DWORD)
1495 // ferr(po, "bp_arg arg%d: non-dword ptr access\n", i + 1);
91977a1c 1496 }
4f12f671 1497 else
1498 {
1bafb621 1499 if (g_stack_fsz == 0)
1500 ferr(po, "stack var access without stackframe\n");
a2c1d768 1501 g_stack_frame_used = 1;
850c9265 1502
39b168b8 1503 sf_ofs = g_stack_fsz + offset;
de50b98b 1504 lim = (ofs_reg[0] != 0) ? -4 : 0;
1505 if (offset > 0 || sf_ofs < lim)
39b168b8 1506 ferr(po, "bp_stack offset %d/%d\n", offset, g_stack_fsz);
850c9265 1507
1508 if (is_lea)
33c35af6 1509 prefix = "(u32)&";
3ebea2cf 1510 else
1511 prefix = cast;
850c9265 1512
de50b98b 1513 switch (popr->lmod)
850c9265 1514 {
1515 case OPLM_BYTE:
7ba45c34 1516 snprintf(buf, buf_size, "%ssf.b[%d%s%s]",
1517 prefix, sf_ofs, ofs_reg[0] ? "+" : "", ofs_reg);
850c9265 1518 break;
7ba45c34 1519
850c9265 1520 case OPLM_WORD:
7ba45c34 1521 if ((sf_ofs & 1) || ofs_reg[0] != 0) {
1522 // known unaligned or possibly unaligned
1523 strcat(g_comment, " unaligned");
1524 if (prefix[0] == 0)
1525 prefix = "*(u16 *)&";
1526 snprintf(buf, buf_size, "%ssf.b[%d%s%s]",
1527 prefix, sf_ofs, ofs_reg[0] ? "+" : "", ofs_reg);
1528 break;
1529 }
1530 snprintf(buf, buf_size, "%ssf.w[%d]", prefix, sf_ofs / 2);
850c9265 1531 break;
7ba45c34 1532
850c9265 1533 case OPLM_DWORD:
7ba45c34 1534 if ((sf_ofs & 3) || ofs_reg[0] != 0) {
1535 // known unaligned or possibly unaligned
1536 strcat(g_comment, " unaligned");
1537 if (prefix[0] == 0)
1538 prefix = "*(u32 *)&";
1539 snprintf(buf, buf_size, "%ssf.b[%d%s%s]",
1540 prefix, sf_ofs, ofs_reg[0] ? "+" : "", ofs_reg);
1541 break;
1542 }
1543 snprintf(buf, buf_size, "%ssf.d[%d]", prefix, sf_ofs / 4);
850c9265 1544 break;
7ba45c34 1545
850c9265 1546 default:
de50b98b 1547 ferr(po, "bp_stack bad lmod: %d\n", popr->lmod);
850c9265 1548 }
91977a1c 1549 }
1550}
c36e914d 1551
89ff3147 1552static void check_func_pp(struct parsed_op *po,
1553 const struct parsed_proto *pp, const char *pfx)
1554{
b74c31e3 1555 char buf[256];
1556
89ff3147 1557 if (pp->argc_reg != 0) {
b74c31e3 1558 if (/*!g_allow_regfunc &&*/ !pp->is_fastcall) {
1559 pp_print(buf, sizeof(buf), pp);
1560 ferr(po, "%s: unexpected reg arg in icall: %s\n", pfx, buf);
1561 }
89ff3147 1562 if (pp->argc_stack > 0 && pp->argc_reg != 2)
1563 ferr(po, "%s: %d reg arg(s) with %d stack arg(s)\n",
1564 pfx, pp->argc_reg, pp->argc_stack);
1565 }
1566}
1567
7aca4698 1568static const char *check_label_read_ref(struct parsed_op *po,
1569 const char *name)
3ebea2cf 1570{
840257f6 1571 const struct parsed_proto *pp;
1572
36595fd2 1573 pp = proto_parse(g_fhdr, name, 0);
840257f6 1574 if (pp == NULL)
1575 ferr(po, "proto_parse failed for ref '%s'\n", name);
1576
89ff3147 1577 if (pp->is_func)
1578 check_func_pp(po, pp, "ref");
7aca4698 1579
1580 return pp->name;
3ebea2cf 1581}
1582
91977a1c 1583static char *out_src_opr(char *buf, size_t buf_size,
591721d7 1584 struct parsed_op *po, struct parsed_opr *popr, const char *cast,
3ebea2cf 1585 int is_lea)
91977a1c 1586{
850c9265 1587 char tmp1[256], tmp2[256];
1588 char expr[256];
7aca4698 1589 const char *name;
a2c1d768 1590 char *p;
850c9265 1591 int ret;
1592
3ebea2cf 1593 if (cast == NULL)
1594 cast = "";
1595
91977a1c 1596 switch (popr->type) {
1597 case OPT_REG:
850c9265 1598 if (is_lea)
1599 ferr(po, "lea from reg?\n");
1600
91977a1c 1601 switch (popr->lmod) {
1602 case OPLM_DWORD:
3ebea2cf 1603 snprintf(buf, buf_size, "%s%s", cast, opr_reg_p(po, popr));
91977a1c 1604 break;
850c9265 1605 case OPLM_WORD:
a2c1d768 1606 snprintf(buf, buf_size, "%s%s",
1607 simplify_cast(cast, "(u16)"), opr_reg_p(po, popr));
850c9265 1608 break;
1609 case OPLM_BYTE:
5101a5f9 1610 if (popr->name[1] == 'h') // XXX..
a2c1d768 1611 snprintf(buf, buf_size, "%s(%s >> 8)",
1612 simplify_cast(cast, "(u8)"), opr_reg_p(po, popr));
5101a5f9 1613 else
a2c1d768 1614 snprintf(buf, buf_size, "%s%s",
1615 simplify_cast(cast, "(u8)"), opr_reg_p(po, popr));
850c9265 1616 break;
91977a1c 1617 default:
1618 ferr(po, "invalid src lmod: %d\n", popr->lmod);
1619 }
1620 break;
850c9265 1621
91977a1c 1622 case OPT_REGMEM:
1cd4a663 1623 if (is_stack_access(po, popr)) {
de50b98b 1624 stack_frame_access(po, popr, buf, buf_size,
3ebea2cf 1625 popr->name, cast, 1, is_lea);
91977a1c 1626 break;
1627 }
850c9265 1628
1629 strcpy(expr, popr->name);
1630 if (strchr(expr, '[')) {
1631 // special case: '[' can only be left for label[reg] form
1632 ret = sscanf(expr, "%[^[][%[^]]]", tmp1, tmp2);
1633 if (ret != 2)
1634 ferr(po, "parse failure for '%s'\n", expr);
a2c1d768 1635 if (tmp1[0] == '(') {
1636 // (off_4FFF50+3)[eax]
1637 p = strchr(tmp1 + 1, ')');
1638 if (p == NULL || p[1] != 0)
1639 ferr(po, "parse failure (2) for '%s'\n", expr);
1640 *p = 0;
1641 memmove(tmp1, tmp1 + 1, strlen(tmp1));
1642 }
33c35af6 1643 snprintf(expr, sizeof(expr), "(u32)&%s + %s", tmp1, tmp2);
850c9265 1644 }
1645
1646 // XXX: do we need more parsing?
1647 if (is_lea) {
1648 snprintf(buf, buf_size, "%s", expr);
1649 break;
1650 }
1651
a2c1d768 1652 snprintf(buf, buf_size, "%s(%s)",
1653 simplify_cast(cast, lmod_cast_u_ptr(po, popr->lmod)), expr);
91977a1c 1654 break;
850c9265 1655
91977a1c 1656 case OPT_LABEL:
7aca4698 1657 name = check_label_read_ref(po, popr->name);
3ebea2cf 1658 if (cast[0] == 0 && popr->is_ptr)
1659 cast = "(u32)";
2b43685d 1660
850c9265 1661 if (is_lea)
7aca4698 1662 snprintf(buf, buf_size, "(u32)&%s", name);
2b43685d 1663 else if (popr->size_lt)
1664 snprintf(buf, buf_size, "%s%s%s%s", cast,
1665 lmod_cast_u_ptr(po, popr->lmod),
7aca4698 1666 popr->is_array ? "" : "&", name);
850c9265 1667 else
7aca4698 1668 snprintf(buf, buf_size, "%s%s%s", cast, name,
7ba45c34 1669 popr->is_array ? "[0]" : "");
850c9265 1670 break;
1671
1672 case OPT_OFFSET:
7aca4698 1673 name = check_label_read_ref(po, popr->name);
3ebea2cf 1674 if (cast[0] == 0)
1675 cast = "(u32)";
850c9265 1676 if (is_lea)
1677 ferr(po, "lea an offset?\n");
7aca4698 1678 snprintf(buf, buf_size, "%s&%s", cast, name);
91977a1c 1679 break;
850c9265 1680
91977a1c 1681 case OPT_CONST:
850c9265 1682 if (is_lea)
1683 ferr(po, "lea from const?\n");
1684
a2c1d768 1685 printf_number(tmp1, sizeof(tmp1), popr->val);
ddaf8bd7 1686 if (popr->val == 0 && strchr(cast, '*'))
1687 snprintf(buf, buf_size, "NULL");
1688 else
1689 snprintf(buf, buf_size, "%s%s",
1690 simplify_cast_num(cast, popr->val), tmp1);
91977a1c 1691 break;
850c9265 1692
91977a1c 1693 default:
1694 ferr(po, "invalid src type: %d\n", popr->type);
1695 }
1696
1697 return buf;
1698}
c36e914d 1699
de50b98b 1700// note: may set is_ptr (we find that out late for ebp frame..)
91977a1c 1701static char *out_dst_opr(char *buf, size_t buf_size,
1702 struct parsed_op *po, struct parsed_opr *popr)
1703{
1704 switch (popr->type) {
1705 case OPT_REG:
1706 switch (popr->lmod) {
1707 case OPLM_DWORD:
1708 snprintf(buf, buf_size, "%s", opr_reg_p(po, popr));
1709 break;
850c9265 1710 case OPLM_WORD:
1711 // ugh..
1712 snprintf(buf, buf_size, "LOWORD(%s)", opr_reg_p(po, popr));
1713 break;
1714 case OPLM_BYTE:
1715 // ugh..
5101a5f9 1716 if (popr->name[1] == 'h') // XXX..
1717 snprintf(buf, buf_size, "BYTE1(%s)", opr_reg_p(po, popr));
1718 else
1719 snprintf(buf, buf_size, "LOBYTE(%s)", opr_reg_p(po, popr));
850c9265 1720 break;
91977a1c 1721 default:
1722 ferr(po, "invalid dst lmod: %d\n", popr->lmod);
1723 }
1724 break;
850c9265 1725
1726 case OPT_REGMEM:
1cd4a663 1727 if (is_stack_access(po, popr)) {
de50b98b 1728 stack_frame_access(po, popr, buf, buf_size,
3ebea2cf 1729 popr->name, "", 0, 0);
850c9265 1730 break;
1731 }
1732
3ebea2cf 1733 return out_src_opr(buf, buf_size, po, popr, NULL, 0);
850c9265 1734
bfa4a6ee 1735 case OPT_LABEL:
2b43685d 1736 if (popr->size_mismatch)
1737 snprintf(buf, buf_size, "%s%s%s",
1738 lmod_cast_u_ptr(po, popr->lmod),
1739 popr->is_array ? "" : "&", popr->name);
1740 else
1741 snprintf(buf, buf_size, "%s%s", popr->name,
1742 popr->is_array ? "[0]" : "");
bfa4a6ee 1743 break;
1744
91977a1c 1745 default:
1746 ferr(po, "invalid dst type: %d\n", popr->type);
1747 }
1748
1749 return buf;
1750}
c36e914d 1751
3ebea2cf 1752static char *out_src_opr_u32(char *buf, size_t buf_size,
1753 struct parsed_op *po, struct parsed_opr *popr)
1754{
1755 return out_src_opr(buf, buf_size, po, popr, NULL, 0);
1756}
1757
91977a1c 1758static void out_test_for_cc(char *buf, size_t buf_size,
940e8e66 1759 struct parsed_op *po, enum parsed_flag_op pfo, int is_inv,
69a3cdfc 1760 enum opr_lenmod lmod, const char *expr)
91977a1c 1761{
69a3cdfc 1762 const char *cast, *scast;
91977a1c 1763
69a3cdfc 1764 cast = lmod_cast_u(po, lmod);
1765 scast = lmod_cast_s(po, lmod);
1766
1767 switch (pfo) {
1768 case PFO_Z:
87bf6cec 1769 case PFO_BE: // CF=1||ZF=1; CF=0
850c9265 1770 snprintf(buf, buf_size, "(%s%s %s 0)",
940e8e66 1771 cast, expr, is_inv ? "!=" : "==");
91977a1c 1772 break;
850c9265 1773
5101a5f9 1774 case PFO_S:
1775 case PFO_L: // SF!=OF; OF=0
1776 snprintf(buf, buf_size, "(%s%s %s 0)",
940e8e66 1777 scast, expr, is_inv ? ">=" : "<");
5101a5f9 1778 break;
1779
87bf6cec 1780 case PFO_LE: // ZF=1||SF!=OF; OF=0
69a3cdfc 1781 snprintf(buf, buf_size, "(%s%s %s 0)",
940e8e66 1782 scast, expr, is_inv ? ">" : "<=");
850c9265 1783 break;
1784
91977a1c 1785 default:
69a3cdfc 1786 ferr(po, "%s: unhandled parsed_flag_op: %d\n", __func__, pfo);
91977a1c 1787 }
1788}
c36e914d 1789
850c9265 1790static void out_cmp_for_cc(char *buf, size_t buf_size,
a2c1d768 1791 struct parsed_op *po, enum parsed_flag_op pfo, int is_inv)
850c9265 1792{
a2c1d768 1793 const char *cast, *scast, *cast_use;
1794 char buf1[256], buf2[256];
1795 enum opr_lenmod lmod;
1796
1797 if (po->operand[0].lmod != po->operand[1].lmod)
1798 ferr(po, "%s: lmod mismatch: %d %d\n", __func__,
1799 po->operand[0].lmod, po->operand[1].lmod);
1800 lmod = po->operand[0].lmod;
850c9265 1801
69a3cdfc 1802 cast = lmod_cast_u(po, lmod);
1803 scast = lmod_cast_s(po, lmod);
850c9265 1804
a2c1d768 1805 switch (pfo) {
1806 case PFO_C:
1807 case PFO_Z:
1808 case PFO_BE: // !a
1809 cast_use = cast;
1810 break;
1811
1812 case PFO_S:
1813 case PFO_L: // !ge
1814 case PFO_LE:
1815 cast_use = scast;
1816 break;
1817
1818 default:
1819 ferr(po, "%s: unhandled parsed_flag_op: %d\n", __func__, pfo);
1820 }
1821
1822 out_src_opr(buf1, sizeof(buf1), po, &po->operand[0], cast_use, 0);
1823 out_src_opr(buf2, sizeof(buf2), po, &po->operand[1], cast_use, 0);
1824
69a3cdfc 1825 switch (pfo) {
5101a5f9 1826 case PFO_C:
1827 // note: must be unsigned compare
a2c1d768 1828 snprintf(buf, buf_size, "(%s %s %s)",
1829 buf1, is_inv ? ">=" : "<", buf2);
5101a5f9 1830 break;
1831
69a3cdfc 1832 case PFO_Z:
a2c1d768 1833 snprintf(buf, buf_size, "(%s %s %s)",
1834 buf1, is_inv ? "!=" : "==", buf2);
850c9265 1835 break;
1836
5101a5f9 1837 case PFO_BE: // !a
850c9265 1838 // note: must be unsigned compare
a2c1d768 1839 snprintf(buf, buf_size, "(%s %s %s)",
1840 buf1, is_inv ? ">" : "<=", buf2);
1841
1842 // annoying case
1843 if (is_inv && lmod == OPLM_BYTE
1844 && po->operand[1].type == OPT_CONST
1845 && po->operand[1].val == 0xff)
1846 {
1847 snprintf(g_comment, sizeof(g_comment), "if %s", buf);
1848 snprintf(buf, buf_size, "(0)");
1849 }
5101a5f9 1850 break;
1851
1852 // note: must be signed compare
1853 case PFO_S:
1854 snprintf(buf, buf_size, "(%s(%s - %s) %s 0)",
a2c1d768 1855 scast, buf1, buf2, is_inv ? ">=" : "<");
850c9265 1856 break;
1857
5101a5f9 1858 case PFO_L: // !ge
a2c1d768 1859 snprintf(buf, buf_size, "(%s %s %s)",
1860 buf1, is_inv ? ">=" : "<", buf2);
850c9265 1861 break;
1862
5101a5f9 1863 case PFO_LE:
a2c1d768 1864 snprintf(buf, buf_size, "(%s %s %s)",
1865 buf1, is_inv ? ">" : "<=", buf2);
5101a5f9 1866 break;
1867
850c9265 1868 default:
a2c1d768 1869 break;
850c9265 1870 }
1871}
1872
69a3cdfc 1873static void out_cmp_test(char *buf, size_t buf_size,
940e8e66 1874 struct parsed_op *po, enum parsed_flag_op pfo, int is_inv)
69a3cdfc 1875{
1876 char buf1[256], buf2[256], buf3[256];
1877
1878 if (po->op == OP_TEST) {
1879 if (IS(opr_name(po, 0), opr_name(po, 1))) {
3ebea2cf 1880 out_src_opr_u32(buf3, sizeof(buf3), po, &po->operand[0]);
69a3cdfc 1881 }
1882 else {
3ebea2cf 1883 out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
1884 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
69a3cdfc 1885 snprintf(buf3, sizeof(buf3), "(%s & %s)", buf1, buf2);
1886 }
940e8e66 1887 out_test_for_cc(buf, buf_size, po, pfo, is_inv,
69a3cdfc 1888 po->operand[0].lmod, buf3);
1889 }
1890 else if (po->op == OP_CMP) {
a2c1d768 1891 out_cmp_for_cc(buf, buf_size, po, pfo, is_inv);
69a3cdfc 1892 }
1893 else
1894 ferr(po, "%s: unhandled op: %d\n", __func__, po->op);
1895}
1896
850c9265 1897static void propagate_lmod(struct parsed_op *po, struct parsed_opr *popr1,
91977a1c 1898 struct parsed_opr *popr2)
1899{
1900 if (popr1->lmod == OPLM_UNSPEC && popr2->lmod == OPLM_UNSPEC)
1901 ferr(po, "missing lmod for both operands\n");
1902
1903 if (popr1->lmod == OPLM_UNSPEC)
1904 popr1->lmod = popr2->lmod;
1905 else if (popr2->lmod == OPLM_UNSPEC)
1906 popr2->lmod = popr1->lmod;
a3684be1 1907 else if (popr1->lmod != popr2->lmod) {
1908 if (popr1->type_from_var) {
1909 popr1->size_mismatch = 1;
1910 if (popr1->lmod < popr2->lmod)
1911 popr1->size_lt = 1;
1912 popr1->lmod = popr2->lmod;
1913 }
1914 else if (popr2->type_from_var) {
1915 popr2->size_mismatch = 1;
1916 if (popr2->lmod < popr1->lmod)
1917 popr2->size_lt = 1;
1918 popr2->lmod = popr1->lmod;
1919 }
1920 else
1921 ferr(po, "conflicting lmods: %d vs %d\n",
1922 popr1->lmod, popr2->lmod);
1923 }
91977a1c 1924}
c36e914d 1925
850c9265 1926static const char *op_to_c(struct parsed_op *po)
1927{
1928 switch (po->op)
1929 {
1930 case OP_ADD:
5101a5f9 1931 case OP_ADC:
850c9265 1932 return "+";
1933 case OP_SUB:
5101a5f9 1934 case OP_SBB:
850c9265 1935 return "-";
1936 case OP_AND:
1937 return "&";
1938 case OP_OR:
1939 return "|";
1940 case OP_XOR:
1941 return "^";
1942 case OP_SHL:
1943 return "<<";
1944 case OP_SHR:
1945 return ">>";
1946 case OP_MUL:
1947 case OP_IMUL:
1948 return "*";
1949 default:
1950 ferr(po, "op_to_c was supplied with %d\n", po->op);
1951 }
1952}
1953
7ae48d73 1954static void op_set_clear_flag(struct parsed_op *po,
1955 enum op_flags flag_set, enum op_flags flag_clear)
d4e3b5db 1956{
7ae48d73 1957 po->flags |= flag_set;
1958 po->flags &= ~flag_clear;
d4e3b5db 1959}
1960
de50b98b 1961// last op in stream - unconditional branch or ret
1962#define LAST_OP(_i) ((ops[_i].flags & OPF_TAIL) \
092f64e1 1963 || ((ops[_i].flags & (OPF_JMP|OPF_CJMP|OPF_RMD)) == OPF_JMP \
037f4971 1964 && ops[_i].op != OP_CALL))
de50b98b 1965
87bf6cec 1966static int scan_for_pop(int i, int opcnt, const char *reg,
d4e3b5db 1967 int magic, int depth, int *maxdepth, int do_flags)
850c9265 1968{
89ff3147 1969 const struct parsed_proto *pp;
87bf6cec 1970 struct parsed_op *po;
1971 int ret = 0;
4c45fa73 1972 int j;
87bf6cec 1973
850c9265 1974 for (; i < opcnt; i++) {
87bf6cec 1975 po = &ops[i];
1976 if (po->cc_scratch == magic)
1977 break; // already checked
1978 po->cc_scratch = magic;
1979
89ff3147 1980 if (po->flags & OPF_TAIL) {
1981 if (po->op == OP_CALL) {
1982 pp = proto_parse(g_fhdr, po->operand[0].name, 0);
1983 if (pp != NULL && pp->is_noreturn)
1984 // no stack cleanup for noreturn
1985 return ret;
1986 }
87bf6cec 1987 return -1; // deadend
89ff3147 1988 }
87bf6cec 1989
1bafb621 1990 if ((po->flags & OPF_RMD)
de50b98b 1991 || (po->op == OP_PUSH && po->argnum != 0)) // arg push
850c9265 1992 continue;
1993
87bf6cec 1994 if ((po->flags & OPF_JMP) && po->op != OP_CALL) {
4c45fa73 1995 if (po->btj != NULL) {
1996 // jumptable
da87ae38 1997 for (j = 0; j < po->btj->count; j++) {
4c45fa73 1998 ret |= scan_for_pop(po->btj->d[j].bt_i, opcnt, reg, magic,
1999 depth, maxdepth, do_flags);
2000 if (ret < 0)
2001 return ret; // dead end
2002 }
da87ae38 2003 return ret;
4c45fa73 2004 }
2005
87bf6cec 2006 if (po->bt_i < 0) {
2007 ferr(po, "dead branch\n");
2008 return -1;
2009 }
850c9265 2010
5c024ef7 2011 if (po->flags & OPF_CJMP) {
d4e3b5db 2012 ret |= scan_for_pop(po->bt_i, opcnt, reg, magic,
2013 depth, maxdepth, do_flags);
87bf6cec 2014 if (ret < 0)
2015 return ret; // dead end
2016 }
2017 else {
2018 i = po->bt_i - 1;
2019 }
2020 continue;
2021 }
2022
d4e3b5db 2023 if ((po->op == OP_POP || po->op == OP_PUSH)
2024 && po->operand[0].type == OPT_REG
87bf6cec 2025 && IS(po->operand[0].name, reg))
2026 {
da87ae38 2027 if (po->op == OP_PUSH && !(po->flags & OPF_FARG)) {
d4e3b5db 2028 depth++;
2029 if (depth > *maxdepth)
2030 *maxdepth = depth;
2031 if (do_flags)
7ae48d73 2032 op_set_clear_flag(po, OPF_RSAVE, OPF_RMD);
d4e3b5db 2033 }
da87ae38 2034 else if (po->op == OP_POP) {
2035 if (depth == 0) {
2036 if (do_flags)
2037 op_set_clear_flag(po, OPF_RMD, OPF_RSAVE);
2038 return 1;
2039 }
2040 else {
2041 depth--;
2042 if (depth < 0) // should not happen
2043 ferr(po, "fail with depth\n");
2044 if (do_flags)
2045 op_set_clear_flag(po, OPF_RSAVE, OPF_RMD);
2046 }
d4e3b5db 2047 }
87bf6cec 2048 }
850c9265 2049 }
2050
87bf6cec 2051 return ret;
850c9265 2052}
2053
69a3cdfc 2054// scan for pop starting from 'ret' op (all paths)
d4e3b5db 2055static int scan_for_pop_ret(int i, int opcnt, const char *reg,
2056 int flag_set)
850c9265 2057{
2058 int found = 0;
2059 int j;
2060
2061 for (; i < opcnt; i++) {
87bf6cec 2062 if (!(ops[i].flags & OPF_TAIL))
850c9265 2063 continue;
2064
2065 for (j = i - 1; j >= 0; j--) {
69a3cdfc 2066 if (ops[j].flags & OPF_RMD)
2067 continue;
2068 if (ops[j].flags & OPF_JMP)
850c9265 2069 return -1;
2070
2071 if (ops[j].op == OP_POP && ops[j].operand[0].type == OPT_REG
2072 && IS(ops[j].operand[0].name, reg))
2073 {
2074 found = 1;
d4e3b5db 2075 ops[j].flags |= flag_set;
850c9265 2076 break;
2077 }
2078
2079 if (g_labels[j][0] != 0)
2080 return -1;
2081 }
2082 }
2083
2084 return found ? 0 : -1;
2085}
2086
591721d7 2087static void scan_propagate_df(int i, int opcnt)
2088{
2089 struct parsed_op *po = &ops[i];
2090 int j;
2091
2092 for (; i < opcnt; i++) {
2093 po = &ops[i];
2094 if (po->flags & OPF_DF)
2095 return; // already resolved
2096 po->flags |= OPF_DF;
2097
2098 if (po->op == OP_CALL)
2099 ferr(po, "call with DF set?\n");
2100
2101 if (po->flags & OPF_JMP) {
2102 if (po->btj != NULL) {
2103 // jumptable
2104 for (j = 0; j < po->btj->count; j++)
2105 scan_propagate_df(po->btj->d[j].bt_i, opcnt);
2106 return;
2107 }
2108
2109 if (po->bt_i < 0) {
2110 ferr(po, "dead branch\n");
2111 return;
2112 }
2113
5c024ef7 2114 if (po->flags & OPF_CJMP)
591721d7 2115 scan_propagate_df(po->bt_i, opcnt);
2116 else
2117 i = po->bt_i - 1;
2118 continue;
2119 }
2120
2121 if (po->flags & OPF_TAIL)
2122 break;
2123
2124 if (po->op == OP_CLD) {
2125 po->flags |= OPF_RMD;
2126 return;
2127 }
2128 }
2129
2130 ferr(po, "missing DF clear?\n");
2131}
2132
1cd4a663 2133// is operand 'opr' modified by parsed_op 'po'?
5101a5f9 2134static int is_opr_modified(const struct parsed_opr *opr,
69a3cdfc 2135 const struct parsed_op *po)
2136{
89ff3147 2137 int mask;
2138
69a3cdfc 2139 if ((po->flags & OPF_RMD) || !(po->flags & OPF_DATA))
2140 return 0;
2141
89ff3147 2142 if (opr->type == OPT_REG) {
2143 if (po->op == OP_CALL) {
2144 mask = (1 << xAX) | (1 << xCX) | (1 << xDX);
2145 if ((1 << opr->reg) & mask)
2146 return 1;
2147 else
2148 return 0;
2149 }
2150
2151 if (po->operand[0].type == OPT_REG) {
2152 if (po->regmask_dst & (1 << opr->reg))
2153 return 1;
2154 else
2155 return 0;
2156 }
69a3cdfc 2157 }
2158
2159 return IS(po->operand[0].name, opr->name);
2160}
2161
5101a5f9 2162// is any operand of parsed_op 'po_test' modified by parsed_op 'po'?
2163static int is_any_opr_modified(const struct parsed_op *po_test,
89ff3147 2164 const struct parsed_op *po, int c_mode)
5101a5f9 2165{
89ff3147 2166 int mask;
5101a5f9 2167 int i;
2168
2169 if ((po->flags & OPF_RMD) || !(po->flags & OPF_DATA))
2170 return 0;
2171
de50b98b 2172 if (po_test->operand_cnt == 1 && po_test->operand[0].type == OPT_CONST)
2173 return 0;
2174
2175 if ((po_test->regmask_src | po_test->regmask_dst) & po->regmask_dst)
2176 return 1;
2177
2178 // in reality, it can wreck any register, but in decompiled C
2b43685d 2179 // version it can only overwrite eax or edx:eax
89ff3147 2180 mask = (1 << xAX) | (1 << xDX);
2181 if (!c_mode)
2182 mask |= 1 << xCX;
2183
de50b98b 2184 if (po->op == OP_CALL
89ff3147 2185 && ((po_test->regmask_src | po_test->regmask_dst) & mask))
5101a5f9 2186 return 1;
2187
2188 for (i = 0; i < po_test->operand_cnt; i++)
2189 if (IS(po_test->operand[i].name, po->operand[0].name))
2190 return 1;
2191
2192 return 0;
2193}
2194
940e8e66 2195// scan for any po_test operand modification in range given
89ff3147 2196static int scan_for_mod(struct parsed_op *po_test, int i, int opcnt,
2197 int c_mode)
69a3cdfc 2198{
2b43685d 2199 if (po_test->operand_cnt == 1 && po_test->operand[0].type == OPT_CONST)
2200 return -1;
2201
69a3cdfc 2202 for (; i < opcnt; i++) {
89ff3147 2203 if (is_any_opr_modified(po_test, &ops[i], c_mode))
69a3cdfc 2204 return i;
2205 }
2206
2207 return -1;
2208}
2209
940e8e66 2210// scan for po_test operand[0] modification in range given
2211static int scan_for_mod_opr0(struct parsed_op *po_test,
2212 int i, int opcnt)
2213{
2214 for (; i < opcnt; i++) {
2215 if (is_opr_modified(&po_test->operand[0], &ops[i]))
2216 return i;
2217 }
2218
2219 return -1;
2220}
2221
04f8a628 2222static int scan_for_flag_set(int i, int magic, int *branched,
2223 int *setters, int *setter_cnt)
69a3cdfc 2224{
04f8a628 2225 struct label_ref *lr;
2b43685d 2226 int ret;
de50b98b 2227
2228 while (i >= 0) {
04f8a628 2229 if (ops[i].cc_scratch == magic) {
2230 ferr(&ops[i], "%s looped\n", __func__);
2231 return -1;
2232 }
2233 ops[i].cc_scratch = magic;
2234
de50b98b 2235 if (g_labels[i][0] != 0) {
2b43685d 2236 *branched = 1;
04f8a628 2237
2238 lr = &g_label_refs[i];
2239 for (; lr->next; lr = lr->next) {
2240 ret = scan_for_flag_set(lr->i, magic,
2241 branched, setters, setter_cnt);
2242 if (ret < 0)
2243 return ret;
2244 }
2245
de50b98b 2246 if (i > 0 && LAST_OP(i - 1)) {
94d447fb 2247 i = lr->i;
de50b98b 2248 continue;
2249 }
04f8a628 2250 ret = scan_for_flag_set(lr->i, magic,
2251 branched, setters, setter_cnt);
2b43685d 2252 if (ret < 0)
2253 return ret;
de50b98b 2254 }
2255 i--;
2256
2b43685d 2257 if (ops[i].flags & OPF_FLAGS) {
2258 setters[*setter_cnt] = i;
2259 (*setter_cnt)++;
2260 return 0;
2261 }
69a3cdfc 2262
5c024ef7 2263 if ((ops[i].flags & (OPF_JMP|OPF_CJMP)) == OPF_JMP)
69a3cdfc 2264 return -1;
69a3cdfc 2265 }
2266
2267 return -1;
2268}
2269
5101a5f9 2270// scan back for cdq, if anything modifies edx, fail
2271static int scan_for_cdq_edx(int i)
2272{
cdfaeed7 2273 while (i >= 0) {
2274 if (g_labels[i][0] != 0) {
2275 if (g_label_refs[i].next != NULL)
2276 return -1;
2277 if (i > 0 && LAST_OP(i - 1)) {
2278 i = g_label_refs[i].i;
2279 continue;
2280 }
2281 return -1;
2282 }
2283 i--;
2284
5101a5f9 2285 if (ops[i].op == OP_CDQ)
2286 return i;
2287
2288 if (ops[i].regmask_dst & (1 << xDX))
2289 return -1;
5101a5f9 2290 }
2291
2292 return -1;
2293}
2294
64c59faf 2295static int scan_for_reg_clear(int i, int reg)
2296{
cdfaeed7 2297 while (i >= 0) {
2298 if (g_labels[i][0] != 0) {
2299 if (g_label_refs[i].next != NULL)
2300 return -1;
2301 if (i > 0 && LAST_OP(i - 1)) {
2302 i = g_label_refs[i].i;
2303 continue;
2304 }
2305 return -1;
2306 }
2307 i--;
2308
64c59faf 2309 if (ops[i].op == OP_XOR
2310 && ops[i].operand[0].lmod == OPLM_DWORD
2311 && ops[i].operand[0].reg == ops[i].operand[1].reg
2312 && ops[i].operand[0].reg == reg)
2313 return i;
2314
2315 if (ops[i].regmask_dst & (1 << reg))
2316 return -1;
64c59faf 2317 }
2318
2319 return -1;
2320}
2321
1bafb621 2322// scan for positive, constant esp adjust
4741fdfe 2323static int scan_for_esp_adjust(int i, int opcnt, int *adj,
2324 int *multipath)
1bafb621 2325{
7ba45c34 2326 struct parsed_op *po;
46411e6c 2327 int first_pop = -1;
4741fdfe 2328
2329 *adj = *multipath = 0;
7ba45c34 2330
1bafb621 2331 for (; i < opcnt; i++) {
7ba45c34 2332 po = &ops[i];
2333
a2c1d768 2334 if (g_labels[i][0] != 0)
4741fdfe 2335 *multipath = 1;
a2c1d768 2336
7ba45c34 2337 if (po->op == OP_ADD && po->operand[0].reg == xSP) {
2338 if (po->operand[1].type != OPT_CONST)
1bafb621 2339 ferr(&ops[i], "non-const esp adjust?\n");
7ba45c34 2340 *adj += po->operand[1].val;
1bafb621 2341 if (*adj & 3)
2342 ferr(&ops[i], "unaligned esp adjust: %x\n", *adj);
2343 return i;
2344 }
108e9fe3 2345 else if (po->op == OP_PUSH && !(po->flags & OPF_RMD)) {
5c024ef7 2346 //if (first_pop == -1)
2347 // first_pop = -2; // none
7ba45c34 2348 *adj -= lmod_bytes(po, po->operand[0].lmod);
46411e6c 2349 }
5c024ef7 2350 else if (po->op == OP_POP && !(po->flags & OPF_RMD)) {
108e9fe3 2351 // seems like msvc only uses 'pop ecx' for stack realignment..
2352 if (po->operand[0].type != OPT_REG || po->operand[0].reg != xCX)
2353 break;
5c024ef7 2354 if (first_pop == -1 && *adj >= 0)
46411e6c 2355 first_pop = i;
7ba45c34 2356 *adj += lmod_bytes(po, po->operand[0].lmod);
46411e6c 2357 }
e56ab892 2358 else if (po->flags & (OPF_JMP|OPF_TAIL)) {
4741fdfe 2359 if (po->op == OP_JMP && po->btj == NULL) {
2360 i = po->bt_i - 1;
2361 continue;
2362 }
e56ab892 2363 if (po->op != OP_CALL)
a2c1d768 2364 break;
e56ab892 2365 if (po->operand[0].type != OPT_LABEL)
a2c1d768 2366 break;
092f64e1 2367 if (po->pp != NULL && po->pp->is_stdcall)
89ff3147 2368 break;
e56ab892 2369 }
a2c1d768 2370 }
7ba45c34 2371
108e9fe3 2372 if (first_pop >= 0) {
a2c1d768 2373 // probably 'pop ecx' was used..
46411e6c 2374 return first_pop;
1bafb621 2375 }
2376
2377 return -1;
2378}
2379
a3684be1 2380static void scan_fwd_set_flags(int i, int opcnt, int magic, int flags)
2381{
2382 struct parsed_op *po;
2383 int j;
2384
2385 if (i < 0)
2386 ferr(ops, "%s: followed bad branch?\n", __func__);
2387
2388 for (; i < opcnt; i++) {
2389 po = &ops[i];
2390 if (po->cc_scratch == magic)
2391 return;
2392 po->cc_scratch = magic;
2393 po->flags |= flags;
2394
2395 if ((po->flags & OPF_JMP) && po->op != OP_CALL) {
2396 if (po->btj != NULL) {
2397 // jumptable
2398 for (j = 0; j < po->btj->count; j++)
2399 scan_fwd_set_flags(po->btj->d[j].bt_i, opcnt, magic, flags);
2400 return;
2401 }
2402
2403 scan_fwd_set_flags(po->bt_i, opcnt, magic, flags);
5c024ef7 2404 if (!(po->flags & OPF_CJMP))
a3684be1 2405 return;
2406 }
2407 if (po->flags & OPF_TAIL)
2408 return;
2409 }
2410}
2411
1cd4a663 2412static const struct parsed_proto *try_recover_pp(
da87ae38 2413 struct parsed_op *po, const struct parsed_opr *opr, int *search_instead)
1cd4a663 2414{
2415 const struct parsed_proto *pp = NULL;
89ff3147 2416 char buf[256];
2417 char *p;
1cd4a663 2418
2419 // maybe an arg of g_func?
2420 if (opr->type == OPT_REGMEM && is_stack_access(po, opr))
2421 {
2422 char ofs_reg[16] = { 0, };
2423 int arg, arg_s, arg_i;
2424 int stack_ra = 0;
2425 int offset = 0;
2426
2427 parse_stack_access(po, opr->name, ofs_reg,
037f4971 2428 &offset, &stack_ra, NULL, 0);
1cd4a663 2429 if (ofs_reg[0] != 0)
2430 ferr(po, "offset reg on arg access?\n");
da87ae38 2431 if (offset <= stack_ra) {
2432 // search who set the stack var instead
2433 if (search_instead != NULL)
2434 *search_instead = 1;
2435 return NULL;
2436 }
1cd4a663 2437
2438 arg_i = (offset - stack_ra - 4) / 4;
2439 for (arg = arg_s = 0; arg < g_func_pp->argc; arg++) {
2440 if (g_func_pp->arg[arg].reg != NULL)
2441 continue;
2442 if (arg_s == arg_i)
2443 break;
2444 arg_s++;
2445 }
2446 if (arg == g_func_pp->argc)
2447 ferr(po, "stack arg %d not in prototype?\n", arg_i);
2448
2449 pp = g_func_pp->arg[arg].fptr;
2450 if (pp == NULL)
46411e6c 2451 ferr(po, "icall sa: arg%d is not a fptr?\n", arg + 1);
89ff3147 2452 check_func_pp(po, pp, "icall arg");
2453 }
2454 else if (opr->type == OPT_REGMEM && strchr(opr->name + 1, '[')) {
2455 // label[index]
2456 p = strchr(opr->name + 1, '[');
2457 memcpy(buf, opr->name, p - opr->name);
2458 buf[p - opr->name] = 0;
2459 pp = proto_parse(g_fhdr, buf, 0);
1cd4a663 2460 }
2461 else if (opr->type == OPT_OFFSET || opr->type == OPT_LABEL) {
36595fd2 2462 pp = proto_parse(g_fhdr, opr->name, 0);
1cd4a663 2463 if (pp == NULL)
2464 ferr(po, "proto_parse failed for icall from '%s'\n", opr->name);
89ff3147 2465 check_func_pp(po, pp, "reg-fptr ref");
1cd4a663 2466 }
2467
2468 return pp;
2469}
2470
da87ae38 2471static void scan_for_call_type(int i, const struct parsed_opr *opr,
89ff3147 2472 int magic, const struct parsed_proto **pp_found, int *multi)
1cd4a663 2473{
2474 const struct parsed_proto *pp = NULL;
2475 struct parsed_op *po;
2476 struct label_ref *lr;
2477
037f4971 2478 ops[i].cc_scratch = magic;
1cd4a663 2479
037f4971 2480 while (1) {
1cd4a663 2481 if (g_labels[i][0] != 0) {
2482 lr = &g_label_refs[i];
2483 for (; lr != NULL; lr = lr->next)
89ff3147 2484 scan_for_call_type(lr->i, opr, magic, pp_found, multi);
46411e6c 2485 if (i > 0 && LAST_OP(i - 1))
2486 return;
1cd4a663 2487 }
037f4971 2488
1cd4a663 2489 i--;
037f4971 2490 if (i < 0)
2491 break;
2492
2493 if (ops[i].cc_scratch == magic)
2494 return;
2495 ops[i].cc_scratch = magic;
1cd4a663 2496
2497 if (!(ops[i].flags & OPF_DATA))
2498 continue;
2499 if (!is_opr_modified(opr, &ops[i]))
2500 continue;
2501 if (ops[i].op != OP_MOV && ops[i].op != OP_LEA) {
2502 // most probably trashed by some processing
2503 *pp_found = NULL;
2504 return;
2505 }
2506
2507 opr = &ops[i].operand[1];
2508 if (opr->type != OPT_REG)
2509 break;
2510 }
2511
2512 po = (i >= 0) ? &ops[i] : ops;
2513
2514 if (i < 0) {
2515 // reached the top - can only be an arg-reg
2516 if (opr->type != OPT_REG)
2517 return;
2518
2519 for (i = 0; i < g_func_pp->argc; i++) {
2520 if (g_func_pp->arg[i].reg == NULL)
2521 continue;
2522 if (IS(opr->name, g_func_pp->arg[i].reg))
2523 break;
2524 }
2525 if (i == g_func_pp->argc)
2526 return;
2527 pp = g_func_pp->arg[i].fptr;
2528 if (pp == NULL)
46411e6c 2529 ferr(po, "icall: arg%d (%s) is not a fptr?\n",
2530 i + 1, g_func_pp->arg[i].reg);
89ff3147 2531 check_func_pp(po, pp, "icall reg-arg");
1cd4a663 2532 }
2533 else
da87ae38 2534 pp = try_recover_pp(po, opr, NULL);
1cd4a663 2535
89ff3147 2536 if (*pp_found != NULL && pp != NULL && *pp_found != pp) {
1cd4a663 2537 if (!IS((*pp_found)->ret_type.name, pp->ret_type.name)
2538 || (*pp_found)->is_stdcall != pp->is_stdcall
89ff3147 2539 || (*pp_found)->is_fptr != pp->is_fptr
1cd4a663 2540 || (*pp_found)->argc != pp->argc
2541 || (*pp_found)->argc_reg != pp->argc_reg
2542 || (*pp_found)->argc_stack != pp->argc_stack)
2543 {
2544 ferr(po, "icall: parsed_proto mismatch\n");
2545 }
89ff3147 2546 *multi = 1;
1cd4a663 2547 }
2548 if (pp != NULL)
2549 *pp_found = pp;
2550}
2551
89ff3147 2552static const struct parsed_proto *resolve_icall(int i, int opcnt,
2553 int *multi_src)
1cd4a663 2554{
2555 const struct parsed_proto *pp = NULL;
da87ae38 2556 int search_advice = 0;
1cd4a663 2557
89ff3147 2558 *multi_src = 0;
2559
1cd4a663 2560 switch (ops[i].operand[0].type) {
2561 case OPT_REGMEM:
2562 case OPT_LABEL:
2563 case OPT_OFFSET:
da87ae38 2564 pp = try_recover_pp(&ops[i], &ops[i].operand[0], &search_advice);
2565 if (!search_advice)
2566 break;
2567 // fallthrough
1cd4a663 2568 default:
89ff3147 2569 scan_for_call_type(i, &ops[i].operand[0], i + opcnt * 9, &pp,
2570 multi_src);
1cd4a663 2571 break;
2572 }
2573
2574 return pp;
2575}
2576
1f84f6b3 2577static int try_resolve_const(int i, const struct parsed_opr *opr,
2578 int magic, unsigned int *val)
2579{
2580 struct label_ref *lr;
2581 int ret = 0;
2582
2583 ops[i].cc_scratch = magic;
2584
2585 while (1) {
2586 if (g_labels[i][0] != 0) {
2587 lr = &g_label_refs[i];
2588 for (; lr != NULL; lr = lr->next)
2589 ret |= try_resolve_const(lr->i, opr, magic, val);
2590 if (i > 0 && LAST_OP(i - 1))
2591 return ret;
2592 }
2593
2594 i--;
2595 if (i < 0)
2596 return -1;
2597
2598 if (ops[i].cc_scratch == magic)
2599 return 0;
2600 ops[i].cc_scratch = magic;
2601
2602 if (!(ops[i].flags & OPF_DATA))
2603 continue;
2604 if (!is_opr_modified(opr, &ops[i]))
2605 continue;
2606 if (ops[i].op != OP_MOV && ops[i].operand[1].type != OPT_CONST)
2607 return -1;
2608
2609 *val = ops[i].operand[1].val;
2610 return 1;
2611 }
2612}
2613
89ff3147 2614static int collect_call_args_r(struct parsed_op *po, int i,
75ad0378 2615 struct parsed_proto *pp, int *regmask, int *save_arg_vars, int arg,
a3684be1 2616 int magic, int need_op_saving, int may_reuse)
e56ab892 2617{
2618 struct parsed_proto *pp_tmp;
2619 struct label_ref *lr;
2b43685d 2620 int need_to_save_current;
e56ab892 2621 int ret = 0;
2622 int j;
2623
a3684be1 2624 if (i < 0) {
a2c1d768 2625 ferr(po, "dead label encountered\n");
a3684be1 2626 return -1;
2627 }
e56ab892 2628
de50b98b 2629 for (; arg < pp->argc; arg++)
e56ab892 2630 if (pp->arg[arg].reg == NULL)
2631 break;
a3684be1 2632 magic = (magic & 0xffffff) | (arg << 24);
e56ab892 2633
89ff3147 2634 for (j = i; j >= 0 && (arg < pp->argc || pp->is_unresolved); )
e56ab892 2635 {
a3684be1 2636 if (((ops[j].cc_scratch ^ magic) & 0xffffff) == 0) {
2637 if (ops[j].cc_scratch != magic) {
2638 ferr(&ops[j], "arg collect hit same path with diff args for %s\n",
2639 pp->name);
2640 return -1;
2641 }
2642 // ok: have already been here
2643 return 0;
2644 }
2645 ops[j].cc_scratch = magic;
2646
a2c1d768 2647 if (g_labels[j][0] != 0 && g_label_refs[j].i != -1) {
e56ab892 2648 lr = &g_label_refs[j];
2649 if (lr->next != NULL)
2650 need_op_saving = 1;
a652aa9f 2651 for (; lr->next; lr = lr->next) {
5c024ef7 2652 if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
a652aa9f 2653 may_reuse = 1;
89ff3147 2654 ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
a3684be1 2655 arg, magic, need_op_saving, may_reuse);
2656 if (ret < 0)
2657 return ret;
a652aa9f 2658 }
e56ab892 2659
5c024ef7 2660 if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
a652aa9f 2661 may_reuse = 1;
de50b98b 2662 if (j > 0 && LAST_OP(j - 1)) {
e56ab892 2663 // follow last branch in reverse
2664 j = lr->i;
2665 continue;
2666 }
2667 need_op_saving = 1;
89ff3147 2668 ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
a3684be1 2669 arg, magic, need_op_saving, may_reuse);
2670 if (ret < 0)
2671 return ret;
e56ab892 2672 }
2673 j--;
2674
2675 if (ops[j].op == OP_CALL)
2676 {
89ff3147 2677 if (pp->is_unresolved)
2678 break;
2679
092f64e1 2680 pp_tmp = ops[j].pp;
e56ab892 2681 if (pp_tmp == NULL)
7ae48d73 2682 ferr(po, "arg collect hit unparsed call '%s'\n",
2683 ops[j].operand[0].name);
a652aa9f 2684 if (may_reuse && pp_tmp->argc_stack > 0)
de50b98b 2685 ferr(po, "arg collect %d/%d hit '%s' with %d stack args\n",
2686 arg, pp->argc, opr_name(&ops[j], 0), pp_tmp->argc_stack);
e56ab892 2687 }
de50b98b 2688 else if (ops[j].op == OP_ADD && ops[j].operand[0].reg == xSP) {
89ff3147 2689 if (pp->is_unresolved)
2690 break;
2691
de50b98b 2692 ferr(po, "arg collect %d/%d hit esp adjust\n",
2693 arg, pp->argc);
2694 }
2695 else if (ops[j].op == OP_POP) {
89ff3147 2696 if (pp->is_unresolved)
2697 break;
2698
de50b98b 2699 ferr(po, "arg collect %d/%d hit pop\n", arg, pp->argc);
2700 }
5c024ef7 2701 else if (ops[j].flags & OPF_CJMP)
de50b98b 2702 {
89ff3147 2703 if (pp->is_unresolved)
2704 break;
2705
a652aa9f 2706 may_reuse = 1;
de50b98b 2707 }
2708 else if (ops[j].op == OP_PUSH && !(ops[j].flags & OPF_FARG))
e56ab892 2709 {
89ff3147 2710 if (pp->is_unresolved && (ops[j].flags & OPF_RMD))
2711 break;
2712
e56ab892 2713 pp->arg[arg].datap = &ops[j];
2b43685d 2714 need_to_save_current = 0;
e56ab892 2715 if (!need_op_saving) {
89ff3147 2716 ret = scan_for_mod(&ops[j], j + 1, i, 1);
2b43685d 2717 need_to_save_current = (ret >= 0);
e56ab892 2718 }
2b43685d 2719 if (need_op_saving || need_to_save_current) {
e56ab892 2720 // mark this push as one that needs operand saving
2721 ops[j].flags &= ~OPF_RMD;
de50b98b 2722 if (ops[j].argnum == 0) {
2723 ops[j].argnum = arg + 1;
2724 *save_arg_vars |= 1 << arg;
2725 }
2726 else if (ops[j].argnum < arg + 1)
2727 ferr(&ops[j], "argnum conflict (%d<%d) for '%s'\n",
2728 ops[j].argnum, arg + 1, pp->name);
e56ab892 2729 }
de50b98b 2730 else if (ops[j].argnum == 0)
e56ab892 2731 ops[j].flags |= OPF_RMD;
2732
a652aa9f 2733 // some PUSHes are reused by different calls on other branches,
de50b98b 2734 // but that can't happen if we didn't branch, so they
2735 // can be removed from future searches (handles nested calls)
a652aa9f 2736 if (!may_reuse)
de50b98b 2737 ops[j].flags |= OPF_FARG;
2738
da87ae38 2739 ops[j].flags &= ~OPF_RSAVE;
2740
89ff3147 2741 arg++;
2742 if (!pp->is_unresolved) {
2743 // next arg
2744 for (; arg < pp->argc; arg++)
2745 if (pp->arg[arg].reg == NULL)
2746 break;
2747 }
a3684be1 2748 magic = (magic & 0xffffff) | (arg << 24);
75ad0378 2749
2750 // tracking reg usage
2751 if (ops[j].operand[0].type == OPT_REG)
2752 *regmask |= 1 << ops[j].operand[0].reg;
e56ab892 2753 }
2754 }
2755
2756 if (arg < pp->argc) {
2757 ferr(po, "arg collect failed for '%s': %d/%d\n",
2758 pp->name, arg, pp->argc);
89ff3147 2759 return -1;
e56ab892 2760 }
89ff3147 2761
2762 return arg;
2763}
2764
2765static int collect_call_args(struct parsed_op *po, int i,
2766 struct parsed_proto *pp, int *regmask, int *save_arg_vars,
2767 int magic)
2768{
2769 int ret;
2770 int a;
2771
2772 ret = collect_call_args_r(po, i, pp, regmask, save_arg_vars,
2773 0, magic, 0, 0);
2774 if (ret < 0)
2775 return ret;
2776
2777 if (pp->is_unresolved) {
2778 pp->argc += ret;
2779 pp->argc_stack += ret;
2780 for (a = 0; a < pp->argc; a++)
2781 if (pp->arg[a].type.name == NULL)
2782 pp->arg[a].type.name = strdup("int");
2783 }
2784
e56ab892 2785 return ret;
2786}
2787
037f4971 2788// early check for tail call or branch back
2789static int is_like_tailjmp(int j)
2790{
2791 if (!(ops[j].flags & OPF_JMP))
2792 return 0;
2793
2794 if (ops[j].op == OP_JMP && !ops[j].operand[0].had_ds)
2795 // probably local branch back..
2796 return 1;
2797 if (ops[j].op == OP_CALL)
2798 // probably noreturn call..
2799 return 1;
2800
2801 return 0;
2802}
2803
89ff3147 2804static void pp_insert_reg_arg(struct parsed_proto *pp, const char *reg)
2805{
2806 int i;
2807
2808 for (i = 0; i < pp->argc; i++)
2809 if (pp->arg[i].reg == NULL)
2810 break;
2811
2812 if (pp->argc_stack)
2813 memmove(&pp->arg[i + 1], &pp->arg[i],
2814 sizeof(pp->arg[0]) * pp->argc_stack);
2815 memset(&pp->arg[i], 0, sizeof(pp->arg[i]));
2816 pp->arg[i].reg = strdup(reg);
2817 pp->arg[i].type.name = strdup("int");
2818 pp->argc++;
2819 pp->argc_reg++;
2820}
2821
4c45fa73 2822static void add_label_ref(struct label_ref *lr, int op_i)
2823{
2824 struct label_ref *lr_new;
2825
2826 if (lr->i == -1) {
2827 lr->i = op_i;
2828 return;
2829 }
2830
2831 lr_new = calloc(1, sizeof(*lr_new));
2832 lr_new->i = op_i;
a652aa9f 2833 lr_new->next = lr->next;
4c45fa73 2834 lr->next = lr_new;
2835}
2836
04f8a628 2837static void output_std_flags(FILE *fout, struct parsed_op *po,
2838 int *pfomask, const char *dst_opr_text)
2839{
2840 if (*pfomask & (1 << PFO_Z)) {
2841 fprintf(fout, "\n cond_z = (%s%s == 0);",
2842 lmod_cast_u(po, po->operand[0].lmod), dst_opr_text);
2843 *pfomask &= ~(1 << PFO_Z);
2844 }
2845 if (*pfomask & (1 << PFO_S)) {
2846 fprintf(fout, "\n cond_s = (%s%s < 0);",
2847 lmod_cast_s(po, po->operand[0].lmod), dst_opr_text);
2848 *pfomask &= ~(1 << PFO_S);
2849 }
2850}
2851
c0050df6 2852static void output_pp_attrs(FILE *fout, const struct parsed_proto *pp,
2853 int is_noreturn)
2854{
2855 if (pp->is_fastcall)
2856 fprintf(fout, "__fastcall ");
2857 else if (pp->is_stdcall && pp->argc_reg == 0)
2858 fprintf(fout, "__stdcall ");
2859 if (pp->is_noreturn || is_noreturn)
2860 fprintf(fout, "noreturn ");
2861}
2862
91977a1c 2863static void gen_func(FILE *fout, FILE *fhdr, const char *funcn, int opcnt)
2864{
69a3cdfc 2865 struct parsed_op *po, *delayed_flag_op = NULL, *tmp_op;
850c9265 2866 struct parsed_opr *last_arith_dst = NULL;
3ebea2cf 2867 char buf1[256], buf2[256], buf3[256], cast[64];
bd96f656 2868 const struct parsed_proto *pp_c;
ddaf8bd7 2869 struct parsed_proto *pp, *pp_tmp;
4c45fa73 2870 struct parsed_data *pd;
91977a1c 2871 const char *tmpname;
1f84f6b3 2872 unsigned int uval;
69a3cdfc 2873 int save_arg_vars = 0;
cb090db0 2874 int cond_vars = 0;
108e9fe3 2875 int need_tmp_var = 0;
2fe80fdb 2876 int need_tmp64 = 0;
91977a1c 2877 int had_decl = 0;
3ebea2cf 2878 int label_pending = 0;
d4e3b5db 2879 int regmask_save = 0;
91977a1c 2880 int regmask_arg = 0;
a3684be1 2881 int regmask_now = 0;
ddaf8bd7 2882 int regmask_init = 0;
91977a1c 2883 int regmask = 0;
940e8e66 2884 int pfomask = 0;
64c59faf 2885 int found = 0;
d4e3b5db 2886 int depth = 0;
91977a1c 2887 int no_output;
4c45fa73 2888 int i, j, l;
91977a1c 2889 int arg;
91977a1c 2890 int reg;
2891 int ret;
2892
1bafb621 2893 g_bp_frame = g_sp_frame = g_stack_fsz = 0;
a2c1d768 2894 g_stack_frame_used = 0;
91977a1c 2895
36595fd2 2896 g_func_pp = proto_parse(fhdr, funcn, 0);
bd96f656 2897 if (g_func_pp == NULL)
91977a1c 2898 ferr(ops, "proto_parse failed for '%s'\n", funcn);
2899
bd96f656 2900 for (i = 0; i < g_func_pp->argc; i++) {
89ff3147 2901 if (g_func_pp->arg[i].reg != NULL) {
2902 reg = char_array_i(regs_r32,
2903 ARRAY_SIZE(regs_r32), g_func_pp->arg[i].reg);
2904 if (reg < 0)
2905 ferr(ops, "arg '%s' is not a reg?\n", g_func_pp->arg[i].reg);
2906 regmask_arg |= 1 << reg;
2907 }
91977a1c 2908 }
91977a1c 2909
2910 // pass1:
1bafb621 2911 // - handle ebp/esp frame, remove ops related to it
91977a1c 2912 if (ops[0].op == OP_PUSH && IS(opr_name(&ops[0], 0), "ebp")
2913 && ops[1].op == OP_MOV
2914 && IS(opr_name(&ops[1], 0), "ebp")
2915 && IS(opr_name(&ops[1], 1), "esp"))
2916 {
87bf6cec 2917 int ecx_push = 0;
2918
91977a1c 2919 g_bp_frame = 1;
69a3cdfc 2920 ops[0].flags |= OPF_RMD;
2921 ops[1].flags |= OPF_RMD;
4c45fa73 2922 i = 2;
91977a1c 2923
2924 if (ops[2].op == OP_SUB && IS(opr_name(&ops[2], 0), "esp")) {
1bafb621 2925 g_stack_fsz = opr_const(&ops[2], 1);
69a3cdfc 2926 ops[2].flags |= OPF_RMD;
4c45fa73 2927 i++;
91977a1c 2928 }
87bf6cec 2929 else {
2930 // another way msvc builds stack frame..
2931 i = 2;
2932 while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
1bafb621 2933 g_stack_fsz += 4;
87bf6cec 2934 ops[i].flags |= OPF_RMD;
2935 ecx_push++;
2936 i++;
2937 }
4c45fa73 2938 // and another way..
2939 if (i == 2 && ops[i].op == OP_MOV && ops[i].operand[0].reg == xAX
2940 && ops[i].operand[1].type == OPT_CONST
2941 && ops[i + 1].op == OP_CALL
2942 && IS(opr_name(&ops[i + 1], 0), "__alloca_probe"))
2943 {
2944 g_stack_fsz += ops[i].operand[1].val;
2945 ops[i].flags |= OPF_RMD;
2946 i++;
2947 ops[i].flags |= OPF_RMD;
2948 i++;
2949 }
87bf6cec 2950 }
91977a1c 2951
64c59faf 2952 found = 0;
91977a1c 2953 do {
2954 for (; i < opcnt; i++)
2955 if (ops[i].op == OP_RET)
2956 break;
2fe80fdb 2957 j = i - 1;
2958 if (i == opcnt && (ops[j].flags & OPF_JMP)) {
037f4971 2959 if (found && is_like_tailjmp(j))
2fe80fdb 2960 break;
2fe80fdb 2961 j--;
2962 }
64c59faf 2963
2fe80fdb 2964 if ((ops[j].op == OP_POP && IS(opr_name(&ops[j], 0), "ebp"))
2965 || ops[j].op == OP_LEAVE)
591721d7 2966 {
2fe80fdb 2967 ops[j].flags |= OPF_RMD;
591721d7 2968 }
e56ab892 2969 else if (!(g_ida_func_attr & IDAFA_NORETURN))
2fe80fdb 2970 ferr(&ops[j], "'pop ebp' expected\n");
91977a1c 2971
1bafb621 2972 if (g_stack_fsz != 0) {
2fe80fdb 2973 if (ops[j - 1].op == OP_MOV
2974 && IS(opr_name(&ops[j - 1], 0), "esp")
2975 && IS(opr_name(&ops[j - 1], 1), "ebp"))
91977a1c 2976 {
2fe80fdb 2977 ops[j - 1].flags |= OPF_RMD;
91977a1c 2978 }
2fe80fdb 2979 else if (ops[j].op != OP_LEAVE
591721d7 2980 && !(g_ida_func_attr & IDAFA_NORETURN))
2981 {
2fe80fdb 2982 ferr(&ops[j - 1], "esp restore expected\n");
591721d7 2983 }
87bf6cec 2984
2fe80fdb 2985 if (ecx_push && ops[j - 2].op == OP_POP
2986 && IS(opr_name(&ops[j - 2], 0), "ecx"))
87bf6cec 2987 {
2fe80fdb 2988 ferr(&ops[j - 2], "unexpected ecx pop\n");
87bf6cec 2989 }
91977a1c 2990 }
87bf6cec 2991
64c59faf 2992 found = 1;
91977a1c 2993 i++;
2994 } while (i < opcnt);
2995 }
1bafb621 2996 else {
2997 for (i = 0; i < opcnt; i++) {
2998 if (ops[i].op == OP_PUSH || (ops[i].flags & (OPF_JMP|OPF_TAIL)))
2999 break;
3000 if (ops[i].op == OP_SUB && ops[i].operand[0].reg == xSP
3001 && ops[i].operand[1].type == OPT_CONST)
3002 {
3003 g_sp_frame = 1;
3004 break;
3005 }
3006 }
3007
037f4971 3008 found = 0;
1bafb621 3009 if (g_sp_frame)
3010 {
3011 g_stack_fsz = ops[i].operand[1].val;
3012 ops[i].flags |= OPF_RMD;
3013
3014 i++;
3015 do {
3016 for (; i < opcnt; i++)
3017 if (ops[i].op == OP_RET)
3018 break;
037f4971 3019 j = i - 1;
3020 if (i == opcnt && (ops[j].flags & OPF_JMP)) {
3021 if (found && is_like_tailjmp(j))
3022 break;
3023 j--;
3024 }
1bafb621 3025
037f4971 3026 if (ops[j].op != OP_ADD
3027 || !IS(opr_name(&ops[j], 0), "esp")
3028 || ops[j].operand[1].type != OPT_CONST
3029 || ops[j].operand[1].val != g_stack_fsz)
3030 ferr(&ops[j], "'add esp' expected\n");
3031 ops[j].flags |= OPF_RMD;
3032
3033 found = 1;
1bafb621 3034 i++;
3035 } while (i < opcnt);
3036 }
3037 }
91977a1c 3038
3039 // pass2:
7ae48d73 3040 // - parse calls with labels
87bf6cec 3041 // - resolve all branches
de50b98b 3042 for (i = 0; i < opcnt; i++)
3043 {
87bf6cec 3044 po = &ops[i];
3045 po->bt_i = -1;
4c45fa73 3046 po->btj = NULL;
87bf6cec 3047
7ae48d73 3048 if (po->flags & OPF_RMD)
3049 continue;
3050
3051 if (po->op == OP_CALL) {
ddaf8bd7 3052 pp = NULL;
3053
7ae48d73 3054 if (po->operand[0].type == OPT_LABEL) {
3055 tmpname = opr_name(po, 0);
46411e6c 3056 if (IS_START(tmpname, "loc_"))
3057 ferr(po, "call to loc_*\n");
36595fd2 3058 pp_c = proto_parse(fhdr, tmpname, 0);
7ae48d73 3059 if (pp_c == NULL)
3060 ferr(po, "proto_parse failed for call '%s'\n", tmpname);
da87ae38 3061
7ae48d73 3062 pp = proto_clone(pp_c);
3063 my_assert_not(pp, NULL);
ddaf8bd7 3064 }
3065 else if (po->datap != NULL) {
3066 pp = calloc(1, sizeof(*pp));
3067 my_assert_not(pp, NULL);
3068
3069 ret = parse_protostr(po->datap, pp);
3070 if (ret < 0)
3071 ferr(po, "bad protostr supplied: %s\n", (char *)po->datap);
3072 free(po->datap);
3073 po->datap = NULL;
3074 }
3075
3076 if (pp != NULL) {
3077 if (pp->is_fptr)
3078 check_func_pp(po, pp, "fptr var call");
3079 if (pp->is_noreturn)
3080 po->flags |= OPF_TAIL;
7ae48d73 3081 }
092f64e1 3082 po->pp = pp;
7ae48d73 3083 continue;
3084 }
3085
3086 if (!(po->flags & OPF_JMP) || po->op == OP_RET)
87bf6cec 3087 continue;
3088
4c45fa73 3089 if (po->operand[0].type == OPT_REGMEM) {
3090 char *p = strchr(po->operand[0].name, '[');
3091 if (p == NULL)
89ff3147 3092 goto tailcall;
4c45fa73 3093 ret = p - po->operand[0].name;
3094 strncpy(buf1, po->operand[0].name, ret);
3095 buf1[ret] = 0;
3096
3097 for (j = 0, pd = NULL; j < g_func_pd_cnt; j++) {
3098 if (IS(g_func_pd[j].label, buf1)) {
3099 pd = &g_func_pd[j];
3100 break;
3101 }
3102 }
3103 if (pd == NULL)
840257f6 3104 //ferr(po, "label '%s' not parsed?\n", buf1);
3105 goto tailcall;
4c45fa73 3106 if (pd->type != OPT_OFFSET)
3107 ferr(po, "label '%s' with non-offset data?\n", buf1);
3108
3109 // find all labels, link
3110 for (j = 0; j < pd->count; j++) {
3111 for (l = 0; l < opcnt; l++) {
3112 if (g_labels[l][0] && IS(g_labels[l], pd->d[j].u.label)) {
3113 add_label_ref(&g_label_refs[l], i);
3114 pd->d[j].bt_i = l;
3115 break;
3116 }
3117 }
3118 }
3119
3120 po->btj = pd;
3121 continue;
3122 }
3123
3124 for (l = 0; l < opcnt; l++) {
3125 if (g_labels[l][0] && IS(po->operand[0].name, g_labels[l])) {
092f64e1 3126 if (l == i + 1 && po->op == OP_JMP) {
3127 // yet another alignment type..
3128 po->flags |= OPF_RMD;
3129 break;
3130 }
4c45fa73 3131 add_label_ref(&g_label_refs[l], i);
3132 po->bt_i = l;
87bf6cec 3133 break;
3134 }
3135 }
3136
092f64e1 3137 if (po->bt_i != -1 || (po->flags & OPF_RMD))
4c45fa73 3138 continue;
3139
840257f6 3140 if (po->operand[0].type == OPT_LABEL)
87bf6cec 3141 // assume tail call
840257f6 3142 goto tailcall;
4c45fa73 3143
3144 ferr(po, "unhandled branch\n");
840257f6 3145
3146tailcall:
3147 po->op = OP_CALL;
3148 po->flags |= OPF_TAIL;
2fe80fdb 3149 if (i > 0 && ops[i - 1].op == OP_POP)
3150 po->flags |= OPF_ATAIL;
7ae48d73 3151 i--; // reprocess
87bf6cec 3152 }
3153
3154 // pass3:
a2c1d768 3155 // - remove dead labels
91977a1c 3156 // - process calls
1bafb621 3157 for (i = 0; i < opcnt; i++)
3158 {
a2c1d768 3159 if (g_labels[i][0] != 0 && g_label_refs[i].i == -1)
3160 g_labels[i][0] = 0;
3161
69a3cdfc 3162 po = &ops[i];
3163 if (po->flags & OPF_RMD)
91977a1c 3164 continue;
850c9265 3165
d4e3b5db 3166 if (po->op == OP_CALL)
69a3cdfc 3167 {
1bafb621 3168 tmpname = opr_name(po, 0);
092f64e1 3169 pp = po->pp;
7ae48d73 3170 if (pp == NULL)
1bafb621 3171 {
7ae48d73 3172 // indirect call
89ff3147 3173 pp_c = resolve_icall(i, opcnt, &l);
3174 if (pp_c != NULL) {
fe18709a 3175 if (!pp_c->is_func && !pp_c->is_fptr)
3176 ferr(po, "call to non-func: %s\n", pp_c->name);
1cd4a663 3177 pp = proto_clone(pp_c);
89ff3147 3178 my_assert_not(pp, NULL);
3179 if (l)
3180 // not resolved just to single func
3181 pp->is_fptr = 1;
1f84f6b3 3182
3183 switch (po->operand[0].type) {
3184 case OPT_REG:
037f4971 3185 // we resolved this call and no longer need the register
3186 po->regmask_src &= ~(1 << po->operand[0].reg);
1f84f6b3 3187 break;
3188 case OPT_REGMEM:
3189 pp->is_fptr = 1;
3190 break;
3191 default:
3192 break;
3193 }
89ff3147 3194 }
1cd4a663 3195 if (pp == NULL) {
3196 pp = calloc(1, sizeof(*pp));
3197 my_assert_not(pp, NULL);
89ff3147 3198 pp->is_fptr = 1;
4741fdfe 3199 ret = scan_for_esp_adjust(i + 1, opcnt, &j, &l);
89ff3147 3200 if (ret < 0) {
3201 if (!g_allow_regfunc)
3202 ferr(po, "non-__cdecl indirect call unhandled yet\n");
3203 pp->is_unresolved = 1;
3204 j = 0;
3205 }
1cd4a663 3206 j /= 4;
3207 if (j > ARRAY_SIZE(pp->arg))
89ff3147 3208 ferr(po, "esp adjust too large: %d\n", j);
1cd4a663 3209 pp->ret_type.name = strdup("int");
3210 pp->argc = pp->argc_stack = j;
3211 for (arg = 0; arg < pp->argc; arg++)
3212 pp->arg[arg].type.name = strdup("int");
3213 }
092f64e1 3214 po->pp = pp;
1bafb621 3215 }
3216
7ba45c34 3217 // look for and make use of esp adjust
3218 ret = -1;
e56ab892 3219 if (!pp->is_stdcall && pp->argc_stack > 0)
4741fdfe 3220 ret = scan_for_esp_adjust(i + 1, opcnt, &j, &l);
1bafb621 3221 if (ret >= 0) {
7ba45c34 3222 if (pp->is_vararg) {
3223 if (j / 4 < pp->argc_stack)
3224 ferr(po, "esp adjust is too small: %x < %x\n",
3225 j, pp->argc_stack * 4);
3226 // modify pp to make it have varargs as normal args
3227 arg = pp->argc;
3228 pp->argc += j / 4 - pp->argc_stack;
3229 for (; arg < pp->argc; arg++) {
3ebea2cf 3230 pp->arg[arg].type.name = strdup("int");
7ba45c34 3231 pp->argc_stack++;
3232 }
3233 if (pp->argc > ARRAY_SIZE(pp->arg))
e56ab892 3234 ferr(po, "too many args for '%s'\n", tmpname);
7ba45c34 3235 }
1bafb621 3236 if (pp->argc_stack != j / 4)
e56ab892 3237 ferr(po, "stack tracking failed for '%s': %x %x\n",
3238 tmpname, pp->argc_stack * 4, j);
7ba45c34 3239
1bafb621 3240 ops[ret].flags |= OPF_RMD;
591721d7 3241 if (ops[ret].op == OP_POP && j > 4) {
3242 // deal with multi-pop stack adjust
3243 j = pp->argc_stack;
3244 while (ops[ret].op == OP_POP && j > 0 && ret < opcnt) {
3245 ops[ret].flags |= OPF_RMD;
3246 j--;
3247 ret++;
3248 }
3249 }
4741fdfe 3250 else if (!l) {
591721d7 3251 // a bit of a hack, but deals with use of
3252 // single adj for multiple calls
3253 ops[ret].operand[1].val -= j;
3254 }
1bafb621 3255 }
7ba45c34 3256 else if (pp->is_vararg)
3257 ferr(po, "missing esp_adjust for vararg func '%s'\n",
3258 pp->name);
91977a1c 3259
2fe80fdb 3260 if (!pp->is_unresolved && !(po->flags & OPF_ATAIL)) {
89ff3147 3261 // since we know the args, collect them
3262 collect_call_args(po, i, pp, &regmask, &save_arg_vars,
3263 i + opcnt * 2);
3264 }
2b43685d 3265
3266 if (strstr(pp->ret_type.name, "int64"))
2fe80fdb 3267 need_tmp64 = 1;
91977a1c 3268 }
d4e3b5db 3269 }
3270
3271 // pass4:
3272 // - find POPs for PUSHes, rm both
591721d7 3273 // - scan for STD/CLD, propagate DF
d4e3b5db 3274 // - scan for all used registers
3275 // - find flag set ops for their users
89ff3147 3276 // - do unreselved calls
1bafb621 3277 // - declare indirect functions
d4e3b5db 3278 for (i = 0; i < opcnt; i++) {
3279 po = &ops[i];
3280 if (po->flags & OPF_RMD)
3281 continue;
3282
7ae48d73 3283 if (po->op == OP_PUSH && (po->flags & OPF_RSAVE)) {
3284 reg = po->operand[0].reg;
3285 if (!(regmask & (1 << reg)))
3286 // not a reg save after all, rerun scan_for_pop
3287 po->flags &= ~OPF_RSAVE;
3288 else
3289 regmask_save |= 1 << reg;
3290 }
3291
5c024ef7 3292 if (po->op == OP_PUSH && po->argnum == 0
1f84f6b3 3293 && !(po->flags & OPF_RSAVE) && !g_func_pp->is_userstack)
d4e3b5db 3294 {
5c024ef7 3295 if (po->operand[0].type == OPT_REG)
3296 {
3297 reg = po->operand[0].reg;
3298 if (reg < 0)
3299 ferr(po, "reg not set for push?\n");
3300
3301 depth = 0;
3302 ret = scan_for_pop(i + 1, opcnt,
3303 po->operand[0].name, i + opcnt * 3, 0, &depth, 0);
3304 if (ret == 1) {
3305 if (depth > 1)
3306 ferr(po, "too much depth: %d\n", depth);
3307
3308 po->flags |= OPF_RMD;
3309 scan_for_pop(i + 1, opcnt, po->operand[0].name,
3310 i + opcnt * 4, 0, &depth, 1);
3311 continue;
3312 }
3313 ret = scan_for_pop_ret(i + 1, opcnt, po->operand[0].name, 0);
3314 if (ret == 0) {
3315 arg = OPF_RMD;
3316 if (regmask & (1 << reg)) {
3317 if (regmask_save & (1 << reg))
3318 ferr(po, "%s already saved?\n", po->operand[0].name);
3319 arg = OPF_RSAVE;
3320 }
3321 po->flags |= arg;
3322 scan_for_pop_ret(i + 1, opcnt, po->operand[0].name, arg);
3323 continue;
3324 }
d4e3b5db 3325 }
5c024ef7 3326 else if (po->operand[0].type == OPT_CONST) {
3327 for (j = i + 1; j < opcnt; j++) {
3328 if ((ops[j].flags & (OPF_JMP|OPF_TAIL|OPF_RSAVE))
3329 || ops[j].op == OP_PUSH || g_labels[i][0] != 0)
3330 {
3331 break;
3332 }
3333
3334 if (!(ops[j].flags & OPF_RMD) && ops[j].op == OP_POP)
3335 {
3336 po->flags |= OPF_RMD;
3337 ops[j].datap = po;
3338 break;
3339 }
d4e3b5db 3340 }
d4e3b5db 3341 }
3342 }
3343
591721d7 3344 if (po->op == OP_STD) {
3345 po->flags |= OPF_DF | OPF_RMD;
3346 scan_propagate_df(i + 1, opcnt);
3347 }
3348
a3684be1 3349 regmask_now = po->regmask_src | po->regmask_dst;
3350 if (regmask_now & (1 << xBP)) {
3351 if (g_bp_frame && !(po->flags & OPF_EBP_S)) {
3352 if (po->regmask_dst & (1 << xBP))
3353 // compiler decided to drop bp frame and use ebp as scratch
037f4971 3354 scan_fwd_set_flags(i + 1, opcnt, i + opcnt * 5, OPF_EBP_S);
a3684be1 3355 else
3356 regmask_now &= ~(1 << xBP);
3357 }
3358 }
3359
3360 regmask |= regmask_now;
d4e3b5db 3361
3362 if (po->flags & OPF_CC)
3363 {
2b43685d 3364 int setters[16], cnt = 0, branched = 0;
3365
04f8a628 3366 ret = scan_for_flag_set(i, i + opcnt * 6,
3367 &branched, setters, &cnt);
2b43685d 3368 if (ret < 0 || cnt <= 0)
3369 ferr(po, "unable to trace flag setter(s)\n");
3370 if (cnt > ARRAY_SIZE(setters))
3371 ferr(po, "too many flag setters\n");
d4e3b5db 3372
2b43685d 3373 for (j = 0; j < cnt; j++)
3374 {
3375 tmp_op = &ops[setters[j]]; // flag setter
3376 pfomask = 0;
3377
3378 // to get nicer code, we try to delay test and cmp;
3379 // if we can't because of operand modification, or if we
591721d7 3380 // have arith op, or branch, make it calculate flags explicitly
3381 if (tmp_op->op == OP_TEST || tmp_op->op == OP_CMP)
3382 {
89ff3147 3383 if (branched || scan_for_mod(tmp_op, setters[j] + 1, i, 0) >= 0)
092f64e1 3384 pfomask = 1 << po->pfo;
2b43685d 3385 }
4741fdfe 3386 else if (tmp_op->op == OP_CMPS || tmp_op->op == OP_SCAS) {
092f64e1 3387 pfomask = 1 << po->pfo;
591721d7 3388 }
2b43685d 3389 else {
04f8a628 3390 // see if we'll be able to handle based on op result
3391 if ((tmp_op->op != OP_AND && tmp_op->op != OP_OR
092f64e1 3392 && po->pfo != PFO_Z && po->pfo != PFO_S
3393 && po->pfo != PFO_P)
04f8a628 3394 || branched
2b43685d 3395 || scan_for_mod_opr0(tmp_op, setters[j] + 1, i) >= 0)
092f64e1 3396 {
3397 pfomask = 1 << po->pfo;
3398 }
2fe80fdb 3399
c8dbc5be 3400 if (tmp_op->op == OP_ADD && po->pfo == PFO_C) {
3401 propagate_lmod(tmp_op, &tmp_op->operand[0],
3402 &tmp_op->operand[1]);
3403 if (tmp_op->operand[0].lmod == OPLM_DWORD)
3404 need_tmp64 = 1;
3405 }
2b43685d 3406 }
3407 if (pfomask) {
3408 tmp_op->pfomask |= pfomask;
cb090db0 3409 cond_vars |= pfomask;
2b43685d 3410 }
04f8a628 3411 // note: may overwrite, currently not a problem
3412 po->datap = tmp_op;
d4e3b5db 3413 }
3414
cb090db0 3415 if (po->op == OP_RCL || po->op == OP_RCR
3416 || po->op == OP_ADC || po->op == OP_SBB)
3417 cond_vars |= 1 << PFO_C;
d4e3b5db 3418 }
092f64e1 3419
3420 if (po->op == OP_CMPS || po->op == OP_SCAS) {
cb090db0 3421 cond_vars |= 1 << PFO_Z;
591721d7 3422 }
87bf6cec 3423 else if (po->op == OP_MUL
3424 || (po->op == OP_IMUL && po->operand_cnt == 1))
3425 {
c8dbc5be 3426 if (po->operand[0].lmod == OPLM_DWORD)
3427 need_tmp64 = 1;
87bf6cec 3428 }
89ff3147 3429 else if (po->op == OP_CALL) {
092f64e1 3430 pp = po->pp;
89ff3147 3431 if (pp == NULL)
3432 ferr(po, "NULL pp\n");
3433
3434 if (pp->is_unresolved) {
ddaf8bd7 3435 int regmask_stack = 0;
b74c31e3 3436 collect_call_args(po, i, pp, &regmask, &save_arg_vars,
89ff3147 3437 i + opcnt * 2);
3438
b74c31e3 3439 // this is pretty rough guess:
3440 // see ecx and edx were pushed (and not their saved versions)
3441 for (arg = 0; arg < pp->argc; arg++) {
3442 if (pp->arg[arg].reg != NULL)
3443 continue;
3444
3445 tmp_op = pp->arg[arg].datap;
3446 if (tmp_op == NULL)
3447 ferr(po, "parsed_op missing for arg%d\n", arg);
3448 if (tmp_op->argnum == 0 && tmp_op->operand[0].type == OPT_REG)
3449 regmask_stack |= 1 << tmp_op->operand[0].reg;
3450 }
3451
ddaf8bd7 3452 if (!((regmask_stack & (1 << xCX))
3453 && (regmask_stack & (1 << xDX))))
89ff3147 3454 {
3455 if (pp->argc_stack != 0
c0050df6 3456 || ((regmask | regmask_arg) & ((1 << xCX)|(1 << xDX))))
89ff3147 3457 {
3458 pp_insert_reg_arg(pp, "ecx");
c0050df6 3459 pp->is_fastcall = 1;
ddaf8bd7 3460 regmask_init |= 1 << xCX;
89ff3147 3461 regmask |= 1 << xCX;
3462 }
3463 if (pp->argc_stack != 0
3464 || ((regmask | regmask_arg) & (1 << xDX)))
3465 {
3466 pp_insert_reg_arg(pp, "edx");
ddaf8bd7 3467 regmask_init |= 1 << xDX;
89ff3147 3468 regmask |= 1 << xDX;
3469 }
3470 }
c0050df6 3471
3472 // note: __cdecl doesn't fall into is_unresolved category
3473 if (pp->argc_stack > 0)
3474 pp->is_stdcall = 1;
ddaf8bd7 3475 }
3476
3477 for (arg = 0; arg < pp->argc; arg++) {
3478 if (pp->arg[arg].reg != NULL) {
3479 reg = char_array_i(regs_r32,
3480 ARRAY_SIZE(regs_r32), pp->arg[arg].reg);
3481 if (reg < 0)
3482 ferr(ops, "arg '%s' is not a reg?\n", pp->arg[arg].reg);
3483 if (!(regmask & (1 << reg))) {
3484 regmask_init |= 1 << reg;
3485 regmask |= 1 << reg;
3486 }
3487 }
89ff3147 3488 }
1bafb621 3489 }
27ebfaed 3490 else if (po->op == OP_MOV && po->operand[0].pp != NULL
3491 && po->operand[1].pp != NULL)
3492 {
3493 // <var> = offset <something>
3494 if ((po->operand[1].pp->is_func || po->operand[1].pp->is_fptr)
3495 && !IS_START(po->operand[1].name, "off_"))
3496 {
3497 if (!po->operand[0].pp->is_fptr)
3498 ferr(po, "%s not declared as fptr when it should be\n",
3499 po->operand[0].name);
3500 if (pp_cmp_func(po->operand[0].pp, po->operand[1].pp)) {
3501 pp_print(buf1, sizeof(buf1), po->operand[0].pp);
3502 pp_print(buf2, sizeof(buf2), po->operand[1].pp);
3503 fnote(po, "var: %s\n", buf1);
3504 fnote(po, "func: %s\n", buf2);
3505 ferr(po, "^ mismatch\n");
3506 }
3507 }
3508 }
75ad0378 3509 else if (po->op == OP_RET && !IS(g_func_pp->ret_type.name, "void"))
3510 regmask |= 1 << xAX;
cb090db0 3511 else if (po->op == OP_DIV || po->op == OP_IDIV) {
3512 // 32bit division is common, look for it
3513 if (po->op == OP_DIV)
3514 ret = scan_for_reg_clear(i, xDX);
3515 else
3516 ret = scan_for_cdq_edx(i);
3517 if (ret >= 0)
3518 po->flags |= OPF_32BIT;
3519 else
3520 need_tmp64 = 1;
3521 }
037f4971 3522 else if (po->op == OP_CLD)
3523 po->flags |= OPF_RMD;
cb090db0 3524
3525 if (po->op == OP_RCL || po->op == OP_RCR || po->op == OP_XCHG) {
3526 need_tmp_var = 1;
3527 }
91977a1c 3528 }
3529
da87ae38 3530 // pass4:
3531 // - confirm regmask_save, it might have been reduced
3532 if (regmask_save != 0)
3533 {
3534 regmask_save = 0;
3535 for (i = 0; i < opcnt; i++) {
3536 po = &ops[i];
3537 if (po->flags & OPF_RMD)
3538 continue;
3539
3540 if (po->op == OP_PUSH && (po->flags & OPF_RSAVE))
3541 regmask_save |= 1 << po->operand[0].reg;
3542 }
3543 }
3544
60fe410c 3545 // output starts here
3546
3547 // define userstack size
3548 if (g_func_pp->is_userstack) {
3549 fprintf(fout, "#ifndef US_SZ_%s\n", g_func_pp->name);
3550 fprintf(fout, "#define US_SZ_%s USERSTACK_SIZE\n", g_func_pp->name);
3551 fprintf(fout, "#endif\n");
3552 }
3553
3554 // the function itself
3555 fprintf(fout, "%s ", g_func_pp->ret_type.name);
3556 output_pp_attrs(fout, g_func_pp, g_ida_func_attr & IDAFA_NORETURN);
3557 fprintf(fout, "%s(", g_func_pp->name);
3558
3559 for (i = 0; i < g_func_pp->argc; i++) {
3560 if (i > 0)
3561 fprintf(fout, ", ");
3562 if (g_func_pp->arg[i].fptr != NULL) {
3563 // func pointer..
3564 pp = g_func_pp->arg[i].fptr;
3565 fprintf(fout, "%s (", pp->ret_type.name);
3566 output_pp_attrs(fout, pp, 0);
3567 fprintf(fout, "*a%d)(", i + 1);
3568 for (j = 0; j < pp->argc; j++) {
3569 if (j > 0)
3570 fprintf(fout, ", ");
3571 if (pp->arg[j].fptr)
3572 ferr(ops, "nested fptr\n");
3573 fprintf(fout, "%s", pp->arg[j].type.name);
3574 }
3575 if (pp->is_vararg) {
3576 if (j > 0)
3577 fprintf(fout, ", ");
3578 fprintf(fout, "...");
3579 }
3580 fprintf(fout, ")");
3581 }
3582 else if (g_func_pp->arg[i].type.is_retreg) {
3583 fprintf(fout, "u32 *r_%s", g_func_pp->arg[i].reg);
3584 }
3585 else {
3586 fprintf(fout, "%s a%d", g_func_pp->arg[i].type.name, i + 1);
3587 }
3588 }
3589 if (g_func_pp->is_vararg) {
3590 if (i > 0)
3591 fprintf(fout, ", ");
3592 fprintf(fout, "...");
3593 }
3594
3595 fprintf(fout, ")\n{\n");
3596
3597 // declare indirect functions
3598 for (i = 0; i < opcnt; i++) {
3599 po = &ops[i];
3600 if (po->flags & OPF_RMD)
3601 continue;
3602
3603 if (po->op == OP_CALL) {
3604 pp = po->pp;
3605 if (pp == NULL)
3606 ferr(po, "NULL pp\n");
3607
3608 if (pp->is_fptr && !(pp->name[0] != 0 && pp->is_arg)) {
3609 if (pp->name[0] != 0) {
3610 memmove(pp->name + 2, pp->name, strlen(pp->name) + 1);
3611 memcpy(pp->name, "i_", 2);
3612
3613 // might be declared already
3614 found = 0;
3615 for (j = 0; j < i; j++) {
3616 if (ops[j].op == OP_CALL && (pp_tmp = ops[j].pp)) {
3617 if (pp_tmp->is_fptr && IS(pp->name, pp_tmp->name)) {
3618 found = 1;
3619 break;
3620 }
3621 }
3622 }
3623 if (found)
3624 continue;
3625 }
3626 else
3627 snprintf(pp->name, sizeof(pp->name), "icall%d", i);
3628
3629 fprintf(fout, " %s (", pp->ret_type.name);
3630 output_pp_attrs(fout, pp, 0);
3631 fprintf(fout, "*%s)(", pp->name);
3632 for (j = 0; j < pp->argc; j++) {
3633 if (j > 0)
3634 fprintf(fout, ", ");
3635 fprintf(fout, "%s a%d", pp->arg[j].type.name, j + 1);
3636 }
3637 fprintf(fout, ");\n");
3638 }
3639 }
3640 }
da87ae38 3641
4c45fa73 3642 // output LUTs/jumptables
3643 for (i = 0; i < g_func_pd_cnt; i++) {
3644 pd = &g_func_pd[i];
3645 fprintf(fout, " static const ");
3646 if (pd->type == OPT_OFFSET) {
3647 fprintf(fout, "void *jt_%s[] =\n { ", pd->label);
3648
3649 for (j = 0; j < pd->count; j++) {
3650 if (j > 0)
3651 fprintf(fout, ", ");
3652 fprintf(fout, "&&%s", pd->d[j].u.label);
3653 }
3654 }
3655 else {
3656 fprintf(fout, "%s %s[] =\n { ",
3657 lmod_type_u(ops, pd->lmod), pd->label);
3658
3659 for (j = 0; j < pd->count; j++) {
3660 if (j > 0)
3661 fprintf(fout, ", ");
3662 fprintf(fout, "%u", pd->d[j].u.val);
3663 }
3664 }
3665 fprintf(fout, " };\n");
1f84f6b3 3666 had_decl = 1;
4c45fa73 3667 }
3668
4f12f671 3669 // declare stack frame, va_arg
1f84f6b3 3670 if (g_stack_fsz) {
850c9265 3671 fprintf(fout, " union { u32 d[%d]; u16 w[%d]; u8 b[%d]; } sf;\n",
1bafb621 3672 (g_stack_fsz + 3) / 4, (g_stack_fsz + 1) / 2, g_stack_fsz);
1f84f6b3 3673 had_decl = 1;
3674 }
3675
3676 if (g_func_pp->is_userstack) {
60fe410c 3677 fprintf(fout, " u32 fake_sf[US_SZ_%s / 4];\n", g_func_pp->name);
3678 fprintf(fout, " u32 *esp = &fake_sf[sizeof(fake_sf) / 4];\n");
1f84f6b3 3679 had_decl = 1;
3680 }
850c9265 3681
1f84f6b3 3682 if (g_func_pp->is_vararg) {
4f12f671 3683 fprintf(fout, " va_list ap;\n");
1f84f6b3 3684 had_decl = 1;
3685 }
4f12f671 3686
940e8e66 3687 // declare arg-registers
bd96f656 3688 for (i = 0; i < g_func_pp->argc; i++) {
3689 if (g_func_pp->arg[i].reg != NULL) {
91977a1c 3690 reg = char_array_i(regs_r32,
bd96f656 3691 ARRAY_SIZE(regs_r32), g_func_pp->arg[i].reg);
75ad0378 3692 if (regmask & (1 << reg)) {
1f84f6b3 3693 if (g_func_pp->arg[i].type.is_retreg)
3694 fprintf(fout, " u32 %s = *r_%s;\n",
3695 g_func_pp->arg[i].reg, g_func_pp->arg[i].reg);
3696 else
3697 fprintf(fout, " u32 %s = (u32)a%d;\n",
3698 g_func_pp->arg[i].reg, i + 1);
75ad0378 3699 }
1f84f6b3 3700 else {
3701 if (g_func_pp->arg[i].type.is_retreg)
3702 ferr(ops, "retreg '%s' is unused?\n",
3703 g_func_pp->arg[i].reg);
75ad0378 3704 fprintf(fout, " // %s = a%d; // unused\n",
3705 g_func_pp->arg[i].reg, i + 1);
1f84f6b3 3706 }
91977a1c 3707 had_decl = 1;
3708 }
3709 }
3710
75ad0378 3711 regmask_now = regmask & ~regmask_arg;
3712 regmask_now &= ~(1 << xSP);
3713 if (regmask_now) {
91977a1c 3714 for (reg = 0; reg < 8; reg++) {
75ad0378 3715 if (regmask_now & (1 << reg)) {
ddaf8bd7 3716 fprintf(fout, " u32 %s", regs_r32[reg]);
3717 if (regmask_init & (1 << reg))
3718 fprintf(fout, " = 0");
3719 fprintf(fout, ";\n");
91977a1c 3720 had_decl = 1;
3721 }
3722 }
3723 }
3724
d4e3b5db 3725 if (regmask_save) {
3726 for (reg = 0; reg < 8; reg++) {
3727 if (regmask_save & (1 << reg)) {
3728 fprintf(fout, " u32 s_%s;\n", regs_r32[reg]);
3729 had_decl = 1;
3730 }
3731 }
3732 }
3733
69a3cdfc 3734 if (save_arg_vars) {
3735 for (reg = 0; reg < 32; reg++) {
3736 if (save_arg_vars & (1 << reg)) {
3737 fprintf(fout, " u32 s_a%d;\n", reg + 1);
3738 had_decl = 1;
3739 }
3740 }
3741 }
3742
cb090db0 3743 if (cond_vars) {
69a3cdfc 3744 for (i = 0; i < 8; i++) {
cb090db0 3745 if (cond_vars & (1 << i)) {
69a3cdfc 3746 fprintf(fout, " u32 cond_%s;\n", parsed_flag_op_names[i]);
3747 had_decl = 1;
3748 }
3749 }
3750 }
3751
108e9fe3 3752 if (need_tmp_var) {
3753 fprintf(fout, " u32 tmp;\n");
3754 had_decl = 1;
3755 }
3756
2fe80fdb 3757 if (need_tmp64) {
3758 fprintf(fout, " u64 tmp64;\n");
87bf6cec 3759 had_decl = 1;
3760 }
3761
91977a1c 3762 if (had_decl)
3763 fprintf(fout, "\n");
3764
bd96f656 3765 if (g_func_pp->is_vararg) {
3766 if (g_func_pp->argc_stack == 0)
4f12f671 3767 ferr(ops, "vararg func without stack args?\n");
bd96f656 3768 fprintf(fout, " va_start(ap, a%d);\n", g_func_pp->argc);
4f12f671 3769 }
3770
91977a1c 3771 // output ops
69a3cdfc 3772 for (i = 0; i < opcnt; i++)
3773 {
a2c1d768 3774 if (g_labels[i][0] != 0) {
91977a1c 3775 fprintf(fout, "\n%s:\n", g_labels[i]);
3ebea2cf 3776 label_pending = 1;
2b43685d 3777
3778 delayed_flag_op = NULL;
3779 last_arith_dst = NULL;
3ebea2cf 3780 }
91977a1c 3781
69a3cdfc 3782 po = &ops[i];
3783 if (po->flags & OPF_RMD)
91977a1c 3784 continue;
3785
3786 no_output = 0;
3787
91977a1c 3788 #define assert_operand_cnt(n_) \
850c9265 3789 if (po->operand_cnt != n_) \
3790 ferr(po, "operand_cnt is %d/%d\n", po->operand_cnt, n_)
3791
69a3cdfc 3792 // conditional/flag using op?
3793 if (po->flags & OPF_CC)
850c9265 3794 {
940e8e66 3795 int is_delayed = 0;
69a3cdfc 3796
04f8a628 3797 tmp_op = po->datap;
850c9265 3798
69a3cdfc 3799 // we go through all this trouble to avoid using parsed_flag_op,
3800 // which makes generated code much nicer
3801 if (delayed_flag_op != NULL)
850c9265 3802 {
092f64e1 3803 out_cmp_test(buf1, sizeof(buf1), delayed_flag_op,
3804 po->pfo, po->pfo_inv);
940e8e66 3805 is_delayed = 1;
91977a1c 3806 }
850c9265 3807 else if (last_arith_dst != NULL
092f64e1 3808 && (po->pfo == PFO_Z || po->pfo == PFO_S || po->pfo == PFO_P
04f8a628 3809 || (tmp_op && (tmp_op->op == OP_AND || tmp_op->op == OP_OR))
3810 ))
850c9265 3811 {
3ebea2cf 3812 out_src_opr_u32(buf3, sizeof(buf3), po, last_arith_dst);
092f64e1 3813 out_test_for_cc(buf1, sizeof(buf1), po, po->pfo, po->pfo_inv,
850c9265 3814 last_arith_dst->lmod, buf3);
940e8e66 3815 is_delayed = 1;
850c9265 3816 }
04f8a628 3817 else if (tmp_op != NULL) {
7ba45c34 3818 // use preprocessed flag calc results
092f64e1 3819 if (!(tmp_op->pfomask & (1 << po->pfo)))
3820 ferr(po, "not prepared for pfo %d\n", po->pfo);
69a3cdfc 3821
092f64e1 3822 // note: pfo_inv was not yet applied
69a3cdfc 3823 snprintf(buf1, sizeof(buf1), "(%scond_%s)",
092f64e1 3824 po->pfo_inv ? "!" : "", parsed_flag_op_names[po->pfo]);
69a3cdfc 3825 }
3826 else {
3827 ferr(po, "all methods of finding comparison failed\n");
3828 }
850c9265 3829
69a3cdfc 3830 if (po->flags & OPF_JMP) {
092f64e1 3831 fprintf(fout, " if %s", buf1);
850c9265 3832 }
cb090db0 3833 else if (po->op == OP_RCL || po->op == OP_RCR
3834 || po->op == OP_ADC || po->op == OP_SBB)
3835 {
940e8e66 3836 if (is_delayed)
3837 fprintf(fout, " cond_%s = %s;\n",
092f64e1 3838 parsed_flag_op_names[po->pfo], buf1);
850c9265 3839 }
5101a5f9 3840 else if (po->flags & OPF_DATA) { // SETcc
850c9265 3841 out_dst_opr(buf2, sizeof(buf2), po, &po->operand[0]);
3842 fprintf(fout, " %s = %s;", buf2, buf1);
91977a1c 3843 }
69a3cdfc 3844 else {
3845 ferr(po, "unhandled conditional op\n");
3846 }
91977a1c 3847 }
3848
940e8e66 3849 pfomask = po->pfomask;
3850
4741fdfe 3851 if (po->flags & (OPF_REPZ|OPF_REPNZ)) {
1f84f6b3 3852 struct parsed_opr opr = {0,};
3853 opr.type = OPT_REG;
3854 opr.reg = xCX;
3855 opr.lmod = OPLM_DWORD;
3856 ret = try_resolve_const(i, &opr, opcnt * 7 + i, &uval);
3857
3858 if (ret != 1 || uval == 0) {
3859 // we need initial flags for ecx=0 case..
3860 if (i > 0 && ops[i - 1].op == OP_XOR
3861 && IS(ops[i - 1].operand[0].name,
3862 ops[i - 1].operand[1].name))
3863 {
3864 fprintf(fout, " cond_z = ");
3865 if (pfomask & (1 << PFO_C))
3866 fprintf(fout, "cond_c = ");
3867 fprintf(fout, "0;\n");
3868 }
3869 else if (last_arith_dst != NULL) {
3870 out_src_opr_u32(buf3, sizeof(buf3), po, last_arith_dst);
3871 out_test_for_cc(buf1, sizeof(buf1), po, PFO_Z, 0,
3872 last_arith_dst->lmod, buf3);
3873 fprintf(fout, " cond_z = %s;\n", buf1);
3874 }
3875 else
3876 ferr(po, "missing initial ZF\n");
4741fdfe 3877 }
4741fdfe 3878 }
3879
850c9265 3880 switch (po->op)
91977a1c 3881 {
3882 case OP_MOV:
3883 assert_operand_cnt(2);
850c9265 3884 propagate_lmod(po, &po->operand[0], &po->operand[1]);
de50b98b 3885 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
c7ed83dd 3886 default_cast_to(buf3, sizeof(buf3), &po->operand[0]);
de50b98b 3887 fprintf(fout, " %s = %s;", buf1,
3ebea2cf 3888 out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
c7ed83dd 3889 buf3, 0));
850c9265 3890 break;
3891
3892 case OP_LEA:
3893 assert_operand_cnt(2);
87bf6cec 3894 po->operand[1].lmod = OPLM_DWORD; // always
850c9265 3895 fprintf(fout, " %s = %s;",
3896 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
3ebea2cf 3897 out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
3898 NULL, 1));
850c9265 3899 break;
3900
3901 case OP_MOVZX:
3902 assert_operand_cnt(2);
91977a1c 3903 fprintf(fout, " %s = %s;",
850c9265 3904 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
3ebea2cf 3905 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
850c9265 3906 break;
3907
3908 case OP_MOVSX:
3909 assert_operand_cnt(2);
3910 switch (po->operand[1].lmod) {
3911 case OPLM_BYTE:
3912 strcpy(buf3, "(s8)");
3913 break;
3914 case OPLM_WORD:
3915 strcpy(buf3, "(s16)");
3916 break;
3917 default:
3918 ferr(po, "invalid src lmod: %d\n", po->operand[1].lmod);
3919 }
a2c1d768 3920 fprintf(fout, " %s = %s;",
850c9265 3921 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
a2c1d768 3922 out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
3923 buf3, 0));
850c9265 3924 break;
3925
108e9fe3 3926 case OP_XCHG:
3927 assert_operand_cnt(2);
3928 propagate_lmod(po, &po->operand[0], &po->operand[1]);
3929 fprintf(fout, " tmp = %s;",
3930 out_src_opr(buf1, sizeof(buf1), po, &po->operand[0], "", 0));
3931 fprintf(fout, " %s = %s;",
3932 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
c7ed83dd 3933 out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
3934 default_cast_to(buf3, sizeof(buf3), &po->operand[0]), 0));
3935 fprintf(fout, " %s = %stmp;",
3936 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[1]),
3937 default_cast_to(buf3, sizeof(buf3), &po->operand[1]));
108e9fe3 3938 snprintf(g_comment, sizeof(g_comment), "xchg");
3939 break;
3940
850c9265 3941 case OP_NOT:
3942 assert_operand_cnt(1);
3943 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
3944 fprintf(fout, " %s = ~%s;", buf1, buf1);
3945 break;
3946
5101a5f9 3947 case OP_CDQ:
3948 assert_operand_cnt(2);
3949 fprintf(fout, " %s = (s32)%s >> 31;",
3950 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
3ebea2cf 3951 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
5101a5f9 3952 strcpy(g_comment, "cdq");
3953 break;
3954
092f64e1 3955 case OP_LODS:
3956 assert_operand_cnt(3);
3957 if (po->flags & OPF_REP) {
3958 // hmh..
3959 ferr(po, "TODO\n");
3960 }
3961 else {
05381e4a 3962 fprintf(fout, " eax = %sesi; esi %c= %d;",
092f64e1 3963 lmod_cast_u_ptr(po, po->operand[0].lmod),
3964 (po->flags & OPF_DF) ? '-' : '+',
3965 lmod_bytes(po, po->operand[0].lmod));
3966 strcpy(g_comment, "lods");
3967 }
3968 break;
3969
33c35af6 3970 case OP_STOS:
33c35af6 3971 assert_operand_cnt(3);
3972 if (po->flags & OPF_REP) {
591721d7 3973 fprintf(fout, " for (; ecx != 0; ecx--, edi %c= %d)\n",
3974 (po->flags & OPF_DF) ? '-' : '+',
33c35af6 3975 lmod_bytes(po, po->operand[0].lmod));
d4e3b5db 3976 fprintf(fout, " %sedi = eax;",
3977 lmod_cast_u_ptr(po, po->operand[0].lmod));
33c35af6 3978 strcpy(g_comment, "rep stos");
3979 }
3980 else {
092f64e1 3981 fprintf(fout, " %sedi = eax; edi %c= %d;",
d4e3b5db 3982 lmod_cast_u_ptr(po, po->operand[0].lmod),
591721d7 3983 (po->flags & OPF_DF) ? '-' : '+',
33c35af6 3984 lmod_bytes(po, po->operand[0].lmod));
3985 strcpy(g_comment, "stos");
3986 }
3987 break;
3988
d4e3b5db 3989 case OP_MOVS:
d4e3b5db 3990 assert_operand_cnt(3);
3991 j = lmod_bytes(po, po->operand[0].lmod);
3992 strcpy(buf1, lmod_cast_u_ptr(po, po->operand[0].lmod));
591721d7 3993 l = (po->flags & OPF_DF) ? '-' : '+';
d4e3b5db 3994 if (po->flags & OPF_REP) {
3995 fprintf(fout,
591721d7 3996 " for (; ecx != 0; ecx--, edi %c= %d, esi %c= %d)\n",
3997 l, j, l, j);
d4e3b5db 3998 fprintf(fout,
3999 " %sedi = %sesi;", buf1, buf1);
4000 strcpy(g_comment, "rep movs");
4001 }
4002 else {
092f64e1 4003 fprintf(fout, " %sedi = %sesi; edi %c= %d; esi %c= %d;",
591721d7 4004 buf1, buf1, l, j, l, j);
d4e3b5db 4005 strcpy(g_comment, "movs");
4006 }
4007 break;
4008
7ba45c34 4009 case OP_CMPS:
7ba45c34 4010 // repe ~ repeat while ZF=1
4011 assert_operand_cnt(3);
4012 j = lmod_bytes(po, po->operand[0].lmod);
4013 strcpy(buf1, lmod_cast_u_ptr(po, po->operand[0].lmod));
591721d7 4014 l = (po->flags & OPF_DF) ? '-' : '+';
7ba45c34 4015 if (po->flags & OPF_REP) {
4016 fprintf(fout,
1f84f6b3 4017 " for (; ecx != 0; ecx--) {\n");
4741fdfe 4018 if (pfomask & (1 << PFO_C)) {
4019 // ugh..
4020 fprintf(fout,
05381e4a 4021 " cond_c = %sesi < %sedi;\n", buf1, buf1);
4741fdfe 4022 pfomask &= ~(1 << PFO_C);
4023 }
7ba45c34 4024 fprintf(fout,
05381e4a 4025 " cond_z = (%sesi == %sedi); esi %c= %d, edi %c= %d;\n",
1f84f6b3 4026 buf1, buf1, l, j, l, j);
4027 fprintf(fout,
4028 " if (cond_z %s 0) break;\n",
4029 (po->flags & OPF_REPZ) ? "==" : "!=");
7ba45c34 4030 fprintf(fout,
4741fdfe 4031 " }");
7ba45c34 4032 snprintf(g_comment, sizeof(g_comment), "rep%s cmps",
4033 (po->flags & OPF_REPZ) ? "e" : "ne");
4034 }
4035 else {
4036 fprintf(fout,
05381e4a 4037 " cond_z = (%sesi == %sedi); esi %c= %d; edi %c= %d;",
591721d7 4038 buf1, buf1, l, j, l, j);
7ba45c34 4039 strcpy(g_comment, "cmps");
4040 }
4041 pfomask &= ~(1 << PFO_Z);
4042 last_arith_dst = NULL;
4043 delayed_flag_op = NULL;
4044 break;
4045
591721d7 4046 case OP_SCAS:
4047 // only does ZF (for now)
4048 // repe ~ repeat while ZF=1
4049 assert_operand_cnt(3);
4050 j = lmod_bytes(po, po->operand[0].lmod);
4051 l = (po->flags & OPF_DF) ? '-' : '+';
4052 if (po->flags & OPF_REP) {
4053 fprintf(fout,
1f84f6b3 4054 " for (; ecx != 0; ecx--) {\n");
591721d7 4055 fprintf(fout,
1f84f6b3 4056 " cond_z = (%seax == %sedi); edi %c= %d;\n",
591721d7 4057 lmod_cast_u(po, po->operand[0].lmod),
1f84f6b3 4058 lmod_cast_u_ptr(po, po->operand[0].lmod), l, j);
4059 fprintf(fout,
4060 " if (cond_z %s 0) break;\n",
591721d7 4061 (po->flags & OPF_REPZ) ? "==" : "!=");
4062 fprintf(fout,
1f84f6b3 4063 " }");
591721d7 4064 snprintf(g_comment, sizeof(g_comment), "rep%s scas",
4065 (po->flags & OPF_REPZ) ? "e" : "ne");
4066 }
4067 else {
05381e4a 4068 fprintf(fout, " cond_z = (%seax == %sedi); edi %c= %d;",
591721d7 4069 lmod_cast_u(po, po->operand[0].lmod),
4070 lmod_cast_u_ptr(po, po->operand[0].lmod), l, j);
4071 strcpy(g_comment, "scas");
4072 }
4073 pfomask &= ~(1 << PFO_Z);
4074 last_arith_dst = NULL;
4075 delayed_flag_op = NULL;
4076 break;
4077
850c9265 4078 // arithmetic w/flags
850c9265 4079 case OP_AND:
4080 case OP_OR:
5101a5f9 4081 propagate_lmod(po, &po->operand[0], &po->operand[1]);
4082 // fallthrough
850c9265 4083 dualop_arith:
4084 assert_operand_cnt(2);
850c9265 4085 fprintf(fout, " %s %s= %s;",
4086 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4087 op_to_c(po),
3ebea2cf 4088 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
04f8a628 4089 output_std_flags(fout, po, &pfomask, buf1);
4090 last_arith_dst = &po->operand[0];
4091 delayed_flag_op = NULL;
4092 break;
4093
4094 case OP_SHL:
4095 case OP_SHR:
4096 assert_operand_cnt(2);
4097 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4098 if (pfomask & (1 << PFO_C)) {
4099 if (po->operand[1].type == OPT_CONST) {
4100 l = lmod_bytes(po, po->operand[0].lmod) * 8;
4101 j = po->operand[1].val;
4102 j %= l;
4103 if (j != 0) {
4104 if (po->op == OP_SHL)
4105 j = l - j;
4106 else
4107 j -= 1;
cb090db0 4108 fprintf(fout, " cond_c = (%s >> %d) & 1;\n",
4109 buf1, j);
04f8a628 4110 }
4111 else
4112 ferr(po, "zero shift?\n");
4113 }
4114 else
4115 ferr(po, "TODO\n");
4116 pfomask &= ~(1 << PFO_C);
840257f6 4117 }
04f8a628 4118 fprintf(fout, " %s %s= %s;", buf1, op_to_c(po),
4119 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
4120 output_std_flags(fout, po, &pfomask, buf1);
850c9265 4121 last_arith_dst = &po->operand[0];
69a3cdfc 4122 delayed_flag_op = NULL;
850c9265 4123 break;
4124
d4e3b5db 4125 case OP_SAR:
4126 assert_operand_cnt(2);
4127 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4128 fprintf(fout, " %s = %s%s >> %s;", buf1,
4129 lmod_cast_s(po, po->operand[0].lmod), buf1,
3ebea2cf 4130 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
04f8a628 4131 output_std_flags(fout, po, &pfomask, buf1);
d4e3b5db 4132 last_arith_dst = &po->operand[0];
4133 delayed_flag_op = NULL;
4134 break;
4135
4136 case OP_ROL:
4137 case OP_ROR:
4138 assert_operand_cnt(2);
4139 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4140 if (po->operand[1].type == OPT_CONST) {
4141 j = po->operand[1].val;
4142 j %= lmod_bytes(po, po->operand[0].lmod) * 8;
4143 fprintf(fout, po->op == OP_ROL ?
4144 " %s = (%s << %d) | (%s >> %d);" :
4145 " %s = (%s >> %d) | (%s << %d);",
4146 buf1, buf1, j, buf1,
4147 lmod_bytes(po, po->operand[0].lmod) * 8 - j);
4148 }
4149 else
4150 ferr(po, "TODO\n");
04f8a628 4151 output_std_flags(fout, po, &pfomask, buf1);
d4e3b5db 4152 last_arith_dst = &po->operand[0];
4153 delayed_flag_op = NULL;
4154 break;
4155
cb090db0 4156 case OP_RCL:
4157 case OP_RCR:
4158 assert_operand_cnt(2);
4159 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4160 l = lmod_bytes(po, po->operand[0].lmod) * 8;
4161 if (po->operand[1].type == OPT_CONST) {
4162 j = po->operand[1].val % l;
4163 if (j == 0)
4164 ferr(po, "zero rotate\n");
4165 fprintf(fout, " tmp = (%s >> %d) & 1;\n",
4166 buf1, (po->op == OP_RCL) ? (l - j) : (j - 1));
4167 if (po->op == OP_RCL) {
4168 fprintf(fout,
4169 " %s = (%s << %d) | (cond_c << %d)",
4170 buf1, buf1, j, j - 1);
4171 if (j != 1)
4172 fprintf(fout, " | (%s >> %d)", buf1, l + 1 - j);
4173 }
4174 else {
4175 fprintf(fout,
4176 " %s = (%s >> %d) | (cond_c << %d)",
4177 buf1, buf1, j, l - j);
4178 if (j != 1)
4179 fprintf(fout, " | (%s << %d)", buf1, l + 1 - j);
4180 }
4181 fprintf(fout, ";\n");
4182 fprintf(fout, " cond_c = tmp;");
4183 }
4184 else
4185 ferr(po, "TODO\n");
4186 strcpy(g_comment, (po->op == OP_RCL) ? "rcl" : "rcr");
4187 output_std_flags(fout, po, &pfomask, buf1);
4188 last_arith_dst = &po->operand[0];
4189 delayed_flag_op = NULL;
4190 break;
4191
5101a5f9 4192 case OP_XOR:
850c9265 4193 assert_operand_cnt(2);
4194 propagate_lmod(po, &po->operand[0], &po->operand[1]);
5101a5f9 4195 if (IS(opr_name(po, 0), opr_name(po, 1))) {
4196 // special case for XOR
2fe80fdb 4197 if (pfomask & (1 << PFO_BE)) { // weird, but it happens..
4198 fprintf(fout, " cond_be = 1;\n");
4199 pfomask &= ~(1 << PFO_BE);
4200 }
5101a5f9 4201 fprintf(fout, " %s = 0;",
4202 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]));
4203 last_arith_dst = &po->operand[0];
4204 delayed_flag_op = NULL;
850c9265 4205 break;
850c9265 4206 }
5101a5f9 4207 goto dualop_arith;
4208
2fe80fdb 4209 case OP_ADD:
4210 assert_operand_cnt(2);
4211 propagate_lmod(po, &po->operand[0], &po->operand[1]);
4212 if (pfomask & (1 << PFO_C)) {
c8dbc5be 4213 out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
4214 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
4215 if (po->operand[0].lmod == OPLM_DWORD) {
4216 fprintf(fout, " tmp64 = (u64)%s + %s;\n", buf1, buf2);
4217 fprintf(fout, " cond_c = tmp64 >> 32;\n");
4218 fprintf(fout, " %s = (u32)tmp64;",
4219 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]));
4220 strcat(g_comment, "add64");
4221 }
4222 else {
4223 fprintf(fout, " cond_c = ((u32)%s + %s) >> %d;\n",
4224 buf1, buf2, lmod_bytes(po, po->operand[0].lmod) * 8);
4225 fprintf(fout, " %s += %s;",
4226 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4227 buf2);
4228 }
2fe80fdb 4229 pfomask &= ~(1 << PFO_C);
4230 output_std_flags(fout, po, &pfomask, buf1);
4231 last_arith_dst = &po->operand[0];
4232 delayed_flag_op = NULL;
4233 break;
4234 }
4235 goto dualop_arith;
4236
4237 case OP_SUB:
4238 assert_operand_cnt(2);
4239 propagate_lmod(po, &po->operand[0], &po->operand[1]);
4240 if (pfomask & (1 << PFO_C)) {
4241 fprintf(fout, " cond_c = %s < %s;\n",
4242 out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]),
4243 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
4244 pfomask &= ~(1 << PFO_C);
4245 }
4246 goto dualop_arith;
4247
5101a5f9 4248 case OP_ADC:
850c9265 4249 case OP_SBB:
5101a5f9 4250 assert_operand_cnt(2);
4251 propagate_lmod(po, &po->operand[0], &po->operand[1]);
a2c1d768 4252 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
840257f6 4253 if (po->op == OP_SBB
4254 && IS(po->operand[0].name, po->operand[1].name))
4255 {
4256 // avoid use of unitialized var
a2c1d768 4257 fprintf(fout, " %s = -cond_c;", buf1);
94d447fb 4258 // carry remains what it was
4259 pfomask &= ~(1 << PFO_C);
840257f6 4260 }
4261 else {
a2c1d768 4262 fprintf(fout, " %s %s= %s + cond_c;", buf1, op_to_c(po),
3ebea2cf 4263 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
840257f6 4264 }
a2c1d768 4265 output_std_flags(fout, po, &pfomask, buf1);
5101a5f9 4266 last_arith_dst = &po->operand[0];
4267 delayed_flag_op = NULL;
850c9265 4268 break;
4269
1f84f6b3 4270 case OP_BSF:
4271 assert_operand_cnt(2);
4272 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
4273 fprintf(fout, " %s = %s ? __builtin_ffs(%s) - 1 : 0;",
4274 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4275 buf2, buf2);
4276 output_std_flags(fout, po, &pfomask, buf1);
4277 last_arith_dst = &po->operand[0];
4278 delayed_flag_op = NULL;
4279 strcat(g_comment, "bsf");
4280 break;
4281
850c9265 4282 case OP_INC:
4283 case OP_DEC:
4284 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
1bafb621 4285 if (po->operand[0].type == OPT_REG) {
4286 strcpy(buf2, po->op == OP_INC ? "++" : "--");
4287 fprintf(fout, " %s%s;", buf1, buf2);
4288 }
4289 else {
4290 strcpy(buf2, po->op == OP_INC ? "+" : "-");
4291 fprintf(fout, " %s %s= 1;", buf1, buf2);
4292 }
a2c1d768 4293 output_std_flags(fout, po, &pfomask, buf1);
5101a5f9 4294 last_arith_dst = &po->operand[0];
4295 delayed_flag_op = NULL;
4296 break;
4297
4298 case OP_NEG:
4299 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
3ebea2cf 4300 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[0]);
5101a5f9 4301 fprintf(fout, " %s = -%s%s;", buf1,
4302 lmod_cast_s(po, po->operand[0].lmod), buf2);
850c9265 4303 last_arith_dst = &po->operand[0];
69a3cdfc 4304 delayed_flag_op = NULL;
940e8e66 4305 if (pfomask & (1 << PFO_C)) {
4306 fprintf(fout, "\n cond_c = (%s != 0);", buf1);
4307 pfomask &= ~(1 << PFO_C);
4308 }
850c9265 4309 break;
4310
4311 case OP_IMUL:
de50b98b 4312 if (po->operand_cnt == 2) {
4313 propagate_lmod(po, &po->operand[0], &po->operand[1]);
850c9265 4314 goto dualop_arith;
de50b98b 4315 }
87bf6cec 4316 if (po->operand_cnt == 3)
4317 ferr(po, "TODO imul3\n");
4318 // fallthrough
4319 case OP_MUL:
4320 assert_operand_cnt(1);
c8dbc5be 4321 switch (po->operand[0].lmod) {
4322 case OPLM_DWORD:
4323 strcpy(buf1, po->op == OP_IMUL ? "(s64)(s32)" : "(u64)");
4324 fprintf(fout, " tmp64 = %seax * %s%s;\n", buf1, buf1,
4325 out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[0]));
4326 fprintf(fout, " edx = tmp64 >> 32;\n");
4327 fprintf(fout, " eax = tmp64;");
4328 break;
4329 case OPLM_BYTE:
4330 strcpy(buf1, po->op == OP_IMUL ? "(s16)(s8)" : "(u16)(u8)");
4331 fprintf(fout, " LOWORD(eax) = %seax * %s;", buf1,
4332 out_src_opr(buf2, sizeof(buf2), po, &po->operand[0],
4333 buf1, 0));
4334 break;
4335 default:
4336 ferr(po, "TODO: unhandled mul type\n");
4337 break;
4338 }
87bf6cec 4339 last_arith_dst = NULL;
69a3cdfc 4340 delayed_flag_op = NULL;
91977a1c 4341 break;
4342
5101a5f9 4343 case OP_DIV:
4344 case OP_IDIV:
4345 assert_operand_cnt(1);
4346 if (po->operand[0].lmod != OPLM_DWORD)
4347 ferr(po, "unhandled lmod %d\n", po->operand[0].lmod);
4348
cb090db0 4349 out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
4350 strcpy(buf2, lmod_cast(po, po->operand[0].lmod,
4351 po->op == OP_IDIV));
4352 switch (po->operand[0].lmod) {
4353 case OPLM_DWORD:
4354 if (po->flags & OPF_32BIT)
4355 snprintf(buf3, sizeof(buf3), "%seax", buf2);
4356 else {
4357 fprintf(fout, " tmp64 = ((u64)edx << 32) | eax;\n");
4358 snprintf(buf3, sizeof(buf3), "%stmp64",
4359 (po->op == OP_IDIV) ? "(s64)" : "");
4360 }
4361 if (po->operand[0].type == OPT_REG
4362 && po->operand[0].reg == xDX)
4363 {
4364 fprintf(fout, " eax = %s / %s%s;", buf3, buf2, buf1);
4365 fprintf(fout, " edx = %s %% %s%s;\n", buf3, buf2, buf1);
4366 }
4367 else {
4368 fprintf(fout, " edx = %s %% %s%s;\n", buf3, buf2, buf1);
4369 fprintf(fout, " eax = %s / %s%s;", buf3, buf2, buf1);
4370 }
4371 break;
4372 default:
4373 ferr(po, "unhandled division type\n");
5101a5f9 4374 }
87bf6cec 4375 last_arith_dst = NULL;
4376 delayed_flag_op = NULL;
5101a5f9 4377 break;
4378
91977a1c 4379 case OP_TEST:
4380 case OP_CMP:
850c9265 4381 propagate_lmod(po, &po->operand[0], &po->operand[1]);
940e8e66 4382 if (pfomask != 0) {
69a3cdfc 4383 for (j = 0; j < 8; j++) {
940e8e66 4384 if (pfomask & (1 << j)) {
69a3cdfc 4385 out_cmp_test(buf1, sizeof(buf1), po, j, 0);
4386 fprintf(fout, " cond_%s = %s;",
4387 parsed_flag_op_names[j], buf1);
4388 }
4389 }
940e8e66 4390 pfomask = 0;
69a3cdfc 4391 }
4392 else
4393 no_output = 1;
7ba45c34 4394 last_arith_dst = NULL;
69a3cdfc 4395 delayed_flag_op = po;
91977a1c 4396 break;
4397
092f64e1 4398 case OP_SCC:
4399 // SETcc - should already be handled
4400 break;
4401
69a3cdfc 4402 // note: we reuse OP_Jcc for SETcc, only flags differ
092f64e1 4403 case OP_JCC:
4404 fprintf(fout, "\n goto %s;", po->operand[0].name);
850c9265 4405 break;
4406
5c024ef7 4407 case OP_JECXZ:
4408 fprintf(fout, " if (ecx == 0)\n");
4409 fprintf(fout, " goto %s;", po->operand[0].name);
4410 strcat(g_comment, "jecxz");
4411 break;
4412
850c9265 4413 case OP_JMP:
87bf6cec 4414 assert_operand_cnt(1);
de50b98b 4415 last_arith_dst = NULL;
4416 delayed_flag_op = NULL;
4417
4c45fa73 4418 if (po->operand[0].type == OPT_REGMEM) {
4419 ret = sscanf(po->operand[0].name, "%[^[][%[^*]*4]",
4420 buf1, buf2);
4421 if (ret != 2)
4422 ferr(po, "parse failure for jmp '%s'\n",
4423 po->operand[0].name);
4424 fprintf(fout, " goto *jt_%s[%s];", buf1, buf2);
4425 break;
4426 }
4427 else if (po->operand[0].type != OPT_LABEL)
4428 ferr(po, "unhandled jmp type\n");
87bf6cec 4429
850c9265 4430 fprintf(fout, " goto %s;", po->operand[0].name);
91977a1c 4431 break;
4432
4433 case OP_CALL:
5101a5f9 4434 assert_operand_cnt(1);
092f64e1 4435 pp = po->pp;
89ff3147 4436 my_assert_not(pp, NULL);
91977a1c 4437
092f64e1 4438 strcpy(buf3, " ");
4439 if (po->flags & OPF_CC) {
4440 // we treat conditional branch to another func
4441 // (yes such code exists..) as conditional tailcall
4442 strcat(buf3, " ");
4443 fprintf(fout, " {\n");
4444 }
4445
8eb12e72 4446 if (pp->is_fptr && !pp->is_arg) {
092f64e1 4447 fprintf(fout, "%s%s = %s;\n", buf3, pp->name,
1cd4a663 4448 out_src_opr(buf1, sizeof(buf1), po, &po->operand[0],
4449 "(void *)", 0));
8eb12e72 4450 if (pp->is_unresolved)
4451 fprintf(fout, "%sunresolved_call(\"%s:%d\", %s);\n",
4452 buf3, asmfn, po->asmln, pp->name);
4453 }
1bafb621 4454
092f64e1 4455 fprintf(fout, "%s", buf3);
2b43685d 4456 if (strstr(pp->ret_type.name, "int64")) {
87bf6cec 4457 if (po->flags & OPF_TAIL)
2b43685d 4458 ferr(po, "int64 and tail?\n");
2fe80fdb 4459 fprintf(fout, "tmp64 = ");
2b43685d 4460 }
4461 else if (!IS(pp->ret_type.name, "void")) {
4462 if (po->flags & OPF_TAIL) {
840257f6 4463 if (!IS(g_func_pp->ret_type.name, "void")) {
4464 fprintf(fout, "return ");
4465 if (g_func_pp->ret_type.is_ptr != pp->ret_type.is_ptr)
4466 fprintf(fout, "(%s)", g_func_pp->ret_type.name);
4467 }
2b43685d 4468 }
75ad0378 4469 else if (regmask & (1 << xAX)) {
87bf6cec 4470 fprintf(fout, "eax = ");
2b43685d 4471 if (pp->ret_type.is_ptr)
4472 fprintf(fout, "(u32)");
4473 }
91977a1c 4474 }
87bf6cec 4475
ddaf8bd7 4476 if (pp->name[0] == 0)
4477 ferr(po, "missing pp->name\n");
4478 fprintf(fout, "%s%s(", pp->name,
4479 pp->has_structarg ? "_sa" : "");
39b168b8 4480
2fe80fdb 4481 if (po->flags & OPF_ATAIL) {
4482 if (pp->argc_stack != g_func_pp->argc_stack
4483 || (pp->argc_stack > 0
4484 && pp->is_stdcall != g_func_pp->is_stdcall))
4485 ferr(po, "incompatible tailcall\n");
1f84f6b3 4486 if (g_func_pp->has_retreg)
4487 ferr(po, "TODO: retreg+tailcall\n");
87bf6cec 4488
2fe80fdb 4489 for (arg = j = 0; arg < pp->argc; arg++) {
4490 if (arg > 0)
4491 fprintf(fout, ", ");
87bf6cec 4492
2fe80fdb 4493 cast[0] = 0;
4494 if (pp->arg[arg].type.is_ptr)
4495 snprintf(cast, sizeof(cast), "(%s)",
4496 pp->arg[arg].type.name);
91977a1c 4497
2fe80fdb 4498 if (pp->arg[arg].reg != NULL) {
4499 fprintf(fout, "%s%s", cast, pp->arg[arg].reg);
4500 continue;
4501 }
4502 // stack arg
4503 for (; j < g_func_pp->argc; j++)
4504 if (g_func_pp->arg[j].reg == NULL)
4505 break;
4506 fprintf(fout, "%sa%d", cast, j + 1);
4507 j++;
69a3cdfc 4508 }
2fe80fdb 4509 }
4510 else {
4511 for (arg = 0; arg < pp->argc; arg++) {
4512 if (arg > 0)
4513 fprintf(fout, ", ");
4514
4515 cast[0] = 0;
4516 if (pp->arg[arg].type.is_ptr)
4517 snprintf(cast, sizeof(cast), "(%s)",
4518 pp->arg[arg].type.name);
4519
4520 if (pp->arg[arg].reg != NULL) {
1f84f6b3 4521 if (pp->arg[arg].type.is_retreg)
4522 fprintf(fout, "&%s", pp->arg[arg].reg);
4523 else
4524 fprintf(fout, "%s%s", cast, pp->arg[arg].reg);
2fe80fdb 4525 continue;
4526 }
4527
4528 // stack arg
4529 tmp_op = pp->arg[arg].datap;
4530 if (tmp_op == NULL)
4531 ferr(po, "parsed_op missing for arg%d\n", arg);
4532 if (tmp_op->argnum != 0) {
4533 fprintf(fout, "%ss_a%d", cast, tmp_op->argnum);
4534 }
4535 else {
4536 fprintf(fout, "%s",
4537 out_src_opr(buf1, sizeof(buf1),
4538 tmp_op, &tmp_op->operand[0], cast, 0));
4539 }
69a3cdfc 4540 }
91977a1c 4541 }
4542 fprintf(fout, ");");
87bf6cec 4543
2b43685d 4544 if (strstr(pp->ret_type.name, "int64")) {
4545 fprintf(fout, "\n");
092f64e1 4546 fprintf(fout, "%sedx = tmp64 >> 32;\n", buf3);
4547 fprintf(fout, "%seax = tmp64;", buf3);
2b43685d 4548 }
4549
89ff3147 4550 if (pp->is_unresolved) {
8eb12e72 4551 snprintf(buf2, sizeof(buf2), " unresolved %dreg",
89ff3147 4552 pp->argc_reg);
092f64e1 4553 strcat(g_comment, buf2);
89ff3147 4554 }
4555
87bf6cec 4556 if (po->flags & OPF_TAIL) {
840257f6 4557 ret = 0;
ddaf8bd7 4558 if (i == opcnt - 1 || pp->is_noreturn)
840257f6 4559 ret = 0;
4560 else if (IS(pp->ret_type.name, "void"))
4561 ret = 1;
4562 else if (IS(g_func_pp->ret_type.name, "void"))
4563 ret = 1;
4564 // else already handled as 'return f()'
4565
4566 if (ret) {
da87ae38 4567 if (!IS(g_func_pp->ret_type.name, "void")) {
ddaf8bd7 4568 ferr(po, "int func -> void func tailcall?\n");
da87ae38 4569 }
4570 else {
092f64e1 4571 fprintf(fout, "\n%sreturn;", buf3);
ddaf8bd7 4572 strcat(g_comment, " ^ tailcall");
da87ae38 4573 }
3ebea2cf 4574 }
89ff3147 4575 else
ddaf8bd7 4576 strcat(g_comment, " tailcall");
87bf6cec 4577 }
ddaf8bd7 4578 if (pp->is_noreturn)
4579 strcat(g_comment, " noreturn");
2fe80fdb 4580 if ((po->flags & OPF_ATAIL) && pp->argc_stack > 0)
4581 strcat(g_comment, " argframe");
092f64e1 4582 if (po->flags & OPF_CC)
4583 strcat(g_comment, " cond");
4584
4585 if (po->flags & OPF_CC)
4586 fprintf(fout, "\n }");
4587
87bf6cec 4588 delayed_flag_op = NULL;
4589 last_arith_dst = NULL;
91977a1c 4590 break;
4591
4592 case OP_RET:
bd96f656 4593 if (g_func_pp->is_vararg)
4f12f671 4594 fprintf(fout, " va_end(ap);\n");
1f84f6b3 4595 if (g_func_pp->has_retreg) {
4596 for (arg = 0; arg < g_func_pp->argc; arg++)
4597 if (g_func_pp->arg[arg].type.is_retreg)
4598 fprintf(fout, " *r_%s = %s;\n",
4599 g_func_pp->arg[arg].reg, g_func_pp->arg[arg].reg);
4600 }
4f12f671 4601
bd96f656 4602 if (IS(g_func_pp->ret_type.name, "void")) {
3ebea2cf 4603 if (i != opcnt - 1 || label_pending)
4604 fprintf(fout, " return;");
4605 }
bd96f656 4606 else if (g_func_pp->ret_type.is_ptr) {
d4e3b5db 4607 fprintf(fout, " return (%s)eax;",
bd96f656 4608 g_func_pp->ret_type.name);
3ebea2cf 4609 }
2fe80fdb 4610 else if (IS(g_func_pp->ret_type.name, "__int64"))
4611 fprintf(fout, " return ((u64)edx << 32) | eax;");
91977a1c 4612 else
4613 fprintf(fout, " return eax;");
de50b98b 4614
4615 last_arith_dst = NULL;
4616 delayed_flag_op = NULL;
91977a1c 4617 break;
4618
4619 case OP_PUSH:
1f84f6b3 4620 out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
de50b98b 4621 if (po->argnum != 0) {
69a3cdfc 4622 // special case - saved func arg
de50b98b 4623 fprintf(fout, " s_a%d = %s;", po->argnum, buf1);
69a3cdfc 4624 break;
4625 }
d4e3b5db 4626 else if (po->flags & OPF_RSAVE) {
d4e3b5db 4627 fprintf(fout, " s_%s = %s;", buf1, buf1);
4628 break;
4629 }
1f84f6b3 4630 else if (g_func_pp->is_userstack) {
4631 fprintf(fout, " *(--esp) = %s;", buf1);
4632 break;
4633 }
e56ab892 4634 if (!(g_ida_func_attr & IDAFA_NORETURN))
4635 ferr(po, "stray push encountered\n");
4636 no_output = 1;
91977a1c 4637 break;
4638
4639 case OP_POP:
d4e3b5db 4640 if (po->flags & OPF_RSAVE) {
3ebea2cf 4641 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
d4e3b5db 4642 fprintf(fout, " %s = s_%s;", buf1, buf1);
4643 break;
4644 }
5c024ef7 4645 else if (po->datap != NULL) {
4646 // push/pop pair
4647 tmp_op = po->datap;
4648 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4649 fprintf(fout, " %s = %s;", buf1,
4650 out_src_opr(buf2, sizeof(buf2),
4651 tmp_op, &tmp_op->operand[0],
c7ed83dd 4652 default_cast_to(buf3, sizeof(buf3), &po->operand[0]), 0));
5c024ef7 4653 break;
4654 }
1f84f6b3 4655 else if (g_func_pp->is_userstack) {
4656 fprintf(fout, " %s = *esp++;",
4657 out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]));
4658 break;
4659 }
4660 else
4661 ferr(po, "stray pop encountered\n");
91977a1c 4662 break;
4663
33c35af6 4664 case OP_NOP:
2b43685d 4665 no_output = 1;
33c35af6 4666 break;
4667
91977a1c 4668 default:
4669 no_output = 1;
69a3cdfc 4670 ferr(po, "unhandled op type %d, flags %x\n",
4671 po->op, po->flags);
91977a1c 4672 break;
4673 }
4674
4675 if (g_comment[0] != 0) {
ddaf8bd7 4676 char *p = g_comment;
4677 while (my_isblank(*p))
4678 p++;
4679 fprintf(fout, " // %s", p);
91977a1c 4680 g_comment[0] = 0;
4681 no_output = 0;
4682 }
4683 if (!no_output)
4684 fprintf(fout, "\n");
5101a5f9 4685
2b43685d 4686 // some sanity checking
591721d7 4687 if (po->flags & OPF_REP) {
4688 if (po->op != OP_STOS && po->op != OP_MOVS
4689 && po->op != OP_CMPS && po->op != OP_SCAS)
4690 ferr(po, "unexpected rep\n");
4691 if (!(po->flags & (OPF_REPZ|OPF_REPNZ))
4692 && (po->op == OP_CMPS || po->op == OP_SCAS))
4693 ferr(po, "cmps/scas with plain rep\n");
4694 }
4695 if ((po->flags & (OPF_REPZ|OPF_REPNZ))
4696 && po->op != OP_CMPS && po->op != OP_SCAS)
2b43685d 4697 ferr(po, "unexpected repz/repnz\n");
4698
940e8e66 4699 if (pfomask != 0)
7ba45c34 4700 ferr(po, "missed flag calc, pfomask=%x\n", pfomask);
940e8e66 4701
5101a5f9 4702 // see is delayed flag stuff is still valid
4703 if (delayed_flag_op != NULL && delayed_flag_op != po) {
89ff3147 4704 if (is_any_opr_modified(delayed_flag_op, po, 0))
5101a5f9 4705 delayed_flag_op = NULL;
4706 }
4707
4708 if (last_arith_dst != NULL && last_arith_dst != &po->operand[0]) {
4709 if (is_opr_modified(last_arith_dst, po))
4710 last_arith_dst = NULL;
4711 }
3ebea2cf 4712
4713 label_pending = 0;
91977a1c 4714 }
4715
a2c1d768 4716 if (g_stack_fsz && !g_stack_frame_used)
4717 fprintf(fout, " (void)sf;\n");
4718
91977a1c 4719 fprintf(fout, "}\n\n");
4720
4721 // cleanup
4722 for (i = 0; i < opcnt; i++) {
4c45fa73 4723 struct label_ref *lr, *lr_del;
4724
4725 lr = g_label_refs[i].next;
4726 while (lr != NULL) {
4727 lr_del = lr;
4728 lr = lr->next;
4729 free(lr_del);
4730 }
4731 g_label_refs[i].i = -1;
4732 g_label_refs[i].next = NULL;
4733
91977a1c 4734 if (ops[i].op == OP_CALL) {
092f64e1 4735 if (ops[i].pp)
4736 proto_release(ops[i].pp);
91977a1c 4737 }
4738 }
bd96f656 4739 g_func_pp = NULL;
91977a1c 4740}
c36e914d 4741
d4e3b5db 4742static void set_label(int i, const char *name)
4743{
4744 const char *p;
4745 int len;
4746
4747 len = strlen(name);
4748 p = strchr(name, ':');
4749 if (p != NULL)
4750 len = p - name;
4751
4752 if (len > sizeof(g_labels[0]) - 1)
4753 aerr("label '%s' too long: %d\n", name, len);
e56ab892 4754 if (g_labels[i][0] != 0 && !IS_START(g_labels[i], "algn_"))
4755 aerr("dupe label '%s' vs '%s'?\n", name, g_labels[i]);
d4e3b5db 4756 memcpy(g_labels[i], name, len);
4757 g_labels[i][len] = 0;
4758}
4759
bfa4a6ee 4760// '=' needs special treatment..
4761static char *next_word_s(char *w, size_t wsize, char *s)
4762{
4763 size_t i;
4764
4765 s = sskip(s);
4766
4767 for (i = 0; i < wsize - 1; i++) {
4768 if (s[i] == 0 || my_isblank(s[i]) || (s[i] == '=' && i > 0))
4769 break;
4770 w[i] = s[i];
4771 }
4772 w[i] = 0;
4773
4774 if (s[i] != 0 && !my_isblank(s[i]) && s[i] != '=')
4775 printf("warning: '%s' truncated\n", w);
4776
4777 return s + i;
4778}
4779
e56ab892 4780struct chunk_item {
4781 char *name;
4782 long fptr;
de50b98b 4783 int asmln;
e56ab892 4784};
4785
cdfaeed7 4786static struct chunk_item *func_chunks;
4787static int func_chunk_cnt;
4788static int func_chunk_alloc;
4789
4790static void add_func_chunk(FILE *fasm, const char *name, int line)
4791{
4792 if (func_chunk_cnt >= func_chunk_alloc) {
4793 func_chunk_alloc *= 2;
4794 func_chunks = realloc(func_chunks,
4795 func_chunk_alloc * sizeof(func_chunks[0]));
4796 my_assert_not(func_chunks, NULL);
4797 }
4798 func_chunks[func_chunk_cnt].fptr = ftell(fasm);
4799 func_chunks[func_chunk_cnt].name = strdup(name);
4800 func_chunks[func_chunk_cnt].asmln = line;
4801 func_chunk_cnt++;
4802}
4803
e56ab892 4804static int cmp_chunks(const void *p1, const void *p2)
4805{
4806 const struct chunk_item *c1 = p1, *c2 = p2;
4807 return strcmp(c1->name, c2->name);
4808}
4809
bfa4a6ee 4810static int cmpstringp(const void *p1, const void *p2)
4811{
4812 return strcmp(*(char * const *)p1, *(char * const *)p2);
4813}
4814
cdfaeed7 4815static void scan_ahead(FILE *fasm)
4816{
4817 char words[2][256];
4818 char line[256];
4819 long oldpos;
4820 int oldasmln;
4821 int wordc;
4822 char *p;
4823 int i;
4824
4825 oldpos = ftell(fasm);
4826 oldasmln = asmln;
4827
4828 while (fgets(line, sizeof(line), fasm))
4829 {
4830 wordc = 0;
4831 asmln++;
4832
4833 p = sskip(line);
4834 if (*p == 0)
4835 continue;
4836
4837 if (*p == ';')
4838 {
4839 // get rid of random tabs
4840 for (i = 0; line[i] != 0; i++)
4841 if (line[i] == '\t')
4842 line[i] = ' ';
4843
4844 if (p[2] == 'S' && IS_START(p, "; START OF FUNCTION CHUNK FOR "))
4845 {
4846 p += 30;
4847 next_word(words[0], sizeof(words[0]), p);
4848 if (words[0][0] == 0)
4849 aerr("missing name for func chunk?\n");
4850
4851 add_func_chunk(fasm, words[0], asmln);
4852 }
46b388c2 4853 else if (IS_START(p, "; sctend"))
4854 break;
4855
cdfaeed7 4856 continue;
4857 } // *p == ';'
4858
4859 for (wordc = 0; wordc < ARRAY_SIZE(words); wordc++) {
4860 words[wordc][0] = 0;
4861 p = sskip(next_word_s(words[wordc], sizeof(words[0]), p));
4862 if (*p == 0 || *p == ';') {
4863 wordc++;
4864 break;
4865 }
4866 }
4867
4868 if (wordc == 2 && IS(words[1], "ends"))
4869 break;
4870 }
4871
4872 fseek(fasm, oldpos, SEEK_SET);
4873 asmln = oldasmln;
4874}
4875
91977a1c 4876int main(int argc, char *argv[])
4877{
06c5d854 4878 FILE *fout, *fasm, *frlist;
4c45fa73 4879 struct parsed_data *pd = NULL;
4880 int pd_alloc = 0;
4881 char **rlist = NULL;
4882 int rlist_len = 0;
4883 int rlist_alloc = 0;
e56ab892 4884 int func_chunks_used = 0;
4885 int func_chunks_sorted = 0;
e56ab892 4886 int func_chunk_i = -1;
4887 long func_chunk_ret = 0;
de50b98b 4888 int func_chunk_ret_ln = 0;
cdfaeed7 4889 int scanned_ahead = 0;
91977a1c 4890 char line[256];
a2c1d768 4891 char words[20][256];
4c45fa73 4892 enum opr_lenmod lmod;
ddaf8bd7 4893 char *sctproto = NULL;
91977a1c 4894 int in_func = 0;
4c45fa73 4895 int pending_endp = 0;
bfa4a6ee 4896 int skip_func = 0;
940e8e66 4897 int skip_warned = 0;
91977a1c 4898 int eq_alloc;
bfa4a6ee 4899 int verbose = 0;
1f84f6b3 4900 int multi_seg = 0;
46b388c2 4901 int end = 0;
bfa4a6ee 4902 int arg_out;
89ff3147 4903 int arg;
91977a1c 4904 int pi = 0;
e56ab892 4905 int i, j;
4906 int ret, len;
91977a1c 4907 char *p;
4908 int wordc;
4909
89ff3147 4910 for (arg = 1; arg < argc; arg++) {
4911 if (IS(argv[arg], "-v"))
4912 verbose = 1;
4913 else if (IS(argv[arg], "-rf"))
4914 g_allow_regfunc = 1;
1f84f6b3 4915 else if (IS(argv[arg], "-m"))
4916 multi_seg = 1;
89ff3147 4917 else
4918 break;
bfa4a6ee 4919 }
4920
4921 if (argc < arg + 3) {
1f84f6b3 4922 printf("usage:\n%s [-v] [-rf] [-m] <.c> <.asm> <hdrf> [rlist]*\n",
91977a1c 4923 argv[0]);
4924 return 1;
4925 }
4926
bfa4a6ee 4927 arg_out = arg++;
91977a1c 4928
bfa4a6ee 4929 asmfn = argv[arg++];
91977a1c 4930 fasm = fopen(asmfn, "r");
4931 my_assert_not(fasm, NULL);
4932
bfa4a6ee 4933 hdrfn = argv[arg++];
06c5d854 4934 g_fhdr = fopen(hdrfn, "r");
4935 my_assert_not(g_fhdr, NULL);
bfa4a6ee 4936
4937 rlist_alloc = 64;
4938 rlist = malloc(rlist_alloc * sizeof(rlist[0]));
4939 my_assert_not(rlist, NULL);
4940 // needs special handling..
4941 rlist[rlist_len++] = "__alloca_probe";
4942
e56ab892 4943 func_chunk_alloc = 32;
4944 func_chunks = malloc(func_chunk_alloc * sizeof(func_chunks[0]));
4945 my_assert_not(func_chunks, NULL);
4946
a2c1d768 4947 memset(words, 0, sizeof(words));
4948
bfa4a6ee 4949 for (; arg < argc; arg++) {
4950 frlist = fopen(argv[arg], "r");
4951 my_assert_not(frlist, NULL);
4952
4953 while (fgets(line, sizeof(line), frlist)) {
4954 p = sskip(line);
1cd4a663 4955 if (*p == 0 || *p == ';')
4956 continue;
4957 if (*p == '#') {
89ff3147 4958 if (IS_START(p, "#if 0")
4959 || (g_allow_regfunc && IS_START(p, "#if NO_REGFUNC")))
4960 {
1cd4a663 4961 skip_func = 1;
89ff3147 4962 }
1cd4a663 4963 else if (IS_START(p, "#endif"))
4964 skip_func = 0;
4965 continue;
4966 }
4967 if (skip_func)
bfa4a6ee 4968 continue;
4969
4970 p = next_word(words[0], sizeof(words[0]), p);
4971 if (words[0][0] == 0)
4972 continue;
4973
4974 if (rlist_len >= rlist_alloc) {
4975 rlist_alloc = rlist_alloc * 2 + 64;
4976 rlist = realloc(rlist, rlist_alloc * sizeof(rlist[0]));
4977 my_assert_not(rlist, NULL);
4978 }
4979 rlist[rlist_len++] = strdup(words[0]);
4980 }
1cd4a663 4981 skip_func = 0;
bfa4a6ee 4982
4983 fclose(frlist);
4984 frlist = NULL;
4985 }
4986
4987 if (rlist_len > 0)
4988 qsort(rlist, rlist_len, sizeof(rlist[0]), cmpstringp);
4989
4990 fout = fopen(argv[arg_out], "w");
91977a1c 4991 my_assert_not(fout, NULL);
4992
4993 eq_alloc = 128;
4994 g_eqs = malloc(eq_alloc * sizeof(g_eqs[0]));
4995 my_assert_not(g_eqs, NULL);
4996
4c45fa73 4997 for (i = 0; i < ARRAY_SIZE(g_label_refs); i++) {
4998 g_label_refs[i].i = -1;
4999 g_label_refs[i].next = NULL;
5000 }
5001
91977a1c 5002 while (fgets(line, sizeof(line), fasm))
5003 {
4c45fa73 5004 wordc = 0;
91977a1c 5005 asmln++;
5006
5007 p = sskip(line);
1bafb621 5008 if (*p == 0)
91977a1c 5009 continue;
5010
de50b98b 5011 // get rid of random tabs
5012 for (i = 0; line[i] != 0; i++)
5013 if (line[i] == '\t')
5014 line[i] = ' ';
5015
e56ab892 5016 if (*p == ';')
5017 {
e56ab892 5018 if (p[2] == '=' && IS_START(p, "; =============== S U B"))
5019 goto do_pending_endp; // eww..
5020
5021 if (p[2] == 'A' && IS_START(p, "; Attributes:"))
5022 {
5023 static const char *attrs[] = {
5024 "bp-based frame",
5025 "library function",
5026 "static",
5027 "noreturn",
5028 "thunk",
5029 "fpd=",
5030 };
5031
5032 // parse IDA's attribute-list comment
5033 g_ida_func_attr = 0;
5034 p = sskip(p + 13);
5035
5036 for (; *p != 0; p = sskip(p)) {
5037 for (i = 0; i < ARRAY_SIZE(attrs); i++) {
5038 if (!strncmp(p, attrs[i], strlen(attrs[i]))) {
5039 g_ida_func_attr |= 1 << i;
5040 p += strlen(attrs[i]);
5041 break;
5042 }
5043 }
5044 if (i == ARRAY_SIZE(attrs)) {
5045 anote("unparsed IDA attr: %s\n", p);
1bafb621 5046 break;
5047 }
e56ab892 5048 if (IS(attrs[i], "fpd=")) {
5049 p = next_word(words[0], sizeof(words[0]), p);
5050 // ignore for now..
5051 }
1bafb621 5052 }
e56ab892 5053 }
5054 else if (p[2] == 'S' && IS_START(p, "; START OF FUNCTION CHUNK FOR "))
5055 {
5056 p += 30;
5057 next_word(words[0], sizeof(words[0]), p);
5058 if (words[0][0] == 0)
cdfaeed7 5059 aerr("missing name for func chunk?\n");
5060
5061 if (!scanned_ahead) {
5062 add_func_chunk(fasm, words[0], asmln);
5063 func_chunks_sorted = 0;
e56ab892 5064 }
e56ab892 5065 }
5066 else if (p[2] == 'E' && IS_START(p, "; END OF FUNCTION CHUNK"))
5067 {
5068 if (func_chunk_i >= 0) {
5069 if (func_chunk_i < func_chunk_cnt
5070 && IS(func_chunks[func_chunk_i].name, g_func))
5071 {
5072 // move on to next chunk
5073 ret = fseek(fasm, func_chunks[func_chunk_i].fptr, SEEK_SET);
5074 if (ret)
5075 aerr("seek failed for '%s' chunk #%d\n",
5076 g_func, func_chunk_i);
de50b98b 5077 asmln = func_chunks[func_chunk_i].asmln;
e56ab892 5078 func_chunk_i++;
5079 }
5080 else {
5081 if (func_chunk_ret == 0)
5082 aerr("no return from chunk?\n");
5083 fseek(fasm, func_chunk_ret, SEEK_SET);
de50b98b 5084 asmln = func_chunk_ret_ln;
e56ab892 5085 func_chunk_ret = 0;
5086 pending_endp = 1;
5087 }
1bafb621 5088 }
e56ab892 5089 }
5090 else if (p[2] == 'F' && IS_START(p, "; FUNCTION CHUNK AT ")) {
5091 func_chunks_used = 1;
5092 p += 20;
5093 if (IS_START(g_func, "sub_")) {
5094 unsigned long addr = strtoul(p, NULL, 16);
5095 unsigned long f_addr = strtoul(g_func + 4, NULL, 16);
cdfaeed7 5096 if (addr > f_addr && !scanned_ahead) {
94d447fb 5097 anote("scan_ahead caused by '%s', addr %lx\n",
5098 g_func, addr);
cdfaeed7 5099 scan_ahead(fasm);
5100 scanned_ahead = 1;
5101 func_chunks_sorted = 0;
5102 }
1bafb621 5103 }
5104 }
5105 continue;
e56ab892 5106 } // *p == ';'
1bafb621 5107
06c5d854 5108parse_words:
a2c1d768 5109 for (i = wordc; i < ARRAY_SIZE(words); i++)
5110 words[i][0] = 0;
cdfaeed7 5111 for (wordc = 0; wordc < ARRAY_SIZE(words); wordc++) {
bfa4a6ee 5112 p = sskip(next_word_s(words[wordc], sizeof(words[0]), p));
91977a1c 5113 if (*p == 0 || *p == ';') {
5114 wordc++;
5115 break;
5116 }
5117 }
a2c1d768 5118 if (*p != 0 && *p != ';')
5119 aerr("too many words\n");
91977a1c 5120
06c5d854 5121 // alow asm patches in comments
ddaf8bd7 5122 if (*p == ';') {
5123 if (IS_START(p, "; sctpatch:")) {
5124 p = sskip(p + 11);
5125 if (*p == 0 || *p == ';')
5126 continue;
5127 goto parse_words; // lame
5128 }
5129 if (IS_START(p, "; sctproto:")) {
5130 sctproto = strdup(p + 11);
5131 }
46b388c2 5132 else if (IS_START(p, "; sctend")) {
5133 end = 1;
5134 if (!pending_endp)
5135 break;
5136 }
06c5d854 5137 }
5138
91977a1c 5139 if (wordc == 0) {
5140 // shouldn't happen
5141 awarn("wordc == 0?\n");
5142 continue;
5143 }
5144
5145 // don't care about this:
5146 if (words[0][0] == '.'
5147 || IS(words[0], "include")
5148 || IS(words[0], "assume") || IS(words[1], "segment")
5149 || IS(words[0], "align"))
5150 {
5151 continue;
5152 }
5153
4c45fa73 5154do_pending_endp:
5155 // do delayed endp processing to collect switch jumptables
5156 if (pending_endp) {
46b388c2 5157 if (in_func && !skip_func && !end && wordc >= 2
4c45fa73 5158 && ((words[0][0] == 'd' && words[0][2] == 0)
5159 || (words[1][0] == 'd' && words[1][2] == 0)))
5160 {
5161 i = 1;
5162 if (words[1][0] == 'd' && words[1][2] == 0) {
5163 // label
5164 if (g_func_pd_cnt >= pd_alloc) {
5165 pd_alloc = pd_alloc * 2 + 16;
5166 g_func_pd = realloc(g_func_pd,
5167 sizeof(g_func_pd[0]) * pd_alloc);
5168 my_assert_not(g_func_pd, NULL);
5169 }
5170 pd = &g_func_pd[g_func_pd_cnt];
5171 g_func_pd_cnt++;
5172 memset(pd, 0, sizeof(*pd));
5173 strcpy(pd->label, words[0]);
5174 pd->type = OPT_CONST;
5175 pd->lmod = lmod_from_directive(words[1]);
5176 i = 2;
5177 }
5178 else {
da87ae38 5179 if (pd == NULL) {
5180 if (verbose)
5181 anote("skipping alignment byte?\n");
5182 continue;
5183 }
4c45fa73 5184 lmod = lmod_from_directive(words[0]);
5185 if (lmod != pd->lmod)
5186 aerr("lmod change? %d->%d\n", pd->lmod, lmod);
5187 }
5188
5189 if (pd->count_alloc < pd->count + wordc) {
5190 pd->count_alloc = pd->count_alloc * 2 + 14 + wordc;
5191 pd->d = realloc(pd->d, sizeof(pd->d[0]) * pd->count_alloc);
5192 my_assert_not(pd->d, NULL);
5193 }
5194 for (; i < wordc; i++) {
5195 if (IS(words[i], "offset")) {
5196 pd->type = OPT_OFFSET;
5197 i++;
5198 }
5199 p = strchr(words[i], ',');
5200 if (p != NULL)
5201 *p = 0;
5202 if (pd->type == OPT_OFFSET)
5203 pd->d[pd->count].u.label = strdup(words[i]);
5204 else
5205 pd->d[pd->count].u.val = parse_number(words[i]);
5206 pd->d[pd->count].bt_i = -1;
5207 pd->count++;
5208 }
5209 continue;
5210 }
5211
5212 if (in_func && !skip_func)
5213 gen_func(fout, g_fhdr, g_func, pi);
5214
5215 pending_endp = 0;
5216 in_func = 0;
5217 g_ida_func_attr = 0;
5218 skip_warned = 0;
5219 skip_func = 0;
5220 g_func[0] = 0;
e56ab892 5221 func_chunks_used = 0;
5222 func_chunk_i = -1;
4c45fa73 5223 if (pi != 0) {
5224 memset(&ops, 0, pi * sizeof(ops[0]));
5225 memset(g_labels, 0, pi * sizeof(g_labels[0]));
5226 pi = 0;
5227 }
5228 g_eqcnt = 0;
5229 for (i = 0; i < g_func_pd_cnt; i++) {
5230 pd = &g_func_pd[i];
5231 if (pd->type == OPT_OFFSET) {
5232 for (j = 0; j < pd->count; j++)
5233 free(pd->d[j].u.label);
5234 }
5235 free(pd->d);
5236 pd->d = NULL;
5237 }
5238 g_func_pd_cnt = 0;
5239 pd = NULL;
46b388c2 5240
5241 if (end)
5242 break;
4c45fa73 5243 if (wordc == 0)
5244 continue;
5245 }
5246
91977a1c 5247 if (IS(words[1], "proc")) {
5248 if (in_func)
5249 aerr("proc '%s' while in_func '%s'?\n",
5250 words[0], g_func);
bfa4a6ee 5251 p = words[0];
ddaf8bd7 5252 if (bsearch(&p, rlist, rlist_len, sizeof(rlist[0]), cmpstringp))
bfa4a6ee 5253 skip_func = 1;
91977a1c 5254 strcpy(g_func, words[0]);
d4e3b5db 5255 set_label(0, words[0]);
91977a1c 5256 in_func = 1;
5257 continue;
5258 }
5259
e56ab892 5260 if (IS(words[1], "endp"))
5261 {
91977a1c 5262 if (!in_func)
5263 aerr("endp '%s' while not in_func?\n", words[0]);
5264 if (!IS(g_func, words[0]))
5265 aerr("endp '%s' while in_func '%s'?\n",
5266 words[0], g_func);
bfa4a6ee 5267
ddaf8bd7 5268 if ((g_ida_func_attr & IDAFA_THUNK) && pi == 1
5269 && ops[0].op == OP_JMP && ops[0].operand[0].had_ds)
5270 {
5271 // import jump
5272 skip_func = 1;
5273 }
5274
e56ab892 5275 if (!skip_func && func_chunks_used) {
5276 // start processing chunks
5277 struct chunk_item *ci, key = { g_func, 0 };
5278
5279 func_chunk_ret = ftell(fasm);
de50b98b 5280 func_chunk_ret_ln = asmln;
e56ab892 5281 if (!func_chunks_sorted) {
5282 qsort(func_chunks, func_chunk_cnt,
5283 sizeof(func_chunks[0]), cmp_chunks);
5284 func_chunks_sorted = 1;
5285 }
5286 ci = bsearch(&key, func_chunks, func_chunk_cnt,
5287 sizeof(func_chunks[0]), cmp_chunks);
5288 if (ci == NULL)
5289 aerr("'%s' needs chunks, but none found\n", g_func);
5290 func_chunk_i = ci - func_chunks;
5291 for (; func_chunk_i > 0; func_chunk_i--)
5292 if (!IS(func_chunks[func_chunk_i - 1].name, g_func))
5293 break;
5294
5295 ret = fseek(fasm, func_chunks[func_chunk_i].fptr, SEEK_SET);
5296 if (ret)
5297 aerr("seek failed for '%s' chunk #%d\n", g_func, func_chunk_i);
de50b98b 5298 asmln = func_chunks[func_chunk_i].asmln;
e56ab892 5299 func_chunk_i++;
5300 continue;
5301 }
4c45fa73 5302 pending_endp = 1;
91977a1c 5303 continue;
5304 }
5305
1f84f6b3 5306 if (wordc == 2 && IS(words[1], "ends")) {
46b388c2 5307 if (!multi_seg) {
5308 end = 1;
5309 if (pending_endp)
5310 goto do_pending_endp;
1f84f6b3 5311 break;
46b388c2 5312 }
1f84f6b3 5313
5314 // scan for next text segment
5315 while (fgets(line, sizeof(line), fasm)) {
5316 asmln++;
5317 p = sskip(line);
5318 if (*p == 0 || *p == ';')
5319 continue;
5320
5321 if (strstr(p, "segment para public 'CODE' use32"))
5322 break;
5323 }
5324
5325 continue;
5326 }
a2c1d768 5327
bfa4a6ee 5328 p = strchr(words[0], ':');
5329 if (p != NULL) {
d4e3b5db 5330 set_label(pi, words[0]);
bfa4a6ee 5331 continue;
5332 }
5333
5334 if (!in_func || skip_func) {
5335 if (!skip_warned && !skip_func && g_labels[pi][0] != 0) {
5336 if (verbose)
5337 anote("skipping from '%s'\n", g_labels[pi]);
5338 skip_warned = 1;
5339 }
5340 g_labels[pi][0] = 0;
5341 continue;
5342 }
5343
ddaf8bd7 5344 if (wordc > 1 && IS(words[1], "="))
5345 {
91977a1c 5346 if (wordc != 5)
5347 aerr("unhandled equ, wc=%d\n", wordc);
5348 if (g_eqcnt >= eq_alloc) {
5349 eq_alloc *= 2;
5350 g_eqs = realloc(g_eqs, eq_alloc * sizeof(g_eqs[0]));
5351 my_assert_not(g_eqs, NULL);
5352 }
5353
5354 len = strlen(words[0]);
5355 if (len > sizeof(g_eqs[0].name) - 1)
5356 aerr("equ name too long: %d\n", len);
5357 strcpy(g_eqs[g_eqcnt].name, words[0]);
5358
5359 if (!IS(words[3], "ptr"))
5360 aerr("unhandled equ\n");
5361 if (IS(words[2], "dword"))
5362 g_eqs[g_eqcnt].lmod = OPLM_DWORD;
5363 else if (IS(words[2], "word"))
5364 g_eqs[g_eqcnt].lmod = OPLM_WORD;
5365 else if (IS(words[2], "byte"))
5366 g_eqs[g_eqcnt].lmod = OPLM_BYTE;
5367 else
5368 aerr("bad lmod: '%s'\n", words[2]);
5369
5370 g_eqs[g_eqcnt].offset = parse_number(words[4]);
5371 g_eqcnt++;
5372 continue;
5373 }
5374
5375 if (pi >= ARRAY_SIZE(ops))
5376 aerr("too many ops\n");
5377
91977a1c 5378 parse_op(&ops[pi], words, wordc);
ddaf8bd7 5379
5380 if (sctproto != NULL) {
8eb12e72 5381 if (ops[pi].op == OP_CALL || ops[pi].op == OP_JMP)
ddaf8bd7 5382 ops[pi].datap = sctproto;
5383 sctproto = NULL;
5384 }
91977a1c 5385 pi++;
91977a1c 5386 }
5387
5388 fclose(fout);
5389 fclose(fasm);
06c5d854 5390 fclose(g_fhdr);
91977a1c 5391
5392 return 0;
c36e914d 5393}
91977a1c 5394
5395// vim:ts=2:shiftwidth=2:expandtab