translate: eliminate some useless func ptr reads
[ia32rtools.git] / tools / translate.c
1 /*
2  * ia32rtools
3  * (C) notaz, 2013-2015
4  *
5  * This work is licensed under the terms of 3-clause BSD license.
6  * See COPYING file in the top-level directory.
7  */
8
9 #define _GNU_SOURCE
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13
14 #include "my_assert.h"
15 #include "my_str.h"
16
17 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
18 #define IS(w, y) !strcmp(w, y)
19 #define IS_START(w, y) !strncmp(w, y, strlen(y))
20
21 #include "protoparse.h"
22
23 static const char *asmfn;
24 static int asmln;
25 static FILE *g_fhdr;
26
27 #define anote(fmt, ...) \
28         printf("%s:%d: note: " fmt, asmfn, asmln, ##__VA_ARGS__)
29 #define awarn(fmt, ...) \
30         printf("%s:%d: warning: " fmt, asmfn, asmln, ##__VA_ARGS__)
31 #define aerr(fmt, ...) do { \
32         printf("%s:%d: error: " fmt, asmfn, asmln, ##__VA_ARGS__); \
33   fcloseall(); \
34         exit(1); \
35 } while (0)
36
37 #include "masm_tools.h"
38
39 enum op_flags {
40   OPF_RMD    = (1 << 0), /* removed from code generation */
41   OPF_DATA   = (1 << 1), /* data processing - writes to dst opr */
42   OPF_FLAGS  = (1 << 2), /* sets flags */
43   OPF_JMP    = (1 << 3), /* branch, call */
44   OPF_CJMP   = (1 << 4), /* cond. branch (cc or jecxz) */
45   OPF_CC     = (1 << 5), /* uses flags */
46   OPF_TAIL   = (1 << 6), /* ret or tail call */
47   OPF_RSAVE  = (1 << 7), /* push/pop is local reg save/load */
48   OPF_REP    = (1 << 8), /* prefixed by rep */
49   OPF_REPZ   = (1 << 9), /* rep is repe/repz */
50   OPF_REPNZ  = (1 << 10), /* rep is repne/repnz */
51   OPF_FARG   = (1 << 11), /* push collected as func arg */
52   OPF_FARGNR = (1 << 12), /* push collected as func arg (no reuse) */
53   OPF_EBP_S  = (1 << 13), /* ebp used as scratch here, not BP */
54   OPF_DF     = (1 << 14), /* DF flag set */
55   OPF_ATAIL  = (1 << 15), /* tail call with reused arg frame */
56   OPF_32BIT  = (1 << 16), /* 32bit division */
57   OPF_LOCK   = (1 << 17), /* op has lock prefix */
58   OPF_VAPUSH = (1 << 18), /* vararg ptr push (as call arg) */
59   OPF_DONE   = (1 << 19), /* already fully handled by analysis */
60   OPF_PPUSH  = (1 << 20), /* part of complex push-pop graph */
61 };
62
63 enum op_op {
64         OP_INVAL,
65         OP_NOP,
66         OP_PUSH,
67         OP_POP,
68         OP_LEAVE,
69         OP_MOV,
70         OP_LEA,
71         OP_MOVZX,
72         OP_MOVSX,
73         OP_XCHG,
74         OP_NOT,
75         OP_CDQ,
76         OP_LODS,
77         OP_STOS,
78         OP_MOVS,
79         OP_CMPS,
80         OP_SCAS,
81         OP_STD,
82         OP_CLD,
83         OP_RET,
84         OP_ADD,
85         OP_SUB,
86         OP_AND,
87         OP_OR,
88         OP_XOR,
89         OP_SHL,
90         OP_SHR,
91         OP_SAR,
92         OP_SHRD,
93         OP_ROL,
94         OP_ROR,
95         OP_RCL,
96         OP_RCR,
97         OP_ADC,
98         OP_SBB,
99         OP_BSF,
100         OP_INC,
101         OP_DEC,
102         OP_NEG,
103         OP_MUL,
104         OP_IMUL,
105         OP_DIV,
106         OP_IDIV,
107         OP_TEST,
108         OP_CMP,
109         OP_CALL,
110         OP_JMP,
111         OP_JECXZ,
112         OP_JCC,
113         OP_SCC,
114         // x87
115         // mmx
116         OP_EMMS,
117         // undefined
118         OP_UD2,
119 };
120
121 enum opr_type {
122   OPT_UNSPEC,
123   OPT_REG,
124   OPT_REGMEM,
125   OPT_LABEL,
126   OPT_OFFSET,
127   OPT_CONST,
128 };
129
130 // must be sorted (larger len must be further in enum)
131 enum opr_lenmod {
132         OPLM_UNSPEC,
133         OPLM_BYTE,
134         OPLM_WORD,
135         OPLM_DWORD,
136         OPLM_QWORD,
137 };
138
139 #define MAX_OPERANDS 3
140 #define NAMELEN 112
141
142 struct parsed_opr {
143   enum opr_type type;
144   enum opr_lenmod lmod;
145   unsigned int is_ptr:1;   // pointer in C
146   unsigned int is_array:1; // array in C
147   unsigned int type_from_var:1; // .. in header, sometimes wrong
148   unsigned int size_mismatch:1; // type override differs from C
149   unsigned int size_lt:1;  // type override is larger than C
150   unsigned int had_ds:1;   // had ds: prefix
151   const struct parsed_proto *pp; // for OPT_LABEL
152   int reg;
153   unsigned int val;
154   char name[NAMELEN];
155 };
156
157 struct parsed_op {
158   enum op_op op;
159   struct parsed_opr operand[MAX_OPERANDS];
160   unsigned int flags;
161   unsigned char pfo;
162   unsigned char pfo_inv;
163   unsigned char operand_cnt;
164   unsigned char p_argnum; // arg push: altered before call arg #
165   unsigned char p_arggrp; // arg push: arg group # for above
166   unsigned char p_argpass;// arg push: arg of host func
167   short         p_argnext;// arg push: same arg pushed elsewhere or -1
168   int regmask_src;        // all referensed regs
169   int regmask_dst;
170   int pfomask;            // flagop: parsed_flag_op that can't be delayed
171   int cc_scratch;         // scratch storage during analysis
172   int bt_i;               // branch target for branches
173   struct parsed_data *btj;// branch targets for jumptables
174   struct parsed_proto *pp;// parsed_proto for OP_CALL
175   void *datap;
176   int asmln;
177 };
178
179 // datap:
180 // OP_CALL  - parser proto hint (str)
181 // (OPF_CC) - points to one of (OPF_FLAGS) that affects cc op
182 // OP_PUSH  - points to OP_POP in complex push/pop graph
183 // OP_POP   - points to OP_PUSH in simple push/pop pair
184
185 struct parsed_equ {
186   char name[64];
187   enum opr_lenmod lmod;
188   int offset;
189 };
190
191 struct parsed_data {
192   char label[256];
193   enum opr_type type;
194   enum opr_lenmod lmod;
195   int count;
196   int count_alloc;
197   struct {
198     union {
199       char *label;
200       unsigned int val;
201     } u;
202     int bt_i;
203   } *d;
204 };
205
206 struct label_ref {
207   int i;
208   struct label_ref *next;
209 };
210
211 enum ida_func_attr {
212   IDAFA_BP_FRAME = (1 << 0),
213   IDAFA_LIB_FUNC = (1 << 1),
214   IDAFA_STATIC   = (1 << 2),
215   IDAFA_NORETURN = (1 << 3),
216   IDAFA_THUNK    = (1 << 4),
217   IDAFA_FPD      = (1 << 5),
218 };
219
220 // note: limited to 32k due to p_argnext
221 #define MAX_OPS     4096
222 #define MAX_ARG_GRP 2
223
224 static struct parsed_op ops[MAX_OPS];
225 static struct parsed_equ *g_eqs;
226 static int g_eqcnt;
227 static char *g_labels[MAX_OPS];
228 static struct label_ref g_label_refs[MAX_OPS];
229 static const struct parsed_proto *g_func_pp;
230 static struct parsed_data *g_func_pd;
231 static int g_func_pd_cnt;
232 static char g_func[256];
233 static char g_comment[256];
234 static int g_bp_frame;
235 static int g_sp_frame;
236 static int g_stack_frame_used;
237 static int g_stack_fsz;
238 static int g_ida_func_attr;
239 static int g_skip_func;
240 static int g_allow_regfunc;
241 static int g_quiet_pp;
242 static int g_header_mode;
243
244 #define ferr(op_, fmt, ...) do { \
245   printf("%s:%d: error: [%s] '%s': " fmt, asmfn, (op_)->asmln, g_func, \
246     dump_op(op_), ##__VA_ARGS__); \
247   fcloseall(); \
248   exit(1); \
249 } while (0)
250 #define fnote(op_, fmt, ...) \
251   printf("%s:%d: note: [%s] '%s': " fmt, asmfn, (op_)->asmln, g_func, \
252     dump_op(op_), ##__VA_ARGS__)
253
254 #define ferr_assert(op_, cond) do { \
255   if (!(cond)) ferr(op_, "assertion '%s' failed on ln :%d\n", #cond, \
256                     __LINE__); \
257 } while (0)
258
259 const char *regs_r32[] = {
260   "eax", "ebx", "ecx", "edx", "esi", "edi", "ebp", "esp",
261   // not r32, but list here for easy parsing and printing
262   "mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7",
263 };
264 const char *regs_r16[] = { "ax", "bx", "cx", "dx", "si", "di", "bp", "sp" };
265 const char *regs_r8l[] = { "al", "bl", "cl", "dl" };
266 const char *regs_r8h[] = { "ah", "bh", "ch", "dh" };
267
268 enum x86_regs { xUNSPEC = -1, xAX, xBX, xCX, xDX, xSI, xDI, xBP, xSP };
269
270 // possible basic comparison types (without inversion)
271 enum parsed_flag_op {
272   PFO_O,  // 0 OF=1
273   PFO_C,  // 2 CF=1
274   PFO_Z,  // 4 ZF=1
275   PFO_BE, // 6 CF=1||ZF=1
276   PFO_S,  // 8 SF=1
277   PFO_P,  // a PF=1
278   PFO_L,  // c SF!=OF
279   PFO_LE, // e ZF=1||SF!=OF
280 };
281
282 #define PFOB_O   (1 << PFO_O)
283 #define PFOB_C   (1 << PFO_C)
284 #define PFOB_Z   (1 << PFO_Z)
285 #define PFOB_S   (1 << PFO_S)
286
287 static const char *parsed_flag_op_names[] = {
288   "o", "c", "z", "be", "s", "p", "l", "le"
289 };
290
291 static int char_array_i(const char *array[], size_t len, const char *s)
292 {
293   int i;
294
295   for (i = 0; i < len; i++)
296     if (IS(s, array[i]))
297       return i;
298
299   return -1;
300 }
301
302 static void printf_number(char *buf, size_t buf_size,
303   unsigned long number)
304 {
305   // output in C-friendly form
306   snprintf(buf, buf_size, number < 10 ? "%lu" : "0x%02lx", number);
307 }
308
309 static int check_segment_prefix(const char *s)
310 {
311   if (s[0] == 0 || s[1] != 's' || s[2] != ':')
312     return 0;
313
314   switch (s[0]) {
315   case 'c': return 1;
316   case 'd': return 2;
317   case 's': return 3;
318   case 'e': return 4;
319   case 'f': return 5;
320   case 'g': return 6;
321   default:  return 0;
322   }
323 }
324
325 static int parse_reg(enum opr_lenmod *reg_lmod, const char *s)
326 {
327   int reg;
328
329   reg = char_array_i(regs_r32, ARRAY_SIZE(regs_r32), s);
330   if (reg >= 8) {
331     *reg_lmod = OPLM_QWORD;
332     return reg;
333   }
334   if (reg >= 0) {
335     *reg_lmod = OPLM_DWORD;
336     return reg;
337   }
338   reg = char_array_i(regs_r16, ARRAY_SIZE(regs_r16), s);
339   if (reg >= 0) {
340     *reg_lmod = OPLM_WORD;
341     return reg;
342   }
343   reg = char_array_i(regs_r8h, ARRAY_SIZE(regs_r8h), s);
344   if (reg >= 0) {
345     *reg_lmod = OPLM_BYTE;
346     return reg;
347   }
348   reg = char_array_i(regs_r8l, ARRAY_SIZE(regs_r8l), s);
349   if (reg >= 0) {
350     *reg_lmod = OPLM_BYTE;
351     return reg;
352   }
353
354   return -1;
355 }
356
357 static int parse_indmode(char *name, int *regmask, int need_c_cvt)
358 {
359   enum opr_lenmod lmod;
360   char cvtbuf[256];
361   char *d = cvtbuf;
362   char *s = name;
363   char w[64];
364   long number;
365   int reg;
366   int c = 0;
367
368   *d = 0;
369
370   while (*s != 0) {
371     d += strlen(d);
372     while (my_isblank(*s))
373       s++;
374     for (; my_issep(*s); d++, s++)
375       *d = *s;
376     while (my_isblank(*s))
377       s++;
378     *d = 0;
379
380     // skip '?s:' prefixes
381     if (check_segment_prefix(s))
382       s += 3;
383
384     s = next_idt(w, sizeof(w), s);
385     if (w[0] == 0)
386       break;
387     c++;
388
389     reg = parse_reg(&lmod, w);
390     if (reg >= 0) {
391       *regmask |= 1 << reg;
392       goto pass;
393     }
394
395     if ('0' <= w[0] && w[0] <= '9') {
396       number = parse_number(w);
397       printf_number(d, sizeof(cvtbuf) - (d - cvtbuf), number);
398       continue;
399     }
400
401     // probably some label/identifier - pass
402
403 pass:
404     snprintf(d, sizeof(cvtbuf) - (d - cvtbuf), "%s", w);
405   }
406
407   if (need_c_cvt)
408     strcpy(name, cvtbuf);
409
410   return c;
411 }
412
413 static int is_reg_in_str(const char *s)
414 {
415   int i;
416
417   if (strlen(s) < 3 || (s[3] && !my_issep(s[3]) && !my_isblank(s[3])))
418     return 0;
419
420   for (i = 0; i < ARRAY_SIZE(regs_r32); i++)
421     if (!strncmp(s, regs_r32[i], 3))
422       return 1;
423
424   return 0;
425 }
426
427 static const char *parse_stack_el(const char *name, char *extra_reg,
428   int early_try)
429 {
430   const char *p, *p2, *s;
431   char *endp = NULL;
432   char buf[32];
433   long val;
434   int len;
435
436   if (g_bp_frame || early_try)
437   {
438     p = name;
439     if (IS_START(p + 3, "+ebp+") && is_reg_in_str(p)) {
440       p += 4;
441       if (extra_reg != NULL) {
442         strncpy(extra_reg, name, 3);
443         extra_reg[4] = 0;
444       }
445     }
446
447     if (IS_START(p, "ebp+")) {
448       p += 4;
449
450       p2 = strchr(p, '+');
451       if (p2 != NULL && is_reg_in_str(p)) {
452         if (extra_reg != NULL) {
453           strncpy(extra_reg, p, p2 - p);
454           extra_reg[p2 - p] = 0;
455         }
456         p = p2 + 1;
457       }
458
459       if (!('0' <= *p && *p <= '9'))
460         return p;
461
462       return NULL;
463     }
464   }
465
466   if (!IS_START(name, "esp+"))
467     return NULL;
468
469   s = name + 4;
470   p = strchr(s, '+');
471   if (p) {
472     if (is_reg_in_str(s)) {
473       if (extra_reg != NULL) {
474         strncpy(extra_reg, s, p - s);
475         extra_reg[p - s] = 0;
476       }
477       s = p + 1;
478       p = strchr(s, '+');
479       if (p == NULL)
480         aerr("%s IDA stackvar not set?\n", __func__);
481     }
482     if (!('0' <= *s && *s <= '9')) {
483       aerr("%s IDA stackvar offset not set?\n", __func__);
484       return NULL;
485     }
486     if (s[0] == '0' && s[1] == 'x')
487       s += 2;
488     len = p - s;
489     if (len < sizeof(buf) - 1) {
490       strncpy(buf, s, len);
491       buf[len] = 0;
492       val = strtol(buf, &endp, 16);
493       if (val == 0 || *endp != 0) {
494         aerr("%s num parse fail for '%s'\n", __func__, buf);
495         return NULL;
496       }
497     }
498     p++;
499   }
500   else
501     p = name + 4;
502
503   if ('0' <= *p && *p <= '9')
504     return NULL;
505
506   return p;
507 }
508
509 static int guess_lmod_from_name(struct parsed_opr *opr)
510 {
511   if (!strncmp(opr->name, "dword_", 6)) {
512     opr->lmod = OPLM_DWORD;
513     return 1;
514   }
515   if (!strncmp(opr->name, "word_", 5)) {
516     opr->lmod = OPLM_WORD;
517     return 1;
518   }
519   if (!strncmp(opr->name, "byte_", 5)) {
520     opr->lmod = OPLM_BYTE;
521     return 1;
522   }
523   if (!strncmp(opr->name, "qword_", 6)) {
524     opr->lmod = OPLM_QWORD;
525     return 1;
526   }
527   return 0;
528 }
529
530 static int guess_lmod_from_c_type(enum opr_lenmod *lmod,
531   const struct parsed_type *c_type)
532 {
533   static const char *dword_types[] = {
534     "uint32_t", "int", "_DWORD", "UINT_PTR", "DWORD",
535     "WPARAM", "LPARAM", "UINT", "__int32",
536     "LONG", "HIMC", "BOOL", "size_t",
537     "float",
538   };
539   static const char *word_types[] = {
540     "uint16_t", "int16_t", "_WORD", "WORD",
541     "unsigned __int16", "__int16",
542   };
543   static const char *byte_types[] = {
544     "uint8_t", "int8_t", "char",
545     "unsigned __int8", "__int8", "BYTE", "_BYTE",
546     "CHAR", "_UNKNOWN",
547     // structures.. deal the same as with _UNKNOWN for now
548     "CRITICAL_SECTION",
549   };
550   const char *n;
551   int i;
552
553   if (c_type->is_ptr) {
554     *lmod = OPLM_DWORD;
555     return 1;
556   }
557
558   n = skip_type_mod(c_type->name);
559
560   for (i = 0; i < ARRAY_SIZE(dword_types); i++) {
561     if (IS(n, dword_types[i])) {
562       *lmod = OPLM_DWORD;
563       return 1;
564     }
565   }
566
567   for (i = 0; i < ARRAY_SIZE(word_types); i++) {
568     if (IS(n, word_types[i])) {
569       *lmod = OPLM_WORD;
570       return 1;
571     }
572   }
573
574   for (i = 0; i < ARRAY_SIZE(byte_types); i++) {
575     if (IS(n, byte_types[i])) {
576       *lmod = OPLM_BYTE;
577       return 1;
578     }
579   }
580
581   return 0;
582 }
583
584 static char *default_cast_to(char *buf, size_t buf_size,
585   struct parsed_opr *opr)
586 {
587   buf[0] = 0;
588
589   if (!opr->is_ptr)
590     return buf;
591   if (opr->pp == NULL || opr->pp->type.name == NULL
592     || opr->pp->is_fptr)
593   {
594     snprintf(buf, buf_size, "%s", "(void *)");
595     return buf;
596   }
597
598   snprintf(buf, buf_size, "(%s)", opr->pp->type.name);
599   return buf;
600 }
601
602 static enum opr_type lmod_from_directive(const char *d)
603 {
604   if (IS(d, "dd"))
605     return OPLM_DWORD;
606   else if (IS(d, "dw"))
607     return OPLM_WORD;
608   else if (IS(d, "db"))
609     return OPLM_BYTE;
610
611   aerr("unhandled directive: '%s'\n", d);
612   return OPLM_UNSPEC;
613 }
614
615 static void setup_reg_opr(struct parsed_opr *opr, int reg, enum opr_lenmod lmod,
616   int *regmask)
617 {
618   opr->type = OPT_REG;
619   opr->reg = reg;
620   opr->lmod = lmod;
621   *regmask |= 1 << reg;
622 }
623
624 static struct parsed_equ *equ_find(struct parsed_op *po, const char *name,
625   int *extra_offs);
626
627 static int parse_operand(struct parsed_opr *opr,
628   int *regmask, int *regmask_indirect,
629   char words[16][256], int wordc, int w, unsigned int op_flags)
630 {
631   const struct parsed_proto *pp = NULL;
632   enum opr_lenmod tmplmod;
633   unsigned long number;
634   char buf[256];
635   int ret, len;
636   int wordc_in;
637   char *p;
638   int i;
639
640   if (w >= wordc)
641     aerr("parse_operand w %d, wordc %d\n", w, wordc);
642
643   opr->reg = xUNSPEC;
644
645   for (i = w; i < wordc; i++) {
646     len = strlen(words[i]);
647     if (words[i][len - 1] == ',') {
648       words[i][len - 1] = 0;
649       wordc = i + 1;
650       break;
651     }
652   }
653
654   wordc_in = wordc - w;
655
656   if ((op_flags & OPF_JMP) && wordc_in > 0
657       && !('0' <= words[w][0] && words[w][0] <= '9'))
658   {
659     const char *label = NULL;
660
661     if (wordc_in == 3 && !strncmp(words[w], "near", 4)
662      && IS(words[w + 1], "ptr"))
663       label = words[w + 2];
664     else if (wordc_in == 2 && IS(words[w], "short"))
665       label = words[w + 1];
666     else if (wordc_in == 1
667           && strchr(words[w], '[') == NULL
668           && parse_reg(&tmplmod, words[w]) < 0)
669       label = words[w];
670
671     if (label != NULL) {
672       opr->type = OPT_LABEL;
673       ret = check_segment_prefix(label);
674       if (ret != 0) {
675         if (ret >= 5)
676           aerr("fs/gs used\n");
677         opr->had_ds = 1;
678         label += 3;
679       }
680       strcpy(opr->name, label);
681       return wordc;
682     }
683   }
684
685   if (wordc_in >= 3) {
686     if (IS(words[w + 1], "ptr")) {
687       if (IS(words[w], "dword"))
688         opr->lmod = OPLM_DWORD;
689       else if (IS(words[w], "word"))
690         opr->lmod = OPLM_WORD;
691       else if (IS(words[w], "byte"))
692         opr->lmod = OPLM_BYTE;
693       else if (IS(words[w], "qword"))
694         opr->lmod = OPLM_QWORD;
695       else
696         aerr("type parsing failed\n");
697       w += 2;
698       wordc_in = wordc - w;
699     }
700   }
701
702   if (wordc_in == 2) {
703     if (IS(words[w], "offset")) {
704       opr->type = OPT_OFFSET;
705       opr->lmod = OPLM_DWORD;
706       strcpy(opr->name, words[w + 1]);
707       pp = proto_parse(g_fhdr, opr->name, 1);
708       goto do_label;
709     }
710     if (IS(words[w], "(offset")) {
711       p = strchr(words[w + 1], ')');
712       if (p == NULL)
713         aerr("parse of bracketed offset failed\n");
714       *p = 0;
715       opr->type = OPT_OFFSET;
716       strcpy(opr->name, words[w + 1]);
717       return wordc;
718     }
719   }
720
721   if (wordc_in != 1)
722     aerr("parse_operand 1 word expected\n");
723
724   ret = check_segment_prefix(words[w]);
725   if (ret != 0) {
726     if (ret >= 5)
727       aerr("fs/gs used\n");
728     opr->had_ds = 1;
729     memmove(words[w], words[w] + 3, strlen(words[w]) - 2);
730   }
731   strcpy(opr->name, words[w]);
732
733   if (words[w][0] == '[') {
734     opr->type = OPT_REGMEM;
735     ret = sscanf(words[w], "[%[^]]]", opr->name);
736     if (ret != 1)
737       aerr("[] parse failure\n");
738
739     parse_indmode(opr->name, regmask_indirect, 1);
740     if (opr->lmod == OPLM_UNSPEC && parse_stack_el(opr->name, NULL, 1))
741     {
742       // might be an equ
743       struct parsed_equ *eq =
744         equ_find(NULL, parse_stack_el(opr->name, NULL, 1), &i);
745       if (eq)
746         opr->lmod = eq->lmod;
747     }
748     return wordc;
749   }
750   else if (strchr(words[w], '[')) {
751     // label[reg] form
752     p = strchr(words[w], '[');
753     opr->type = OPT_REGMEM;
754     parse_indmode(p, regmask_indirect, 0);
755     strncpy(buf, words[w], p - words[w]);
756     buf[p - words[w]] = 0;
757     pp = proto_parse(g_fhdr, buf, 1);
758     goto do_label;
759   }
760   else if (('0' <= words[w][0] && words[w][0] <= '9')
761     || words[w][0] == '-')
762   {
763     number = parse_number(words[w]);
764     opr->type = OPT_CONST;
765     opr->val = number;
766     printf_number(opr->name, sizeof(opr->name), number);
767     return wordc;
768   }
769
770   ret = parse_reg(&tmplmod, opr->name);
771   if (ret >= 0) {
772     setup_reg_opr(opr, ret, tmplmod, regmask);
773     return wordc;
774   }
775
776   // most likely var in data segment
777   opr->type = OPT_LABEL;
778   pp = proto_parse(g_fhdr, opr->name, g_quiet_pp);
779
780 do_label:
781   if (pp != NULL) {
782     if (pp->is_fptr || pp->is_func) {
783       opr->lmod = OPLM_DWORD;
784       opr->is_ptr = 1;
785     }
786     else {
787       tmplmod = OPLM_UNSPEC;
788       if (!guess_lmod_from_c_type(&tmplmod, &pp->type))
789         anote("unhandled C type '%s' for '%s'\n",
790           pp->type.name, opr->name);
791       
792       if (opr->lmod == OPLM_UNSPEC) {
793         opr->lmod = tmplmod;
794         opr->type_from_var = 1;
795       }
796       else if (opr->lmod != tmplmod) {
797         opr->size_mismatch = 1;
798         if (tmplmod < opr->lmod)
799           opr->size_lt = 1;
800       }
801       opr->is_ptr = pp->type.is_ptr;
802     }
803     opr->is_array = pp->type.is_array;
804   }
805   opr->pp = pp;
806
807   if (opr->lmod == OPLM_UNSPEC)
808     guess_lmod_from_name(opr);
809   return wordc;
810 }
811
812 static const struct {
813   const char *name;
814   unsigned int flags;
815 } pref_table[] = {
816   { "rep",    OPF_REP },
817   { "repe",   OPF_REP|OPF_REPZ },
818   { "repz",   OPF_REP|OPF_REPZ },
819   { "repne",  OPF_REP|OPF_REPNZ },
820   { "repnz",  OPF_REP|OPF_REPNZ },
821   { "lock",   OPF_LOCK }, // ignored for now..
822 };
823
824 #define OPF_CJMP_CC (OPF_JMP|OPF_CJMP|OPF_CC)
825
826 static const struct {
827   const char *name;
828   enum op_op op;
829   unsigned short minopr;
830   unsigned short maxopr;
831   unsigned int flags;
832   unsigned char pfo;
833   unsigned char pfo_inv;
834 } op_table[] = {
835   { "nop",  OP_NOP,    0, 0, 0 },
836   { "push", OP_PUSH,   1, 1, 0 },
837   { "pop",  OP_POP,    1, 1, OPF_DATA },
838   { "leave",OP_LEAVE,  0, 0, OPF_DATA },
839   { "mov" , OP_MOV,    2, 2, OPF_DATA },
840   { "lea",  OP_LEA,    2, 2, OPF_DATA },
841   { "movzx",OP_MOVZX,  2, 2, OPF_DATA },
842   { "movsx",OP_MOVSX,  2, 2, OPF_DATA },
843   { "xchg", OP_XCHG,   2, 2, OPF_DATA },
844   { "not",  OP_NOT,    1, 1, OPF_DATA },
845   { "cdq",  OP_CDQ,    0, 0, OPF_DATA },
846   { "lodsb",OP_LODS,   0, 0, OPF_DATA },
847   { "lodsw",OP_LODS,   0, 0, OPF_DATA },
848   { "lodsd",OP_LODS,   0, 0, OPF_DATA },
849   { "stosb",OP_STOS,   0, 0, OPF_DATA },
850   { "stosw",OP_STOS,   0, 0, OPF_DATA },
851   { "stosd",OP_STOS,   0, 0, OPF_DATA },
852   { "movsb",OP_MOVS,   0, 0, OPF_DATA },
853   { "movsw",OP_MOVS,   0, 0, OPF_DATA },
854   { "movsd",OP_MOVS,   0, 0, OPF_DATA },
855   { "cmpsb",OP_CMPS,   0, 0, OPF_DATA|OPF_FLAGS },
856   { "cmpsw",OP_CMPS,   0, 0, OPF_DATA|OPF_FLAGS },
857   { "cmpsd",OP_CMPS,   0, 0, OPF_DATA|OPF_FLAGS },
858   { "scasb",OP_SCAS,   0, 0, OPF_DATA|OPF_FLAGS },
859   { "scasw",OP_SCAS,   0, 0, OPF_DATA|OPF_FLAGS },
860   { "scasd",OP_SCAS,   0, 0, OPF_DATA|OPF_FLAGS },
861   { "std",  OP_STD,    0, 0, OPF_DATA }, // special flag
862   { "cld",  OP_CLD,    0, 0, OPF_DATA },
863   { "add",  OP_ADD,    2, 2, OPF_DATA|OPF_FLAGS },
864   { "sub",  OP_SUB,    2, 2, OPF_DATA|OPF_FLAGS },
865   { "and",  OP_AND,    2, 2, OPF_DATA|OPF_FLAGS },
866   { "or",   OP_OR,     2, 2, OPF_DATA|OPF_FLAGS },
867   { "xor",  OP_XOR,    2, 2, OPF_DATA|OPF_FLAGS },
868   { "shl",  OP_SHL,    2, 2, OPF_DATA|OPF_FLAGS },
869   { "shr",  OP_SHR,    2, 2, OPF_DATA|OPF_FLAGS },
870   { "sal",  OP_SHL,    2, 2, OPF_DATA|OPF_FLAGS },
871   { "sar",  OP_SAR,    2, 2, OPF_DATA|OPF_FLAGS },
872   { "shrd", OP_SHRD,   3, 3, OPF_DATA|OPF_FLAGS },
873   { "rol",  OP_ROL,    2, 2, OPF_DATA|OPF_FLAGS },
874   { "ror",  OP_ROR,    2, 2, OPF_DATA|OPF_FLAGS },
875   { "rcl",  OP_RCL,    2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
876   { "rcr",  OP_RCR,    2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
877   { "adc",  OP_ADC,    2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
878   { "sbb",  OP_SBB,    2, 2, OPF_DATA|OPF_FLAGS|OPF_CC, PFO_C },
879   { "bsf",  OP_BSF,    2, 2, OPF_DATA|OPF_FLAGS },
880   { "inc",  OP_INC,    1, 1, OPF_DATA|OPF_FLAGS },
881   { "dec",  OP_DEC,    1, 1, OPF_DATA|OPF_FLAGS },
882   { "neg",  OP_NEG,    1, 1, OPF_DATA|OPF_FLAGS },
883   { "mul",  OP_MUL,    1, 1, OPF_DATA|OPF_FLAGS },
884   { "imul", OP_IMUL,   1, 3, OPF_DATA|OPF_FLAGS },
885   { "div",  OP_DIV,    1, 1, OPF_DATA|OPF_FLAGS },
886   { "idiv", OP_IDIV,   1, 1, OPF_DATA|OPF_FLAGS },
887   { "test", OP_TEST,   2, 2, OPF_FLAGS },
888   { "cmp",  OP_CMP,    2, 2, OPF_FLAGS },
889   { "retn", OP_RET,    0, 1, OPF_TAIL },
890   { "call", OP_CALL,   1, 1, OPF_JMP|OPF_DATA|OPF_FLAGS },
891   { "jmp",  OP_JMP,    1, 1, OPF_JMP },
892   { "jecxz",OP_JECXZ,  1, 1, OPF_JMP|OPF_CJMP },
893   { "jo",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_O,  0 }, // 70 OF=1
894   { "jno",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_O,  1 }, // 71 OF=0
895   { "jc",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_C,  0 }, // 72 CF=1
896   { "jb",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_C,  0 }, // 72
897   { "jnc",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_C,  1 }, // 73 CF=0
898   { "jnb",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_C,  1 }, // 73
899   { "jae",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_C,  1 }, // 73
900   { "jz",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_Z,  0 }, // 74 ZF=1
901   { "je",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_Z,  0 }, // 74
902   { "jnz",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_Z,  1 }, // 75 ZF=0
903   { "jne",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_Z,  1 }, // 75
904   { "jbe",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_BE, 0 }, // 76 CF=1||ZF=1
905   { "jna",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_BE, 0 }, // 76
906   { "ja",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_BE, 1 }, // 77 CF=0&&ZF=0
907   { "jnbe", OP_JCC,    1, 1, OPF_CJMP_CC, PFO_BE, 1 }, // 77
908   { "js",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_S,  0 }, // 78 SF=1
909   { "jns",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_S,  1 }, // 79 SF=0
910   { "jp",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_P,  0 }, // 7a PF=1
911   { "jpe",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_P,  0 }, // 7a
912   { "jnp",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_P,  1 }, // 7b PF=0
913   { "jpo",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_P,  1 }, // 7b
914   { "jl",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_L,  0 }, // 7c SF!=OF
915   { "jnge", OP_JCC,    1, 1, OPF_CJMP_CC, PFO_L,  0 }, // 7c
916   { "jge",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_L,  1 }, // 7d SF=OF
917   { "jnl",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_L,  1 }, // 7d
918   { "jle",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_LE, 0 }, // 7e ZF=1||SF!=OF
919   { "jng",  OP_JCC,    1, 1, OPF_CJMP_CC, PFO_LE, 0 }, // 7e
920   { "jg",   OP_JCC,    1, 1, OPF_CJMP_CC, PFO_LE, 1 }, // 7f ZF=0&&SF=OF
921   { "jnle", OP_JCC,    1, 1, OPF_CJMP_CC, PFO_LE, 1 }, // 7f
922   { "seto",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_O,  0 },
923   { "setno",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_O,  1 },
924   { "setc",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_C,  0 },
925   { "setb",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_C,  0 },
926   { "setnc",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_C,  1 },
927   { "setae",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_C,  1 },
928   { "setnb",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_C,  1 },
929   { "setz",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_Z,  0 },
930   { "sete",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_Z,  0 },
931   { "setnz",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_Z,  1 },
932   { "setne",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_Z,  1 },
933   { "setbe",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_BE, 0 },
934   { "setna",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_BE, 0 },
935   { "seta",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_BE, 1 },
936   { "setnbe", OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_BE, 1 },
937   { "sets",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_S,  0 },
938   { "setns",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_S,  1 },
939   { "setp",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_P,  0 },
940   { "setpe",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_P,  0 },
941   { "setnp",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_P,  1 },
942   { "setpo",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_P,  1 },
943   { "setl",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_L,  0 },
944   { "setnge", OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_L,  0 },
945   { "setge",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_L,  1 },
946   { "setnl",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_L,  1 },
947   { "setle",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_LE, 0 },
948   { "setng",  OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_LE, 0 },
949   { "setg",   OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_LE, 1 },
950   { "setnle", OP_SCC,  1, 1, OPF_DATA|OPF_CC, PFO_LE, 1 },
951   // x87
952   // mmx
953   { "emms",   OP_EMMS, 0, 0, OPF_DATA },
954   { "movq",   OP_MOV,  2, 2, OPF_DATA },
955   // must be last
956   { "ud2",    OP_UD2 },
957 };
958
959 static void parse_op(struct parsed_op *op, char words[16][256], int wordc)
960 {
961   enum opr_lenmod lmod = OPLM_UNSPEC;
962   int prefix_flags = 0;
963   int regmask_ind;
964   int regmask;
965   int op_w = 0;
966   int opr = 0;
967   int w = 0;
968   int i;
969
970   for (i = 0; i < ARRAY_SIZE(pref_table); i++) {
971     if (IS(words[w], pref_table[i].name)) {
972       prefix_flags = pref_table[i].flags;
973       break;
974     }
975   }
976
977   if (prefix_flags) {
978     if (wordc <= 1)
979       aerr("lone prefix: '%s'\n", words[0]);
980     w++;
981   }
982
983   op_w = w;
984   for (i = 0; i < ARRAY_SIZE(op_table); i++) {
985     if (IS(words[w], op_table[i].name))
986       break;
987   }
988
989   if (i == ARRAY_SIZE(op_table)) {
990     if (!g_skip_func)
991       aerr("unhandled op: '%s'\n", words[0]);
992     i--; // OP_UD2
993   }
994   w++;
995
996   op->op = op_table[i].op;
997   op->flags = op_table[i].flags | prefix_flags;
998   op->pfo = op_table[i].pfo;
999   op->pfo_inv = op_table[i].pfo_inv;
1000   op->regmask_src = op->regmask_dst = 0;
1001   op->asmln = asmln;
1002
1003   if (op->op == OP_UD2)
1004     return;
1005
1006   for (opr = 0; opr < op_table[i].maxopr; opr++) {
1007     if (opr >= op_table[i].minopr && w >= wordc)
1008       break;
1009
1010     regmask = regmask_ind = 0;
1011     w = parse_operand(&op->operand[opr], &regmask, &regmask_ind,
1012       words, wordc, w, op->flags);
1013
1014     if (opr == 0 && (op->flags & OPF_DATA))
1015       op->regmask_dst = regmask;
1016     else
1017       op->regmask_src |= regmask;
1018     op->regmask_src |= regmask_ind;
1019   }
1020
1021   if (w < wordc)
1022     aerr("parse_op %s incomplete: %d/%d\n",
1023       words[0], w, wordc);
1024
1025   // special cases
1026   op->operand_cnt = opr;
1027   if (!strncmp(op_table[i].name, "set", 3))
1028     op->operand[0].lmod = OPLM_BYTE;
1029
1030   switch (op->op) {
1031   // first operand is not dst
1032   case OP_CMP:
1033   case OP_TEST:
1034     op->regmask_src |= op->regmask_dst;
1035     op->regmask_dst = 0;
1036     break;
1037
1038   // first operand is src too
1039   case OP_NOT:
1040   case OP_ADD:
1041   case OP_AND:
1042   case OP_OR:
1043   case OP_RCL:
1044   case OP_RCR:
1045   case OP_ADC:
1046   case OP_INC:
1047   case OP_DEC:
1048   case OP_NEG:
1049   // more below..
1050     op->regmask_src |= op->regmask_dst;
1051     break;
1052
1053   // special
1054   case OP_XCHG:
1055     op->regmask_src |= op->regmask_dst;
1056     op->regmask_dst |= op->regmask_src;
1057     goto check_align;
1058
1059   case OP_SUB:
1060   case OP_SBB:
1061   case OP_XOR:
1062     if (op->operand[0].type == OPT_REG && op->operand[1].type == OPT_REG
1063      && op->operand[0].lmod == op->operand[1].lmod
1064      && op->operand[0].reg == op->operand[1].reg
1065      && IS(op->operand[0].name, op->operand[1].name)) // ! ah, al..
1066     {
1067       op->regmask_src = 0;
1068     }
1069     else
1070       op->regmask_src |= op->regmask_dst;
1071     break;
1072
1073   // ops with implicit argumets
1074   case OP_CDQ:
1075     op->operand_cnt = 2;
1076     setup_reg_opr(&op->operand[0], xDX, OPLM_DWORD, &op->regmask_dst);
1077     setup_reg_opr(&op->operand[1], xAX, OPLM_DWORD, &op->regmask_src);
1078     break;
1079
1080   case OP_LODS:
1081   case OP_STOS:
1082   case OP_SCAS:
1083     if (op->operand_cnt != 0)
1084       break;
1085     if      (words[op_w][4] == 'b')
1086       lmod = OPLM_BYTE;
1087     else if (words[op_w][4] == 'w')
1088       lmod = OPLM_WORD;
1089     else if (words[op_w][4] == 'd')
1090       lmod = OPLM_DWORD;
1091     op->operand_cnt = 3;
1092     setup_reg_opr(&op->operand[0], op->op == OP_LODS ? xSI : xDI,
1093       lmod, &op->regmask_src);
1094     setup_reg_opr(&op->operand[1], xCX, OPLM_DWORD, &op->regmask_src);
1095     op->regmask_dst = op->regmask_src;
1096     setup_reg_opr(&op->operand[2], xAX, OPLM_DWORD,
1097       op->op == OP_LODS ? &op->regmask_dst : &op->regmask_src);
1098     break;
1099
1100   case OP_MOVS:
1101   case OP_CMPS:
1102     if (op->operand_cnt != 0)
1103       break;
1104     if      (words[op_w][4] == 'b')
1105       lmod = OPLM_BYTE;
1106     else if (words[op_w][4] == 'w')
1107       lmod = OPLM_WORD;
1108     else if (words[op_w][4] == 'd')
1109       lmod = OPLM_DWORD;
1110     op->operand_cnt = 3;
1111     setup_reg_opr(&op->operand[0], xDI, lmod, &op->regmask_src);
1112     setup_reg_opr(&op->operand[1], xSI, OPLM_DWORD, &op->regmask_src);
1113     setup_reg_opr(&op->operand[2], xCX, OPLM_DWORD, &op->regmask_src);
1114     op->regmask_dst = op->regmask_src;
1115     break;
1116
1117   case OP_JECXZ:
1118     op->operand_cnt = 1;
1119     op->regmask_src = 1 << xCX;
1120     op->operand[0].type = OPT_REG;
1121     op->operand[0].reg = xCX;
1122     op->operand[0].lmod = OPLM_DWORD;
1123     break;
1124
1125   case OP_IMUL:
1126     if (op->operand_cnt != 1)
1127       break;
1128     // fallthrough
1129   case OP_MUL:
1130     // singleop mul
1131     op->regmask_src |= op->regmask_dst;
1132     op->regmask_dst = (1 << xDX) | (1 << xAX);
1133     if (op->operand[0].lmod == OPLM_UNSPEC)
1134       op->operand[0].lmod = OPLM_DWORD;
1135     break;
1136
1137   case OP_DIV:
1138   case OP_IDIV:
1139     // we could set up operands for edx:eax, but there is no real need to
1140     // (see is_opr_modified())
1141     op->regmask_src |= op->regmask_dst;
1142     op->regmask_dst = (1 << xDX) | (1 << xAX);
1143     if (op->operand[0].lmod == OPLM_UNSPEC)
1144       op->operand[0].lmod = OPLM_DWORD;
1145     break;
1146
1147   case OP_SHL:
1148   case OP_SHR:
1149   case OP_SAR:
1150   case OP_ROL:
1151   case OP_ROR:
1152     op->regmask_src |= op->regmask_dst;
1153     if (op->operand[1].lmod == OPLM_UNSPEC)
1154       op->operand[1].lmod = OPLM_BYTE;
1155     break;
1156
1157   case OP_SHRD:
1158     op->regmask_src |= op->regmask_dst;
1159     if (op->operand[2].lmod == OPLM_UNSPEC)
1160       op->operand[2].lmod = OPLM_BYTE;
1161     break;
1162
1163   case OP_PUSH:
1164     op->regmask_src |= op->regmask_dst;
1165     op->regmask_dst = 0;
1166     if (op->operand[0].lmod == OPLM_UNSPEC
1167         && (op->operand[0].type == OPT_CONST
1168          || op->operand[0].type == OPT_OFFSET
1169          || op->operand[0].type == OPT_LABEL))
1170       op->operand[0].lmod = OPLM_DWORD;
1171     break;
1172
1173   // alignment
1174   case OP_MOV:
1175   check_align:
1176     if (op->operand[0].type == OPT_REG && op->operand[1].type == OPT_REG
1177      && op->operand[0].lmod == op->operand[1].lmod
1178      && op->operand[0].reg == op->operand[1].reg
1179      && IS(op->operand[0].name, op->operand[1].name)) // ! ah, al..
1180     {
1181       op->flags |= OPF_RMD | OPF_DONE;
1182       op->regmask_src = op->regmask_dst = 0;
1183     }
1184     break;
1185
1186   case OP_LEA:
1187     if (op->operand[0].type == OPT_REG
1188      && op->operand[1].type == OPT_REGMEM)
1189     {
1190       char buf[16];
1191       snprintf(buf, sizeof(buf), "%s+0", op->operand[0].name);
1192       if (IS(buf, op->operand[1].name))
1193         op->flags |= OPF_RMD | OPF_DONE;
1194     }
1195     break;
1196
1197   case OP_CALL:
1198     // trashed regs must be explicitly detected later
1199     op->regmask_dst = 0;
1200     break;
1201
1202   case OP_LEAVE:
1203     op->regmask_dst = (1 << xBP) | (1 << xSP);
1204     op->regmask_src =  1 << xBP;
1205     break;
1206
1207   default:
1208     break;
1209   }
1210 }
1211
1212 static const char *op_name(struct parsed_op *po)
1213 {
1214   static char buf[16];
1215   char *p;
1216   int i;
1217
1218   if (po->op == OP_JCC || po->op == OP_SCC) {
1219     p = buf;
1220     *p++ = (po->op == OP_JCC) ? 'j' : 's';
1221     if (po->pfo_inv)
1222       *p++ = 'n';
1223     strcpy(p, parsed_flag_op_names[po->pfo]);
1224     return buf;
1225   }
1226
1227   for (i = 0; i < ARRAY_SIZE(op_table); i++)
1228     if (op_table[i].op == po->op)
1229       return op_table[i].name;
1230
1231   return "???";
1232 }
1233
1234 // debug
1235 static const char *dump_op(struct parsed_op *po)
1236 {
1237   static char out[128];
1238   char *p = out;
1239   int i;
1240
1241   if (po == NULL)
1242     return "???";
1243
1244   snprintf(out, sizeof(out), "%s", op_name(po));
1245   for (i = 0; i < po->operand_cnt; i++) {
1246     p += strlen(p);
1247     if (i > 0)
1248       *p++ = ',';
1249     snprintf(p, sizeof(out) - (p - out),
1250       po->operand[i].type == OPT_REGMEM ? " [%s]" : " %s",
1251       po->operand[i].name);
1252   }
1253
1254   return out;
1255 }
1256
1257 static const char *lmod_type_u(struct parsed_op *po,
1258   enum opr_lenmod lmod)
1259 {
1260   switch (lmod) {
1261   case OPLM_QWORD:
1262     return "u64";
1263   case OPLM_DWORD:
1264     return "u32";
1265   case OPLM_WORD:
1266     return "u16";
1267   case OPLM_BYTE:
1268     return "u8";
1269   default:
1270     ferr(po, "invalid lmod: %d\n", lmod);
1271     return "(_invalid_)";
1272   }
1273 }
1274
1275 static const char *lmod_cast_u(struct parsed_op *po,
1276   enum opr_lenmod lmod)
1277 {
1278   switch (lmod) {
1279   case OPLM_QWORD:
1280     return "";
1281   case OPLM_DWORD:
1282     return "";
1283   case OPLM_WORD:
1284     return "(u16)";
1285   case OPLM_BYTE:
1286     return "(u8)";
1287   default:
1288     ferr(po, "invalid lmod: %d\n", lmod);
1289     return "(_invalid_)";
1290   }
1291 }
1292
1293 static const char *lmod_cast_u_ptr(struct parsed_op *po,
1294   enum opr_lenmod lmod)
1295 {
1296   switch (lmod) {
1297   case OPLM_QWORD:
1298     return "*(u64 *)";
1299   case OPLM_DWORD:
1300     return "*(u32 *)";
1301   case OPLM_WORD:
1302     return "*(u16 *)";
1303   case OPLM_BYTE:
1304     return "*(u8 *)";
1305   default:
1306     ferr(po, "invalid lmod: %d\n", lmod);
1307     return "(_invalid_)";
1308   }
1309 }
1310
1311 static const char *lmod_cast_s(struct parsed_op *po,
1312   enum opr_lenmod lmod)
1313 {
1314   switch (lmod) {
1315   case OPLM_QWORD:
1316     return "(s64)";
1317   case OPLM_DWORD:
1318     return "(s32)";
1319   case OPLM_WORD:
1320     return "(s16)";
1321   case OPLM_BYTE:
1322     return "(s8)";
1323   default:
1324     ferr(po, "%s: invalid lmod: %d\n", __func__, lmod);
1325     return "(_invalid_)";
1326   }
1327 }
1328
1329 static const char *lmod_cast(struct parsed_op *po,
1330   enum opr_lenmod lmod, int is_signed)
1331 {
1332   return is_signed ?
1333     lmod_cast_s(po, lmod) :
1334     lmod_cast_u(po, lmod);
1335 }
1336
1337 static int lmod_bytes(struct parsed_op *po, enum opr_lenmod lmod)
1338 {
1339   switch (lmod) {
1340   case OPLM_QWORD:
1341     return 8;
1342   case OPLM_DWORD:
1343     return 4;
1344   case OPLM_WORD:
1345     return 2;
1346   case OPLM_BYTE:
1347     return 1;
1348   default:
1349     ferr(po, "%s: invalid lmod: %d\n", __func__, lmod);
1350     return 0;
1351   }
1352 }
1353
1354 static const char *opr_name(struct parsed_op *po, int opr_num)
1355 {
1356   if (opr_num >= po->operand_cnt)
1357     ferr(po, "opr OOR: %d/%d\n", opr_num, po->operand_cnt);
1358   return po->operand[opr_num].name;
1359 }
1360
1361 static unsigned int opr_const(struct parsed_op *po, int opr_num)
1362 {
1363   if (opr_num >= po->operand_cnt)
1364     ferr(po, "opr OOR: %d/%d\n", opr_num, po->operand_cnt);
1365   if (po->operand[opr_num].type != OPT_CONST)
1366     ferr(po, "opr %d: const expected\n", opr_num);
1367   return po->operand[opr_num].val;
1368 }
1369
1370 static const char *opr_reg_p(struct parsed_op *po, struct parsed_opr *popr)
1371 {
1372   if ((unsigned int)popr->reg >= ARRAY_SIZE(regs_r32))
1373     ferr(po, "invalid reg: %d\n", popr->reg);
1374   return regs_r32[popr->reg];
1375 }
1376
1377 // cast1 is the "final" cast
1378 static const char *simplify_cast(const char *cast1, const char *cast2)
1379 {
1380   static char buf[256];
1381
1382   if (cast1[0] == 0)
1383     return cast2;
1384   if (cast2[0] == 0)
1385     return cast1;
1386   if (IS(cast1, cast2))
1387     return cast1;
1388   if (IS(cast1, "(s8)") && IS(cast2, "(u8)"))
1389     return cast1;
1390   if (IS(cast1, "(s16)") && IS(cast2, "(u16)"))
1391     return cast1;
1392   if (IS(cast1, "(u8)") && IS_START(cast2, "*(u8 *)"))
1393     return cast2;
1394   if (IS(cast1, "(u16)") && IS_START(cast2, "*(u16 *)"))
1395     return cast2;
1396   if (strchr(cast1, '*') && IS_START(cast2, "(u32)"))
1397     return cast1;
1398
1399   snprintf(buf, sizeof(buf), "%s%s", cast1, cast2);
1400   return buf;
1401 }
1402
1403 static const char *simplify_cast_num(const char *cast, unsigned int val)
1404 {
1405   if (IS(cast, "(u8)") && val < 0x100)
1406     return "";
1407   if (IS(cast, "(s8)") && val < 0x80)
1408     return "";
1409   if (IS(cast, "(u16)") && val < 0x10000)
1410     return "";
1411   if (IS(cast, "(s16)") && val < 0x8000)
1412     return "";
1413   if (IS(cast, "(s32)") && val < 0x80000000)
1414     return "";
1415
1416   return cast;
1417 }
1418
1419 static struct parsed_equ *equ_find(struct parsed_op *po, const char *name,
1420   int *extra_offs)
1421 {
1422   const char *p;
1423   char *endp;
1424   int namelen;
1425   int i;
1426
1427   *extra_offs = 0;
1428   namelen = strlen(name);
1429
1430   p = strchr(name, '+');
1431   if (p != NULL) {
1432     namelen = p - name;
1433     if (namelen <= 0)
1434       ferr(po, "equ parse failed for '%s'\n", name);
1435
1436     if (IS_START(p, "0x"))
1437       p += 2;
1438     *extra_offs = strtol(p, &endp, 16);
1439     if (*endp != 0)
1440       ferr(po, "equ parse failed for '%s'\n", name);
1441   }
1442
1443   for (i = 0; i < g_eqcnt; i++)
1444     if (strncmp(g_eqs[i].name, name, namelen) == 0
1445      && g_eqs[i].name[namelen] == 0)
1446       break;
1447   if (i >= g_eqcnt) {
1448     if (po != NULL)
1449       ferr(po, "unresolved equ name: '%s'\n", name);
1450     return NULL;
1451   }
1452
1453   return &g_eqs[i];
1454 }
1455
1456 static int is_stack_access(struct parsed_op *po,
1457   const struct parsed_opr *popr)
1458 {
1459   return (parse_stack_el(popr->name, NULL, 0)
1460     || (g_bp_frame && !(po->flags & OPF_EBP_S)
1461         && IS_START(popr->name, "ebp")));
1462 }
1463
1464 static void parse_stack_access(struct parsed_op *po,
1465   const char *name, char *ofs_reg, int *offset_out,
1466   int *stack_ra_out, const char **bp_arg_out, int is_lea)
1467 {
1468   const char *bp_arg = "";
1469   const char *p = NULL;
1470   struct parsed_equ *eq;
1471   char *endp = NULL;
1472   int stack_ra = 0;
1473   int offset = 0;
1474
1475   ofs_reg[0] = 0;
1476
1477   if (IS_START(name, "ebp-")
1478    || (IS_START(name, "ebp+") && '0' <= name[4] && name[4] <= '9'))
1479   {
1480     p = name + 4;
1481     if (IS_START(p, "0x"))
1482       p += 2;
1483     offset = strtoul(p, &endp, 16);
1484     if (name[3] == '-')
1485       offset = -offset;
1486     if (*endp != 0)
1487       ferr(po, "ebp- parse of '%s' failed\n", name);
1488   }
1489   else {
1490     bp_arg = parse_stack_el(name, ofs_reg, 0);
1491     snprintf(g_comment, sizeof(g_comment), "%s", bp_arg);
1492     eq = equ_find(po, bp_arg, &offset);
1493     if (eq == NULL)
1494       ferr(po, "detected but missing eq\n");
1495     offset += eq->offset;
1496   }
1497
1498   if (!strncmp(name, "ebp", 3))
1499     stack_ra = 4;
1500
1501   // yes it sometimes LEAs ra for compares..
1502   if (!is_lea && ofs_reg[0] == 0
1503     && stack_ra <= offset && offset < stack_ra + 4)
1504   {
1505     ferr(po, "reference to ra? %d %d\n", offset, stack_ra);
1506   }
1507
1508   *offset_out = offset;
1509   *stack_ra_out = stack_ra;
1510   if (bp_arg_out)
1511     *bp_arg_out = bp_arg;
1512 }
1513
1514 static int stack_frame_access(struct parsed_op *po,
1515   struct parsed_opr *popr, char *buf, size_t buf_size,
1516   const char *name, const char *cast, int is_src, int is_lea)
1517 {
1518   enum opr_lenmod tmp_lmod = OPLM_UNSPEC;
1519   const char *prefix = "";
1520   const char *bp_arg = NULL;
1521   char ofs_reg[16] = { 0, };
1522   int i, arg_i, arg_s;
1523   int unaligned = 0;
1524   int stack_ra = 0;
1525   int offset = 0;
1526   int retval = -1;
1527   int sf_ofs;
1528   int lim;
1529
1530   if (po->flags & OPF_EBP_S)
1531     ferr(po, "stack_frame_access while ebp is scratch\n");
1532
1533   parse_stack_access(po, name, ofs_reg, &offset,
1534     &stack_ra, &bp_arg, is_lea);
1535
1536   if (offset > stack_ra)
1537   {
1538     arg_i = (offset - stack_ra - 4) / 4;
1539     if (arg_i < 0 || arg_i >= g_func_pp->argc_stack)
1540     {
1541       if (g_func_pp->is_vararg
1542           && arg_i == g_func_pp->argc_stack && is_lea)
1543       {
1544         // should be va_list
1545         if (cast[0] == 0)
1546           cast = "(u32)";
1547         snprintf(buf, buf_size, "%sap", cast);
1548         return -1;
1549       }
1550       ferr(po, "offset %d (%s,%d) doesn't map to any arg\n",
1551         offset, bp_arg, arg_i);
1552     }
1553     if (ofs_reg[0] != 0)
1554       ferr(po, "offset reg on arg access?\n");
1555
1556     for (i = arg_s = 0; i < g_func_pp->argc; i++) {
1557       if (g_func_pp->arg[i].reg != NULL)
1558         continue;
1559       if (arg_s == arg_i)
1560         break;
1561       arg_s++;
1562     }
1563     if (i == g_func_pp->argc)
1564       ferr(po, "arg %d not in prototype?\n", arg_i);
1565
1566     popr->is_ptr = g_func_pp->arg[i].type.is_ptr;
1567     retval = i;
1568
1569     switch (popr->lmod)
1570     {
1571     case OPLM_BYTE:
1572       if (is_lea)
1573         ferr(po, "lea/byte to arg?\n");
1574       if (is_src && (offset & 3) == 0)
1575         snprintf(buf, buf_size, "%sa%d",
1576           simplify_cast(cast, "(u8)"), i + 1);
1577       else
1578         snprintf(buf, buf_size, "%sBYTE%d(a%d)",
1579           cast, offset & 3, i + 1);
1580       break;
1581
1582     case OPLM_WORD:
1583       if (is_lea)
1584         ferr(po, "lea/word to arg?\n");
1585       if (offset & 1) {
1586         unaligned = 1;
1587         if (!is_src) {
1588           if (offset & 2)
1589             ferr(po, "problematic arg store\n");
1590           snprintf(buf, buf_size, "%s((char *)&a%d + 1)",
1591             simplify_cast(cast, "*(u16 *)"), i + 1);
1592         }
1593         else
1594           ferr(po, "unaligned arg word load\n");
1595       }
1596       else if (is_src && (offset & 2) == 0)
1597         snprintf(buf, buf_size, "%sa%d",
1598           simplify_cast(cast, "(u16)"), i + 1);
1599       else
1600         snprintf(buf, buf_size, "%s%sWORD(a%d)",
1601           cast, (offset & 2) ? "HI" : "LO", i + 1);
1602       break;
1603
1604     case OPLM_DWORD:
1605       if (cast[0])
1606         prefix = cast;
1607       else if (is_src)
1608         prefix = "(u32)";
1609
1610       if (offset & 3) {
1611         unaligned = 1;
1612         if (is_lea)
1613           snprintf(buf, buf_size, "(u32)&a%d + %d",
1614             i + 1, offset & 3);
1615         else if (!is_src)
1616           ferr(po, "unaligned arg store\n");
1617         else {
1618           // mov edx, [ebp+arg_4+2]; movsx ecx, dx
1619           snprintf(buf, buf_size, "%s(a%d >> %d)",
1620             prefix, i + 1, (offset & 3) * 8);
1621         }
1622       }
1623       else {
1624         snprintf(buf, buf_size, "%s%sa%d",
1625           prefix, is_lea ? "&" : "", i + 1);
1626       }
1627       break;
1628
1629     default:
1630       ferr(po, "bp_arg bad lmod: %d\n", popr->lmod);
1631     }
1632
1633     if (unaligned)
1634       snprintf(g_comment, sizeof(g_comment), "%s unaligned", bp_arg);
1635
1636     // common problem
1637     guess_lmod_from_c_type(&tmp_lmod, &g_func_pp->arg[i].type);
1638     if (tmp_lmod != OPLM_DWORD
1639       && (unaligned || (!is_src && lmod_bytes(po, tmp_lmod)
1640                          < lmod_bytes(po, popr->lmod) + (offset & 3))))
1641     {
1642       ferr(po, "bp_arg arg%d/w offset %d and type '%s' is too small\n",
1643         i + 1, offset, g_func_pp->arg[i].type.name);
1644     }
1645     // can't check this because msvc likes to reuse
1646     // arg space for scratch..
1647     //if (popr->is_ptr && popr->lmod != OPLM_DWORD)
1648     //  ferr(po, "bp_arg arg%d: non-dword ptr access\n", i + 1);
1649   }
1650   else
1651   {
1652     if (g_stack_fsz == 0)
1653       ferr(po, "stack var access without stackframe\n");
1654     g_stack_frame_used = 1;
1655
1656     sf_ofs = g_stack_fsz + offset;
1657     lim = (ofs_reg[0] != 0) ? -4 : 0;
1658     if (offset > 0 || sf_ofs < lim)
1659       ferr(po, "bp_stack offset %d/%d\n", offset, g_stack_fsz);
1660
1661     if (is_lea)
1662       prefix = "(u32)&";
1663     else
1664       prefix = cast;
1665
1666     switch (popr->lmod)
1667     {
1668     case OPLM_BYTE:
1669       snprintf(buf, buf_size, "%ssf.b[%d%s%s]",
1670         prefix, sf_ofs, ofs_reg[0] ? "+" : "", ofs_reg);
1671       break;
1672
1673     case OPLM_WORD:
1674       if ((sf_ofs & 1) || ofs_reg[0] != 0) {
1675         // known unaligned or possibly unaligned
1676         strcat(g_comment, " unaligned");
1677         if (prefix[0] == 0)
1678           prefix = "*(u16 *)&";
1679         snprintf(buf, buf_size, "%ssf.b[%d%s%s]",
1680           prefix, sf_ofs, ofs_reg[0] ? "+" : "", ofs_reg);
1681         break;
1682       }
1683       snprintf(buf, buf_size, "%ssf.w[%d]", prefix, sf_ofs / 2);
1684       break;
1685
1686     case OPLM_DWORD:
1687       if ((sf_ofs & 3) || ofs_reg[0] != 0) {
1688         // known unaligned or possibly unaligned
1689         strcat(g_comment, " unaligned");
1690         if (prefix[0] == 0)
1691           prefix = "*(u32 *)&";
1692         snprintf(buf, buf_size, "%ssf.b[%d%s%s]",
1693           prefix, sf_ofs, ofs_reg[0] ? "+" : "", ofs_reg);
1694         break;
1695       }
1696       snprintf(buf, buf_size, "%ssf.d[%d]", prefix, sf_ofs / 4);
1697       break;
1698
1699     default:
1700       ferr(po, "bp_stack bad lmod: %d\n", popr->lmod);
1701     }
1702   }
1703
1704   return retval;
1705 }
1706
1707 static void check_func_pp(struct parsed_op *po,
1708   const struct parsed_proto *pp, const char *pfx)
1709 {
1710   enum opr_lenmod tmp_lmod;
1711   char buf[256];
1712   int ret, i;
1713
1714   if (pp->argc_reg != 0) {
1715     if (/*!g_allow_regfunc &&*/ !pp->is_fastcall) {
1716       pp_print(buf, sizeof(buf), pp);
1717       ferr(po, "%s: unexpected reg arg in icall: %s\n", pfx, buf);
1718     }
1719     if (pp->argc_stack > 0 && pp->argc_reg != 2)
1720       ferr(po, "%s: %d reg arg(s) with %d stack arg(s)\n",
1721         pfx, pp->argc_reg, pp->argc_stack);
1722   }
1723
1724   // fptrs must use 32bit args, callsite might have no information and
1725   // lack a cast to smaller types, which results in incorrectly masked
1726   // args passed (callee may assume masked args, it does on ARM)
1727   if (!pp->is_osinc) {
1728     for (i = 0; i < pp->argc; i++) {
1729       ret = guess_lmod_from_c_type(&tmp_lmod, &pp->arg[i].type);
1730       if (ret && tmp_lmod != OPLM_DWORD)
1731         ferr(po, "reference to %s with arg%d '%s'\n", pp->name,
1732           i + 1, pp->arg[i].type.name);
1733     }
1734   }
1735 }
1736
1737 static const char *check_label_read_ref(struct parsed_op *po,
1738   const char *name)
1739 {
1740   const struct parsed_proto *pp;
1741
1742   pp = proto_parse(g_fhdr, name, 0);
1743   if (pp == NULL)
1744     ferr(po, "proto_parse failed for ref '%s'\n", name);
1745
1746   if (pp->is_func)
1747     check_func_pp(po, pp, "ref");
1748
1749   return pp->name;
1750 }
1751
1752 static char *out_src_opr(char *buf, size_t buf_size,
1753   struct parsed_op *po, struct parsed_opr *popr, const char *cast,
1754   int is_lea)
1755 {
1756   char tmp1[256], tmp2[256];
1757   char expr[256];
1758   const char *name;
1759   char *p;
1760   int ret;
1761
1762   if (cast == NULL)
1763     cast = "";
1764
1765   switch (popr->type) {
1766   case OPT_REG:
1767     if (is_lea)
1768       ferr(po, "lea from reg?\n");
1769
1770     switch (popr->lmod) {
1771     case OPLM_QWORD:
1772       snprintf(buf, buf_size, "%s%s.q", cast, opr_reg_p(po, popr));
1773       break;
1774     case OPLM_DWORD:
1775       snprintf(buf, buf_size, "%s%s", cast, opr_reg_p(po, popr));
1776       break;
1777     case OPLM_WORD:
1778       snprintf(buf, buf_size, "%s%s",
1779         simplify_cast(cast, "(u16)"), opr_reg_p(po, popr));
1780       break;
1781     case OPLM_BYTE:
1782       if (popr->name[1] == 'h') // XXX..
1783         snprintf(buf, buf_size, "%s(%s >> 8)",
1784           simplify_cast(cast, "(u8)"), opr_reg_p(po, popr));
1785       else
1786         snprintf(buf, buf_size, "%s%s",
1787           simplify_cast(cast, "(u8)"), opr_reg_p(po, popr));
1788       break;
1789     default:
1790       ferr(po, "invalid src lmod: %d\n", popr->lmod);
1791     }
1792     break;
1793
1794   case OPT_REGMEM:
1795     if (is_stack_access(po, popr)) {
1796       stack_frame_access(po, popr, buf, buf_size,
1797         popr->name, cast, 1, is_lea);
1798       break;
1799     }
1800
1801     strcpy(expr, popr->name);
1802     if (strchr(expr, '[')) {
1803       // special case: '[' can only be left for label[reg] form
1804       ret = sscanf(expr, "%[^[][%[^]]]", tmp1, tmp2);
1805       if (ret != 2)
1806         ferr(po, "parse failure for '%s'\n", expr);
1807       if (tmp1[0] == '(') {
1808         // (off_4FFF50+3)[eax]
1809         p = strchr(tmp1 + 1, ')');
1810         if (p == NULL || p[1] != 0)
1811           ferr(po, "parse failure (2) for '%s'\n", expr);
1812         *p = 0;
1813         memmove(tmp1, tmp1 + 1, strlen(tmp1));
1814       }
1815       snprintf(expr, sizeof(expr), "(u32)&%s + %s", tmp1, tmp2);
1816     }
1817
1818     // XXX: do we need more parsing?
1819     if (is_lea) {
1820       snprintf(buf, buf_size, "%s", expr);
1821       break;
1822     }
1823
1824     snprintf(buf, buf_size, "%s(%s)",
1825       simplify_cast(cast, lmod_cast_u_ptr(po, popr->lmod)), expr);
1826     break;
1827
1828   case OPT_LABEL:
1829     name = check_label_read_ref(po, popr->name);
1830     if (cast[0] == 0 && popr->is_ptr)
1831       cast = "(u32)";
1832
1833     if (is_lea)
1834       snprintf(buf, buf_size, "(u32)&%s", name);
1835     else if (popr->size_lt)
1836       snprintf(buf, buf_size, "%s%s%s%s", cast,
1837         lmod_cast_u_ptr(po, popr->lmod),
1838         popr->is_array ? "" : "&", name);
1839     else
1840       snprintf(buf, buf_size, "%s%s%s", cast, name,
1841         popr->is_array ? "[0]" : "");
1842     break;
1843
1844   case OPT_OFFSET:
1845     name = check_label_read_ref(po, popr->name);
1846     if (cast[0] == 0)
1847       cast = "(u32)";
1848     if (is_lea)
1849       ferr(po, "lea an offset?\n");
1850     snprintf(buf, buf_size, "%s&%s", cast, name);
1851     break;
1852
1853   case OPT_CONST:
1854     if (is_lea)
1855       ferr(po, "lea from const?\n");
1856
1857     printf_number(tmp1, sizeof(tmp1), popr->val);
1858     if (popr->val == 0 && strchr(cast, '*'))
1859       snprintf(buf, buf_size, "NULL");
1860     else
1861       snprintf(buf, buf_size, "%s%s",
1862         simplify_cast_num(cast, popr->val), tmp1);
1863     break;
1864
1865   default:
1866     ferr(po, "invalid src type: %d\n", popr->type);
1867   }
1868
1869   return buf;
1870 }
1871
1872 // note: may set is_ptr (we find that out late for ebp frame..)
1873 static char *out_dst_opr(char *buf, size_t buf_size,
1874         struct parsed_op *po, struct parsed_opr *popr)
1875 {
1876   switch (popr->type) {
1877   case OPT_REG:
1878     switch (popr->lmod) {
1879     case OPLM_QWORD:
1880       snprintf(buf, buf_size, "%s.q", opr_reg_p(po, popr));
1881       break;
1882     case OPLM_DWORD:
1883       snprintf(buf, buf_size, "%s", opr_reg_p(po, popr));
1884       break;
1885     case OPLM_WORD:
1886       // ugh..
1887       snprintf(buf, buf_size, "LOWORD(%s)", opr_reg_p(po, popr));
1888       break;
1889     case OPLM_BYTE:
1890       // ugh..
1891       if (popr->name[1] == 'h') // XXX..
1892         snprintf(buf, buf_size, "BYTE1(%s)", opr_reg_p(po, popr));
1893       else
1894         snprintf(buf, buf_size, "LOBYTE(%s)", opr_reg_p(po, popr));
1895       break;
1896     default:
1897       ferr(po, "invalid dst lmod: %d\n", popr->lmod);
1898     }
1899     break;
1900
1901   case OPT_REGMEM:
1902     if (is_stack_access(po, popr)) {
1903       stack_frame_access(po, popr, buf, buf_size,
1904         popr->name, "", 0, 0);
1905       break;
1906     }
1907
1908     return out_src_opr(buf, buf_size, po, popr, NULL, 0);
1909
1910   case OPT_LABEL:
1911     if (popr->size_mismatch)
1912       snprintf(buf, buf_size, "%s%s%s",
1913         lmod_cast_u_ptr(po, popr->lmod),
1914         popr->is_array ? "" : "&", popr->name);
1915     else
1916       snprintf(buf, buf_size, "%s%s", popr->name,
1917         popr->is_array ? "[0]" : "");
1918     break;
1919
1920   default:
1921     ferr(po, "invalid dst type: %d\n", popr->type);
1922   }
1923
1924   return buf;
1925 }
1926
1927 static char *out_src_opr_u32(char *buf, size_t buf_size,
1928         struct parsed_op *po, struct parsed_opr *popr)
1929 {
1930   return out_src_opr(buf, buf_size, po, popr, NULL, 0);
1931 }
1932
1933 static void out_test_for_cc(char *buf, size_t buf_size,
1934   struct parsed_op *po, enum parsed_flag_op pfo, int is_inv,
1935   enum opr_lenmod lmod, const char *expr)
1936 {
1937   const char *cast, *scast;
1938
1939   cast = lmod_cast_u(po, lmod);
1940   scast = lmod_cast_s(po, lmod);
1941
1942   switch (pfo) {
1943   case PFO_Z:
1944   case PFO_BE: // CF=1||ZF=1; CF=0
1945     snprintf(buf, buf_size, "(%s%s %s 0)",
1946       cast, expr, is_inv ? "!=" : "==");
1947     break;
1948
1949   case PFO_S:
1950   case PFO_L: // SF!=OF; OF=0
1951     snprintf(buf, buf_size, "(%s%s %s 0)",
1952       scast, expr, is_inv ? ">=" : "<");
1953     break;
1954
1955   case PFO_LE: // ZF=1||SF!=OF; OF=0
1956     snprintf(buf, buf_size, "(%s%s %s 0)",
1957       scast, expr, is_inv ? ">" : "<=");
1958     break;
1959
1960   default:
1961     ferr(po, "%s: unhandled parsed_flag_op: %d\n", __func__, pfo);
1962   }
1963 }
1964
1965 static void out_cmp_for_cc(char *buf, size_t buf_size,
1966   struct parsed_op *po, enum parsed_flag_op pfo, int is_inv)
1967 {
1968   const char *cast, *scast, *cast_use;
1969   char buf1[256], buf2[256];
1970   enum opr_lenmod lmod;
1971
1972   if (po->op != OP_DEC && po->operand[0].lmod != po->operand[1].lmod)
1973     ferr(po, "%s: lmod mismatch: %d %d\n", __func__,
1974       po->operand[0].lmod, po->operand[1].lmod);
1975   lmod = po->operand[0].lmod;
1976
1977   cast = lmod_cast_u(po, lmod);
1978   scast = lmod_cast_s(po, lmod);
1979
1980   switch (pfo) {
1981   case PFO_C:
1982   case PFO_Z:
1983   case PFO_BE: // !a
1984     cast_use = cast;
1985     break;
1986
1987   case PFO_S:
1988   case PFO_L: // !ge
1989   case PFO_LE:
1990     cast_use = scast;
1991     break;
1992
1993   default:
1994     ferr(po, "%s: unhandled parsed_flag_op: %d\n", __func__, pfo);
1995   }
1996
1997   out_src_opr(buf1, sizeof(buf1), po, &po->operand[0], cast_use, 0);
1998   if (po->op == OP_DEC)
1999     snprintf(buf2, sizeof(buf2), "1");
2000   else
2001     out_src_opr(buf2, sizeof(buf2), po, &po->operand[1], cast_use, 0);
2002
2003   switch (pfo) {
2004   case PFO_C:
2005     // note: must be unsigned compare
2006     snprintf(buf, buf_size, "(%s %s %s)",
2007       buf1, is_inv ? ">=" : "<", buf2);
2008     break;
2009
2010   case PFO_Z:
2011     snprintf(buf, buf_size, "(%s %s %s)",
2012       buf1, is_inv ? "!=" : "==", buf2);
2013     break;
2014
2015   case PFO_BE: // !a
2016     // note: must be unsigned compare
2017     snprintf(buf, buf_size, "(%s %s %s)",
2018       buf1, is_inv ? ">" : "<=", buf2);
2019
2020     // annoying case
2021     if (is_inv && lmod == OPLM_BYTE
2022       && po->operand[1].type == OPT_CONST
2023       && po->operand[1].val == 0xff)
2024     {
2025       snprintf(g_comment, sizeof(g_comment), "if %s", buf);
2026       snprintf(buf, buf_size, "(0)");
2027     }
2028     break;
2029
2030   // note: must be signed compare
2031   case PFO_S:
2032     snprintf(buf, buf_size, "(%s(%s - %s) %s 0)",
2033       scast, buf1, buf2, is_inv ? ">=" : "<");
2034     break;
2035
2036   case PFO_L: // !ge
2037     snprintf(buf, buf_size, "(%s %s %s)",
2038       buf1, is_inv ? ">=" : "<", buf2);
2039     break;
2040
2041   case PFO_LE: // !g
2042     snprintf(buf, buf_size, "(%s %s %s)",
2043       buf1, is_inv ? ">" : "<=", buf2);
2044     break;
2045
2046   default:
2047     break;
2048   }
2049 }
2050
2051 static void out_cmp_test(char *buf, size_t buf_size,
2052   struct parsed_op *po, enum parsed_flag_op pfo, int is_inv)
2053 {
2054   char buf1[256], buf2[256], buf3[256];
2055
2056   if (po->op == OP_TEST) {
2057     if (IS(opr_name(po, 0), opr_name(po, 1))) {
2058       out_src_opr_u32(buf3, sizeof(buf3), po, &po->operand[0]);
2059     }
2060     else {
2061       out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
2062       out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
2063       snprintf(buf3, sizeof(buf3), "(%s & %s)", buf1, buf2);
2064     }
2065     out_test_for_cc(buf, buf_size, po, pfo, is_inv,
2066       po->operand[0].lmod, buf3);
2067   }
2068   else if (po->op == OP_CMP) {
2069     out_cmp_for_cc(buf, buf_size, po, pfo, is_inv);
2070   }
2071   else
2072     ferr(po, "%s: unhandled op: %d\n", __func__, po->op);
2073 }
2074
2075 static void propagate_lmod(struct parsed_op *po, struct parsed_opr *popr1,
2076         struct parsed_opr *popr2)
2077 {
2078   if (popr1->lmod == OPLM_UNSPEC && popr2->lmod == OPLM_UNSPEC)
2079     ferr(po, "missing lmod for both operands\n");
2080
2081   if (popr1->lmod == OPLM_UNSPEC)
2082     popr1->lmod = popr2->lmod;
2083   else if (popr2->lmod == OPLM_UNSPEC)
2084     popr2->lmod = popr1->lmod;
2085   else if (popr1->lmod != popr2->lmod) {
2086     if (popr1->type_from_var) {
2087       popr1->size_mismatch = 1;
2088       if (popr1->lmod < popr2->lmod)
2089         popr1->size_lt = 1;
2090       popr1->lmod = popr2->lmod;
2091     }
2092     else if (popr2->type_from_var) {
2093       popr2->size_mismatch = 1;
2094       if (popr2->lmod < popr1->lmod)
2095         popr2->size_lt = 1;
2096       popr2->lmod = popr1->lmod;
2097     }
2098     else
2099       ferr(po, "conflicting lmods: %d vs %d\n",
2100         popr1->lmod, popr2->lmod);
2101   }
2102 }
2103
2104 static const char *op_to_c(struct parsed_op *po)
2105 {
2106   switch (po->op)
2107   {
2108     case OP_ADD:
2109     case OP_ADC:
2110       return "+";
2111     case OP_SUB:
2112     case OP_SBB:
2113       return "-";
2114     case OP_AND:
2115       return "&";
2116     case OP_OR:
2117       return "|";
2118     case OP_XOR:
2119       return "^";
2120     case OP_SHL:
2121       return "<<";
2122     case OP_SHR:
2123       return ">>";
2124     case OP_MUL:
2125     case OP_IMUL:
2126       return "*";
2127     default:
2128       ferr(po, "op_to_c was supplied with %d\n", po->op);
2129   }
2130 }
2131
2132 static void op_set_clear_flag(struct parsed_op *po,
2133   enum op_flags flag_set, enum op_flags flag_clear)
2134 {
2135   po->flags |= flag_set;
2136   po->flags &= ~flag_clear;
2137 }
2138
2139 // last op in stream - unconditional branch or ret
2140 #define LAST_OP(_i) ((ops[_i].flags & OPF_TAIL) \
2141   || ((ops[_i].flags & (OPF_JMP|OPF_CJMP|OPF_RMD)) == OPF_JMP \
2142       && ops[_i].op != OP_CALL))
2143
2144 #define check_i(po, i) \
2145   if ((i) < 0) \
2146     ferr(po, "bad " #i ": %d\n", i)
2147
2148 static int scan_for_pop(int i, int opcnt, const char *reg,
2149   int magic, int depth, int *maxdepth, int do_flags)
2150 {
2151   const struct parsed_proto *pp;
2152   struct parsed_op *po;
2153   int ret = 0;
2154   int j;
2155
2156   for (; i < opcnt; i++) {
2157     po = &ops[i];
2158     if (po->cc_scratch == magic)
2159       break; // already checked
2160     po->cc_scratch = magic;
2161
2162     if (po->flags & OPF_TAIL) {
2163       if (po->op == OP_CALL) {
2164         pp = proto_parse(g_fhdr, po->operand[0].name, g_quiet_pp);
2165         if (pp != NULL && pp->is_noreturn)
2166           // no stack cleanup for noreturn
2167           return ret;
2168       }
2169       return -1; // deadend
2170     }
2171
2172     if ((po->flags & (OPF_RMD|OPF_DONE))
2173         || (po->op == OP_PUSH && po->p_argnum != 0)) // arg push
2174       continue;
2175
2176     if ((po->flags & OPF_JMP) && po->op != OP_CALL) {
2177       if (po->btj != NULL) {
2178         // jumptable
2179         for (j = 0; j < po->btj->count; j++) {
2180           check_i(po, po->btj->d[j].bt_i);
2181           ret |= scan_for_pop(po->btj->d[j].bt_i, opcnt, reg, magic,
2182                    depth, maxdepth, do_flags);
2183           if (ret < 0)
2184             return ret; // dead end
2185         }
2186         return ret;
2187       }
2188
2189       check_i(po, po->bt_i);
2190       if (po->flags & OPF_CJMP) {
2191         ret |= scan_for_pop(po->bt_i, opcnt, reg, magic,
2192                  depth, maxdepth, do_flags);
2193         if (ret < 0)
2194           return ret; // dead end
2195       }
2196       else {
2197         i = po->bt_i - 1;
2198       }
2199       continue;
2200     }
2201
2202     if ((po->op == OP_POP || po->op == OP_PUSH)
2203         && po->operand[0].type == OPT_REG
2204         && IS(po->operand[0].name, reg))
2205     {
2206       if (po->op == OP_PUSH && !(po->flags & OPF_FARGNR)) {
2207         depth++;
2208         if (depth > *maxdepth)
2209           *maxdepth = depth;
2210         if (do_flags)
2211           op_set_clear_flag(po, OPF_RSAVE, OPF_RMD);
2212       }
2213       else if (po->op == OP_POP) {
2214         if (depth == 0) {
2215           if (do_flags)
2216             op_set_clear_flag(po, OPF_RMD, OPF_RSAVE);
2217           return 1;
2218         }
2219         else {
2220           depth--;
2221           if (depth < 0) // should not happen
2222             ferr(po, "fail with depth\n");
2223           if (do_flags)
2224             op_set_clear_flag(po, OPF_RSAVE, OPF_RMD);
2225         }
2226       }
2227     }
2228   }
2229
2230   return ret;
2231 }
2232
2233 // scan for pop starting from 'ret' op (all paths)
2234 static int scan_for_pop_ret(int i, int opcnt, const char *reg,
2235   int flag_set)
2236 {
2237   int found = 0;
2238   int j;
2239
2240   for (; i < opcnt; i++) {
2241     if (!(ops[i].flags & OPF_TAIL))
2242       continue;
2243
2244     for (j = i - 1; j >= 0; j--) {
2245       if (ops[j].flags & (OPF_RMD|OPF_DONE))
2246         continue;
2247       if (ops[j].flags & OPF_JMP)
2248         return -1;
2249
2250       if (ops[j].op == OP_POP && ops[j].datap == NULL
2251           && ops[j].operand[0].type == OPT_REG
2252           && IS(ops[j].operand[0].name, reg))
2253       {
2254         found = 1;
2255         ops[j].flags |= flag_set;
2256         break;
2257       }
2258
2259       if (g_labels[j] != NULL)
2260         return -1;
2261     }
2262   }
2263
2264   return found ? 0 : -1;
2265 }
2266
2267 static void scan_for_pop_const(int i, int opcnt, int *regmask_pp)
2268 {
2269   struct parsed_op *po;
2270   int is_multipath = 0;
2271   int j;
2272
2273   for (j = i + 1; j < opcnt; j++) {
2274     po = &ops[j];
2275
2276     if (po->op == OP_JMP && po->btj == NULL) {
2277       ferr_assert(po, po->bt_i >= 0);
2278       j = po->bt_i - 1;
2279       continue;
2280     }
2281
2282     if ((po->flags & (OPF_JMP|OPF_TAIL|OPF_RSAVE))
2283       || po->op == OP_PUSH)
2284     {
2285       break;
2286     }
2287
2288     if (g_labels[j] != NULL)
2289       is_multipath = 1;
2290
2291     if (po->op == OP_POP && !(po->flags & OPF_RMD))
2292     {
2293       is_multipath |= !!(po->flags & OPF_PPUSH);
2294       if (is_multipath) {
2295         ops[i].flags |= OPF_PPUSH | OPF_DONE;
2296         ops[i].datap = po;
2297         po->flags |= OPF_PPUSH | OPF_DONE;
2298         *regmask_pp |= 1 << po->operand[0].reg;
2299       }
2300       else {
2301         ops[i].flags |= OPF_RMD | OPF_DONE;
2302         po->flags |= OPF_DONE;
2303         po->datap = &ops[i];
2304       }
2305       break;
2306     }
2307   }
2308 }
2309
2310 static void scan_propagate_df(int i, int opcnt)
2311 {
2312   struct parsed_op *po = &ops[i];
2313   int j;
2314
2315   for (; i < opcnt; i++) {
2316     po = &ops[i];
2317     if (po->flags & OPF_DF)
2318       return; // already resolved
2319     po->flags |= OPF_DF;
2320
2321     if (po->op == OP_CALL)
2322       ferr(po, "call with DF set?\n");
2323
2324     if (po->flags & OPF_JMP) {
2325       if (po->btj != NULL) {
2326         // jumptable
2327         for (j = 0; j < po->btj->count; j++) {
2328           check_i(po, po->btj->d[j].bt_i);
2329           scan_propagate_df(po->btj->d[j].bt_i, opcnt);
2330         }
2331         return;
2332       }
2333
2334       check_i(po, po->bt_i);
2335       if (po->flags & OPF_CJMP)
2336         scan_propagate_df(po->bt_i, opcnt);
2337       else
2338         i = po->bt_i - 1;
2339       continue;
2340     }
2341
2342     if (po->flags & OPF_TAIL)
2343       break;
2344
2345     if (po->op == OP_CLD) {
2346       po->flags |= OPF_RMD | OPF_DONE;
2347       return;
2348     }
2349   }
2350
2351   ferr(po, "missing DF clear?\n");
2352 }
2353
2354 // is operand 'opr' referenced by parsed_op 'po'?
2355 static int is_opr_referenced(const struct parsed_opr *opr,
2356   const struct parsed_op *po)
2357 {
2358   int i, mask;
2359
2360   if (opr->type == OPT_REG) {
2361     mask = po->regmask_dst | po->regmask_src;
2362     if (po->op == OP_CALL)
2363       mask |= (1 << xAX) | (1 << xCX) | (1 << xDX);
2364     if ((1 << opr->reg) & mask)
2365       return 1;
2366     else
2367       return 0;
2368   }
2369
2370   for (i = 0; i < po->operand_cnt; i++)
2371     if (IS(po->operand[0].name, opr->name))
2372       return 1;
2373
2374   return 0;
2375 }
2376
2377 // is operand 'opr' read by parsed_op 'po'?
2378 static int is_opr_read(const struct parsed_opr *opr,
2379   const struct parsed_op *po)
2380 {
2381   int mask;
2382
2383   if (opr->type == OPT_REG) {
2384     mask = po->regmask_src;
2385     if (po->op == OP_CALL)
2386       // assume worst case
2387       mask |= (1 << xAX) | (1 << xCX) | (1 << xDX);
2388     if ((1 << opr->reg) & mask)
2389       return 1;
2390     else
2391       return 0;
2392   }
2393
2394   // yes I'm lazy
2395   return 0;
2396 }
2397
2398 // is operand 'opr' modified by parsed_op 'po'?
2399 static int is_opr_modified(const struct parsed_opr *opr,
2400   const struct parsed_op *po)
2401 {
2402   int mask;
2403
2404   if (!(po->flags & OPF_DATA))
2405     return 0;
2406
2407   if (opr->type == OPT_REG) {
2408     if (po->op == OP_CALL) {
2409       mask = (1 << xAX) | (1 << xCX) | (1 << xDX);
2410       if ((1 << opr->reg) & mask)
2411         return 1;
2412       else
2413         return 0;
2414     }
2415
2416     if (po->operand[0].type == OPT_REG) {
2417       if (po->regmask_dst & (1 << opr->reg))
2418         return 1;
2419       else
2420         return 0;
2421     }
2422   }
2423
2424   return IS(po->operand[0].name, opr->name);
2425 }
2426
2427 // is any operand of parsed_op 'po_test' modified by parsed_op 'po'?
2428 static int is_any_opr_modified(const struct parsed_op *po_test,
2429   const struct parsed_op *po, int c_mode)
2430 {
2431   int mask;
2432   int i;
2433
2434   if ((po->flags & OPF_RMD) || !(po->flags & OPF_DATA))
2435     return 0;
2436
2437   if (po_test->operand_cnt == 1 && po_test->operand[0].type == OPT_CONST)
2438     return 0;
2439
2440   if ((po_test->regmask_src | po_test->regmask_dst) & po->regmask_dst)
2441     return 1;
2442
2443   // in reality, it can wreck any register, but in decompiled C
2444   // version it can only overwrite eax or edx:eax
2445   mask = (1 << xAX) | (1 << xDX);
2446   if (!c_mode)
2447     mask |= 1 << xCX;
2448
2449   if (po->op == OP_CALL
2450    && ((po_test->regmask_src | po_test->regmask_dst) & mask))
2451     return 1;
2452
2453   for (i = 0; i < po_test->operand_cnt; i++)
2454     if (IS(po_test->operand[i].name, po->operand[0].name))
2455       return 1;
2456
2457   return 0;
2458 }
2459
2460 // scan for any po_test operand modification in range given
2461 static int scan_for_mod(struct parsed_op *po_test, int i, int opcnt,
2462   int c_mode)
2463 {
2464   if (po_test->operand_cnt == 1 && po_test->operand[0].type == OPT_CONST)
2465     return -1;
2466
2467   for (; i < opcnt; i++) {
2468     if (is_any_opr_modified(po_test, &ops[i], c_mode))
2469       return i;
2470   }
2471
2472   return -1;
2473 }
2474
2475 // scan for po_test operand[0] modification in range given
2476 static int scan_for_mod_opr0(struct parsed_op *po_test,
2477   int i, int opcnt)
2478 {
2479   for (; i < opcnt; i++) {
2480     if (is_opr_modified(&po_test->operand[0], &ops[i]))
2481       return i;
2482   }
2483
2484   return -1;
2485 }
2486
2487 static int scan_for_flag_set(int i, int magic, int *branched,
2488   int *setters, int *setter_cnt)
2489 {
2490   struct label_ref *lr;
2491   int ret;
2492
2493   while (i >= 0) {
2494     if (ops[i].cc_scratch == magic) {
2495       ferr(&ops[i], "%s looped\n", __func__);
2496       return -1;
2497     }
2498     ops[i].cc_scratch = magic;
2499
2500     if (g_labels[i] != NULL) {
2501       *branched = 1;
2502
2503       lr = &g_label_refs[i];
2504       for (; lr->next; lr = lr->next) {
2505         check_i(&ops[i], lr->i);
2506         ret = scan_for_flag_set(lr->i, magic,
2507                 branched, setters, setter_cnt);
2508         if (ret < 0)
2509           return ret;
2510       }
2511
2512       check_i(&ops[i], lr->i);
2513       if (i > 0 && LAST_OP(i - 1)) {
2514         i = lr->i;
2515         continue;
2516       }
2517       ret = scan_for_flag_set(lr->i, magic,
2518               branched, setters, setter_cnt);
2519       if (ret < 0)
2520         return ret;
2521     }
2522     i--;
2523
2524     if (ops[i].flags & OPF_FLAGS) {
2525       setters[*setter_cnt] = i;
2526       (*setter_cnt)++;
2527       return 0;
2528     }
2529
2530     if ((ops[i].flags & (OPF_JMP|OPF_CJMP)) == OPF_JMP)
2531       return -1;
2532   }
2533
2534   return -1;
2535 }
2536
2537 // scan back for cdq, if anything modifies edx, fail
2538 static int scan_for_cdq_edx(int i)
2539 {
2540   while (i >= 0) {
2541     if (g_labels[i] != NULL) {
2542       if (g_label_refs[i].next != NULL)
2543         return -1;
2544       if (i > 0 && LAST_OP(i - 1)) {
2545         i = g_label_refs[i].i;
2546         continue;
2547       }
2548       return -1;
2549     }
2550     i--;
2551
2552     if (ops[i].op == OP_CDQ)
2553       return i;
2554
2555     if (ops[i].regmask_dst & (1 << xDX))
2556       return -1;
2557   }
2558
2559   return -1;
2560 }
2561
2562 static int scan_for_reg_clear(int i, int reg)
2563 {
2564   while (i >= 0) {
2565     if (g_labels[i] != NULL) {
2566       if (g_label_refs[i].next != NULL)
2567         return -1;
2568       if (i > 0 && LAST_OP(i - 1)) {
2569         i = g_label_refs[i].i;
2570         continue;
2571       }
2572       return -1;
2573     }
2574     i--;
2575
2576     if (ops[i].op == OP_XOR
2577      && ops[i].operand[0].lmod == OPLM_DWORD
2578      && ops[i].operand[0].reg == ops[i].operand[1].reg
2579      && ops[i].operand[0].reg == reg)
2580       return i;
2581
2582     if (ops[i].regmask_dst & (1 << reg))
2583       return -1;
2584   }
2585
2586   return -1;
2587 }
2588
2589 static void patch_esp_adjust(struct parsed_op *po, int adj)
2590 {
2591   ferr_assert(po, po->op == OP_ADD);
2592   ferr_assert(po, IS(opr_name(po, 0), "esp"));
2593   ferr_assert(po, po->operand[1].type == OPT_CONST);
2594
2595   // this is a bit of a hack, but deals with use of
2596   // single adj for multiple calls
2597   po->operand[1].val -= adj;
2598   po->flags |= OPF_RMD;
2599   if (po->operand[1].val == 0)
2600     po->flags |= OPF_DONE;
2601   ferr_assert(po, (int)po->operand[1].val >= 0);
2602 }
2603
2604 // scan for positive, constant esp adjust
2605 // multipath case is preliminary
2606 static int scan_for_esp_adjust(int i, int opcnt,
2607   int adj_expect, int *adj, int *is_multipath, int do_update)
2608 {
2609   struct parsed_op *po;
2610   int first_pop = -1;
2611
2612   *adj = *is_multipath = 0;
2613
2614   for (; i < opcnt && *adj < adj_expect; i++) {
2615     if (g_labels[i] != NULL)
2616       *is_multipath = 1;
2617
2618     po = &ops[i];
2619     if (po->flags & OPF_DONE)
2620       continue;
2621
2622     if (po->op == OP_ADD && po->operand[0].reg == xSP) {
2623       if (po->operand[1].type != OPT_CONST)
2624         ferr(&ops[i], "non-const esp adjust?\n");
2625       *adj += po->operand[1].val;
2626       if (*adj & 3)
2627         ferr(&ops[i], "unaligned esp adjust: %x\n", *adj);
2628       if (do_update) {
2629         if (!*is_multipath)
2630           patch_esp_adjust(po, adj_expect);
2631         else
2632           po->flags |= OPF_RMD;
2633       }
2634       return i;
2635     }
2636     else if (po->op == OP_PUSH) {
2637       //if (first_pop == -1)
2638       //  first_pop = -2; // none
2639       *adj -= lmod_bytes(po, po->operand[0].lmod);
2640     }
2641     else if (po->op == OP_POP) {
2642       if (!(po->flags & OPF_DONE)) {
2643         // seems like msvc only uses 'pop ecx' for stack realignment..
2644         if (po->operand[0].type != OPT_REG || po->operand[0].reg != xCX)
2645           break;
2646         if (first_pop == -1 && *adj >= 0)
2647           first_pop = i;
2648       }
2649       if (do_update && *adj >= 0) {
2650         po->flags |= OPF_RMD;
2651         if (!*is_multipath)
2652           po->flags |= OPF_DONE;
2653       }
2654
2655       *adj += lmod_bytes(po, po->operand[0].lmod);
2656     }
2657     else if (po->flags & (OPF_JMP|OPF_TAIL)) {
2658       if (po->op == OP_JMP && po->btj == NULL) {
2659         if (po->bt_i <= i)
2660           break;
2661         i = po->bt_i - 1;
2662         continue;
2663       }
2664       if (po->op != OP_CALL)
2665         break;
2666       if (po->operand[0].type != OPT_LABEL)
2667         break;
2668       if (po->pp != NULL && po->pp->is_stdcall)
2669         break;
2670       // assume it's another cdecl call
2671     }
2672   }
2673
2674   if (first_pop >= 0) {
2675     // probably 'pop ecx' was used..
2676     return first_pop;
2677   }
2678
2679   return -1;
2680 }
2681
2682 static void scan_fwd_set_flags(int i, int opcnt, int magic, int flags)
2683 {
2684   struct parsed_op *po;
2685   int j;
2686
2687   if (i < 0)
2688     ferr(ops, "%s: followed bad branch?\n", __func__);
2689
2690   for (; i < opcnt; i++) {
2691     po = &ops[i];
2692     if (po->cc_scratch == magic)
2693       return;
2694     po->cc_scratch = magic;
2695     po->flags |= flags;
2696
2697     if ((po->flags & OPF_JMP) && po->op != OP_CALL) {
2698       if (po->btj != NULL) {
2699         // jumptable
2700         for (j = 0; j < po->btj->count; j++)
2701           scan_fwd_set_flags(po->btj->d[j].bt_i, opcnt, magic, flags);
2702         return;
2703       }
2704
2705       scan_fwd_set_flags(po->bt_i, opcnt, magic, flags);
2706       if (!(po->flags & OPF_CJMP))
2707         return;
2708     }
2709     if (po->flags & OPF_TAIL)
2710       return;
2711   }
2712 }
2713
2714 static const struct parsed_proto *try_recover_pp(
2715   struct parsed_op *po, const struct parsed_opr *opr, int *search_instead)
2716 {
2717   const struct parsed_proto *pp = NULL;
2718   char buf[256];
2719   char *p;
2720
2721   // maybe an arg of g_func?
2722   if (opr->type == OPT_REGMEM && is_stack_access(po, opr))
2723   {
2724     char ofs_reg[16] = { 0, };
2725     int arg, arg_s, arg_i;
2726     int stack_ra = 0;
2727     int offset = 0;
2728
2729     if (g_header_mode)
2730       return NULL;
2731
2732     parse_stack_access(po, opr->name, ofs_reg,
2733       &offset, &stack_ra, NULL, 0);
2734     if (ofs_reg[0] != 0)
2735       ferr(po, "offset reg on arg access?\n");
2736     if (offset <= stack_ra) {
2737       // search who set the stack var instead
2738       if (search_instead != NULL)
2739         *search_instead = 1;
2740       return NULL;
2741     }
2742
2743     arg_i = (offset - stack_ra - 4) / 4;
2744     for (arg = arg_s = 0; arg < g_func_pp->argc; arg++) {
2745       if (g_func_pp->arg[arg].reg != NULL)
2746         continue;
2747       if (arg_s == arg_i)
2748         break;
2749       arg_s++;
2750     }
2751     if (arg == g_func_pp->argc)
2752       ferr(po, "stack arg %d not in prototype?\n", arg_i);
2753
2754     pp = g_func_pp->arg[arg].fptr;
2755     if (pp == NULL)
2756       ferr(po, "icall sa: arg%d is not a fptr?\n", arg + 1);
2757     check_func_pp(po, pp, "icall arg");
2758   }
2759   else if (opr->type == OPT_REGMEM && strchr(opr->name + 1, '[')) {
2760     // label[index]
2761     p = strchr(opr->name + 1, '[');
2762     memcpy(buf, opr->name, p - opr->name);
2763     buf[p - opr->name] = 0;
2764     pp = proto_parse(g_fhdr, buf, g_quiet_pp);
2765   }
2766   else if (opr->type == OPT_OFFSET || opr->type == OPT_LABEL) {
2767     pp = proto_parse(g_fhdr, opr->name, g_quiet_pp);
2768     if (pp == NULL) {
2769       if (!g_header_mode)
2770         ferr(po, "proto_parse failed for icall to '%s'\n", opr->name);
2771     }
2772     else
2773       check_func_pp(po, pp, "reg-fptr ref");
2774   }
2775
2776   return pp;
2777 }
2778
2779 static void scan_for_call_type(int i, const struct parsed_opr *opr,
2780   int magic, const struct parsed_proto **pp_found, int *pp_i,
2781   int *multi)
2782 {
2783   const struct parsed_proto *pp = NULL;
2784   struct parsed_op *po;
2785   struct label_ref *lr;
2786
2787   ops[i].cc_scratch = magic;
2788
2789   while (1) {
2790     if (g_labels[i] != NULL) {
2791       lr = &g_label_refs[i];
2792       for (; lr != NULL; lr = lr->next) {
2793         check_i(&ops[i], lr->i);
2794         scan_for_call_type(lr->i, opr, magic, pp_found, pp_i, multi);
2795       }
2796       if (i > 0 && LAST_OP(i - 1))
2797         return;
2798     }
2799
2800     i--;
2801     if (i < 0)
2802       break;
2803
2804     if (ops[i].cc_scratch == magic)
2805       return;
2806     ops[i].cc_scratch = magic;
2807
2808     if (!(ops[i].flags & OPF_DATA))
2809       continue;
2810     if (!is_opr_modified(opr, &ops[i]))
2811       continue;
2812     if (ops[i].op != OP_MOV && ops[i].op != OP_LEA) {
2813       // most probably trashed by some processing
2814       *pp_found = NULL;
2815       return;
2816     }
2817
2818     opr = &ops[i].operand[1];
2819     if (opr->type != OPT_REG)
2820       break;
2821   }
2822
2823   po = (i >= 0) ? &ops[i] : ops;
2824
2825   if (i < 0) {
2826     // reached the top - can only be an arg-reg
2827     if (opr->type != OPT_REG)
2828       return;
2829
2830     for (i = 0; i < g_func_pp->argc; i++) {
2831       if (g_func_pp->arg[i].reg == NULL)
2832         continue;
2833       if (IS(opr->name, g_func_pp->arg[i].reg))
2834         break;
2835     }
2836     if (i == g_func_pp->argc)
2837       return;
2838     pp = g_func_pp->arg[i].fptr;
2839     if (pp == NULL)
2840       ferr(po, "icall: arg%d (%s) is not a fptr?\n",
2841         i + 1, g_func_pp->arg[i].reg);
2842     check_func_pp(po, pp, "icall reg-arg");
2843   }
2844   else
2845     pp = try_recover_pp(po, opr, NULL);
2846
2847   if (*pp_found != NULL && pp != NULL && *pp_found != pp) {
2848     if (!IS((*pp_found)->ret_type.name, pp->ret_type.name)
2849       || (*pp_found)->is_stdcall != pp->is_stdcall
2850       || (*pp_found)->is_fptr != pp->is_fptr
2851       || (*pp_found)->argc != pp->argc
2852       || (*pp_found)->argc_reg != pp->argc_reg
2853       || (*pp_found)->argc_stack != pp->argc_stack)
2854     {
2855       ferr(po, "icall: parsed_proto mismatch\n");
2856     }
2857     *multi = 1;
2858   }
2859   if (pp != NULL) {
2860     *pp_found = pp;
2861     *pp_i = po - ops;
2862   }
2863 }
2864
2865 // early check for tail call or branch back
2866 static int is_like_tailjmp(int j)
2867 {
2868   if (!(ops[j].flags & OPF_JMP))
2869     return 0;
2870
2871   if (ops[j].op == OP_JMP && !ops[j].operand[0].had_ds)
2872     // probably local branch back..
2873     return 1;
2874   if (ops[j].op == OP_CALL)
2875     // probably noreturn call..
2876     return 1;
2877
2878   return 0;
2879 }
2880
2881 static void scan_prologue_epilogue(int opcnt)
2882 {
2883   int ecx_push = 0, esp_sub = 0;
2884   int found;
2885   int i, j, l;
2886
2887   if (ops[0].op == OP_PUSH && IS(opr_name(&ops[0], 0), "ebp")
2888       && ops[1].op == OP_MOV
2889       && IS(opr_name(&ops[1], 0), "ebp")
2890       && IS(opr_name(&ops[1], 1), "esp"))
2891   {
2892     g_bp_frame = 1;
2893     ops[0].flags |= OPF_RMD | OPF_DONE;
2894     ops[1].flags |= OPF_RMD | OPF_DONE;
2895     i = 2;
2896
2897     if (ops[2].op == OP_SUB && IS(opr_name(&ops[2], 0), "esp")) {
2898       g_stack_fsz = opr_const(&ops[2], 1);
2899       ops[2].flags |= OPF_RMD | OPF_DONE;
2900       i++;
2901     }
2902     else {
2903       // another way msvc builds stack frame..
2904       i = 2;
2905       while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
2906         g_stack_fsz += 4;
2907         ops[i].flags |= OPF_RMD | OPF_DONE;
2908         ecx_push++;
2909         i++;
2910       }
2911       // and another way..
2912       if (i == 2 && ops[i].op == OP_MOV && ops[i].operand[0].reg == xAX
2913           && ops[i].operand[1].type == OPT_CONST
2914           && ops[i + 1].op == OP_CALL
2915           && IS(opr_name(&ops[i + 1], 0), "__alloca_probe"))
2916       {
2917         g_stack_fsz += ops[i].operand[1].val;
2918         ops[i].flags |= OPF_RMD | OPF_DONE;
2919         i++;
2920         ops[i].flags |= OPF_RMD | OPF_DONE;
2921         i++;
2922       }
2923     }
2924
2925     found = 0;
2926     do {
2927       for (; i < opcnt; i++)
2928         if (ops[i].op == OP_RET)
2929           break;
2930       j = i - 1;
2931       if (i == opcnt && (ops[j].flags & OPF_JMP)) {
2932         if (found && is_like_tailjmp(j))
2933             break;
2934         j--;
2935       }
2936
2937       if ((ops[j].op == OP_POP && IS(opr_name(&ops[j], 0), "ebp"))
2938           || ops[j].op == OP_LEAVE)
2939       {
2940         ops[j].flags |= OPF_RMD | OPF_DONE;
2941       }
2942       else if (!(g_ida_func_attr & IDAFA_NORETURN))
2943         ferr(&ops[j], "'pop ebp' expected\n");
2944
2945       if (g_stack_fsz != 0) {
2946         if (ops[j - 1].op == OP_MOV
2947             && IS(opr_name(&ops[j - 1], 0), "esp")
2948             && IS(opr_name(&ops[j - 1], 1), "ebp"))
2949         {
2950           ops[j - 1].flags |= OPF_RMD | OPF_DONE;
2951         }
2952         else if (ops[j].op != OP_LEAVE
2953           && !(g_ida_func_attr & IDAFA_NORETURN))
2954         {
2955           ferr(&ops[j - 1], "esp restore expected\n");
2956         }
2957
2958         if (ecx_push && ops[j - 2].op == OP_POP
2959           && IS(opr_name(&ops[j - 2], 0), "ecx"))
2960         {
2961           ferr(&ops[j - 2], "unexpected ecx pop\n");
2962         }
2963       }
2964
2965       found = 1;
2966       i++;
2967     } while (i < opcnt);
2968
2969     return;
2970   }
2971
2972   // non-bp frame
2973   i = 0;
2974   while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
2975     ops[i].flags |= OPF_RMD | OPF_DONE;
2976     g_stack_fsz += 4;
2977     ecx_push++;
2978     i++;
2979   }
2980
2981   for (; i < opcnt; i++) {
2982     if (ops[i].op == OP_PUSH || (ops[i].flags & (OPF_JMP|OPF_TAIL)))
2983       break;
2984     if (ops[i].op == OP_SUB && ops[i].operand[0].reg == xSP
2985       && ops[i].operand[1].type == OPT_CONST)
2986     {
2987       g_stack_fsz = ops[i].operand[1].val;
2988       ops[i].flags |= OPF_RMD | OPF_DONE;
2989       esp_sub = 1;
2990       break;
2991     }
2992   }
2993
2994   if (ecx_push && !esp_sub) {
2995     // could actually be args for a call..
2996     for (; i < opcnt; i++)
2997       if (ops[i].op != OP_PUSH)
2998         break;
2999
3000     if (ops[i].op == OP_CALL && ops[i].operand[0].type == OPT_LABEL) {
3001       const struct parsed_proto *pp;
3002       pp = proto_parse(g_fhdr, opr_name(&ops[i], 0), 1);
3003       j = pp ? pp->argc_stack : 0;
3004       while (i > 0 && j > 0) {
3005         i--;
3006         if (ops[i].op == OP_PUSH) {
3007           ops[i].flags &= ~(OPF_RMD | OPF_DONE);
3008           j--;
3009         }
3010       }
3011       if (j != 0)
3012         ferr(&ops[i], "unhandled prologue\n");
3013
3014       // recheck
3015       i = g_stack_fsz = ecx_push = 0;
3016       while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
3017         if (!(ops[i].flags & OPF_RMD))
3018           break;
3019         g_stack_fsz += 4;
3020         ecx_push++;
3021         i++;
3022       }
3023     }
3024   }
3025
3026   found = 0;
3027   if (ecx_push || esp_sub)
3028   {
3029     g_sp_frame = 1;
3030
3031     i++;
3032     do {
3033       for (; i < opcnt; i++)
3034         if (ops[i].op == OP_RET)
3035           break;
3036       j = i - 1;
3037       if (i == opcnt && (ops[j].flags & OPF_JMP)) {
3038         if (found && is_like_tailjmp(j))
3039             break;
3040         j--;
3041       }
3042
3043       if (ecx_push > 0) {
3044         for (l = 0; l < ecx_push; l++) {
3045           if (ops[j].op == OP_POP && IS(opr_name(&ops[j], 0), "ecx"))
3046             /* pop ecx */;
3047           else if (ops[j].op == OP_ADD
3048                    && IS(opr_name(&ops[j], 0), "esp")
3049                    && ops[j].operand[1].type == OPT_CONST)
3050           {
3051             /* add esp, N */
3052             l += ops[j].operand[1].val / 4 - 1;
3053           }
3054           else
3055             ferr(&ops[j], "'pop ecx' expected\n");
3056
3057           ops[j].flags |= OPF_RMD | OPF_DONE;
3058           j--;
3059         }
3060         if (l != ecx_push)
3061           ferr(&ops[j], "epilogue scan failed\n");
3062
3063         found = 1;
3064       }
3065
3066       if (esp_sub) {
3067         if (ops[j].op != OP_ADD
3068             || !IS(opr_name(&ops[j], 0), "esp")
3069             || ops[j].operand[1].type != OPT_CONST
3070             || ops[j].operand[1].val != g_stack_fsz)
3071           ferr(&ops[j], "'add esp' expected\n");
3072
3073         ops[j].flags |= OPF_RMD | OPF_DONE;
3074         ops[j].operand[1].val = 0; // hack for stack arg scanner
3075         found = 1;
3076       }
3077
3078       i++;
3079     } while (i < opcnt);
3080   }
3081 }
3082
3083 static const struct parsed_proto *resolve_icall(int i, int opcnt,
3084   int *pp_i, int *multi_src)
3085 {
3086   const struct parsed_proto *pp = NULL;
3087   int search_advice = 0;
3088
3089   *multi_src = 0;
3090   *pp_i = -1;
3091
3092   switch (ops[i].operand[0].type) {
3093   case OPT_REGMEM:
3094   case OPT_LABEL:
3095   case OPT_OFFSET:
3096     pp = try_recover_pp(&ops[i], &ops[i].operand[0], &search_advice);
3097     if (!search_advice)
3098       break;
3099     // fallthrough
3100   default:
3101     scan_for_call_type(i, &ops[i].operand[0], i + opcnt * 9, &pp,
3102       pp_i, multi_src);
3103     break;
3104   }
3105
3106   return pp;
3107 }
3108
3109 // find an instruction that changed opr before i op
3110 // *op_i must be set to -1 by the caller
3111 // *entry is set to 1 if one source is determined to be the caller
3112 // returns 1 if found, *op_i is then set to origin
3113 static int resolve_origin(int i, const struct parsed_opr *opr,
3114   int magic, int *op_i, int *is_caller)
3115 {
3116   struct label_ref *lr;
3117   int ret = 0;
3118
3119   if (ops[i].cc_scratch == magic)
3120     return 0;
3121   ops[i].cc_scratch = magic;
3122
3123   while (1) {
3124     if (g_labels[i] != NULL) {
3125       lr = &g_label_refs[i];
3126       for (; lr != NULL; lr = lr->next) {
3127         check_i(&ops[i], lr->i);
3128         ret |= resolve_origin(lr->i, opr, magic, op_i, is_caller);
3129       }
3130       if (i > 0 && LAST_OP(i - 1))
3131         return ret;
3132     }
3133
3134     i--;
3135     if (i < 0) {
3136       if (is_caller != NULL)
3137         *is_caller = 1;
3138       return -1;
3139     }
3140
3141     if (ops[i].cc_scratch == magic)
3142       return 0;
3143     ops[i].cc_scratch = magic;
3144
3145     if (!(ops[i].flags & OPF_DATA))
3146       continue;
3147     if (!is_opr_modified(opr, &ops[i]))
3148       continue;
3149
3150     if (*op_i >= 0) {
3151       if (*op_i == i)
3152         return 1;
3153       // XXX: could check if the other op does the same
3154       return -1;
3155     }
3156
3157     *op_i = i;
3158     return 1;
3159   }
3160 }
3161
3162 // find an instruction that previously referenced opr
3163 // if multiple results are found - fail
3164 // *op_i must be set to -1 by the caller
3165 // returns 1 if found, *op_i is then set to referencer insn
3166 static int resolve_last_ref(int i, const struct parsed_opr *opr,
3167   int magic, int *op_i)
3168 {
3169   struct label_ref *lr;
3170   int ret = 0;
3171
3172   if (ops[i].cc_scratch == magic)
3173     return 0;
3174   ops[i].cc_scratch = magic;
3175
3176   while (1) {
3177     if (g_labels[i] != NULL) {
3178       lr = &g_label_refs[i];
3179       for (; lr != NULL; lr = lr->next) {
3180         check_i(&ops[i], lr->i);
3181         ret |= resolve_last_ref(lr->i, opr, magic, op_i);
3182       }
3183       if (i > 0 && LAST_OP(i - 1))
3184         return ret;
3185     }
3186
3187     i--;
3188     if (i < 0)
3189       return -1;
3190
3191     if (ops[i].cc_scratch == magic)
3192       return 0;
3193     ops[i].cc_scratch = magic;
3194
3195     if (!is_opr_referenced(opr, &ops[i]))
3196       continue;
3197
3198     if (*op_i >= 0)
3199       return -1;
3200
3201     *op_i = i;
3202     return 1;
3203   }
3204 }
3205
3206 // find next instruction that reads opr
3207 // if multiple results are found - fail
3208 // *op_i must be set to -1 by the caller
3209 // returns 1 if found, *op_i is then set to referencer insn
3210 static int find_next_read(int i, int opcnt,
3211   const struct parsed_opr *opr, int magic, int *op_i)
3212 {
3213   struct parsed_op *po;
3214   int j, ret = 0;
3215
3216   for (; i < opcnt; i++)
3217   {
3218     if (ops[i].cc_scratch == magic)
3219       return 0;
3220     ops[i].cc_scratch = magic;
3221
3222     po = &ops[i];
3223     if ((po->flags & OPF_JMP) && po->op != OP_CALL) {
3224       if (po->btj != NULL) {
3225         // jumptable
3226         for (j = 0; j < po->btj->count; j++) {
3227           check_i(po, po->btj->d[j].bt_i);
3228           ret |= find_next_read(po->btj->d[j].bt_i, opcnt, opr,
3229                    magic, op_i);
3230         }
3231         return ret;
3232       }
3233
3234       if (po->flags & OPF_RMD)
3235         continue;
3236       check_i(po, po->bt_i);
3237       if (po->flags & OPF_CJMP) {
3238         ret = find_next_read(po->bt_i, opcnt, opr, magic, op_i);
3239         if (ret < 0)
3240           return ret;
3241       }
3242
3243       i = po->bt_i - 1;
3244       continue;
3245     }
3246
3247     if (!is_opr_read(opr, po)) {
3248       if (is_opr_modified(opr, po))
3249         // it's overwritten
3250         return 0;
3251       if (po->flags & OPF_TAIL)
3252         return 0;
3253       continue;
3254     }
3255
3256     if (*op_i >= 0)
3257       return -1;
3258
3259     *op_i = i;
3260     return 1;
3261   }
3262
3263   return 0;
3264 }
3265
3266 static int try_resolve_const(int i, const struct parsed_opr *opr,
3267   int magic, unsigned int *val)
3268 {
3269   int s_i = -1;
3270   int ret;
3271
3272   ret = resolve_origin(i, opr, magic, &s_i, NULL);
3273   if (ret == 1) {
3274     i = s_i;
3275     if (ops[i].op != OP_MOV && ops[i].operand[1].type != OPT_CONST)
3276       return -1;
3277
3278     *val = ops[i].operand[1].val;
3279     return 1;
3280   }
3281
3282   return -1;
3283 }
3284
3285 static struct parsed_proto *process_call_early(int i, int opcnt,
3286   int *adj_i)
3287 {
3288   struct parsed_op *po = &ops[i];
3289   struct parsed_proto *pp;
3290   int multipath = 0;
3291   int adj = 0;
3292   int ret;
3293
3294   pp = po->pp;
3295   if (pp == NULL || pp->is_vararg || pp->argc_reg != 0)
3296     // leave for later
3297     return NULL;
3298
3299   // look for and make use of esp adjust
3300   *adj_i = ret = -1;
3301   if (!pp->is_stdcall && pp->argc_stack > 0)
3302     ret = scan_for_esp_adjust(i + 1, opcnt,
3303             pp->argc_stack * 4, &adj, &multipath, 0);
3304   if (ret >= 0) {
3305     if (pp->argc_stack > adj / 4)
3306       return NULL;
3307     if (multipath)
3308       return NULL;
3309     if (ops[ret].op == OP_POP && adj != 4)
3310       return NULL;
3311   }
3312
3313   *adj_i = ret;
3314   return pp;
3315 }
3316
3317 static struct parsed_proto *process_call(int i, int opcnt)
3318 {
3319   struct parsed_op *po = &ops[i];
3320   const struct parsed_proto *pp_c;
3321   struct parsed_proto *pp;
3322   const char *tmpname;
3323   int call_i = -1, ref_i = -1;
3324   int adj = 0, multipath = 0;
3325   int ret, arg;
3326
3327   tmpname = opr_name(po, 0);
3328   pp = po->pp;
3329   if (pp == NULL)
3330   {
3331     // indirect call
3332     pp_c = resolve_icall(i, opcnt, &call_i, &multipath);
3333     if (pp_c != NULL) {
3334       if (!pp_c->is_func && !pp_c->is_fptr)
3335         ferr(po, "call to non-func: %s\n", pp_c->name);
3336       pp = proto_clone(pp_c);
3337       my_assert_not(pp, NULL);
3338       if (multipath)
3339         // not resolved just to single func
3340         pp->is_fptr = 1;
3341
3342       switch (po->operand[0].type) {
3343       case OPT_REG:
3344         // we resolved this call and no longer need the register
3345         po->regmask_src &= ~(1 << po->operand[0].reg);
3346
3347         if (!multipath && i != call_i && ops[call_i].op == OP_MOV
3348           && ops[call_i].operand[1].type == OPT_LABEL)
3349         {
3350           // no other source users?
3351           ret = resolve_last_ref(i, &po->operand[0], opcnt * 10,
3352                   &ref_i);
3353           if (ret == 1 && call_i == ref_i) {
3354             // and nothing uses it after us?
3355             ref_i = -1;
3356             ret = find_next_read(i + 1, opcnt, &po->operand[0],
3357                     opcnt * 11, &ref_i);
3358             if (ret != 1)
3359               // then also don't need the source mov
3360               ops[call_i].flags |= OPF_RMD;
3361           }
3362         }
3363         break;
3364       case OPT_REGMEM:
3365         pp->is_fptr = 1;
3366         break;
3367       default:
3368         break;
3369       }
3370     }
3371     if (pp == NULL) {
3372       pp = calloc(1, sizeof(*pp));
3373       my_assert_not(pp, NULL);
3374
3375       pp->is_fptr = 1;
3376       ret = scan_for_esp_adjust(i + 1, opcnt,
3377               32*4, &adj, &multipath, 0);
3378       if (ret < 0 || adj < 0) {
3379         if (!g_allow_regfunc)
3380           ferr(po, "non-__cdecl indirect call unhandled yet\n");
3381         pp->is_unresolved = 1;
3382         adj = 0;
3383       }
3384       adj /= 4;
3385       if (adj > ARRAY_SIZE(pp->arg))
3386         ferr(po, "esp adjust too large: %d\n", adj);
3387       pp->ret_type.name = strdup("int");
3388       pp->argc = pp->argc_stack = adj;
3389       for (arg = 0; arg < pp->argc; arg++)
3390         pp->arg[arg].type.name = strdup("int");
3391     }
3392     po->pp = pp;
3393   }
3394
3395   // look for and make use of esp adjust
3396   multipath = 0;
3397   ret = -1;
3398   if (!pp->is_stdcall && pp->argc_stack > 0)
3399     ret = scan_for_esp_adjust(i + 1, opcnt,
3400             pp->argc_stack * 4, &adj, &multipath, 0);
3401   if (ret >= 0) {
3402     if (pp->is_vararg) {
3403       if (adj / 4 < pp->argc_stack) {
3404         fnote(po, "(this call)\n");
3405         ferr(&ops[ret], "esp adjust is too small: %x < %x\n",
3406           adj, pp->argc_stack * 4);
3407       }
3408       // modify pp to make it have varargs as normal args
3409       arg = pp->argc;
3410       pp->argc += adj / 4 - pp->argc_stack;
3411       for (; arg < pp->argc; arg++) {
3412         pp->arg[arg].type.name = strdup("int");
3413         pp->argc_stack++;
3414       }
3415       if (pp->argc > ARRAY_SIZE(pp->arg))
3416         ferr(po, "too many args for '%s'\n", tmpname);
3417     }
3418     if (pp->argc_stack > adj / 4) {
3419       fnote(po, "(this call)\n");
3420       ferr(&ops[ret], "stack tracking failed for '%s': %x %x\n",
3421         tmpname, pp->argc_stack * 4, adj);
3422     }
3423
3424     scan_for_esp_adjust(i + 1, opcnt,
3425       pp->argc_stack * 4, &adj, &multipath, 1);
3426   }
3427   else if (pp->is_vararg)
3428     ferr(po, "missing esp_adjust for vararg func '%s'\n",
3429       pp->name);
3430
3431   return pp;
3432 }
3433
3434 static int collect_call_args_early(struct parsed_op *po, int i,
3435   struct parsed_proto *pp, int *regmask)
3436 {
3437   int arg, ret;
3438   int j;
3439
3440   for (arg = 0; arg < pp->argc; arg++)
3441     if (pp->arg[arg].reg == NULL)
3442       break;
3443
3444   // first see if it can be easily done
3445   for (j = i; j > 0 && arg < pp->argc; )
3446   {
3447     if (g_labels[j] != NULL)
3448       return -1;
3449     j--;
3450
3451     if (ops[j].op == OP_CALL)
3452       return -1;
3453     else if (ops[j].op == OP_ADD && ops[j].operand[0].reg == xSP)
3454       return -1;
3455     else if (ops[j].op == OP_POP)
3456       return -1;
3457     else if (ops[j].flags & OPF_CJMP)
3458       return -1;
3459     else if (ops[j].op == OP_PUSH) {
3460       if (ops[j].flags & (OPF_FARG|OPF_FARGNR))
3461         return -1;
3462       ret = scan_for_mod(&ops[j], j + 1, i, 1);
3463       if (ret >= 0)
3464         return -1;
3465
3466       if (pp->arg[arg].type.is_va_list)
3467         return -1;
3468
3469       // next arg
3470       for (arg++; arg < pp->argc; arg++)
3471         if (pp->arg[arg].reg == NULL)
3472           break;
3473     }
3474   }
3475
3476   if (arg < pp->argc)
3477     return -1;
3478
3479   // now do it
3480   for (arg = 0; arg < pp->argc; arg++)
3481     if (pp->arg[arg].reg == NULL)
3482       break;
3483
3484   for (j = i; j > 0 && arg < pp->argc; )
3485   {
3486     j--;
3487
3488     if (ops[j].op == OP_PUSH)
3489     {
3490       ops[j].p_argnext = -1;
3491       ferr_assert(&ops[j], pp->arg[arg].datap == NULL);
3492       pp->arg[arg].datap = &ops[j];
3493
3494       if (ops[j].operand[0].type == OPT_REG)
3495         *regmask |= 1 << ops[j].operand[0].reg;
3496
3497       ops[j].flags |= OPF_RMD | OPF_DONE | OPF_FARGNR | OPF_FARG;
3498       ops[j].flags &= ~OPF_RSAVE;
3499
3500       // next arg
3501       for (arg++; arg < pp->argc; arg++)
3502         if (pp->arg[arg].reg == NULL)
3503           break;
3504     }
3505   }
3506
3507   return 0;
3508 }
3509
3510 static int collect_call_args_r(struct parsed_op *po, int i,
3511   struct parsed_proto *pp, int *regmask, int *save_arg_vars,
3512   int *arg_grp, int arg, int magic, int need_op_saving, int may_reuse)
3513 {
3514   struct parsed_proto *pp_tmp;
3515   struct parsed_op *po_tmp;
3516   struct label_ref *lr;
3517   int need_to_save_current;
3518   int arg_grp_current = 0;
3519   int save_args_seen = 0;
3520   int save_args;
3521   int ret = 0;
3522   int reg;
3523   char buf[32];
3524   int j, k;
3525
3526   if (i < 0) {
3527     ferr(po, "dead label encountered\n");
3528     return -1;
3529   }
3530
3531   for (; arg < pp->argc; arg++)
3532     if (pp->arg[arg].reg == NULL)
3533       break;
3534   magic = (magic & 0xffffff) | (arg << 24);
3535
3536   for (j = i; j >= 0 && (arg < pp->argc || pp->is_unresolved); )
3537   {
3538     if (((ops[j].cc_scratch ^ magic) & 0xffffff) == 0) {
3539       if (ops[j].cc_scratch != magic) {
3540         ferr(&ops[j], "arg collect hit same path with diff args for %s\n",
3541            pp->name);
3542         return -1;
3543       }
3544       // ok: have already been here
3545       return 0;
3546     }
3547     ops[j].cc_scratch = magic;
3548
3549     if (g_labels[j] != NULL && g_label_refs[j].i != -1) {
3550       lr = &g_label_refs[j];
3551       if (lr->next != NULL)
3552         need_op_saving = 1;
3553       for (; lr->next; lr = lr->next) {
3554         check_i(&ops[j], lr->i);
3555         if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
3556           may_reuse = 1;
3557         ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
3558                 arg_grp, arg, magic, need_op_saving, may_reuse);
3559         if (ret < 0)
3560           return ret;
3561       }
3562
3563       check_i(&ops[j], lr->i);
3564       if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
3565         may_reuse = 1;
3566       if (j > 0 && LAST_OP(j - 1)) {
3567         // follow last branch in reverse
3568         j = lr->i;
3569         continue;
3570       }
3571       need_op_saving = 1;
3572       ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
3573                arg_grp, arg, magic, need_op_saving, may_reuse);
3574       if (ret < 0)
3575         return ret;
3576     }
3577     j--;
3578
3579     if (ops[j].op == OP_CALL)
3580     {
3581       if (pp->is_unresolved)
3582         break;
3583
3584       pp_tmp = ops[j].pp;
3585       if (pp_tmp == NULL)
3586         ferr(po, "arg collect hit unparsed call '%s'\n",
3587           ops[j].operand[0].name);
3588       if (may_reuse && pp_tmp->argc_stack > 0)
3589         ferr(po, "arg collect %d/%d hit '%s' with %d stack args\n",
3590           arg, pp->argc, opr_name(&ops[j], 0), pp_tmp->argc_stack);
3591     }
3592     // esp adjust of 0 means we collected it before
3593     else if (ops[j].op == OP_ADD && ops[j].operand[0].reg == xSP
3594       && (ops[j].operand[1].type != OPT_CONST
3595           || ops[j].operand[1].val != 0))
3596     {
3597       if (pp->is_unresolved)
3598         break;
3599
3600       ferr(po, "arg collect %d/%d hit esp adjust of %d\n",
3601         arg, pp->argc, ops[j].operand[1].val);
3602     }
3603     else if (ops[j].op == OP_POP && !(ops[j].flags & OPF_DONE))
3604     {
3605       if (pp->is_unresolved)
3606         break;
3607
3608       ferr(po, "arg collect %d/%d hit pop\n", arg, pp->argc);
3609     }
3610     else if (ops[j].flags & OPF_CJMP)
3611     {
3612       if (pp->is_unresolved)
3613         break;
3614
3615       may_reuse = 1;
3616     }
3617     else if (ops[j].op == OP_PUSH
3618       && !(ops[j].flags & (OPF_FARGNR|OPF_DONE)))
3619     {
3620       if (pp->is_unresolved && (ops[j].flags & OPF_RMD))
3621         break;
3622
3623       ops[j].p_argnext = -1;
3624       po_tmp = pp->arg[arg].datap;
3625       if (po_tmp != NULL)
3626         ops[j].p_argnext = po_tmp - ops;
3627       pp->arg[arg].datap = &ops[j];
3628
3629       need_to_save_current = 0;
3630       save_args = 0;
3631       reg = -1;
3632       if (ops[j].operand[0].type == OPT_REG)
3633         reg = ops[j].operand[0].reg;
3634
3635       if (!need_op_saving) {
3636         ret = scan_for_mod(&ops[j], j + 1, i, 1);
3637         need_to_save_current = (ret >= 0);
3638       }
3639       if (need_op_saving || need_to_save_current) {
3640         // mark this push as one that needs operand saving
3641         ops[j].flags &= ~OPF_RMD;
3642         if (ops[j].p_argnum == 0) {
3643           ops[j].p_argnum = arg + 1;
3644           save_args |= 1 << arg;
3645         }
3646         else if (ops[j].p_argnum < arg + 1) {
3647           // XXX: might kill valid var..
3648           //*save_arg_vars &= ~(1 << (ops[j].p_argnum - 1));
3649           ops[j].p_argnum = arg + 1;
3650           save_args |= 1 << arg;
3651         }
3652
3653         if (save_args_seen & (1 << (ops[j].p_argnum - 1))) {
3654           save_args_seen = 0;
3655           arg_grp_current++;
3656           if (arg_grp_current >= MAX_ARG_GRP)
3657             ferr(&ops[j], "out of arg groups (arg%d), f %s\n",
3658               ops[j].p_argnum, pp->name);
3659         }
3660       }
3661       else if (ops[j].p_argnum == 0)
3662         ops[j].flags |= OPF_RMD;
3663
3664       // some PUSHes are reused by different calls on other branches,
3665       // but that can't happen if we didn't branch, so they
3666       // can be removed from future searches (handles nested calls)
3667       if (!may_reuse)
3668         ops[j].flags |= OPF_FARGNR;
3669
3670       ops[j].flags |= OPF_FARG;
3671       ops[j].flags &= ~OPF_RSAVE;
3672
3673       // check for __VALIST
3674       if (!pp->is_unresolved && pp->arg[arg].type.is_va_list) {
3675         k = -1;
3676         ret = resolve_origin(j, &ops[j].operand[0],
3677                 magic + 1, &k, NULL);
3678         if (ret == 1 && k >= 0)
3679         {
3680           if (ops[k].op == OP_LEA) {
3681             snprintf(buf, sizeof(buf), "arg_%X",
3682               g_func_pp->argc_stack * 4);
3683             if (!g_func_pp->is_vararg
3684               || strstr(ops[k].operand[1].name, buf))
3685             {
3686               ops[k].flags |= OPF_RMD | OPF_DONE;
3687               ops[j].flags |= OPF_RMD | OPF_VAPUSH;
3688               save_args &= ~(1 << arg);
3689               reg = -1;
3690             }
3691             else
3692               ferr(&ops[j], "lea va_list used, but no vararg?\n");
3693           }
3694           // check for va_list from g_func_pp arg too
3695           else if (ops[k].op == OP_MOV
3696             && is_stack_access(&ops[k], &ops[k].operand[1]))
3697           {
3698             ret = stack_frame_access(&ops[k], &ops[k].operand[1],
3699               buf, sizeof(buf), ops[k].operand[1].name, "", 1, 0);
3700             if (ret >= 0) {
3701               ops[k].flags |= OPF_RMD | OPF_DONE;
3702               ops[j].flags |= OPF_RMD;
3703               ops[j].p_argpass = ret + 1;
3704               save_args &= ~(1 << arg);
3705               reg = -1;
3706             }
3707           }
3708         }
3709       }
3710
3711       *save_arg_vars |= save_args;
3712
3713       // tracking reg usage
3714       if (reg >= 0)
3715         *regmask |= 1 << reg;
3716
3717       arg++;
3718       if (!pp->is_unresolved) {
3719         // next arg
3720         for (; arg < pp->argc; arg++)
3721           if (pp->arg[arg].reg == NULL)
3722             break;
3723       }
3724       magic = (magic & 0xffffff) | (arg << 24);
3725     }
3726
3727     if (ops[j].p_arggrp > arg_grp_current) {
3728       save_args_seen = 0;
3729       arg_grp_current = ops[j].p_arggrp;
3730     }
3731     if (ops[j].p_argnum > 0)
3732       save_args_seen |= 1 << (ops[j].p_argnum - 1);
3733   }
3734
3735   if (arg < pp->argc) {
3736     ferr(po, "arg collect failed for '%s': %d/%d\n",
3737       pp->name, arg, pp->argc);
3738     return -1;
3739   }
3740
3741   if (arg_grp_current > *arg_grp)
3742     *arg_grp = arg_grp_current;
3743
3744   return arg;
3745 }
3746
3747 static int collect_call_args(struct parsed_op *po, int i,
3748   struct parsed_proto *pp, int *regmask, int *save_arg_vars,
3749   int magic)
3750 {
3751   // arg group is for cases when pushes for
3752   // multiple funcs are going on
3753   struct parsed_op *po_tmp;
3754   int save_arg_vars_current = 0;
3755   int arg_grp = 0;
3756   int ret;
3757   int a;
3758
3759   ret = collect_call_args_r(po, i, pp, regmask,
3760           &save_arg_vars_current, &arg_grp, 0, magic, 0, 0);
3761   if (ret < 0)
3762     return ret;
3763
3764   if (arg_grp != 0) {
3765     // propagate arg_grp
3766     for (a = 0; a < pp->argc; a++) {
3767       if (pp->arg[a].reg != NULL)
3768         continue;
3769
3770       po_tmp = pp->arg[a].datap;
3771       while (po_tmp != NULL) {
3772         po_tmp->p_arggrp = arg_grp;
3773         if (po_tmp->p_argnext > 0)
3774           po_tmp = &ops[po_tmp->p_argnext];
3775         else
3776           po_tmp = NULL;
3777       }
3778     }
3779   }
3780   save_arg_vars[arg_grp] |= save_arg_vars_current;
3781
3782   if (pp->is_unresolved) {
3783     pp->argc += ret;
3784     pp->argc_stack += ret;
3785     for (a = 0; a < pp->argc; a++)
3786       if (pp->arg[a].type.name == NULL)
3787         pp->arg[a].type.name = strdup("int");
3788   }
3789
3790   return ret;
3791 }
3792
3793 static void pp_insert_reg_arg(struct parsed_proto *pp, const char *reg)
3794 {
3795   int i;
3796
3797   for (i = 0; i < pp->argc; i++)
3798     if (pp->arg[i].reg == NULL)
3799       break;
3800
3801   if (pp->argc_stack)
3802     memmove(&pp->arg[i + 1], &pp->arg[i],
3803       sizeof(pp->arg[0]) * pp->argc_stack);
3804   memset(&pp->arg[i], 0, sizeof(pp->arg[i]));
3805   pp->arg[i].reg = strdup(reg);
3806   pp->arg[i].type.name = strdup("int");
3807   pp->argc++;
3808   pp->argc_reg++;
3809 }
3810
3811 static void add_label_ref(struct label_ref *lr, int op_i)
3812 {
3813   struct label_ref *lr_new;
3814
3815   if (lr->i == -1) {
3816     lr->i = op_i;
3817     return;
3818   }
3819
3820   lr_new = calloc(1, sizeof(*lr_new));
3821   lr_new->i = op_i;
3822   lr_new->next = lr->next;
3823   lr->next = lr_new;
3824 }
3825
3826 static struct parsed_data *try_resolve_jumptab(int i, int opcnt)
3827 {
3828   struct parsed_op *po = &ops[i];
3829   struct parsed_data *pd;
3830   char label[NAMELEN], *p;
3831   int len, j, l;
3832
3833   p = strchr(po->operand[0].name, '[');
3834   if (p == NULL)
3835     return NULL;
3836
3837   len = p - po->operand[0].name;
3838   strncpy(label, po->operand[0].name, len);
3839   label[len] = 0;
3840
3841   for (j = 0, pd = NULL; j < g_func_pd_cnt; j++) {
3842     if (IS(g_func_pd[j].label, label)) {
3843       pd = &g_func_pd[j];
3844       break;
3845     }
3846   }
3847   if (pd == NULL)
3848     //ferr(po, "label '%s' not parsed?\n", label);
3849     return NULL;
3850
3851   if (pd->type != OPT_OFFSET)
3852     ferr(po, "label '%s' with non-offset data?\n", label);
3853
3854   // find all labels, link
3855   for (j = 0; j < pd->count; j++) {
3856     for (l = 0; l < opcnt; l++) {
3857       if (g_labels[l] != NULL && IS(g_labels[l], pd->d[j].u.label)) {
3858         add_label_ref(&g_label_refs[l], i);
3859         pd->d[j].bt_i = l;
3860         break;
3861       }
3862     }
3863   }
3864
3865   return pd;
3866 }
3867
3868 static void clear_labels(int count)
3869 {
3870   int i;
3871
3872   for (i = 0; i < count; i++) {
3873     if (g_labels[i] != NULL) {
3874       free(g_labels[i]);
3875       g_labels[i] = NULL;
3876     }
3877   }
3878 }
3879
3880 static void output_std_flags(FILE *fout, struct parsed_op *po,
3881   int *pfomask, const char *dst_opr_text)
3882 {
3883   if (*pfomask & (1 << PFO_Z)) {
3884     fprintf(fout, "\n  cond_z = (%s%s == 0);",
3885       lmod_cast_u(po, po->operand[0].lmod), dst_opr_text);
3886     *pfomask &= ~(1 << PFO_Z);
3887   }
3888   if (*pfomask & (1 << PFO_S)) {
3889     fprintf(fout, "\n  cond_s = (%s%s < 0);",
3890       lmod_cast_s(po, po->operand[0].lmod), dst_opr_text);
3891     *pfomask &= ~(1 << PFO_S);
3892   }
3893 }
3894
3895 enum {
3896   OPP_FORCE_NORETURN = (1 << 0),
3897   OPP_SIMPLE_ARGS    = (1 << 1),
3898   OPP_ALIGN          = (1 << 2),
3899 };
3900
3901 static void output_pp_attrs(FILE *fout, const struct parsed_proto *pp,
3902   int flags)
3903 {
3904   const char *cconv = "";
3905
3906   if (pp->is_fastcall)
3907     cconv = "__fastcall ";
3908   else if (pp->is_stdcall && pp->argc_reg == 0)
3909     cconv = "__stdcall ";
3910
3911   fprintf(fout, (flags & OPP_ALIGN) ? "%-16s" : "%s", cconv);
3912
3913   if (pp->is_noreturn || (flags & OPP_FORCE_NORETURN))
3914     fprintf(fout, "noreturn ");
3915 }
3916
3917 static void output_pp(FILE *fout, const struct parsed_proto *pp,
3918   int flags)
3919 {
3920   int i;
3921
3922   fprintf(fout, (flags & OPP_ALIGN) ? "%-5s" : "%s ",
3923     pp->ret_type.name);
3924   if (pp->is_fptr)
3925     fprintf(fout, "(");
3926   output_pp_attrs(fout, pp, flags);
3927   if (pp->is_fptr)
3928     fprintf(fout, "*");
3929   fprintf(fout, "%s", pp->name);
3930   if (pp->is_fptr)
3931     fprintf(fout, ")");
3932
3933   fprintf(fout, "(");
3934   for (i = 0; i < pp->argc; i++) {
3935     if (i > 0)
3936       fprintf(fout, ", ");
3937     if (pp->arg[i].fptr != NULL && !(flags & OPP_SIMPLE_ARGS)) {
3938       // func pointer
3939       output_pp(fout, pp->arg[i].fptr, 0);
3940     }
3941     else if (pp->arg[i].type.is_retreg) {
3942       fprintf(fout, "u32 *r_%s", pp->arg[i].reg);
3943     }
3944     else {
3945       fprintf(fout, "%s", pp->arg[i].type.name);
3946       if (!pp->is_fptr)
3947         fprintf(fout, " a%d", i + 1);
3948     }
3949   }
3950   if (pp->is_vararg) {
3951     if (i > 0)
3952       fprintf(fout, ", ");
3953     fprintf(fout, "...");
3954   }
3955   fprintf(fout, ")");
3956 }
3957
3958 static int get_pp_arg_regmask(const struct parsed_proto *pp)
3959 {
3960   int regmask = 0;
3961   int i, reg;
3962
3963   for (i = 0; i < pp->argc; i++) {
3964     if (pp->arg[i].reg != NULL) {
3965       reg = char_array_i(regs_r32,
3966               ARRAY_SIZE(regs_r32), pp->arg[i].reg);
3967       if (reg < 0)
3968         ferr(ops, "arg '%s' of func '%s' is not a reg?\n",
3969           pp->arg[i].reg, pp->name);
3970       regmask |= 1 << reg;
3971     }
3972   }
3973
3974   return regmask;
3975 }
3976
3977 static char *saved_arg_name(char *buf, size_t buf_size, int grp, int num)
3978 {
3979   char buf1[16];
3980
3981   buf1[0] = 0;
3982   if (grp > 0)
3983     snprintf(buf1, sizeof(buf1), "%d", grp);
3984   snprintf(buf, buf_size, "s%s_a%d", buf1, num);
3985
3986   return buf;
3987 }
3988
3989 static void gen_x_cleanup(int opcnt);
3990
3991 static void gen_func(FILE *fout, FILE *fhdr, const char *funcn, int opcnt)
3992 {
3993   struct parsed_op *po, *delayed_flag_op = NULL, *tmp_op;
3994   struct parsed_opr *last_arith_dst = NULL;
3995   char buf1[256], buf2[256], buf3[256], cast[64];
3996   const struct parsed_proto *pp_c;
3997   struct parsed_proto *pp, *pp_tmp;
3998   struct parsed_data *pd;
3999   const char *tmpname;
4000   unsigned int uval;
4001   int save_arg_vars[MAX_ARG_GRP] = { 0, };
4002   int cond_vars = 0;
4003   int need_tmp_var = 0;
4004   int need_tmp64 = 0;
4005   int had_decl = 0;
4006   int label_pending = 0;
4007   int regmask_save = 0; // regs saved/restored in this func
4008   int regmask_arg = 0;  // regs carrying function args (fastcall, etc)
4009   int regmask_now;      // temp
4010   int regmask_init = 0; // regs that need zero initialization
4011   int regmask_pp = 0;   // regs used in complex push-pop graph
4012   int regmask = 0;      // used regs
4013   int pfomask = 0;
4014   int found = 0;
4015   int depth = 0;
4016   int no_output;
4017   int i, j, l;
4018   int arg;
4019   int reg;
4020   int ret;
4021
4022   g_bp_frame = g_sp_frame = g_stack_fsz = 0;
4023   g_stack_frame_used = 0;
4024
4025   g_func_pp = proto_parse(fhdr, funcn, 0);
4026   if (g_func_pp == NULL)
4027     ferr(ops, "proto_parse failed for '%s'\n", funcn);
4028
4029   regmask_arg = get_pp_arg_regmask(g_func_pp);
4030
4031   // pass1:
4032   // - handle ebp/esp frame, remove ops related to it
4033   scan_prologue_epilogue(opcnt);
4034
4035   // pass2:
4036   // - parse calls with labels
4037   // - resolve all branches
4038   for (i = 0; i < opcnt; i++)
4039   {
4040     po = &ops[i];
4041     po->bt_i = -1;
4042     po->btj = NULL;
4043
4044     if (po->flags & (OPF_RMD|OPF_DONE))
4045       continue;
4046
4047     if (po->op == OP_CALL) {
4048       pp = NULL;
4049
4050       if (po->operand[0].type == OPT_LABEL) {
4051         tmpname = opr_name(po, 0);
4052         if (IS_START(tmpname, "loc_"))
4053           ferr(po, "call to loc_*\n");
4054         pp_c = proto_parse(fhdr, tmpname, 0);
4055         if (pp_c == NULL)
4056           ferr(po, "proto_parse failed for call '%s'\n", tmpname);
4057
4058         pp = proto_clone(pp_c);
4059         my_assert_not(pp, NULL);
4060       }
4061       else if (po->datap != NULL) {
4062         pp = calloc(1, sizeof(*pp));
4063         my_assert_not(pp, NULL);
4064
4065         ret = parse_protostr(po->datap, pp);
4066         if (ret < 0)
4067           ferr(po, "bad protostr supplied: %s\n", (char *)po->datap);
4068         free(po->datap);
4069         po->datap = NULL;
4070       }
4071
4072       if (pp != NULL) {
4073         if (pp->is_fptr)
4074           check_func_pp(po, pp, "fptr var call");
4075         if (pp->is_noreturn)
4076           po->flags |= OPF_TAIL;
4077       }
4078       po->pp = pp;
4079       continue;
4080     }
4081
4082     if (!(po->flags & OPF_JMP) || po->op == OP_RET)
4083       continue;
4084
4085     if (po->operand[0].type == OPT_REGMEM) {
4086       pd = try_resolve_jumptab(i, opcnt);
4087       if (pd == NULL)
4088         goto tailcall;
4089
4090       po->btj = pd;
4091       continue;
4092     }
4093
4094     for (l = 0; l < opcnt; l++) {
4095       if (g_labels[l] != NULL
4096           && IS(po->operand[0].name, g_labels[l]))
4097       {
4098         if (l == i + 1 && po->op == OP_JMP) {
4099           // yet another alignment type..
4100           po->flags |= OPF_RMD|OPF_DONE;
4101           break;
4102         }
4103         add_label_ref(&g_label_refs[l], i);
4104         po->bt_i = l;
4105         break;
4106       }
4107     }
4108
4109     if (po->bt_i != -1 || (po->flags & OPF_RMD))
4110       continue;
4111
4112     if (po->operand[0].type == OPT_LABEL)
4113       // assume tail call
4114       goto tailcall;
4115
4116     ferr(po, "unhandled branch\n");
4117
4118 tailcall:
4119     po->op = OP_CALL;
4120     po->flags |= OPF_TAIL;
4121     if (i > 0 && ops[i - 1].op == OP_POP)
4122       po->flags |= OPF_ATAIL;
4123     i--; // reprocess
4124   }
4125
4126   // pass3:
4127   // - remove dead labels
4128   // - process trivial calls
4129   for (i = 0; i < opcnt; i++)
4130   {
4131     if (g_labels[i] != NULL && g_label_refs[i].i == -1) {
4132       free(g_labels[i]);
4133       g_labels[i] = NULL;
4134     }
4135
4136     po = &ops[i];
4137     if (po->flags & (OPF_RMD|OPF_DONE))
4138       continue;
4139
4140     if (po->op == OP_CALL)
4141     {
4142       pp = process_call_early(i, opcnt, &j);
4143       if (pp != NULL) {
4144         if (!(po->flags & OPF_ATAIL))
4145           // since we know the args, try to collect them
4146           if (collect_call_args_early(po, i, pp, &regmask) != 0)
4147             pp = NULL;
4148       }
4149
4150       if (pp != NULL) {
4151         if (j >= 0) {
4152           // commit esp adjust
4153           ops[j].flags |= OPF_RMD;
4154           if (ops[j].op != OP_POP)
4155             patch_esp_adjust(&ops[j], pp->argc_stack * 4);
4156           else
4157             ops[j].flags |= OPF_DONE;
4158         }
4159
4160         if (strstr(pp->ret_type.name, "int64"))
4161           need_tmp64 = 1;
4162
4163         po->flags |= OPF_DONE;
4164       }
4165     }
4166   }
4167
4168   // pass4:
4169   // - process calls
4170   // - handle push <const>/pop pairs
4171   for (i = 0; i < opcnt; i++)
4172   {
4173     po = &ops[i];
4174     if (po->flags & (OPF_RMD|OPF_DONE))
4175       continue;
4176
4177     if (po->op == OP_CALL && !(po->flags & OPF_DONE))
4178     {
4179       pp = process_call(i, opcnt);
4180
4181       if (!pp->is_unresolved && !(po->flags & OPF_ATAIL)) {
4182         // since we know the args, collect them
4183         collect_call_args(po, i, pp, &regmask, save_arg_vars,
4184           i + opcnt * 2);
4185       }
4186
4187       if (strstr(pp->ret_type.name, "int64"))
4188         need_tmp64 = 1;
4189     }
4190     else if (po->op == OP_PUSH && !(po->flags & OPF_FARG)
4191       && !(po->flags & OPF_RSAVE) && po->operand[0].type == OPT_CONST)
4192         scan_for_pop_const(i, opcnt, &regmask_pp);
4193   }
4194
4195   // pass5:
4196   // - find POPs for PUSHes, rm both
4197   // - scan for STD/CLD, propagate DF
4198   // - scan for all used registers
4199   // - find flag set ops for their users
4200   // - do unreselved calls
4201   // - declare indirect functions
4202   for (i = 0; i < opcnt; i++)
4203   {
4204     po = &ops[i];
4205     if (po->flags & (OPF_RMD|OPF_DONE))
4206       continue;
4207
4208     if (po->op == OP_PUSH && (po->flags & OPF_RSAVE)) {
4209       reg = po->operand[0].reg;
4210       if (!(regmask & (1 << reg)))
4211         // not a reg save after all, rerun scan_for_pop
4212         po->flags &= ~OPF_RSAVE;
4213       else
4214         regmask_save |= 1 << reg;
4215     }
4216
4217     if (po->op == OP_PUSH && !(po->flags & OPF_FARG)
4218       && !(po->flags & OPF_RSAVE) && !g_func_pp->is_userstack)
4219     {
4220       if (po->operand[0].type == OPT_REG)
4221       {
4222         reg = po->operand[0].reg;
4223         if (reg < 0)
4224           ferr(po, "reg not set for push?\n");
4225
4226         depth = 0;
4227         ret = scan_for_pop(i + 1, opcnt,
4228                 po->operand[0].name, i + opcnt * 3, 0, &depth, 0);
4229         if (ret == 1) {
4230           if (depth > 1)
4231             ferr(po, "too much depth: %d\n", depth);
4232
4233           po->flags |= OPF_RMD;
4234           scan_for_pop(i + 1, opcnt, po->operand[0].name,
4235             i + opcnt * 4, 0, &depth, 1);
4236           continue;
4237         }
4238         ret = scan_for_pop_ret(i + 1, opcnt, po->operand[0].name, 0);
4239         if (ret == 0) {
4240           arg = OPF_RMD;
4241           if (regmask & (1 << reg)) {
4242             if (regmask_save & (1 << reg))
4243               ferr(po, "%s already saved?\n", po->operand[0].name);
4244             arg = OPF_RSAVE;
4245           }
4246           po->flags |= arg;
4247           scan_for_pop_ret(i + 1, opcnt, po->operand[0].name, arg);
4248           continue;
4249         }
4250       }
4251     }
4252
4253     if (po->op == OP_STD) {
4254       po->flags |= OPF_DF | OPF_RMD | OPF_DONE;
4255       scan_propagate_df(i + 1, opcnt);
4256     }
4257
4258     regmask_now = po->regmask_src | po->regmask_dst;
4259     if (regmask_now & (1 << xBP)) {
4260       if (g_bp_frame && !(po->flags & OPF_EBP_S)) {
4261         if (po->regmask_dst & (1 << xBP))
4262           // compiler decided to drop bp frame and use ebp as scratch
4263           scan_fwd_set_flags(i + 1, opcnt, i + opcnt * 5, OPF_EBP_S);
4264         else
4265           regmask_now &= ~(1 << xBP);
4266       }
4267     }
4268
4269     regmask |= regmask_now;
4270
4271     if (po->flags & OPF_CC)
4272     {
4273       int setters[16], cnt = 0, branched = 0;
4274
4275       ret = scan_for_flag_set(i, i + opcnt * 6,
4276               &branched, setters, &cnt);
4277       if (ret < 0 || cnt <= 0)
4278         ferr(po, "unable to trace flag setter(s)\n");
4279       if (cnt > ARRAY_SIZE(setters))
4280         ferr(po, "too many flag setters\n");
4281
4282       for (j = 0; j < cnt; j++)
4283       {
4284         tmp_op = &ops[setters[j]]; // flag setter
4285         pfomask = 0;
4286
4287         // to get nicer code, we try to delay test and cmp;
4288         // if we can't because of operand modification, or if we
4289         // have arith op, or branch, make it calculate flags explicitly
4290         if (tmp_op->op == OP_TEST || tmp_op->op == OP_CMP)
4291         {
4292           if (branched || scan_for_mod(tmp_op, setters[j] + 1, i, 0) >= 0)
4293             pfomask = 1 << po->pfo;
4294         }
4295         else if (tmp_op->op == OP_CMPS || tmp_op->op == OP_SCAS) {
4296           pfomask = 1 << po->pfo;
4297         }
4298         else {
4299           // see if we'll be able to handle based on op result
4300           if ((tmp_op->op != OP_AND && tmp_op->op != OP_OR
4301                && po->pfo != PFO_Z && po->pfo != PFO_S
4302                && po->pfo != PFO_P)
4303               || branched
4304               || scan_for_mod_opr0(tmp_op, setters[j] + 1, i) >= 0)
4305           {
4306             pfomask = 1 << po->pfo;
4307           }
4308
4309           if (tmp_op->op == OP_ADD && po->pfo == PFO_C) {
4310             propagate_lmod(tmp_op, &tmp_op->operand[0],
4311               &tmp_op->operand[1]);
4312             if (tmp_op->operand[0].lmod == OPLM_DWORD)
4313               need_tmp64 = 1;
4314           }
4315         }
4316         if (pfomask) {
4317           tmp_op->pfomask |= pfomask;
4318           cond_vars |= pfomask;
4319         }
4320         // note: may overwrite, currently not a problem
4321         po->datap = tmp_op;
4322       }
4323
4324       if (po->op == OP_RCL || po->op == OP_RCR
4325        || po->op == OP_ADC || po->op == OP_SBB)
4326         cond_vars |= 1 << PFO_C;
4327     }
4328
4329     if (po->op == OP_CMPS || po->op == OP_SCAS) {
4330       cond_vars |= 1 << PFO_Z;
4331     }
4332     else if (po->op == OP_MUL
4333       || (po->op == OP_IMUL && po->operand_cnt == 1))
4334     {
4335       if (po->operand[0].lmod == OPLM_DWORD)
4336         need_tmp64 = 1;
4337     }
4338     else if (po->op == OP_CALL) {
4339       // note: resolved non-reg calls are OPF_DONE already
4340       pp = po->pp;
4341       if (pp == NULL)
4342         ferr(po, "NULL pp\n");
4343
4344       if (pp->is_unresolved) {
4345         int regmask_stack = 0;
4346         collect_call_args(po, i, pp, &regmask, save_arg_vars,
4347           i + opcnt * 2);
4348
4349         // this is pretty rough guess:
4350         // see ecx and edx were pushed (and not their saved versions)
4351         for (arg = 0; arg < pp->argc; arg++) {
4352           if (pp->arg[arg].reg != NULL)
4353             continue;
4354
4355           tmp_op = pp->arg[arg].datap;
4356           if (tmp_op == NULL)
4357             ferr(po, "parsed_op missing for arg%d\n", arg);
4358           if (tmp_op->p_argnum == 0 && tmp_op->operand[0].type == OPT_REG)
4359             regmask_stack |= 1 << tmp_op->operand[0].reg;
4360         }
4361
4362         if (!((regmask_stack & (1 << xCX))
4363           && (regmask_stack & (1 << xDX))))
4364         {
4365           if (pp->argc_stack != 0
4366            || ((regmask | regmask_arg) & ((1 << xCX)|(1 << xDX))))
4367           {
4368             pp_insert_reg_arg(pp, "ecx");
4369             pp->is_fastcall = 1;
4370             regmask_init |= 1 << xCX;
4371             regmask |= 1 << xCX;
4372           }
4373           if (pp->argc_stack != 0
4374            || ((regmask | regmask_arg) & (1 << xDX)))
4375           {
4376             pp_insert_reg_arg(pp, "edx");
4377             regmask_init |= 1 << xDX;
4378             regmask |= 1 << xDX;
4379           }
4380         }
4381
4382         // note: __cdecl doesn't fall into is_unresolved category
4383         if (pp->argc_stack > 0)
4384           pp->is_stdcall = 1;
4385       }
4386
4387       for (arg = 0; arg < pp->argc; arg++) {
4388         if (pp->arg[arg].reg != NULL) {
4389           reg = char_array_i(regs_r32,
4390                   ARRAY_SIZE(regs_r32), pp->arg[arg].reg);
4391           if (reg < 0)
4392             ferr(ops, "arg '%s' is not a reg?\n", pp->arg[arg].reg);
4393           if (!(regmask & (1 << reg))) {
4394             regmask_init |= 1 << reg;
4395             regmask |= 1 << reg;
4396           }
4397         }
4398       }
4399     }
4400     else if (po->op == OP_MOV && po->operand[0].pp != NULL
4401       && po->operand[1].pp != NULL)
4402     {
4403       // <var> = offset <something>
4404       if ((po->operand[1].pp->is_func || po->operand[1].pp->is_fptr)
4405         && !IS_START(po->operand[1].name, "off_"))
4406       {
4407         if (!po->operand[0].pp->is_fptr)
4408           ferr(po, "%s not declared as fptr when it should be\n",
4409             po->operand[0].name);
4410         if (pp_cmp_func(po->operand[0].pp, po->operand[1].pp)) {
4411           pp_print(buf1, sizeof(buf1), po->operand[0].pp);
4412           pp_print(buf2, sizeof(buf2), po->operand[1].pp);
4413           fnote(po, "var:  %s\n", buf1);
4414           fnote(po, "func: %s\n", buf2);
4415           ferr(po, "^ mismatch\n");
4416         }
4417       }
4418     }
4419     else if (po->op == OP_RET && !IS(g_func_pp->ret_type.name, "void"))
4420       regmask |= 1 << xAX;
4421     else if (po->op == OP_DIV || po->op == OP_IDIV) {
4422       // 32bit division is common, look for it
4423       if (po->op == OP_DIV)
4424         ret = scan_for_reg_clear(i, xDX);
4425       else
4426         ret = scan_for_cdq_edx(i);
4427       if (ret >= 0)
4428         po->flags |= OPF_32BIT;
4429       else
4430         need_tmp64 = 1;
4431     }
4432     else if (po->op == OP_CLD)
4433       po->flags |= OPF_RMD | OPF_DONE;
4434
4435     if (po->op == OP_RCL || po->op == OP_RCR || po->op == OP_XCHG) {
4436       need_tmp_var = 1;
4437     }
4438   }
4439
4440   // pass6:
4441   // - confirm regmask_save, it might have been reduced
4442   if (regmask_save != 0)
4443   {
4444     regmask_save = 0;
4445     for (i = 0; i < opcnt; i++) {
4446       po = &ops[i];
4447       if (po->flags & OPF_RMD)
4448         continue;
4449
4450       if (po->op == OP_PUSH && (po->flags & OPF_RSAVE))
4451         regmask_save |= 1 << po->operand[0].reg;
4452     }
4453   }
4454
4455   // output starts here
4456
4457   // define userstack size
4458   if (g_func_pp->is_userstack) {
4459     fprintf(fout, "#ifndef US_SZ_%s\n", g_func_pp->name);
4460     fprintf(fout, "#define US_SZ_%s USERSTACK_SIZE\n", g_func_pp->name);
4461     fprintf(fout, "#endif\n");
4462   }
4463
4464   // the function itself
4465   ferr_assert(ops, !g_func_pp->is_fptr);
4466   output_pp(fout, g_func_pp,
4467     (g_ida_func_attr & IDAFA_NORETURN) ? OPP_FORCE_NORETURN : 0);
4468   fprintf(fout, "\n{\n");
4469
4470   // declare indirect functions
4471   for (i = 0; i < opcnt; i++) {
4472     po = &ops[i];
4473     if (po->flags & OPF_RMD)
4474       continue;
4475
4476     if (po->op == OP_CALL) {
4477       pp = po->pp;
4478       if (pp == NULL)
4479         ferr(po, "NULL pp\n");
4480
4481       if (pp->is_fptr && !(pp->name[0] != 0 && pp->is_arg)) {
4482         if (pp->name[0] != 0) {
4483           memmove(pp->name + 2, pp->name, strlen(pp->name) + 1);
4484           memcpy(pp->name, "i_", 2);
4485
4486           // might be declared already
4487           found = 0;
4488           for (j = 0; j < i; j++) {
4489             if (ops[j].op == OP_CALL && (pp_tmp = ops[j].pp)) {
4490               if (pp_tmp->is_fptr && IS(pp->name, pp_tmp->name)) {
4491                 found = 1;
4492                 break;
4493               }
4494             }
4495           }
4496           if (found)
4497             continue;
4498         }
4499         else
4500           snprintf(pp->name, sizeof(pp->name), "icall%d", i);
4501
4502         fprintf(fout, "  ");
4503         output_pp(fout, pp, OPP_SIMPLE_ARGS);
4504         fprintf(fout, ";\n");
4505       }
4506     }
4507   }
4508
4509   // output LUTs/jumptables
4510   for (i = 0; i < g_func_pd_cnt; i++) {
4511     pd = &g_func_pd[i];
4512     fprintf(fout, "  static const ");
4513     if (pd->type == OPT_OFFSET) {
4514       fprintf(fout, "void *jt_%s[] =\n    { ", pd->label);
4515
4516       for (j = 0; j < pd->count; j++) {
4517         if (j > 0)
4518           fprintf(fout, ", ");
4519         fprintf(fout, "&&%s", pd->d[j].u.label);
4520       }
4521     }
4522     else {
4523       fprintf(fout, "%s %s[] =\n    { ",
4524         lmod_type_u(ops, pd->lmod), pd->label);
4525
4526       for (j = 0; j < pd->count; j++) {
4527         if (j > 0)
4528           fprintf(fout, ", ");
4529         fprintf(fout, "%u", pd->d[j].u.val);
4530       }
4531     }
4532     fprintf(fout, " };\n");
4533     had_decl = 1;
4534   }
4535
4536   // declare stack frame, va_arg
4537   if (g_stack_fsz) {
4538     fprintf(fout, "  union { u32 d[%d]; u16 w[%d]; u8 b[%d]; } sf;\n",
4539       (g_stack_fsz + 3) / 4, (g_stack_fsz + 1) / 2, g_stack_fsz);
4540     had_decl = 1;
4541   }
4542
4543   if (g_func_pp->is_userstack) {
4544     fprintf(fout, "  u32 fake_sf[US_SZ_%s / 4];\n", g_func_pp->name);
4545     fprintf(fout, "  u32 *esp = &fake_sf[sizeof(fake_sf) / 4];\n");
4546     had_decl = 1;
4547   }
4548
4549   if (g_func_pp->is_vararg) {
4550     fprintf(fout, "  va_list ap;\n");
4551     had_decl = 1;
4552   }
4553
4554   // declare arg-registers
4555   for (i = 0; i < g_func_pp->argc; i++) {
4556     if (g_func_pp->arg[i].reg != NULL) {
4557       reg = char_array_i(regs_r32,
4558               ARRAY_SIZE(regs_r32), g_func_pp->arg[i].reg);
4559       if (regmask & (1 << reg)) {
4560         if (g_func_pp->arg[i].type.is_retreg)
4561           fprintf(fout, "  u32 %s = *r_%s;\n",
4562             g_func_pp->arg[i].reg, g_func_pp->arg[i].reg);
4563         else
4564           fprintf(fout, "  u32 %s = (u32)a%d;\n",
4565             g_func_pp->arg[i].reg, i + 1);
4566       }
4567       else {
4568         if (g_func_pp->arg[i].type.is_retreg)
4569           ferr(ops, "retreg '%s' is unused?\n",
4570             g_func_pp->arg[i].reg);
4571         fprintf(fout, "  // %s = a%d; // unused\n",
4572           g_func_pp->arg[i].reg, i + 1);
4573       }
4574       had_decl = 1;
4575     }
4576   }
4577
4578   // declare normal registers
4579   regmask_now = regmask & ~regmask_arg;
4580   regmask_now &= ~(1 << xSP);
4581   if (regmask_now & 0x00ff) {
4582     for (reg = 0; reg < 8; reg++) {
4583       if (regmask_now & (1 << reg)) {
4584         fprintf(fout, "  u32 %s", regs_r32[reg]);
4585         if (regmask_init & (1 << reg))
4586           fprintf(fout, " = 0");
4587         fprintf(fout, ";\n");
4588         had_decl = 1;
4589       }
4590     }
4591   }
4592   if (regmask_now & 0xff00) {
4593     for (reg = 8; reg < 16; reg++) {
4594       if (regmask_now & (1 << reg)) {
4595         fprintf(fout, "  mmxr %s", regs_r32[reg]);
4596         if (regmask_init & (1 << reg))
4597           fprintf(fout, " = { 0, }");
4598         fprintf(fout, ";\n");
4599         had_decl = 1;
4600       }
4601     }
4602   }
4603
4604   if (regmask_save) {
4605     for (reg = 0; reg < 8; reg++) {
4606       if (regmask_save & (1 << reg)) {
4607         fprintf(fout, "  u32 s_%s;\n", regs_r32[reg]);
4608         had_decl = 1;
4609       }
4610     }
4611   }
4612
4613   for (i = 0; i < ARRAY_SIZE(save_arg_vars); i++) {
4614     if (save_arg_vars[i] == 0)
4615       continue;
4616     for (reg = 0; reg < 32; reg++) {
4617       if (save_arg_vars[i] & (1 << reg)) {
4618         fprintf(fout, "  u32 %s;\n",
4619           saved_arg_name(buf1, sizeof(buf1), i, reg + 1));
4620         had_decl = 1;
4621       }
4622     }
4623   }
4624
4625   // declare push-pop temporaries
4626   if (regmask_pp) {
4627     for (reg = 0; reg < 8; reg++) {
4628       if (regmask_pp & (1 << reg)) {
4629         fprintf(fout, "  u32 pp_%s;\n", regs_r32[reg]);
4630         had_decl = 1;
4631       }
4632     }
4633   }
4634
4635   if (cond_vars) {
4636     for (i = 0; i < 8; i++) {
4637       if (cond_vars & (1 << i)) {
4638         fprintf(fout, "  u32 cond_%s;\n", parsed_flag_op_names[i]);
4639         had_decl = 1;
4640       }
4641     }
4642   }
4643
4644   if (need_tmp_var) {
4645     fprintf(fout, "  u32 tmp;\n");
4646     had_decl = 1;
4647   }
4648
4649   if (need_tmp64) {
4650     fprintf(fout, "  u64 tmp64;\n");
4651     had_decl = 1;
4652   }
4653
4654   if (had_decl)
4655     fprintf(fout, "\n");
4656
4657   if (g_func_pp->is_vararg) {
4658     if (g_func_pp->argc_stack == 0)
4659       ferr(ops, "vararg func without stack args?\n");
4660     fprintf(fout, "  va_start(ap, a%d);\n", g_func_pp->argc);
4661   }
4662
4663   // output ops
4664   for (i = 0; i < opcnt; i++)
4665   {
4666     if (g_labels[i] != NULL) {
4667       fprintf(fout, "\n%s:\n", g_labels[i]);
4668       label_pending = 1;
4669
4670       delayed_flag_op = NULL;
4671       last_arith_dst = NULL;
4672     }
4673
4674     po = &ops[i];
4675     if (po->flags & OPF_RMD)
4676       continue;
4677
4678     no_output = 0;
4679
4680     #define assert_operand_cnt(n_) \
4681       if (po->operand_cnt != n_) \
4682         ferr(po, "operand_cnt is %d/%d\n", po->operand_cnt, n_)
4683
4684     // conditional/flag using op?
4685     if (po->flags & OPF_CC)
4686     {
4687       int is_delayed = 0;
4688
4689       tmp_op = po->datap;
4690
4691       // we go through all this trouble to avoid using parsed_flag_op,
4692       // which makes generated code much nicer
4693       if (delayed_flag_op != NULL)
4694       {
4695         out_cmp_test(buf1, sizeof(buf1), delayed_flag_op,
4696           po->pfo, po->pfo_inv);
4697         is_delayed = 1;
4698       }
4699       else if (last_arith_dst != NULL
4700         && (po->pfo == PFO_Z || po->pfo == PFO_S || po->pfo == PFO_P
4701            || (tmp_op && (tmp_op->op == OP_AND || tmp_op->op == OP_OR))
4702            ))
4703       {
4704         out_src_opr_u32(buf3, sizeof(buf3), po, last_arith_dst);
4705         out_test_for_cc(buf1, sizeof(buf1), po, po->pfo, po->pfo_inv,
4706           last_arith_dst->lmod, buf3);
4707         is_delayed = 1;
4708       }
4709       else if (tmp_op != NULL) {
4710         // use preprocessed flag calc results
4711         if (!(tmp_op->pfomask & (1 << po->pfo)))
4712           ferr(po, "not prepared for pfo %d\n", po->pfo);
4713
4714         // note: pfo_inv was not yet applied
4715         snprintf(buf1, sizeof(buf1), "(%scond_%s)",
4716           po->pfo_inv ? "!" : "", parsed_flag_op_names[po->pfo]);
4717       }
4718       else {
4719         ferr(po, "all methods of finding comparison failed\n");
4720       }
4721  
4722       if (po->flags & OPF_JMP) {
4723         fprintf(fout, "  if %s", buf1);
4724       }
4725       else if (po->op == OP_RCL || po->op == OP_RCR
4726                || po->op == OP_ADC || po->op == OP_SBB)
4727       {
4728         if (is_delayed)
4729           fprintf(fout, "  cond_%s = %s;\n",
4730             parsed_flag_op_names[po->pfo], buf1);
4731       }
4732       else if (po->flags & OPF_DATA) { // SETcc
4733         out_dst_opr(buf2, sizeof(buf2), po, &po->operand[0]);
4734         fprintf(fout, "  %s = %s;", buf2, buf1);
4735       }
4736       else {
4737         ferr(po, "unhandled conditional op\n");
4738       }
4739     }
4740
4741     pfomask = po->pfomask;
4742
4743     if (po->flags & (OPF_REPZ|OPF_REPNZ)) {
4744       struct parsed_opr opr = {0,};
4745       opr.type = OPT_REG;
4746       opr.reg = xCX;
4747       opr.lmod = OPLM_DWORD;
4748       ret = try_resolve_const(i, &opr, opcnt * 7 + i, &uval);
4749
4750       if (ret != 1 || uval == 0) {
4751         // we need initial flags for ecx=0 case..
4752         if (i > 0 && ops[i - 1].op == OP_XOR
4753           && IS(ops[i - 1].operand[0].name,
4754                 ops[i - 1].operand[1].name))
4755         {
4756           fprintf(fout, "  cond_z = ");
4757           if (pfomask & (1 << PFO_C))
4758             fprintf(fout, "cond_c = ");
4759           fprintf(fout, "0;\n");
4760         }
4761         else if (last_arith_dst != NULL) {
4762           out_src_opr_u32(buf3, sizeof(buf3), po, last_arith_dst);
4763           out_test_for_cc(buf1, sizeof(buf1), po, PFO_Z, 0,
4764             last_arith_dst->lmod, buf3);
4765           fprintf(fout, "  cond_z = %s;\n", buf1);
4766         }
4767         else
4768           ferr(po, "missing initial ZF\n");
4769       }
4770     }
4771
4772     switch (po->op)
4773     {
4774       case OP_MOV:
4775         assert_operand_cnt(2);
4776         propagate_lmod(po, &po->operand[0], &po->operand[1]);
4777         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4778         default_cast_to(buf3, sizeof(buf3), &po->operand[0]);
4779         fprintf(fout, "  %s = %s;", buf1,
4780             out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
4781               buf3, 0));
4782         break;
4783
4784       case OP_LEA:
4785         assert_operand_cnt(2);
4786         po->operand[1].lmod = OPLM_DWORD; // always
4787         fprintf(fout, "  %s = %s;",
4788             out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4789             out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
4790               NULL, 1));
4791         break;
4792
4793       case OP_MOVZX:
4794         assert_operand_cnt(2);
4795         fprintf(fout, "  %s = %s;",
4796             out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4797             out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
4798         break;
4799
4800       case OP_MOVSX:
4801         assert_operand_cnt(2);
4802         switch (po->operand[1].lmod) {
4803         case OPLM_BYTE:
4804           strcpy(buf3, "(s8)");
4805           break;
4806         case OPLM_WORD:
4807           strcpy(buf3, "(s16)");
4808           break;
4809         default:
4810           ferr(po, "invalid src lmod: %d\n", po->operand[1].lmod);
4811         }
4812         fprintf(fout, "  %s = %s;",
4813             out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4814             out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
4815               buf3, 0));
4816         break;
4817
4818       case OP_XCHG:
4819         assert_operand_cnt(2);
4820         propagate_lmod(po, &po->operand[0], &po->operand[1]);
4821         fprintf(fout, "  tmp = %s;",
4822           out_src_opr(buf1, sizeof(buf1), po, &po->operand[0], "", 0));
4823         fprintf(fout, " %s = %s;",
4824           out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4825           out_src_opr(buf2, sizeof(buf2), po, &po->operand[1],
4826             default_cast_to(buf3, sizeof(buf3), &po->operand[0]), 0));
4827         fprintf(fout, " %s = %stmp;",
4828           out_dst_opr(buf1, sizeof(buf1), po, &po->operand[1]),
4829           default_cast_to(buf3, sizeof(buf3), &po->operand[1]));
4830         snprintf(g_comment, sizeof(g_comment), "xchg");
4831         break;
4832
4833       case OP_NOT:
4834         assert_operand_cnt(1);
4835         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4836         fprintf(fout, "  %s = ~%s;", buf1, buf1);
4837         break;
4838
4839       case OP_CDQ:
4840         assert_operand_cnt(2);
4841         fprintf(fout, "  %s = (s32)%s >> 31;",
4842             out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4843             out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
4844         strcpy(g_comment, "cdq");
4845         break;
4846
4847       case OP_LODS:
4848         assert_operand_cnt(3);
4849         if (po->flags & OPF_REP) {
4850           // hmh..
4851           ferr(po, "TODO\n");
4852         }
4853         else {
4854           fprintf(fout, "  eax = %sesi; esi %c= %d;",
4855             lmod_cast_u_ptr(po, po->operand[0].lmod),
4856             (po->flags & OPF_DF) ? '-' : '+',
4857             lmod_bytes(po, po->operand[0].lmod));
4858           strcpy(g_comment, "lods");
4859         }
4860         break;
4861
4862       case OP_STOS:
4863         assert_operand_cnt(3);
4864         if (po->flags & OPF_REP) {
4865           fprintf(fout, "  for (; ecx != 0; ecx--, edi %c= %d)\n",
4866             (po->flags & OPF_DF) ? '-' : '+',
4867             lmod_bytes(po, po->operand[0].lmod));
4868           fprintf(fout, "    %sedi = eax;",
4869             lmod_cast_u_ptr(po, po->operand[0].lmod));
4870           strcpy(g_comment, "rep stos");
4871         }
4872         else {
4873           fprintf(fout, "  %sedi = eax; edi %c= %d;",
4874             lmod_cast_u_ptr(po, po->operand[0].lmod),
4875             (po->flags & OPF_DF) ? '-' : '+',
4876             lmod_bytes(po, po->operand[0].lmod));
4877           strcpy(g_comment, "stos");
4878         }
4879         break;
4880
4881       case OP_MOVS:
4882         assert_operand_cnt(3);
4883         j = lmod_bytes(po, po->operand[0].lmod);
4884         strcpy(buf1, lmod_cast_u_ptr(po, po->operand[0].lmod));
4885         l = (po->flags & OPF_DF) ? '-' : '+';
4886         if (po->flags & OPF_REP) {
4887           fprintf(fout,
4888             "  for (; ecx != 0; ecx--, edi %c= %d, esi %c= %d)\n",
4889             l, j, l, j);
4890           fprintf(fout,
4891             "    %sedi = %sesi;", buf1, buf1);
4892           strcpy(g_comment, "rep movs");
4893         }
4894         else {
4895           fprintf(fout, "  %sedi = %sesi; edi %c= %d; esi %c= %d;",
4896             buf1, buf1, l, j, l, j);
4897           strcpy(g_comment, "movs");
4898         }
4899         break;
4900
4901       case OP_CMPS:
4902         // repe ~ repeat while ZF=1
4903         assert_operand_cnt(3);
4904         j = lmod_bytes(po, po->operand[0].lmod);
4905         strcpy(buf1, lmod_cast_u_ptr(po, po->operand[0].lmod));
4906         l = (po->flags & OPF_DF) ? '-' : '+';
4907         if (po->flags & OPF_REP) {
4908           fprintf(fout,
4909             "  for (; ecx != 0; ecx--) {\n");
4910           if (pfomask & (1 << PFO_C)) {
4911             // ugh..
4912             fprintf(fout,
4913             "    cond_c = %sesi < %sedi;\n", buf1, buf1);
4914             pfomask &= ~(1 << PFO_C);
4915           }
4916           fprintf(fout,
4917             "    cond_z = (%sesi == %sedi); esi %c= %d, edi %c= %d;\n",
4918               buf1, buf1, l, j, l, j);
4919           fprintf(fout,
4920             "    if (cond_z %s 0) break;\n",
4921               (po->flags & OPF_REPZ) ? "==" : "!=");
4922           fprintf(fout,
4923             "  }");
4924           snprintf(g_comment, sizeof(g_comment), "rep%s cmps",
4925             (po->flags & OPF_REPZ) ? "e" : "ne");
4926         }
4927         else {
4928           fprintf(fout,
4929             "  cond_z = (%sesi == %sedi); esi %c= %d; edi %c= %d;",
4930             buf1, buf1, l, j, l, j);
4931           strcpy(g_comment, "cmps");
4932         }
4933         pfomask &= ~(1 << PFO_Z);
4934         last_arith_dst = NULL;
4935         delayed_flag_op = NULL;
4936         break;
4937
4938       case OP_SCAS:
4939         // only does ZF (for now)
4940         // repe ~ repeat while ZF=1
4941         assert_operand_cnt(3);
4942         j = lmod_bytes(po, po->operand[0].lmod);
4943         l = (po->flags & OPF_DF) ? '-' : '+';
4944         if (po->flags & OPF_REP) {
4945           fprintf(fout,
4946             "  for (; ecx != 0; ecx--) {\n");
4947           fprintf(fout,
4948             "    cond_z = (%seax == %sedi); edi %c= %d;\n",
4949               lmod_cast_u(po, po->operand[0].lmod),
4950               lmod_cast_u_ptr(po, po->operand[0].lmod), l, j);
4951           fprintf(fout,
4952             "    if (cond_z %s 0) break;\n",
4953               (po->flags & OPF_REPZ) ? "==" : "!=");
4954           fprintf(fout,
4955             "  }");
4956           snprintf(g_comment, sizeof(g_comment), "rep%s scas",
4957             (po->flags & OPF_REPZ) ? "e" : "ne");
4958         }
4959         else {
4960           fprintf(fout, "  cond_z = (%seax == %sedi); edi %c= %d;",
4961               lmod_cast_u(po, po->operand[0].lmod),
4962               lmod_cast_u_ptr(po, po->operand[0].lmod), l, j);
4963           strcpy(g_comment, "scas");
4964         }
4965         pfomask &= ~(1 << PFO_Z);
4966         last_arith_dst = NULL;
4967         delayed_flag_op = NULL;
4968         break;
4969
4970       // arithmetic w/flags
4971       case OP_AND:
4972       case OP_OR:
4973         propagate_lmod(po, &po->operand[0], &po->operand[1]);
4974         // fallthrough
4975       dualop_arith:
4976         assert_operand_cnt(2);
4977         fprintf(fout, "  %s %s= %s;",
4978             out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
4979             op_to_c(po),
4980             out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
4981         output_std_flags(fout, po, &pfomask, buf1);
4982         last_arith_dst = &po->operand[0];
4983         delayed_flag_op = NULL;
4984         break;
4985
4986       case OP_SHL:
4987       case OP_SHR:
4988         assert_operand_cnt(2);
4989         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
4990         if (pfomask & (1 << PFO_C)) {
4991           if (po->operand[1].type == OPT_CONST) {
4992             l = lmod_bytes(po, po->operand[0].lmod) * 8;
4993             j = po->operand[1].val;
4994             j %= l;
4995             if (j != 0) {
4996               if (po->op == OP_SHL)
4997                 j = l - j;
4998               else
4999                 j -= 1;
5000               fprintf(fout, "  cond_c = (%s >> %d) & 1;\n",
5001                 buf1, j);
5002             }
5003             else
5004               ferr(po, "zero shift?\n");
5005           }
5006           else
5007             ferr(po, "TODO\n");
5008           pfomask &= ~(1 << PFO_C);
5009         }
5010         fprintf(fout, "  %s %s= %s;", buf1, op_to_c(po),
5011             out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
5012         output_std_flags(fout, po, &pfomask, buf1);
5013         last_arith_dst = &po->operand[0];
5014         delayed_flag_op = NULL;
5015         break;
5016
5017       case OP_SAR:
5018         assert_operand_cnt(2);
5019         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5020         fprintf(fout, "  %s = %s%s >> %s;", buf1,
5021           lmod_cast_s(po, po->operand[0].lmod), buf1,
5022           out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
5023         output_std_flags(fout, po, &pfomask, buf1);
5024         last_arith_dst = &po->operand[0];
5025         delayed_flag_op = NULL;
5026         break;
5027
5028       case OP_SHRD:
5029         assert_operand_cnt(3);
5030         propagate_lmod(po, &po->operand[0], &po->operand[1]);
5031         l = lmod_bytes(po, po->operand[0].lmod) * 8;
5032         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5033         out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
5034         out_src_opr_u32(buf3, sizeof(buf3), po, &po->operand[2]);
5035         fprintf(fout, "  %s >>= %s; %s |= %s << (%d - %s);",
5036           buf1, buf3, buf1, buf2, l, buf3);
5037         strcpy(g_comment, "shrd");
5038         output_std_flags(fout, po, &pfomask, buf1);
5039         last_arith_dst = &po->operand[0];
5040         delayed_flag_op = NULL;
5041         break;
5042
5043       case OP_ROL:
5044       case OP_ROR:
5045         assert_operand_cnt(2);
5046         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5047         if (po->operand[1].type == OPT_CONST) {
5048           j = po->operand[1].val;
5049           j %= lmod_bytes(po, po->operand[0].lmod) * 8;
5050           fprintf(fout, po->op == OP_ROL ?
5051             "  %s = (%s << %d) | (%s >> %d);" :
5052             "  %s = (%s >> %d) | (%s << %d);",
5053             buf1, buf1, j, buf1,
5054             lmod_bytes(po, po->operand[0].lmod) * 8 - j);
5055         }
5056         else
5057           ferr(po, "TODO\n");
5058         output_std_flags(fout, po, &pfomask, buf1);
5059         last_arith_dst = &po->operand[0];
5060         delayed_flag_op = NULL;
5061         break;
5062
5063       case OP_RCL:
5064       case OP_RCR:
5065         assert_operand_cnt(2);
5066         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5067         l = lmod_bytes(po, po->operand[0].lmod) * 8;
5068         if (po->operand[1].type == OPT_CONST) {
5069           j = po->operand[1].val % l;
5070           if (j == 0)
5071             ferr(po, "zero rotate\n");
5072           fprintf(fout, "  tmp = (%s >> %d) & 1;\n",
5073             buf1, (po->op == OP_RCL) ? (l - j) : (j - 1));
5074           if (po->op == OP_RCL) {
5075             fprintf(fout,
5076               "  %s = (%s << %d) | (cond_c << %d)",
5077               buf1, buf1, j, j - 1);
5078             if (j != 1)
5079               fprintf(fout, " | (%s >> %d)", buf1, l + 1 - j);
5080           }
5081           else {
5082             fprintf(fout,
5083               "  %s = (%s >> %d) | (cond_c << %d)",
5084               buf1, buf1, j, l - j);
5085             if (j != 1)
5086               fprintf(fout, " | (%s << %d)", buf1, l + 1 - j);
5087           }
5088           fprintf(fout, ";\n");
5089           fprintf(fout, "  cond_c = tmp;");
5090         }
5091         else
5092           ferr(po, "TODO\n");
5093         strcpy(g_comment, (po->op == OP_RCL) ? "rcl" : "rcr");
5094         output_std_flags(fout, po, &pfomask, buf1);
5095         last_arith_dst = &po->operand[0];
5096         delayed_flag_op = NULL;
5097         break;
5098
5099       case OP_XOR:
5100         assert_operand_cnt(2);
5101         propagate_lmod(po, &po->operand[0], &po->operand[1]);
5102         if (IS(opr_name(po, 0), opr_name(po, 1))) {
5103           // special case for XOR
5104           if (pfomask & (1 << PFO_BE)) { // weird, but it happens..
5105             fprintf(fout, "  cond_be = 1;\n");
5106             pfomask &= ~(1 << PFO_BE);
5107           }
5108           fprintf(fout, "  %s = 0;",
5109             out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]));
5110           last_arith_dst = &po->operand[0];
5111           delayed_flag_op = NULL;
5112           break;
5113         }
5114         goto dualop_arith;
5115
5116       case OP_ADD:
5117         assert_operand_cnt(2);
5118         propagate_lmod(po, &po->operand[0], &po->operand[1]);
5119         if (pfomask & (1 << PFO_C)) {
5120           out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
5121           out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
5122           if (po->operand[0].lmod == OPLM_DWORD) {
5123             fprintf(fout, "  tmp64 = (u64)%s + %s;\n", buf1, buf2);
5124             fprintf(fout, "  cond_c = tmp64 >> 32;\n");
5125             fprintf(fout, "  %s = (u32)tmp64;",
5126               out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]));
5127             strcat(g_comment, "add64");
5128           }
5129           else {
5130             fprintf(fout, "  cond_c = ((u32)%s + %s) >> %d;\n",
5131               buf1, buf2, lmod_bytes(po, po->operand[0].lmod) * 8);
5132             fprintf(fout, "  %s += %s;",
5133               out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
5134               buf2);
5135           }
5136           pfomask &= ~(1 << PFO_C);
5137           output_std_flags(fout, po, &pfomask, buf1);
5138           last_arith_dst = &po->operand[0];
5139           delayed_flag_op = NULL;
5140           break;
5141         }
5142         goto dualop_arith;
5143
5144       case OP_SUB:
5145         assert_operand_cnt(2);
5146         propagate_lmod(po, &po->operand[0], &po->operand[1]);
5147         if (pfomask & ~((1 << PFO_Z) | (1 << PFO_S))) {
5148           for (j = 0; j <= PFO_LE; j++) {
5149             if (!(pfomask & (1 << j)))
5150               continue;
5151             if (j == PFO_Z || j == PFO_S)
5152               continue;
5153
5154             out_cmp_for_cc(buf1, sizeof(buf1), po, j, 0);
5155             fprintf(fout, "  cond_%s = %s;\n",
5156               parsed_flag_op_names[j], buf1);
5157             pfomask &= ~(1 << j);
5158           }
5159         }
5160         goto dualop_arith;
5161
5162       case OP_ADC:
5163       case OP_SBB:
5164         assert_operand_cnt(2);
5165         propagate_lmod(po, &po->operand[0], &po->operand[1]);
5166         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5167         if (po->op == OP_SBB
5168           && IS(po->operand[0].name, po->operand[1].name))
5169         {
5170           // avoid use of unitialized var
5171           fprintf(fout, "  %s = -cond_c;", buf1);
5172           // carry remains what it was
5173           pfomask &= ~(1 << PFO_C);
5174         }
5175         else {
5176           fprintf(fout, "  %s %s= %s + cond_c;", buf1, op_to_c(po),
5177             out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]));
5178         }
5179         output_std_flags(fout, po, &pfomask, buf1);
5180         last_arith_dst = &po->operand[0];
5181         delayed_flag_op = NULL;
5182         break;
5183
5184       case OP_BSF:
5185         assert_operand_cnt(2);
5186         out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[1]);
5187         fprintf(fout, "  %s = %s ? __builtin_ffs(%s) - 1 : 0;",
5188           out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]),
5189           buf2, buf2);
5190         output_std_flags(fout, po, &pfomask, buf1);
5191         last_arith_dst = &po->operand[0];
5192         delayed_flag_op = NULL;
5193         strcat(g_comment, "bsf");
5194         break;
5195
5196       case OP_DEC:
5197         if (pfomask & ~(PFOB_S | PFOB_S | PFOB_C)) {
5198           for (j = 0; j <= PFO_LE; j++) {
5199             if (!(pfomask & (1 << j)))
5200               continue;
5201             if (j == PFO_Z || j == PFO_S || j == PFO_C)
5202               continue;
5203
5204             out_cmp_for_cc(buf1, sizeof(buf1), po, j, 0);
5205             fprintf(fout, "  cond_%s = %s;\n",
5206               parsed_flag_op_names[j], buf1);
5207             pfomask &= ~(1 << j);
5208           }
5209         }
5210         // fallthrough
5211
5212       case OP_INC:
5213         if (pfomask & (1 << PFO_C))
5214           // carry is unaffected by inc/dec.. wtf?
5215           ferr(po, "carry propagation needed\n");
5216
5217         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5218         if (po->operand[0].type == OPT_REG) {
5219           strcpy(buf2, po->op == OP_INC ? "++" : "--");
5220           fprintf(fout, "  %s%s;", buf1, buf2);
5221         }
5222         else {
5223           strcpy(buf2, po->op == OP_INC ? "+" : "-");
5224           fprintf(fout, "  %s %s= 1;", buf1, buf2);
5225         }
5226         output_std_flags(fout, po, &pfomask, buf1);
5227         last_arith_dst = &po->operand[0];
5228         delayed_flag_op = NULL;
5229         break;
5230
5231       case OP_NEG:
5232         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5233         out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[0]);
5234         fprintf(fout, "  %s = -%s%s;", buf1,
5235           lmod_cast_s(po, po->operand[0].lmod), buf2);
5236         last_arith_dst = &po->operand[0];
5237         delayed_flag_op = NULL;
5238         if (pfomask & (1 << PFO_C)) {
5239           fprintf(fout, "\n  cond_c = (%s != 0);", buf1);
5240           pfomask &= ~(1 << PFO_C);
5241         }
5242         break;
5243
5244       case OP_IMUL:
5245         if (po->operand_cnt == 2) {
5246           propagate_lmod(po, &po->operand[0], &po->operand[1]);
5247           goto dualop_arith;
5248         }
5249         if (po->operand_cnt == 3)
5250           ferr(po, "TODO imul3\n");
5251         // fallthrough
5252       case OP_MUL:
5253         assert_operand_cnt(1);
5254         switch (po->operand[0].lmod) {
5255         case OPLM_DWORD:
5256           strcpy(buf1, po->op == OP_IMUL ? "(s64)(s32)" : "(u64)");
5257           fprintf(fout, "  tmp64 = %seax * %s%s;\n", buf1, buf1,
5258             out_src_opr_u32(buf2, sizeof(buf2), po, &po->operand[0]));
5259           fprintf(fout, "  edx = tmp64 >> 32;\n");
5260           fprintf(fout, "  eax = tmp64;");
5261           break;
5262         case OPLM_BYTE:
5263           strcpy(buf1, po->op == OP_IMUL ? "(s16)(s8)" : "(u16)(u8)");
5264           fprintf(fout, "  LOWORD(eax) = %seax * %s;", buf1,
5265             out_src_opr(buf2, sizeof(buf2), po, &po->operand[0],
5266               buf1, 0));
5267           break;
5268         default:
5269           ferr(po, "TODO: unhandled mul type\n");
5270           break;
5271         }
5272         last_arith_dst = NULL;
5273         delayed_flag_op = NULL;
5274         break;
5275
5276       case OP_DIV:
5277       case OP_IDIV:
5278         assert_operand_cnt(1);
5279         if (po->operand[0].lmod != OPLM_DWORD)
5280           ferr(po, "unhandled lmod %d\n", po->operand[0].lmod);
5281
5282         out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
5283         strcpy(buf2, lmod_cast(po, po->operand[0].lmod,
5284           po->op == OP_IDIV));
5285         switch (po->operand[0].lmod) {
5286         case OPLM_DWORD:
5287           if (po->flags & OPF_32BIT)
5288             snprintf(buf3, sizeof(buf3), "%seax", buf2);
5289           else {
5290             fprintf(fout, "  tmp64 = ((u64)edx << 32) | eax;\n");
5291             snprintf(buf3, sizeof(buf3), "%stmp64",
5292               (po->op == OP_IDIV) ? "(s64)" : "");
5293           }
5294           if (po->operand[0].type == OPT_REG
5295             && po->operand[0].reg == xDX)
5296           {
5297             fprintf(fout, "  eax = %s / %s%s;", buf3, buf2, buf1);
5298             fprintf(fout, "  edx = %s %% %s%s;\n", buf3, buf2, buf1);
5299           }
5300           else {
5301             fprintf(fout, "  edx = %s %% %s%s;\n", buf3, buf2, buf1);
5302             fprintf(fout, "  eax = %s / %s%s;", buf3, buf2, buf1);
5303           }
5304           break;
5305         default:
5306           ferr(po, "unhandled division type\n");
5307         }
5308         last_arith_dst = NULL;
5309         delayed_flag_op = NULL;
5310         break;
5311
5312       case OP_TEST:
5313       case OP_CMP:
5314         propagate_lmod(po, &po->operand[0], &po->operand[1]);
5315         if (pfomask != 0) {
5316           for (j = 0; j < 8; j++) {
5317             if (pfomask & (1 << j)) {
5318               out_cmp_test(buf1, sizeof(buf1), po, j, 0);
5319               fprintf(fout, "  cond_%s = %s;",
5320                 parsed_flag_op_names[j], buf1);
5321             }
5322           }
5323           pfomask = 0;
5324         }
5325         else
5326           no_output = 1;
5327         last_arith_dst = NULL;
5328         delayed_flag_op = po;
5329         break;
5330
5331       case OP_SCC:
5332         // SETcc - should already be handled
5333         break;
5334
5335       // note: we reuse OP_Jcc for SETcc, only flags differ
5336       case OP_JCC:
5337         fprintf(fout, "\n    goto %s;", po->operand[0].name);
5338         break;
5339
5340       case OP_JECXZ:
5341         fprintf(fout, "  if (ecx == 0)\n");
5342         fprintf(fout, "    goto %s;", po->operand[0].name);
5343         strcat(g_comment, "jecxz");
5344         break;
5345
5346       case OP_JMP:
5347         assert_operand_cnt(1);
5348         last_arith_dst = NULL;
5349         delayed_flag_op = NULL;
5350
5351         if (po->operand[0].type == OPT_REGMEM) {
5352           ret = sscanf(po->operand[0].name, "%[^[][%[^*]*4]",
5353                   buf1, buf2);
5354           if (ret != 2)
5355             ferr(po, "parse failure for jmp '%s'\n",
5356               po->operand[0].name);
5357           fprintf(fout, "  goto *jt_%s[%s];", buf1, buf2);
5358           break;
5359         }
5360         else if (po->operand[0].type != OPT_LABEL)
5361           ferr(po, "unhandled jmp type\n");
5362
5363         fprintf(fout, "  goto %s;", po->operand[0].name);
5364         break;
5365
5366       case OP_CALL:
5367         assert_operand_cnt(1);
5368         pp = po->pp;
5369         my_assert_not(pp, NULL);
5370
5371         strcpy(buf3, "  ");
5372         if (po->flags & OPF_CC) {
5373           // we treat conditional branch to another func
5374           // (yes such code exists..) as conditional tailcall
5375           strcat(buf3, "  ");
5376           fprintf(fout, " {\n");
5377         }
5378
5379         if (pp->is_fptr && !pp->is_arg) {
5380           fprintf(fout, "%s%s = %s;\n", buf3, pp->name,
5381             out_src_opr(buf1, sizeof(buf1), po, &po->operand[0],
5382               "(void *)", 0));
5383           if (pp->is_unresolved)
5384             fprintf(fout, "%sunresolved_call(\"%s:%d\", %s);\n",
5385               buf3, asmfn, po->asmln, pp->name);
5386         }
5387
5388         fprintf(fout, "%s", buf3);
5389         if (strstr(pp->ret_type.name, "int64")) {
5390           if (po->flags & OPF_TAIL)
5391             ferr(po, "int64 and tail?\n");
5392           fprintf(fout, "tmp64 = ");
5393         }
5394         else if (!IS(pp->ret_type.name, "void")) {
5395           if (po->flags & OPF_TAIL) {
5396             if (!IS(g_func_pp->ret_type.name, "void")) {
5397               fprintf(fout, "return ");
5398               if (g_func_pp->ret_type.is_ptr != pp->ret_type.is_ptr)
5399                 fprintf(fout, "(%s)", g_func_pp->ret_type.name);
5400             }
5401           }
5402           else if (regmask & (1 << xAX)) {
5403             fprintf(fout, "eax = ");
5404             if (pp->ret_type.is_ptr)
5405               fprintf(fout, "(u32)");
5406           }
5407         }
5408
5409         if (pp->name[0] == 0)
5410           ferr(po, "missing pp->name\n");
5411         fprintf(fout, "%s%s(", pp->name,
5412           pp->has_structarg ? "_sa" : "");
5413
5414         if (po->flags & OPF_ATAIL) {
5415           if (pp->argc_stack != g_func_pp->argc_stack
5416             || (pp->argc_stack > 0
5417                 && pp->is_stdcall != g_func_pp->is_stdcall))
5418             ferr(po, "incompatible tailcall\n");
5419           if (g_func_pp->has_retreg)
5420             ferr(po, "TODO: retreg+tailcall\n");
5421
5422           for (arg = j = 0; arg < pp->argc; arg++) {
5423             if (arg > 0)
5424               fprintf(fout, ", ");
5425
5426             cast[0] = 0;
5427             if (pp->arg[arg].type.is_ptr)
5428               snprintf(cast, sizeof(cast), "(%s)",
5429                 pp->arg[arg].type.name);
5430
5431             if (pp->arg[arg].reg != NULL) {
5432               fprintf(fout, "%s%s", cast, pp->arg[arg].reg);
5433               continue;
5434             }
5435             // stack arg
5436             for (; j < g_func_pp->argc; j++)
5437               if (g_func_pp->arg[j].reg == NULL)
5438                 break;
5439             fprintf(fout, "%sa%d", cast, j + 1);
5440             j++;
5441           }
5442         }
5443         else {
5444           for (arg = 0; arg < pp->argc; arg++) {
5445             if (arg > 0)
5446               fprintf(fout, ", ");
5447
5448             cast[0] = 0;
5449             if (pp->arg[arg].type.is_ptr)
5450               snprintf(cast, sizeof(cast), "(%s)",
5451                 pp->arg[arg].type.name);
5452
5453             if (pp->arg[arg].reg != NULL) {
5454               if (pp->arg[arg].type.is_retreg)
5455                 fprintf(fout, "&%s", pp->arg[arg].reg);
5456               else
5457                 fprintf(fout, "%s%s", cast, pp->arg[arg].reg);
5458               continue;
5459             }
5460
5461             // stack arg
5462             tmp_op = pp->arg[arg].datap;
5463             if (tmp_op == NULL)
5464               ferr(po, "parsed_op missing for arg%d\n", arg);
5465
5466             if (tmp_op->flags & OPF_VAPUSH) {
5467               fprintf(fout, "ap");
5468             }
5469             else if (tmp_op->p_argpass != 0) {
5470               fprintf(fout, "a%d", tmp_op->p_argpass);
5471             }
5472             else if (tmp_op->p_argnum != 0) {
5473               fprintf(fout, "%s%s", cast,
5474                 saved_arg_name(buf1, sizeof(buf1),
5475                   tmp_op->p_arggrp, tmp_op->p_argnum));
5476             }
5477             else {
5478               fprintf(fout, "%s",
5479                 out_src_opr(buf1, sizeof(buf1),
5480                   tmp_op, &tmp_op->operand[0], cast, 0));
5481             }
5482           }
5483         }
5484         fprintf(fout, ");");
5485
5486         if (strstr(pp->ret_type.name, "int64")) {
5487           fprintf(fout, "\n");
5488           fprintf(fout, "%sedx = tmp64 >> 32;\n", buf3);
5489           fprintf(fout, "%seax = tmp64;", buf3);
5490         }
5491
5492         if (pp->is_unresolved) {
5493           snprintf(buf2, sizeof(buf2), " unresolved %dreg",
5494             pp->argc_reg);
5495           strcat(g_comment, buf2);
5496         }
5497
5498         if (po->flags & OPF_TAIL) {
5499           ret = 0;
5500           if (i == opcnt - 1 || pp->is_noreturn)
5501             ret = 0;
5502           else if (IS(pp->ret_type.name, "void"))
5503             ret = 1;
5504           else if (IS(g_func_pp->ret_type.name, "void"))
5505             ret = 1;
5506           // else already handled as 'return f()'
5507
5508           if (ret) {
5509             if (!IS(g_func_pp->ret_type.name, "void")) {
5510               ferr(po, "int func -> void func tailcall?\n");
5511             }
5512             else {
5513               fprintf(fout, "\n%sreturn;", buf3);
5514               strcat(g_comment, " ^ tailcall");
5515             }
5516           }
5517           else
5518             strcat(g_comment, " tailcall");
5519         }
5520         if (pp->is_noreturn)
5521           strcat(g_comment, " noreturn");
5522         if ((po->flags & OPF_ATAIL) && pp->argc_stack > 0)
5523           strcat(g_comment, " argframe");
5524         if (po->flags & OPF_CC)
5525           strcat(g_comment, " cond");
5526
5527         if (po->flags & OPF_CC)
5528           fprintf(fout, "\n  }");
5529
5530         delayed_flag_op = NULL;
5531         last_arith_dst = NULL;
5532         break;
5533
5534       case OP_RET:
5535         if (g_func_pp->is_vararg)
5536           fprintf(fout, "  va_end(ap);\n");
5537         if (g_func_pp->has_retreg) {
5538           for (arg = 0; arg < g_func_pp->argc; arg++)
5539             if (g_func_pp->arg[arg].type.is_retreg)
5540               fprintf(fout, "  *r_%s = %s;\n",
5541                 g_func_pp->arg[arg].reg, g_func_pp->arg[arg].reg);
5542         }
5543  
5544         if (IS(g_func_pp->ret_type.name, "void")) {
5545           if (i != opcnt - 1 || label_pending)
5546             fprintf(fout, "  return;");
5547         }
5548         else if (g_func_pp->ret_type.is_ptr) {
5549           fprintf(fout, "  return (%s)eax;",
5550             g_func_pp->ret_type.name);
5551         }
5552         else if (IS(g_func_pp->ret_type.name, "__int64"))
5553           fprintf(fout, "  return ((u64)edx << 32) | eax;");
5554         else
5555           fprintf(fout, "  return eax;");
5556
5557         last_arith_dst = NULL;
5558         delayed_flag_op = NULL;
5559         break;
5560
5561       case OP_PUSH:
5562         out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
5563         if (po->p_argnum != 0) {
5564           // special case - saved func arg
5565           fprintf(fout, "  %s = %s;",
5566             saved_arg_name(buf2, sizeof(buf2),
5567               po->p_arggrp, po->p_argnum), buf1);
5568           break;
5569         }
5570         else if (po->flags & OPF_RSAVE) {
5571           fprintf(fout, "  s_%s = %s;", buf1, buf1);
5572           break;
5573         }
5574         else if (po->flags & OPF_PPUSH) {
5575           tmp_op = po->datap;
5576           ferr_assert(po, tmp_op != NULL);
5577           out_dst_opr(buf2, sizeof(buf2), po, &tmp_op->operand[0]);
5578           fprintf(fout, "  pp_%s = %s;", buf2, buf1);
5579           break;
5580         }
5581         else if (g_func_pp->is_userstack) {
5582           fprintf(fout, "  *(--esp) = %s;", buf1);
5583           break;
5584         }
5585         if (!(g_ida_func_attr & IDAFA_NORETURN))
5586           ferr(po, "stray push encountered\n");
5587         no_output = 1;
5588         break;
5589
5590       case OP_POP:
5591         out_dst_opr(buf1, sizeof(buf1), po, &po->operand[0]);
5592         if (po->flags & OPF_RSAVE) {
5593           fprintf(fout, "  %s = s_%s;", buf1, buf1);
5594           break;
5595         }
5596         else if (po->flags & OPF_PPUSH) {
5597           // push/pop graph
5598           ferr_assert(po, po->datap == NULL);
5599           fprintf(fout, "  %s = pp_%s;", buf1, buf1);
5600           break;
5601         }
5602         else if (po->datap != NULL) {
5603           // push/pop pair
5604           tmp_op = po->datap;
5605           fprintf(fout, "  %s = %s;", buf1,
5606             out_src_opr(buf2, sizeof(buf2),
5607               tmp_op, &tmp_op->operand[0],
5608               default_cast_to(buf3, sizeof(buf3), &po->operand[0]), 0));
5609           break;
5610         }
5611         else if (g_func_pp->is_userstack) {
5612           fprintf(fout, "  %s = *esp++;", buf1);
5613           break;
5614         }
5615         else
5616           ferr(po, "stray pop encountered\n");
5617         break;
5618
5619       case OP_NOP:
5620         no_output = 1;
5621         break;
5622
5623       // mmx
5624       case OP_EMMS:
5625         strcpy(g_comment, "(emms)");
5626         break;
5627
5628       default:
5629         no_output = 1;
5630         ferr(po, "unhandled op type %d, flags %x\n",
5631           po->op, po->flags);
5632         break;
5633     }
5634
5635     if (g_comment[0] != 0) {
5636       char *p = g_comment;
5637       while (my_isblank(*p))
5638         p++;
5639       fprintf(fout, "  // %s", p);
5640       g_comment[0] = 0;
5641       no_output = 0;
5642     }
5643     if (!no_output)
5644       fprintf(fout, "\n");
5645
5646     // some sanity checking
5647     if (po->flags & OPF_REP) {
5648       if (po->op != OP_STOS && po->op != OP_MOVS
5649           && po->op != OP_CMPS && po->op != OP_SCAS)
5650         ferr(po, "unexpected rep\n");
5651       if (!(po->flags & (OPF_REPZ|OPF_REPNZ))
5652           && (po->op == OP_CMPS || po->op == OP_SCAS))
5653         ferr(po, "cmps/scas with plain rep\n");
5654     }
5655     if ((po->flags & (OPF_REPZ|OPF_REPNZ))
5656         && po->op != OP_CMPS && po->op != OP_SCAS)
5657       ferr(po, "unexpected repz/repnz\n");
5658
5659     if (pfomask != 0)
5660       ferr(po, "missed flag calc, pfomask=%x\n", pfomask);
5661
5662     // see is delayed flag stuff is still valid
5663     if (delayed_flag_op != NULL && delayed_flag_op != po) {
5664       if (is_any_opr_modified(delayed_flag_op, po, 0))
5665         delayed_flag_op = NULL;
5666     }
5667
5668     if (last_arith_dst != NULL && last_arith_dst != &po->operand[0]) {
5669       if (is_opr_modified(last_arith_dst, po))
5670         last_arith_dst = NULL;
5671     }
5672
5673     label_pending = 0;
5674   }
5675
5676   if (g_stack_fsz && !g_stack_frame_used)
5677     fprintf(fout, "  (void)sf;\n");
5678
5679   fprintf(fout, "}\n\n");
5680
5681   gen_x_cleanup(opcnt);
5682 }
5683
5684 static void gen_x_cleanup(int opcnt)
5685 {
5686   int i;
5687
5688   for (i = 0; i < opcnt; i++) {
5689     struct label_ref *lr, *lr_del;
5690
5691     lr = g_label_refs[i].next;
5692     while (lr != NULL) {
5693       lr_del = lr;
5694       lr = lr->next;
5695       free(lr_del);
5696     }
5697     g_label_refs[i].i = -1;
5698     g_label_refs[i].next = NULL;
5699
5700     if (ops[i].op == OP_CALL) {
5701       if (ops[i].pp)
5702         proto_release(ops[i].pp);
5703     }
5704   }
5705   g_func_pp = NULL;
5706 }
5707
5708 struct func_proto_dep;
5709
5710 struct func_prototype {
5711   char name[NAMELEN];
5712   int id;
5713   int argc_stack;
5714   int regmask_dep;
5715   int has_ret:3;                 // -1, 0, 1: unresolved, no, yes
5716   unsigned int dep_resolved:1;
5717   unsigned int is_stdcall:1;
5718   struct func_proto_dep *dep_func;
5719   int dep_func_cnt;
5720   const struct parsed_proto *pp; // seed pp, if any
5721 };
5722
5723 struct func_proto_dep {
5724   char *name;
5725   struct func_prototype *proto;
5726   int regmask_live;             // .. at the time of call
5727   unsigned int ret_dep:1;       // return from this is caller's return
5728 };
5729
5730 static struct func_prototype *hg_fp;
5731 static int hg_fp_cnt;
5732
5733 static struct scanned_var {
5734   char name[NAMELEN];
5735   enum opr_lenmod lmod;
5736   unsigned int is_seeded:1;
5737   unsigned int is_c_str:1;
5738   const struct parsed_proto *pp; // seed pp, if any
5739 } *hg_vars;
5740 static int hg_var_cnt;
5741
5742 static void output_hdr_fp(FILE *fout, const struct func_prototype *fp,
5743   int count);
5744
5745 static struct func_proto_dep *hg_fp_find_dep(struct func_prototype *fp,
5746   const char *name)
5747 {
5748   int i;
5749
5750   for (i = 0; i < fp->dep_func_cnt; i++)
5751     if (IS(fp->dep_func[i].name, name))
5752       return &fp->dep_func[i];
5753
5754   return NULL;
5755 }
5756
5757 static void hg_fp_add_dep(struct func_prototype *fp, const char *name)
5758 {
5759   // is it a dupe?
5760   if (hg_fp_find_dep(fp, name))
5761     return;
5762
5763   if ((fp->dep_func_cnt & 0xff) == 0) {
5764     fp->dep_func = realloc(fp->dep_func,
5765       sizeof(fp->dep_func[0]) * (fp->dep_func_cnt + 0x100));
5766     my_assert_not(fp->dep_func, NULL);
5767     memset(&fp->dep_func[fp->dep_func_cnt], 0,
5768       sizeof(fp->dep_func[0]) * 0x100);
5769   }
5770   fp->dep_func[fp->dep_func_cnt].name = strdup(name);
5771   fp->dep_func_cnt++;
5772 }
5773
5774 static int hg_fp_cmp_name(const void *p1_, const void *p2_)
5775 {
5776   const struct func_prototype *p1 = p1_, *p2 = p2_;
5777   return strcmp(p1->name, p2->name);
5778 }
5779
5780 #if 0
5781 static int hg_fp_cmp_id(const void *p1_, const void *p2_)
5782 {
5783   const struct func_prototype *p1 = p1_, *p2 = p2_;
5784   return p1->id - p2->id;
5785 }
5786 #endif
5787
5788 // recursive register dep pass
5789 // - track saved regs (part 2)
5790 // - try to figure out arg-regs
5791 // - calculate reg deps
5792 static void gen_hdr_dep_pass(int i, int opcnt, unsigned char *cbits,
5793   struct func_prototype *fp, int regmask_save, int regmask_dst,
5794   int *regmask_dep, int *has_ret)
5795 {
5796   struct func_proto_dep *dep;
5797   struct parsed_op *po;
5798   int from_caller = 0;
5799   int depth;
5800   int j, l;
5801   int reg;
5802   int ret;
5803
5804   for (; i < opcnt; i++)
5805   {
5806     if (cbits[i >> 3] & (1 << (i & 7)))
5807       return;
5808     cbits[i >> 3] |= (1 << (i & 7));
5809
5810     po = &ops[i];
5811
5812     if ((po->flags & OPF_JMP) && po->op != OP_CALL) {
5813       if (po->btj != NULL) {
5814         // jumptable
5815         for (j = 0; j < po->btj->count; j++) {
5816           check_i(po, po->btj->d[j].bt_i);
5817           gen_hdr_dep_pass(po->btj->d[j].bt_i, opcnt, cbits, fp,
5818             regmask_save, regmask_dst, regmask_dep, has_ret);
5819         }
5820         return;
5821       }
5822
5823       check_i(po, po->bt_i);
5824       if (po->flags & OPF_CJMP) {
5825         gen_hdr_dep_pass(po->bt_i, opcnt, cbits, fp,
5826           regmask_save, regmask_dst, regmask_dep, has_ret);
5827       }
5828       else {
5829         i = po->bt_i - 1;
5830       }
5831       continue;
5832     }
5833
5834     if (po->flags & OPF_FARG)
5835       /* (just calculate register deps) */;
5836     else if (po->op == OP_PUSH && po->operand[0].type == OPT_REG)
5837     {
5838       reg = po->operand[0].reg;
5839       if (reg < 0)
5840         ferr(po, "reg not set for push?\n");
5841
5842       if (po->flags & OPF_RSAVE) {
5843         regmask_save |= 1 << reg;
5844         continue;
5845       }
5846       if (po->flags & OPF_DONE)
5847         continue;
5848
5849       depth = 0;
5850       ret = scan_for_pop(i + 1, opcnt,
5851               po->operand[0].name, i + opcnt * 2, 0, &depth, 0);
5852       if (ret == 1) {
5853         regmask_save |= 1 << reg;
5854         po->flags |= OPF_RMD;
5855         scan_for_pop(i + 1, opcnt,
5856           po->operand[0].name, i + opcnt * 3, 0, &depth, 1);
5857         continue;
5858       }
5859     }
5860     else if (po->flags & OPF_RMD)
5861       continue;
5862     else if (po->op == OP_CALL) {
5863       po->regmask_dst |= 1 << xAX;
5864
5865       dep = hg_fp_find_dep(fp, po->operand[0].name);
5866       if (dep != NULL)
5867         dep->regmask_live = regmask_save | regmask_dst;
5868     }
5869     else if (po->op == OP_RET) {
5870       if (po->operand_cnt > 0) {
5871         fp->is_stdcall = 1;
5872         if (fp->argc_stack >= 0
5873             && fp->argc_stack != po->operand[0].val / 4)
5874           ferr(po, "ret mismatch? (%d)\n", fp->argc_stack * 4);
5875         fp->argc_stack = po->operand[0].val / 4;
5876       }
5877     }
5878
5879     if (*has_ret != 0 && (po->flags & OPF_TAIL)) {
5880       if (po->op == OP_CALL) {
5881         j = i;
5882         ret = 1;
5883       }
5884       else {
5885         struct parsed_opr opr = { 0, };
5886         opr.type = OPT_REG;
5887         opr.reg = xAX;
5888         j = -1;
5889         from_caller = 0;
5890         ret = resolve_origin(i, &opr, i + opcnt * 4, &j, &from_caller);
5891       }
5892
5893       if (ret == -1 && from_caller) {
5894         // unresolved eax - probably void func
5895         *has_ret = 0;
5896       }
5897       else {
5898         if (ops[j].op == OP_CALL) {
5899           dep = hg_fp_find_dep(fp, po->operand[0].name);
5900           if (dep != NULL)
5901             dep->ret_dep = 1;
5902           else
5903             *has_ret = 1;
5904         }
5905         else
5906           *has_ret = 1;
5907       }
5908     }
5909
5910     l = regmask_save | regmask_dst;
5911     if (g_bp_frame && !(po->flags & OPF_EBP_S))
5912       l |= 1 << xBP;
5913
5914     l = po->regmask_src & ~l;
5915 #if 0
5916     if (l)
5917       fnote(po, "dep |= %04x, dst %04x, save %04x (f %x)\n",
5918         l, regmask_dst, regmask_save, po->flags);
5919 #endif
5920     *regmask_dep |= l;
5921     regmask_dst |= po->regmask_dst;
5922
5923     if (po->flags & OPF_TAIL)
5924       return;
5925   }
5926 }
5927
5928 static void gen_hdr(const char *funcn, int opcnt)
5929 {
5930   int save_arg_vars[MAX_ARG_GRP] = { 0, };
5931   unsigned char cbits[MAX_OPS / 8];
5932   const struct parsed_proto *pp_c;
5933   struct parsed_proto *pp;
5934   struct func_prototype *fp;
5935   struct parsed_data *pd;
5936   struct parsed_op *po;
5937   const char *tmpname;
5938   int regmask_dummy = 0;
5939   int regmask_dep;
5940   int max_bp_offset = 0;
5941   int has_ret;
5942   int i, j, l, ret;
5943
5944   if ((hg_fp_cnt & 0xff) == 0) {
5945     hg_fp = realloc(hg_fp, sizeof(hg_fp[0]) * (hg_fp_cnt + 0x100));
5946     my_assert_not(hg_fp, NULL);
5947     memset(hg_fp + hg_fp_cnt, 0, sizeof(hg_fp[0]) * 0x100);
5948   }
5949
5950   fp = &hg_fp[hg_fp_cnt];
5951   snprintf(fp->name, sizeof(fp->name), "%s", funcn);
5952   fp->id = hg_fp_cnt;
5953   fp->argc_stack = -1;
5954   hg_fp_cnt++;
5955
5956   // perhaps already in seed header?
5957   fp->pp = proto_parse(g_fhdr, funcn, 1);
5958   if (fp->pp != NULL) {
5959     fp->argc_stack = fp->pp->argc_stack;
5960     fp->is_stdcall = fp->pp->is_stdcall;
5961     fp->regmask_dep = get_pp_arg_regmask(fp->pp);
5962     fp->has_ret = !IS(fp->pp->ret_type.name, "void");
5963     return;
5964   }
5965
5966   g_bp_frame = g_sp_frame = g_stack_fsz = 0;
5967   g_stack_frame_used = 0;
5968
5969   // pass1:
5970   // - handle ebp/esp frame, remove ops related to it
5971   scan_prologue_epilogue(opcnt);
5972
5973   // pass2:
5974   // - collect calls
5975   // - resolve all branches
5976   for (i = 0; i < opcnt; i++)
5977   {
5978     po = &ops[i];
5979     po->bt_i = -1;
5980     po->btj = NULL;
5981
5982     if (po->flags & (OPF_RMD|OPF_DONE))
5983       continue;
5984
5985     if (po->op == OP_CALL) {
5986       tmpname = opr_name(po, 0);
5987       pp = NULL;
5988       if (po->operand[0].type == OPT_LABEL) {
5989         hg_fp_add_dep(fp, tmpname);
5990
5991         // perhaps a call to already known func?
5992         pp_c = proto_parse(g_fhdr, tmpname, 1);
5993         if (pp_c != NULL)
5994           pp = proto_clone(pp_c);
5995       }
5996       else if (po->datap != NULL) {
5997         pp = calloc(1, sizeof(*pp));
5998         my_assert_not(pp, NULL);
5999
6000         ret = parse_protostr(po->datap, pp);
6001         if (ret < 0)
6002           ferr(po, "bad protostr supplied: %s\n", (char *)po->datap);
6003         free(po->datap);
6004         po->datap = NULL;
6005       }
6006       if (pp != NULL && pp->is_noreturn)
6007         po->flags |= OPF_TAIL;
6008
6009       po->pp = pp;
6010       continue;
6011     }
6012
6013     if (!(po->flags & OPF_JMP) || po->op == OP_RET)
6014       continue;
6015
6016     if (po->operand[0].type == OPT_REGMEM) {
6017       pd = try_resolve_jumptab(i, opcnt);
6018       if (pd == NULL)
6019         goto tailcall;
6020
6021       po->btj = pd;
6022       continue;
6023     }
6024
6025     for (l = 0; l < opcnt; l++) {
6026       if (g_labels[l] != NULL
6027           && IS(po->operand[0].name, g_labels[l]))
6028       {
6029         add_label_ref(&g_label_refs[l], i);
6030         po->bt_i = l;
6031         break;
6032       }
6033     }
6034
6035     if (po->bt_i != -1 || (po->flags & OPF_RMD))
6036       continue;
6037
6038     if (po->operand[0].type == OPT_LABEL)
6039       // assume tail call
6040       goto tailcall;
6041
6042     ferr(po, "unhandled branch\n");
6043
6044 tailcall:
6045     po->op = OP_CALL;
6046     po->flags |= OPF_TAIL;
6047     if (i > 0 && ops[i - 1].op == OP_POP)
6048       po->flags |= OPF_ATAIL;
6049     i--; // reprocess
6050   }
6051
6052   // pass3:
6053   // - remove dead labels
6054   // - handle push <const>/pop pairs
6055   for (i = 0; i < opcnt; i++)
6056   {
6057     if (g_labels[i] != NULL && g_label_refs[i].i == -1) {
6058       free(g_labels[i]);
6059       g_labels[i] = NULL;
6060     }
6061
6062     po = &ops[i];
6063     if (po->flags & (OPF_RMD|OPF_DONE))
6064       continue;
6065
6066     if (po->op == OP_PUSH && po->operand[0].type == OPT_CONST)
6067       scan_for_pop_const(i, opcnt, &regmask_dummy);
6068   }
6069
6070   // pass4:
6071   // - process trivial calls
6072   for (i = 0; i < opcnt; i++)
6073   {
6074     po = &ops[i];
6075     if (po->flags & (OPF_RMD|OPF_DONE))
6076       continue;
6077
6078     if (po->op == OP_CALL)
6079     {
6080       pp = process_call_early(i, opcnt, &j);
6081       if (pp != NULL) {
6082         if (!(po->flags & OPF_ATAIL))
6083           // since we know the args, try to collect them
6084           if (collect_call_args_early(po, i, pp, &regmask_dummy) != 0)
6085             pp = NULL;
6086       }
6087
6088       if (pp != NULL) {
6089         if (j >= 0) {
6090           // commit esp adjust
6091           ops[j].flags |= OPF_RMD;
6092           if (ops[j].op != OP_POP)
6093             patch_esp_adjust(&ops[j], pp->argc_stack * 4);
6094           else
6095             ops[j].flags |= OPF_DONE;
6096         }
6097
6098         po->flags |= OPF_DONE;
6099       }
6100     }
6101   }
6102
6103   // pass5:
6104   // - track saved regs (simple)
6105   // - process calls
6106   for (i = 0; i < opcnt; i++)
6107   {
6108     po = &ops[i];
6109     if (po->flags & (OPF_RMD|OPF_DONE))
6110       continue;
6111
6112     if (po->op == OP_PUSH && po->operand[0].type == OPT_REG)
6113     {
6114       ret = scan_for_pop_ret(i + 1, opcnt, po->operand[0].name, 0);
6115       if (ret == 0) {
6116         // regmask_save |= 1 << po->operand[0].reg; // do it later
6117         po->flags |= OPF_RSAVE | OPF_RMD | OPF_DONE;
6118         scan_for_pop_ret(i + 1, opcnt, po->operand[0].name, OPF_RMD);
6119       }
6120     }
6121     else if (po->op == OP_CALL && !(po->flags & OPF_DONE))
6122     {
6123       pp = process_call(i, opcnt);
6124
6125       if (!pp->is_unresolved && !(po->flags & OPF_ATAIL)) {
6126         // since we know the args, collect them
6127         ret = collect_call_args(po, i, pp, &regmask_dummy, save_arg_vars,
6128           i + opcnt * 1);
6129       }
6130     }
6131   }
6132
6133   // pass6
6134   memset(cbits, 0, sizeof(cbits));
6135   regmask_dep = 0;
6136   has_ret = -1;
6137
6138   gen_hdr_dep_pass(0, opcnt, cbits, fp, 0, 0, &regmask_dep, &has_ret);
6139
6140   // find unreachable code - must be fixed in IDA
6141   for (i = 0; i < opcnt; i++)
6142   {
6143     if (cbits[i >> 3] & (1 << (i & 7)))
6144       continue;
6145
6146     if (ops[i].op != OP_NOP)
6147       ferr(&ops[i], "unreachable code\n");
6148   }
6149
6150   if (has_ret == -1 && (regmask_dep & (1 << xAX)))
6151     has_ret = 1;
6152
6153   for (i = 0; i < g_eqcnt; i++) {
6154     if (g_eqs[i].offset > max_bp_offset && g_eqs[i].offset < 4*32)
6155       max_bp_offset = g_eqs[i].offset;
6156   }
6157
6158   if (fp->argc_stack < 0) {
6159     max_bp_offset = (max_bp_offset + 3) & ~3;
6160     fp->argc_stack = max_bp_offset / 4;
6161     if ((g_ida_func_attr & IDAFA_BP_FRAME) && fp->argc_stack > 0)
6162       fp->argc_stack--;
6163   }
6164
6165   fp->regmask_dep = regmask_dep & ~(1 << xSP);
6166   fp->has_ret = has_ret;
6167 #if 0
6168   printf("// has_ret %d, regmask_dep %x\n",
6169     fp->has_ret, fp->regmask_dep);
6170   output_hdr_fp(stdout, fp, 1);
6171   if (IS(funcn, "sub_100073FD")) exit(1);
6172 #endif
6173
6174   gen_x_cleanup(opcnt);
6175 }
6176
6177 static void hg_fp_resolve_deps(struct func_prototype *fp)
6178 {
6179   struct func_prototype fp_s;
6180   int dep;
6181   int i;
6182
6183   // this thing is recursive, so mark first..
6184   fp->dep_resolved = 1;
6185
6186   for (i = 0; i < fp->dep_func_cnt; i++) {
6187     strcpy(fp_s.name, fp->dep_func[i].name);
6188     fp->dep_func[i].proto = bsearch(&fp_s, hg_fp, hg_fp_cnt,
6189       sizeof(hg_fp[0]), hg_fp_cmp_name);
6190     if (fp->dep_func[i].proto != NULL) {
6191       if (!fp->dep_func[i].proto->dep_resolved)
6192         hg_fp_resolve_deps(fp->dep_func[i].proto);
6193
6194       dep = ~fp->dep_func[i].regmask_live
6195            & fp->dep_func[i].proto->regmask_dep;
6196       fp->regmask_dep |= dep;
6197       // printf("dep %s %s |= %x\n", fp->name,
6198       //   fp->dep_func[i].name, dep);
6199
6200       if (fp->has_ret == -1)
6201         fp->has_ret = fp->dep_func[i].proto->has_ret;
6202     }
6203   }
6204 }
6205
6206 static void output_hdr_fp(FILE *fout, const struct func_prototype *fp,
6207   int count)
6208 {
6209   const struct parsed_proto *pp;
6210   char *p, namebuf[NAMELEN];
6211   const char *name;
6212   int regmask_dep;
6213   int argc_stack;
6214   int j, arg;
6215
6216   for (; count > 0; count--, fp++) {
6217     if (fp->has_ret == -1)
6218       fprintf(fout, "// ret unresolved\n");
6219 #if 0
6220     fprintf(fout, "// dep:");
6221     for (j = 0; j < fp->dep_func_cnt; j++) {
6222       fprintf(fout, " %s/", fp->dep_func[j].name);
6223       if (fp->dep_func[j].proto != NULL)
6224         fprintf(fout, "%04x/%d", fp->dep_func[j].proto->regmask_dep,
6225           fp->dep_func[j].proto->has_ret);
6226     }
6227     fprintf(fout, "\n");
6228 #endif
6229
6230     p = strchr(fp->name, '@');
6231     if (p != NULL) {
6232       memcpy(namebuf, fp->name, p - fp->name);
6233       namebuf[p - fp->name] = 0;
6234       name = namebuf;
6235     }
6236     else
6237       name = fp->name;
6238     if (name[0] == '_')
6239       name++;
6240
6241     pp = proto_parse(g_fhdr, name, 1);
6242     if (pp != NULL && pp->is_include)
6243       continue;
6244
6245     if (fp->pp != NULL) {
6246       // part of seed, output later
6247       continue;
6248     }
6249
6250     regmask_dep = fp->regmask_dep;
6251     argc_stack = fp->argc_stack;
6252
6253     fprintf(fout, "%-5s", fp->pp ? fp->pp->ret_type.name :
6254       (fp->has_ret ? "int" : "void"));
6255     if (regmask_dep && (fp->is_stdcall || argc_stack == 0)
6256       && (regmask_dep & ~((1 << xCX) | (1 << xDX))) == 0)
6257     {
6258       fprintf(fout, "  __fastcall    ");
6259       if (!(regmask_dep & (1 << xDX)) && argc_stack == 0)
6260         argc_stack = 1;
6261       else
6262         argc_stack += 2;
6263       regmask_dep = 0;
6264     }
6265     else if (regmask_dep && !fp->is_stdcall) {
6266       fprintf(fout, "/*__usercall*/  ");
6267     }
6268     else if (regmask_dep) {
6269       fprintf(fout, "/*__userpurge*/ ");
6270     }
6271     else if (fp->is_stdcall)
6272       fprintf(fout, "  __stdcall     ");
6273     else
6274       fprintf(fout, "  __cdecl       ");
6275
6276     fprintf(fout, "%s(", name);
6277
6278     arg = 0;
6279     for (j = 0; j < xSP; j++) {
6280       if (regmask_dep & (1 << j)) {
6281         arg++;
6282         if (arg != 1)
6283           fprintf(fout, ", ");
6284         if (fp->pp != NULL)
6285           fprintf(fout, "%s", fp->pp->arg[arg - 1].type.name);
6286         else
6287           fprintf(fout, "int");
6288         fprintf(fout, " a%d/*<%s>*/", arg, regs_r32[j]);
6289       }
6290     }
6291
6292     for (j = 0; j < argc_stack; j++) {
6293       arg++;
6294       if (arg != 1)
6295         fprintf(fout, ", ");
6296       if (fp->pp != NULL) {
6297         fprintf(fout, "%s", fp->pp->arg[arg - 1].type.name);
6298         if (!fp->pp->arg[arg - 1].type.is_ptr)
6299           fprintf(fout, " ");
6300       }
6301       else
6302         fprintf(fout, "int ");
6303       fprintf(fout, "a%d", arg);
6304     }
6305
6306     fprintf(fout, ");\n");
6307   }
6308 }
6309
6310 static void output_hdr(FILE *fout)
6311 {
6312   static const char *lmod_c_names[] = {
6313     [OPLM_UNSPEC] = "???",
6314     [OPLM_BYTE]  = "uint8_t",
6315     [OPLM_WORD]  = "uint16_t",
6316     [OPLM_DWORD] = "uint32_t",
6317     [OPLM_QWORD] = "uint64_t",
6318   };
6319   const struct scanned_var *var;
6320   char line[256] = { 0, };
6321   int i;
6322
6323   // resolve deps
6324   qsort(hg_fp, hg_fp_cnt, sizeof(hg_fp[0]), hg_fp_cmp_name);
6325   for (i = 0; i < hg_fp_cnt; i++)
6326     hg_fp_resolve_deps(&hg_fp[i]);
6327
6328   // note: messes up .proto ptr, don't use
6329   //qsort(hg_fp, hg_fp_cnt, sizeof(hg_fp[0]), hg_fp_cmp_id);
6330
6331   // output variables
6332   for (i = 0; i < hg_var_cnt; i++) {
6333     var = &hg_vars[i];
6334
6335     if (var->pp != NULL)
6336       // part of seed
6337       continue;
6338     else if (var->is_c_str)
6339       fprintf(fout, "extern %-8s %s[];", "char", var->name);
6340     else
6341       fprintf(fout, "extern %-8s %s;",
6342         lmod_c_names[var->lmod], var->name);
6343
6344     if (var->is_seeded)
6345       fprintf(fout, " // seeded");
6346     fprintf(fout, "\n");
6347   }
6348
6349   fprintf(fout, "\n");
6350
6351   // output function prototypes
6352   output_hdr_fp(fout, hg_fp, hg_fp_cnt);
6353
6354   // seed passthrough
6355   fprintf(fout, "\n// - seed -\n");
6356
6357   rewind(g_fhdr);
6358   while (fgets(line, sizeof(line), g_fhdr))
6359     fwrite(line, 1, strlen(line), fout);
6360 }
6361
6362 // read a line, truncating it if it doesn't fit
6363 static char *my_fgets(char *s, size_t size, FILE *stream)
6364 {
6365   char *ret, *ret2;
6366   char buf[64];
6367   int p;
6368
6369   p = size - 2;
6370   if (p >= 0)
6371     s[p] = 0;
6372
6373   ret = fgets(s, size, stream);
6374   if (ret != NULL && p >= 0 && s[p] != 0 && s[p] != '\n') {
6375     p = sizeof(buf) - 2;
6376     do {
6377       buf[p] = 0;
6378       ret2 = fgets(buf, sizeof(buf), stream);
6379     }
6380     while (ret2 != NULL && buf[p] != 0 && buf[p] != '\n');
6381   }
6382
6383   return ret;
6384 }
6385
6386 // '=' needs special treatment
6387 // also ' quote
6388 static char *next_word_s(char *w, size_t wsize, char *s)
6389 {
6390   size_t i;
6391
6392   s = sskip(s);
6393
6394   i = 0;
6395   if (*s == '\'') {
6396     w[0] = s[0];
6397     for (i = 1; i < wsize - 1; i++) {
6398       if (s[i] == 0) {
6399         printf("warning: missing closing quote: \"%s\"\n", s);
6400         break;
6401       }
6402       if (s[i] == '\'')
6403         break;
6404       w[i] = s[i];
6405     }
6406   }
6407
6408   for (; i < wsize - 1; i++) {
6409     if (s[i] == 0 || my_isblank(s[i]) || (s[i] == '=' && i > 0))
6410       break;
6411     w[i] = s[i];
6412   }
6413   w[i] = 0;
6414
6415   if (s[i] != 0 && !my_isblank(s[i]) && s[i] != '=')
6416     printf("warning: '%s' truncated\n", w);
6417
6418   return s + i;
6419 }
6420
6421 static void scan_variables(FILE *fasm)
6422 {
6423   struct scanned_var *var;
6424   char line[256] = { 0, };
6425   char words[3][256];
6426   char *p = NULL;
6427   int wordc;
6428   int l;
6429
6430   while (!feof(fasm))
6431   {
6432     // skip to next data section
6433     while (my_fgets(line, sizeof(line), fasm))
6434     {
6435       asmln++;
6436
6437       p = sskip(line);
6438       if (*p == 0 || *p == ';')
6439         continue;
6440
6441       p = sskip(next_word_s(words[0], sizeof(words[0]), p));
6442       if (*p == 0 || *p == ';')
6443         continue;
6444
6445       if (*p != 's' || !IS_START(p, "segment para public"))
6446         continue;
6447
6448       break;
6449     }
6450
6451     if (p == NULL || !IS_START(p, "segment para public"))
6452       break;
6453     p = sskip(p + 19);
6454
6455     if (!IS_START(p, "'DATA'"))
6456       continue;
6457
6458     // now process it
6459     while (my_fgets(line, sizeof(line), fasm))
6460     {
6461       asmln++;
6462
6463       p = line;
6464       if (my_isblank(*p))
6465         continue;
6466
6467       p = sskip(p);
6468       if (*p == 0 || *p == ';')
6469         continue;
6470
6471       for (wordc = 0; wordc < ARRAY_SIZE(words); wordc++) {
6472         words[wordc][0] = 0;
6473         p = sskip(next_word_s(words[wordc], sizeof(words[0]), p));
6474         if (*p == 0 || *p == ';') {
6475           wordc++;
6476           break;
6477         }
6478       }
6479
6480       if (wordc == 2 && IS(words[1], "ends"))
6481         break;
6482       if (wordc < 2)
6483         continue;
6484
6485       if ((hg_var_cnt & 0xff) == 0) {
6486         hg_vars = realloc(hg_vars, sizeof(hg_vars[0])
6487                    * (hg_var_cnt + 0x100));
6488         my_assert_not(hg_vars, NULL);
6489         memset(hg_vars + hg_var_cnt, 0, sizeof(hg_vars[0]) * 0x100);
6490       }
6491
6492       var = &hg_vars[hg_var_cnt++];
6493       snprintf(var->name, sizeof(var->name), "%s", words[0]);
6494
6495       // maybe already in seed header?
6496       var->pp = proto_parse(g_fhdr, var->name, 1);
6497       if (var->pp != NULL) {
6498         if (var->pp->is_fptr) {
6499           var->lmod = OPLM_DWORD;
6500           //var->is_ptr = 1;
6501         }
6502         else if (var->pp->is_func)
6503           aerr("func?\n");
6504         else if (!guess_lmod_from_c_type(&var->lmod, &var->pp->type))
6505           aerr("unhandled C type '%s' for '%s'\n",
6506             var->pp->type.name, var->name);
6507
6508         var->is_seeded = 1;
6509         continue;
6510       }
6511
6512       if      (IS(words[1], "dd"))
6513         var->lmod = OPLM_DWORD;
6514       else if (IS(words[1], "dw"))
6515         var->lmod = OPLM_WORD;
6516       else if (IS(words[1], "db")) {
6517         var->lmod = OPLM_BYTE;
6518         if (wordc >= 3 && (l = strlen(words[2])) > 4) {
6519           if (words[2][0] == '\'' && IS(words[2] + l - 2, ",0"))
6520             var->is_c_str = 1;
6521         }
6522       }
6523       else if (IS(words[1], "dq"))
6524         var->lmod = OPLM_QWORD;
6525       //else if (IS(words[1], "dt"))
6526       else
6527         aerr("type '%s' not known\n", words[1]);
6528     }
6529   }
6530
6531   rewind(fasm);
6532   asmln = 0;
6533 }
6534
6535 static void set_label(int i, const char *name)
6536 {
6537   const char *p;
6538   int len;
6539
6540   len = strlen(name);
6541   p = strchr(name, ':');
6542   if (p != NULL)
6543     len = p - name;
6544
6545   if (g_labels[i] != NULL && !IS_START(g_labels[i], "algn_"))
6546     aerr("dupe label '%s' vs '%s'?\n", name, g_labels[i]);
6547   g_labels[i] = realloc(g_labels[i], len + 1);
6548   my_assert_not(g_labels[i], NULL);
6549   memcpy(g_labels[i], name, len);
6550   g_labels[i][len] = 0;
6551 }
6552
6553 struct chunk_item {
6554   char *name;
6555   long fptr;
6556   int asmln;
6557 };
6558
6559 static struct chunk_item *func_chunks;
6560 static int func_chunk_cnt;
6561 static int func_chunk_alloc;
6562
6563 static void add_func_chunk(FILE *fasm, const char *name, int line)
6564 {
6565   if (func_chunk_cnt >= func_chunk_alloc) {
6566     func_chunk_alloc *= 2;
6567     func_chunks = realloc(func_chunks,
6568       func_chunk_alloc * sizeof(func_chunks[0]));
6569     my_assert_not(func_chunks, NULL);
6570   }
6571   func_chunks[func_chunk_cnt].fptr = ftell(fasm);
6572   func_chunks[func_chunk_cnt].name = strdup(name);
6573   func_chunks[func_chunk_cnt].asmln = line;
6574   func_chunk_cnt++;
6575 }
6576
6577 static int cmp_chunks(const void *p1, const void *p2)
6578 {
6579   const struct chunk_item *c1 = p1, *c2 = p2;
6580   return strcmp(c1->name, c2->name);
6581 }
6582
6583 static int cmpstringp(const void *p1, const void *p2)
6584 {
6585   return strcmp(*(char * const *)p1, *(char * const *)p2);
6586 }
6587
6588 static void scan_ahead(FILE *fasm)
6589 {
6590   char words[2][256];
6591   char line[256];
6592   long oldpos;
6593   int oldasmln;
6594   int wordc;
6595   char *p;
6596   int i;
6597
6598   oldpos = ftell(fasm);
6599   oldasmln = asmln;
6600
6601   while (my_fgets(line, sizeof(line), fasm))
6602   {
6603     wordc = 0;
6604     asmln++;
6605
6606     p = sskip(line);
6607     if (*p == 0)
6608       continue;
6609
6610     if (*p == ';')
6611     {
6612       // get rid of random tabs
6613       for (i = 0; line[i] != 0; i++)
6614         if (line[i] == '\t')
6615           line[i] = ' ';
6616
6617       if (p[2] == 'S' && IS_START(p, "; START OF FUNCTION CHUNK FOR "))
6618       {
6619         p += 30;
6620         next_word(words[0], sizeof(words[0]), p);
6621         if (words[0][0] == 0)
6622           aerr("missing name for func chunk?\n");
6623
6624         add_func_chunk(fasm, words[0], asmln);
6625       }
6626       else if (IS_START(p, "; sctend"))
6627         break;
6628
6629       continue;
6630     } // *p == ';'
6631
6632     for (wordc = 0; wordc < ARRAY_SIZE(words); wordc++) {
6633       words[wordc][0] = 0;
6634       p = sskip(next_word_s(words[wordc], sizeof(words[0]), p));
6635       if (*p == 0 || *p == ';') {
6636         wordc++;
6637         break;
6638       }
6639     }
6640
6641     if (wordc == 2 && IS(words[1], "ends"))
6642       break;
6643   }
6644
6645   fseek(fasm, oldpos, SEEK_SET);
6646   asmln = oldasmln;
6647 }
6648
6649 int main(int argc, char *argv[])
6650 {
6651   FILE *fout, *fasm, *frlist;
6652   struct parsed_data *pd = NULL;
6653   int pd_alloc = 0;
6654   char **rlist = NULL;
6655   int rlist_len = 0;
6656   int rlist_alloc = 0;
6657   int func_chunks_used = 0;
6658   int func_chunks_sorted = 0;
6659   int func_chunk_i = -1;
6660   long func_chunk_ret = 0;
6661   int func_chunk_ret_ln = 0;
6662   int scanned_ahead = 0;
6663   char line[256];
6664   char words[20][256];
6665   enum opr_lenmod lmod;
6666   char *sctproto = NULL;
6667   int in_func = 0;
6668   int pending_endp = 0;
6669   int skip_func = 0;
6670   int skip_warned = 0;
6671   int eq_alloc;
6672   int verbose = 0;
6673   int multi_seg = 0;
6674   int end = 0;
6675   int arg_out;
6676   int arg;
6677   int pi = 0;
6678   int i, j;
6679   int ret, len;
6680   char *p;
6681   int wordc;
6682
6683   for (arg = 1; arg < argc; arg++) {
6684     if (IS(argv[arg], "-v"))
6685       verbose = 1;
6686     else if (IS(argv[arg], "-rf"))
6687       g_allow_regfunc = 1;
6688     else if (IS(argv[arg], "-m"))
6689       multi_seg = 1;
6690     else if (IS(argv[arg], "-hdr"))
6691       g_header_mode = g_quiet_pp = g_allow_regfunc = 1;
6692     else
6693       break;
6694   }
6695
6696   if (argc < arg + 3) {
6697     printf("usage:\n%s [-v] [-rf] [-m] <.c> <.asm> <hdr.h> [rlist]*\n"
6698            "%s -hdr <out.h> <.asm> <seed.h> [rlist]*\n"
6699            "options:\n"
6700            "  -hdr - header generation mode\n"
6701            "  -rf  - allow unannotated indirect calls\n"
6702            "  -m   - allow multiple .text sections\n"
6703            "[rlist] is a file with function names to skip,"
6704            " one per line\n",
6705       argv[0], argv[0]);
6706     return 1;
6707   }
6708
6709   arg_out = arg++;
6710
6711   asmfn = argv[arg++];
6712   fasm = fopen(asmfn, "r");
6713   my_assert_not(fasm, NULL);
6714
6715   hdrfn = argv[arg++];
6716   g_fhdr = fopen(hdrfn, "r");
6717   my_assert_not(g_fhdr, NULL);
6718
6719   rlist_alloc = 64;
6720   rlist = malloc(rlist_alloc * sizeof(rlist[0]));
6721   my_assert_not(rlist, NULL);
6722   // needs special handling..
6723   rlist[rlist_len++] = "__alloca_probe";
6724
6725   func_chunk_alloc = 32;
6726   func_chunks = malloc(func_chunk_alloc * sizeof(func_chunks[0]));
6727   my_assert_not(func_chunks, NULL);
6728
6729   memset(words, 0, sizeof(words));
6730
6731   for (; arg < argc; arg++) {
6732     frlist = fopen(argv[arg], "r");
6733     my_assert_not(frlist, NULL);
6734
6735     while (my_fgets(line, sizeof(line), frlist)) {
6736       p = sskip(line);
6737       if (*p == 0 || *p == ';')
6738         continue;
6739       if (*p == '#') {
6740         if (IS_START(p, "#if 0")
6741          || (g_allow_regfunc && IS_START(p, "#if NO_REGFUNC")))
6742         {
6743           skip_func = 1;
6744         }
6745         else if (IS_START(p, "#endif"))
6746           skip_func = 0;
6747         continue;
6748       }
6749       if (skip_func)
6750         continue;
6751
6752       p = next_word(words[0], sizeof(words[0]), p);
6753       if (words[0][0] == 0)
6754         continue;
6755
6756       if (rlist_len >= rlist_alloc) {
6757         rlist_alloc = rlist_alloc * 2 + 64;
6758         rlist = realloc(rlist, rlist_alloc * sizeof(rlist[0]));
6759         my_assert_not(rlist, NULL);
6760       }
6761       rlist[rlist_len++] = strdup(words[0]);
6762     }
6763     skip_func = 0;
6764
6765     fclose(frlist);
6766     frlist = NULL;
6767   }
6768
6769   if (rlist_len > 0)
6770     qsort(rlist, rlist_len, sizeof(rlist[0]), cmpstringp);
6771
6772   fout = fopen(argv[arg_out], "w");
6773   my_assert_not(fout, NULL);
6774
6775   eq_alloc = 128;
6776   g_eqs = malloc(eq_alloc * sizeof(g_eqs[0]));
6777   my_assert_not(g_eqs, NULL);
6778
6779   for (i = 0; i < ARRAY_SIZE(g_label_refs); i++) {
6780     g_label_refs[i].i = -1;
6781     g_label_refs[i].next = NULL;
6782   }
6783
6784   if (g_header_mode)
6785     scan_variables(fasm);
6786
6787   while (my_fgets(line, sizeof(line), fasm))
6788   {
6789     wordc = 0;
6790     asmln++;
6791
6792     p = sskip(line);
6793     if (*p == 0)
6794       continue;
6795
6796     // get rid of random tabs
6797     for (i = 0; line[i] != 0; i++)
6798       if (line[i] == '\t')
6799         line[i] = ' ';
6800
6801     if (*p == ';')
6802     {
6803       if (p[2] == '=' && IS_START(p, "; =============== S U B"))
6804         goto do_pending_endp; // eww..
6805
6806       if (p[2] == 'A' && IS_START(p, "; Attributes:"))
6807       {
6808         static const char *attrs[] = {
6809           "bp-based frame",
6810           "library function",
6811           "static",
6812           "noreturn",
6813           "thunk",
6814           "fpd=",
6815         };
6816
6817         // parse IDA's attribute-list comment
6818         g_ida_func_attr = 0;
6819         p = sskip(p + 13);
6820
6821         for (; *p != 0; p = sskip(p)) {
6822           for (i = 0; i < ARRAY_SIZE(attrs); i++) {
6823             if (!strncmp(p, attrs[i], strlen(attrs[i]))) {
6824               g_ida_func_attr |= 1 << i;
6825               p += strlen(attrs[i]);
6826               break;
6827             }
6828           }
6829           if (i == ARRAY_SIZE(attrs)) {
6830             anote("unparsed IDA attr: %s\n", p);
6831             break;
6832           }
6833           if (IS(attrs[i], "fpd=")) {
6834             p = next_word(words[0], sizeof(words[0]), p);
6835             // ignore for now..
6836           }
6837         }
6838       }
6839       else if (p[2] == 'S' && IS_START(p, "; START OF FUNCTION CHUNK FOR "))
6840       {
6841         p += 30;
6842         next_word(words[0], sizeof(words[0]), p);
6843         if (words[0][0] == 0)
6844           aerr("missing name for func chunk?\n");
6845
6846         if (!scanned_ahead) {
6847           add_func_chunk(fasm, words[0], asmln);
6848           func_chunks_sorted = 0;
6849         }
6850       }
6851       else if (p[2] == 'E' && IS_START(p, "; END OF FUNCTION CHUNK"))
6852       {
6853         if (func_chunk_i >= 0) {
6854           if (func_chunk_i < func_chunk_cnt
6855             && IS(func_chunks[func_chunk_i].name, g_func))
6856           {
6857             // move on to next chunk
6858             ret = fseek(fasm, func_chunks[func_chunk_i].fptr, SEEK_SET);
6859             if (ret)
6860               aerr("seek failed for '%s' chunk #%d\n",
6861                 g_func, func_chunk_i);
6862             asmln = func_chunks[func_chunk_i].asmln;
6863             func_chunk_i++;
6864           }
6865           else {
6866             if (func_chunk_ret == 0)
6867               aerr("no return from chunk?\n");
6868             fseek(fasm, func_chunk_ret, SEEK_SET);
6869             asmln = func_chunk_ret_ln;
6870             func_chunk_ret = 0;
6871             pending_endp = 1;
6872           }
6873         }
6874       }
6875       else if (p[2] == 'F' && IS_START(p, "; FUNCTION CHUNK AT ")) {
6876         func_chunks_used = 1;
6877         p += 20;
6878         if (IS_START(g_func, "sub_")) {
6879           unsigned long addr = strtoul(p, NULL, 16);
6880           unsigned long f_addr = strtoul(g_func + 4, NULL, 16);
6881           if (addr > f_addr && !scanned_ahead) {
6882             anote("scan_ahead caused by '%s', addr %lx\n",
6883               g_func, addr);
6884             scan_ahead(fasm);
6885             scanned_ahead = 1;
6886             func_chunks_sorted = 0;
6887           }
6888         }
6889       }
6890       continue;
6891     } // *p == ';'
6892
6893 parse_words:
6894     for (i = wordc; i < ARRAY_SIZE(words); i++)
6895       words[i][0] = 0;
6896     for (wordc = 0; wordc < ARRAY_SIZE(words); wordc++) {
6897       p = sskip(next_word_s(words[wordc], sizeof(words[0]), p));
6898       if (*p == 0 || *p == ';') {
6899         wordc++;
6900         break;
6901       }
6902     }
6903     if (*p != 0 && *p != ';')
6904       aerr("too many words\n");
6905
6906     // alow asm patches in comments
6907     if (*p == ';') {
6908       if (IS_START(p, "; sctpatch:")) {
6909         p = sskip(p + 11);
6910         if (*p == 0 || *p == ';')
6911           continue;
6912         goto parse_words; // lame
6913       }
6914       if (IS_START(p, "; sctproto:")) {
6915         sctproto = strdup(p + 11);
6916       }
6917       else if (IS_START(p, "; sctend")) {
6918         end = 1;
6919         if (!pending_endp)
6920           break;
6921       }
6922     }
6923
6924     if (wordc == 0) {
6925       // shouldn't happen
6926       awarn("wordc == 0?\n");
6927       continue;
6928     }
6929
6930     // don't care about this:
6931     if (words[0][0] == '.'
6932         || IS(words[0], "include")
6933         || IS(words[0], "assume") || IS(words[1], "segment")
6934         || IS(words[0], "align"))
6935     {
6936       continue;
6937     }
6938
6939 do_pending_endp:
6940     // do delayed endp processing to collect switch jumptables
6941     if (pending_endp) {
6942       if (in_func && !g_skip_func && !end && wordc >= 2
6943           && ((words[0][0] == 'd' && words[0][2] == 0)
6944               || (words[1][0] == 'd' && words[1][2] == 0)))
6945       {
6946         i = 1;
6947         if (words[1][0] == 'd' && words[1][2] == 0) {
6948           // label
6949           if (g_func_pd_cnt >= pd_alloc) {
6950             pd_alloc = pd_alloc * 2 + 16;
6951             g_func_pd = realloc(g_func_pd,
6952               sizeof(g_func_pd[0]) * pd_alloc);
6953             my_assert_not(g_func_pd, NULL);
6954           }
6955           pd = &g_func_pd[g_func_pd_cnt];
6956           g_func_pd_cnt++;
6957           memset(pd, 0, sizeof(*pd));
6958           strcpy(pd->label, words[0]);
6959           pd->type = OPT_CONST;
6960           pd->lmod = lmod_from_directive(words[1]);
6961           i = 2;
6962         }
6963         else {
6964           if (pd == NULL) {
6965             if (verbose)
6966               anote("skipping alignment byte?\n");
6967             continue;
6968           }
6969           lmod = lmod_from_directive(words[0]);
6970           if (lmod != pd->lmod)
6971             aerr("lmod change? %d->%d\n", pd->lmod, lmod);
6972         }
6973
6974         if (pd->count_alloc < pd->count + wordc) {
6975           pd->count_alloc = pd->count_alloc * 2 + 14 + wordc;
6976           pd->d = realloc(pd->d, sizeof(pd->d[0]) * pd->count_alloc);
6977           my_assert_not(pd->d, NULL);
6978         }
6979         for (; i < wordc; i++) {
6980           if (IS(words[i], "offset")) {
6981             pd->type = OPT_OFFSET;
6982             i++;
6983           }
6984           p = strchr(words[i], ',');
6985           if (p != NULL)
6986             *p = 0;
6987           if (pd->type == OPT_OFFSET)
6988             pd->d[pd->count].u.label = strdup(words[i]);
6989           else
6990             pd->d[pd->count].u.val = parse_number(words[i]);
6991           pd->d[pd->count].bt_i = -1;
6992           pd->count++;
6993         }
6994         continue;
6995       }
6996
6997       if (in_func && !g_skip_func) {
6998         if (g_header_mode)
6999           gen_hdr(g_func, pi);
7000         else
7001           gen_func(fout, g_fhdr, g_func, pi);
7002       }
7003
7004       pending_endp = 0;
7005       in_func = 0;
7006       g_ida_func_attr = 0;
7007       skip_warned = 0;
7008       g_skip_func = 0;
7009       g_func[0] = 0;
7010       func_chunks_used = 0;
7011       func_chunk_i = -1;
7012       if (pi != 0) {
7013         memset(&ops, 0, pi * sizeof(ops[0]));
7014         clear_labels(pi);
7015         pi = 0;
7016       }
7017       g_eqcnt = 0;
7018       for (i = 0; i < g_func_pd_cnt; i++) {
7019         pd = &g_func_pd[i];
7020         if (pd->type == OPT_OFFSET) {
7021           for (j = 0; j < pd->count; j++)
7022             free(pd->d[j].u.label);
7023         }
7024         free(pd->d);
7025         pd->d = NULL;
7026       }
7027       g_func_pd_cnt = 0;
7028       pd = NULL;
7029
7030       if (end)
7031         break;
7032       if (wordc == 0)
7033         continue;
7034     }
7035
7036     if (IS(words[1], "proc")) {
7037       if (in_func)
7038         aerr("proc '%s' while in_func '%s'?\n",
7039           words[0], g_func);
7040       p = words[0];
7041       if (bsearch(&p, rlist, rlist_len, sizeof(rlist[0]), cmpstringp))
7042         g_skip_func = 1;
7043       strcpy(g_func, words[0]);
7044       set_label(0, words[0]);
7045       in_func = 1;
7046       continue;
7047     }
7048
7049     if (IS(words[1], "endp"))
7050     {
7051       if (!in_func)
7052         aerr("endp '%s' while not in_func?\n", words[0]);
7053       if (!IS(g_func, words[0]))
7054         aerr("endp '%s' while in_func '%s'?\n",
7055           words[0], g_func);
7056
7057       if ((g_ida_func_attr & IDAFA_THUNK) && pi == 1
7058         && ops[0].op == OP_JMP && ops[0].operand[0].had_ds)
7059       {
7060         // import jump
7061         g_skip_func = 1;
7062       }
7063
7064       if (!g_skip_func && func_chunks_used) {
7065         // start processing chunks
7066         struct chunk_item *ci, key = { g_func, 0 };
7067
7068         func_chunk_ret = ftell(fasm);
7069         func_chunk_ret_ln = asmln;
7070         if (!func_chunks_sorted) {
7071           qsort(func_chunks, func_chunk_cnt,
7072             sizeof(func_chunks[0]), cmp_chunks);
7073           func_chunks_sorted = 1;
7074         }
7075         ci = bsearch(&key, func_chunks, func_chunk_cnt,
7076                sizeof(func_chunks[0]), cmp_chunks);
7077         if (ci == NULL)
7078           aerr("'%s' needs chunks, but none found\n", g_func);
7079         func_chunk_i = ci - func_chunks;
7080         for (; func_chunk_i > 0; func_chunk_i--)
7081           if (!IS(func_chunks[func_chunk_i - 1].name, g_func))
7082             break;
7083
7084         ret = fseek(fasm, func_chunks[func_chunk_i].fptr, SEEK_SET);
7085         if (ret)
7086           aerr("seek failed for '%s' chunk #%d\n", g_func, func_chunk_i);
7087         asmln = func_chunks[func_chunk_i].asmln;
7088         func_chunk_i++;
7089         continue;
7090       }
7091       pending_endp = 1;
7092       continue;
7093     }
7094
7095     if (wordc == 2 && IS(words[1], "ends")) {
7096       if (!multi_seg) {
7097         end = 1;
7098         if (pending_endp)
7099           goto do_pending_endp;
7100         break;
7101       }
7102
7103       // scan for next text segment
7104       while (my_fgets(line, sizeof(line), fasm)) {
7105         asmln++;
7106         p = sskip(line);
7107         if (*p == 0 || *p == ';')
7108           continue;
7109
7110         if (strstr(p, "segment para public 'CODE' use32"))
7111           break;
7112       }
7113
7114       continue;
7115     }
7116
7117     p = strchr(words[0], ':');
7118     if (p != NULL) {
7119       set_label(pi, words[0]);
7120       continue;
7121     }
7122
7123     if (!in_func || g_skip_func) {
7124       if (!skip_warned && !g_skip_func && g_labels[pi] != NULL) {
7125         if (verbose)
7126           anote("skipping from '%s'\n", g_labels[pi]);
7127         skip_warned = 1;
7128       }
7129       free(g_labels[pi]);
7130       g_labels[pi] = NULL;
7131       continue;
7132     }
7133
7134     if (wordc > 1 && IS(words[1], "="))
7135     {
7136       if (wordc != 5)
7137         aerr("unhandled equ, wc=%d\n", wordc);
7138       if (g_eqcnt >= eq_alloc) {
7139         eq_alloc *= 2;
7140         g_eqs = realloc(g_eqs, eq_alloc * sizeof(g_eqs[0]));
7141         my_assert_not(g_eqs, NULL);
7142       }
7143
7144       len = strlen(words[0]);
7145       if (len > sizeof(g_eqs[0].name) - 1)
7146         aerr("equ name too long: %d\n", len);
7147       strcpy(g_eqs[g_eqcnt].name, words[0]);
7148
7149       if (!IS(words[3], "ptr"))
7150         aerr("unhandled equ\n");
7151       if (IS(words[2], "dword"))
7152         g_eqs[g_eqcnt].lmod = OPLM_DWORD;
7153       else if (IS(words[2], "word"))
7154         g_eqs[g_eqcnt].lmod = OPLM_WORD;
7155       else if (IS(words[2], "byte"))
7156         g_eqs[g_eqcnt].lmod = OPLM_BYTE;
7157       else if (IS(words[2], "qword"))
7158         g_eqs[g_eqcnt].lmod = OPLM_QWORD;
7159       else
7160         aerr("bad lmod: '%s'\n", words[2]);
7161
7162       g_eqs[g_eqcnt].offset = parse_number(words[4]);
7163       g_eqcnt++;
7164       continue;
7165     }
7166
7167     if (pi >= ARRAY_SIZE(ops))
7168       aerr("too many ops\n");
7169
7170     parse_op(&ops[pi], words, wordc);
7171
7172     if (sctproto != NULL) {
7173       if (ops[pi].op == OP_CALL || ops[pi].op == OP_JMP)
7174         ops[pi].datap = sctproto;
7175       sctproto = NULL;
7176     }
7177     pi++;
7178   }
7179
7180   if (g_header_mode)
7181     output_hdr(fout);
7182
7183   fclose(fout);
7184   fclose(fasm);
7185   fclose(g_fhdr);
7186
7187   return 0;
7188 }
7189
7190 // vim:ts=2:shiftwidth=2:expandtab