translate: hdrgen: detect strings, skip std funcs
[ia32rtools.git] / tools / translate.c
index 2655cec..c7e6ce1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * ia32rtools
- * (C) notaz, 2013,2014
+ * (C) notaz, 2013-2015
  *
  * This work is licensed under the terms of 3-clause BSD license.
  * See COPYING file in the top-level directory.
@@ -48,13 +48,15 @@ enum op_flags {
   OPF_REP    = (1 << 8), /* prefixed by rep */
   OPF_REPZ   = (1 << 9), /* rep is repe/repz */
   OPF_REPNZ  = (1 << 10), /* rep is repne/repnz */
-  OPF_FARG   = (1 << 11), /* push collected as func arg (no reuse) */
-  OPF_EBP_S  = (1 << 12), /* ebp used as scratch here, not BP */
-  OPF_DF     = (1 << 13), /* DF flag set */
-  OPF_ATAIL  = (1 << 14), /* tail call with reused arg frame */
-  OPF_32BIT  = (1 << 15), /* 32bit division */
-  OPF_LOCK   = (1 << 16), /* op has lock prefix */
-  OPF_VAPUSH = (1 << 17), /* vararg ptr push (as call arg) */
+  OPF_FARG   = (1 << 11), /* push collected as func arg */
+  OPF_FARGNR = (1 << 12), /* push collected as func arg (no reuse) */
+  OPF_EBP_S  = (1 << 13), /* ebp used as scratch here, not BP */
+  OPF_DF     = (1 << 14), /* DF flag set */
+  OPF_ATAIL  = (1 << 15), /* tail call with reused arg frame */
+  OPF_32BIT  = (1 << 16), /* 32bit division */
+  OPF_LOCK   = (1 << 17), /* op has lock prefix */
+  OPF_VAPUSH = (1 << 18), /* vararg ptr push (as call arg) */
+  OPF_DONE   = (1 << 19), /* already fully handled by analysis */
 };
 
 enum op_op {
@@ -111,6 +113,8 @@ enum op_op {
        // x87
        // mmx
        OP_EMMS,
+       // mmx
+       OP_UD2,
 };
 
 enum opr_type {
@@ -156,9 +160,10 @@ struct parsed_op {
   unsigned char pfo;
   unsigned char pfo_inv;
   unsigned char operand_cnt;
-  unsigned char p_argnum; // push: altered before call arg #
-  unsigned char p_argpass;// push: arg of host func
-  unsigned char pad[3];
+  unsigned char p_argnum; // arg push: altered before call arg #
+  unsigned char p_arggrp; // arg push: arg group # for above
+  unsigned char p_argpass;// arg push: arg of host func
+  short         p_argnext;// arg push: same arg pushed elsewhere or -1
   int regmask_src;        // all referensed regs
   int regmask_dst;
   int pfomask;            // flagop: parsed_flag_op that can't be delayed
@@ -172,8 +177,8 @@ struct parsed_op {
 
 // datap:
 // OP_CALL - parser proto hint (str)
-// (OPF_CC) - point to one of (OPF_FLAGS) that affects cc op
-// OP_POP - point to OP_PUSH in push/pop pair
+// (OPF_CC) - points to one of (OPF_FLAGS) that affects cc op
+// OP_POP - points to OP_PUSH in push/pop pair
 
 struct parsed_equ {
   char name[64];
@@ -210,12 +215,14 @@ enum ida_func_attr {
   IDAFA_FPD      = (1 << 5),
 };
 
-#define MAX_OPS 4096
+// note: limited to 32k due to p_argnext
+#define MAX_OPS     4096
+#define MAX_ARG_GRP 2
 
 static struct parsed_op ops[MAX_OPS];
 static struct parsed_equ *g_eqs;
 static int g_eqcnt;
-static char g_labels[MAX_OPS][48];
+static char *g_labels[MAX_OPS];
 static struct label_ref g_label_refs[MAX_OPS];
 static const struct parsed_proto *g_func_pp;
 static struct parsed_data *g_func_pd;
@@ -229,6 +236,7 @@ static int g_stack_fsz;
 static int g_ida_func_attr;
 static int g_allow_regfunc;
 static int g_quiet_pp;
+static int g_header_mode;
 
 #define ferr(op_, fmt, ...) do { \
   printf("%s:%d: error: [%s] '%s': " fmt, asmfn, (op_)->asmln, g_func, \
@@ -240,6 +248,11 @@ static int g_quiet_pp;
   printf("%s:%d: note: [%s] '%s': " fmt, asmfn, (op_)->asmln, g_func, \
     dump_op(op_), ##__VA_ARGS__)
 
+#define ferr_assert(op_, cond) do { \
+  if (!(cond)) ferr(op_, "assertion '%s' failed on ln :%d\n", #cond, \
+                    __LINE__); \
+} while (0)
+
 const char *regs_r32[] = {
   "eax", "ebx", "ecx", "edx", "esi", "edi", "ebp", "esp",
   // not r32, but list here for easy parsing and printing
@@ -936,6 +949,8 @@ static const struct {
   // mmx
   { "emms",   OP_EMMS, 0, 0, OPF_DATA },
   { "movq",   OP_MOV,  2, 2, OPF_DATA },
+  // must be last
+  { "ud2",    OP_UD2 },
 };
 
 static void parse_op(struct parsed_op *op, char words[16][256], int wordc)
@@ -968,8 +983,10 @@ static void parse_op(struct parsed_op *op, char words[16][256], int wordc)
       break;
   }
 
-  if (i == ARRAY_SIZE(op_table))
-    aerr("unhandled op: '%s'\n", words[0]);
+  if (i == ARRAY_SIZE(op_table)) {
+    anote("unhandled op: '%s'\n", words[0]);
+    i--; // OP_UD2
+  }
   w++;
 
   op->op = op_table[i].op;
@@ -979,6 +996,9 @@ static void parse_op(struct parsed_op *op, char words[16][256], int wordc)
   op->regmask_src = op->regmask_dst = 0;
   op->asmln = asmln;
 
+  if (op->op == OP_UD2)
+    return;
+
   for (opr = 0; opr < op_table[i].maxopr; opr++) {
     if (opr >= op_table[i].minopr && w >= wordc)
       break;
@@ -1700,7 +1720,7 @@ static void check_func_pp(struct parsed_op *po,
   // fptrs must use 32bit args, callsite might have no information and
   // lack a cast to smaller types, which results in incorrectly masked
   // args passed (callee may assume masked args, it does on ARM)
-  if (!pp->is_oslib) {
+  if (!pp->is_osinc) {
     for (i = 0; i < pp->argc; i++) {
       ret = guess_lmod_from_c_type(&tmp_lmod, &pp->arg[i].type);
       if (ret && tmp_lmod != OPLM_DWORD)
@@ -2178,7 +2198,7 @@ static int scan_for_pop(int i, int opcnt, const char *reg,
         && po->operand[0].type == OPT_REG
         && IS(po->operand[0].name, reg))
     {
-      if (po->op == OP_PUSH && !(po->flags & OPF_FARG)) {
+      if (po->op == OP_PUSH && !(po->flags & OPF_FARGNR)) {
         depth++;
         if (depth > *maxdepth)
           *maxdepth = depth;
@@ -2230,7 +2250,7 @@ static int scan_for_pop_ret(int i, int opcnt, const char *reg,
         break;
       }
 
-      if (g_labels[j][0] != 0)
+      if (g_labels[j] != NULL)
         return -1;
     }
   }
@@ -2238,6 +2258,27 @@ static int scan_for_pop_ret(int i, int opcnt, const char *reg,
   return found ? 0 : -1;
 }
 
+// XXX: merge with scan_for_pop?
+static void scan_for_pop_const(int i, int opcnt)
+{
+  int j;
+
+  for (j = i + 1; j < opcnt; j++) {
+    if ((ops[j].flags & (OPF_JMP|OPF_TAIL|OPF_RSAVE))
+      || ops[j].op == OP_PUSH || g_labels[i] != NULL)
+    {
+      break;
+    }
+
+    if (!(ops[j].flags & OPF_RMD) && ops[j].op == OP_POP)
+    {
+      ops[i].flags |= OPF_RMD;
+      ops[j].datap = &ops[i];
+      break;
+    }
+  }
+}
+
 static void scan_propagate_df(int i, int opcnt)
 {
   struct parsed_op *po = &ops[i];
@@ -2390,7 +2431,7 @@ static int scan_for_flag_set(int i, int magic, int *branched,
     }
     ops[i].cc_scratch = magic;
 
-    if (g_labels[i][0] != 0) {
+    if (g_labels[i] != NULL) {
       *branched = 1;
 
       lr = &g_label_refs[i];
@@ -2431,7 +2472,7 @@ static int scan_for_flag_set(int i, int magic, int *branched,
 static int scan_for_cdq_edx(int i)
 {
   while (i >= 0) {
-    if (g_labels[i][0] != 0) {
+    if (g_labels[i] != NULL) {
       if (g_label_refs[i].next != NULL)
         return -1;
       if (i > 0 && LAST_OP(i - 1)) {
@@ -2455,7 +2496,7 @@ static int scan_for_cdq_edx(int i)
 static int scan_for_reg_clear(int i, int reg)
 {
   while (i >= 0) {
-    if (g_labels[i][0] != 0) {
+    if (g_labels[i] != NULL) {
       if (g_label_refs[i].next != NULL)
         return -1;
       if (i > 0 && LAST_OP(i - 1)) {
@@ -2480,18 +2521,18 @@ static int scan_for_reg_clear(int i, int reg)
 }
 
 // scan for positive, constant esp adjust
-static int scan_for_esp_adjust(int i, int opcnt, int *adj,
-  int *multipath)
+static int scan_for_esp_adjust(int i, int opcnt,
+  unsigned int adj_expect, int *adj, int *multipath)
 {
   struct parsed_op *po;
   int first_pop = -1;
 
   *adj = *multipath = 0;
 
-  for (; i < opcnt; i++) {
+  for (; i < opcnt && *adj < adj_expect; i++) {
     po = &ops[i];
 
-    if (g_labels[i][0] != 0)
+    if (g_labels[i] != NULL)
       *multipath = 1;
 
     if (po->op == OP_ADD && po->operand[0].reg == xSP) {
@@ -2508,6 +2549,8 @@ static int scan_for_esp_adjust(int i, int opcnt, int *adj,
       *adj -= lmod_bytes(po, po->operand[0].lmod);
     }
     else if (po->op == OP_POP && !(po->flags & OPF_RMD)) {
+      if (po->datap != NULL) // in push/pop pair?
+        break;
       // seems like msvc only uses 'pop ecx' for stack realignment..
       if (po->operand[0].type != OPT_REG || po->operand[0].reg != xCX)
         break;
@@ -2584,6 +2627,9 @@ static const struct parsed_proto *try_recover_pp(
     int stack_ra = 0;
     int offset = 0;
 
+    if (g_header_mode)
+      return NULL;
+
     parse_stack_access(po, opr->name, ofs_reg,
       &offset, &stack_ra, NULL, 0);
     if (ofs_reg[0] != 0)
@@ -2619,10 +2665,13 @@ static const struct parsed_proto *try_recover_pp(
     pp = proto_parse(g_fhdr, buf, g_quiet_pp);
   }
   else if (opr->type == OPT_OFFSET || opr->type == OPT_LABEL) {
-    pp = proto_parse(g_fhdr, opr->name, 0);
-    if (pp == NULL)
-      ferr(po, "proto_parse failed for icall from '%s'\n", opr->name);
-    check_func_pp(po, pp, "reg-fptr ref");
+    pp = proto_parse(g_fhdr, opr->name, g_quiet_pp);
+    if (pp == NULL) {
+      if (!g_header_mode)
+        ferr(po, "proto_parse failed for icall to '%s'\n", opr->name);
+    }
+    else
+      check_func_pp(po, pp, "reg-fptr ref");
   }
 
   return pp;
@@ -2638,7 +2687,7 @@ static void scan_for_call_type(int i, const struct parsed_opr *opr,
   ops[i].cc_scratch = magic;
 
   while (1) {
-    if (g_labels[i][0] != 0) {
+    if (g_labels[i] != NULL) {
       lr = &g_label_refs[i];
       for (; lr != NULL; lr = lr->next) {
         check_i(&ops[i], lr->i);
@@ -2711,6 +2760,224 @@ static void scan_for_call_type(int i, const struct parsed_opr *opr,
     *pp_found = pp;
 }
 
+// early check for tail call or branch back
+static int is_like_tailjmp(int j)
+{
+  if (!(ops[j].flags & OPF_JMP))
+    return 0;
+
+  if (ops[j].op == OP_JMP && !ops[j].operand[0].had_ds)
+    // probably local branch back..
+    return 1;
+  if (ops[j].op == OP_CALL)
+    // probably noreturn call..
+    return 1;
+
+  return 0;
+}
+
+static void scan_prologue_epilogue(int opcnt)
+{
+  int ecx_push = 0, esp_sub = 0;
+  int found;
+  int i, j, l;
+
+  if (ops[0].op == OP_PUSH && IS(opr_name(&ops[0], 0), "ebp")
+      && ops[1].op == OP_MOV
+      && IS(opr_name(&ops[1], 0), "ebp")
+      && IS(opr_name(&ops[1], 1), "esp"))
+  {
+    g_bp_frame = 1;
+    ops[0].flags |= OPF_RMD;
+    ops[1].flags |= OPF_RMD;
+    i = 2;
+
+    if (ops[2].op == OP_SUB && IS(opr_name(&ops[2], 0), "esp")) {
+      g_stack_fsz = opr_const(&ops[2], 1);
+      ops[2].flags |= OPF_RMD;
+      i++;
+    }
+    else {
+      // another way msvc builds stack frame..
+      i = 2;
+      while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
+        g_stack_fsz += 4;
+        ops[i].flags |= OPF_RMD;
+        ecx_push++;
+        i++;
+      }
+      // and another way..
+      if (i == 2 && ops[i].op == OP_MOV && ops[i].operand[0].reg == xAX
+          && ops[i].operand[1].type == OPT_CONST
+          && ops[i + 1].op == OP_CALL
+          && IS(opr_name(&ops[i + 1], 0), "__alloca_probe"))
+      {
+        g_stack_fsz += ops[i].operand[1].val;
+        ops[i].flags |= OPF_RMD;
+        i++;
+        ops[i].flags |= OPF_RMD;
+        i++;
+      }
+    }
+
+    found = 0;
+    do {
+      for (; i < opcnt; i++)
+        if (ops[i].op == OP_RET)
+          break;
+      j = i - 1;
+      if (i == opcnt && (ops[j].flags & OPF_JMP)) {
+        if (found && is_like_tailjmp(j))
+            break;
+        j--;
+      }
+
+      if ((ops[j].op == OP_POP && IS(opr_name(&ops[j], 0), "ebp"))
+          || ops[j].op == OP_LEAVE)
+      {
+        ops[j].flags |= OPF_RMD;
+      }
+      else if (!(g_ida_func_attr & IDAFA_NORETURN))
+        ferr(&ops[j], "'pop ebp' expected\n");
+
+      if (g_stack_fsz != 0) {
+        if (ops[j - 1].op == OP_MOV
+            && IS(opr_name(&ops[j - 1], 0), "esp")
+            && IS(opr_name(&ops[j - 1], 1), "ebp"))
+        {
+          ops[j - 1].flags |= OPF_RMD;
+        }
+        else if (ops[j].op != OP_LEAVE
+          && !(g_ida_func_attr & IDAFA_NORETURN))
+        {
+          ferr(&ops[j - 1], "esp restore expected\n");
+        }
+
+        if (ecx_push && ops[j - 2].op == OP_POP
+          && IS(opr_name(&ops[j - 2], 0), "ecx"))
+        {
+          ferr(&ops[j - 2], "unexpected ecx pop\n");
+        }
+      }
+
+      found = 1;
+      i++;
+    } while (i < opcnt);
+
+    return;
+  }
+
+  // non-bp frame
+  i = 0;
+  while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
+    ops[i].flags |= OPF_RMD;
+    g_stack_fsz += 4;
+    ecx_push++;
+    i++;
+  }
+
+  for (; i < opcnt; i++) {
+    if (ops[i].op == OP_PUSH || (ops[i].flags & (OPF_JMP|OPF_TAIL)))
+      break;
+    if (ops[i].op == OP_SUB && ops[i].operand[0].reg == xSP
+      && ops[i].operand[1].type == OPT_CONST)
+    {
+      g_stack_fsz = ops[i].operand[1].val;
+      ops[i].flags |= OPF_RMD;
+      esp_sub = 1;
+      break;
+    }
+  }
+
+  if (ecx_push && !esp_sub) {
+    // could actually be args for a call..
+    for (; i < opcnt; i++)
+      if (ops[i].op != OP_PUSH)
+        break;
+
+    if (ops[i].op == OP_CALL && ops[i].operand[0].type == OPT_LABEL) {
+      const struct parsed_proto *pp;
+      pp = proto_parse(g_fhdr, opr_name(&ops[i], 0), 1);
+      j = pp ? pp->argc_stack : 0;
+      while (i > 0 && j > 0) {
+        i--;
+        if (ops[i].op == OP_PUSH) {
+          ops[i].flags &= ~OPF_RMD;
+          j--;
+        }
+      }
+      if (j != 0)
+        ferr(&ops[i], "unhandled prologue\n");
+
+      // recheck
+      i = g_stack_fsz = ecx_push = 0;
+      while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
+        if (!(ops[i].flags & OPF_RMD))
+          break;
+        g_stack_fsz += 4;
+        ecx_push++;
+        i++;
+      }
+    }
+  }
+
+  found = 0;
+  if (ecx_push || esp_sub)
+  {
+    g_sp_frame = 1;
+
+    i++;
+    do {
+      for (; i < opcnt; i++)
+        if (ops[i].op == OP_RET)
+          break;
+      j = i - 1;
+      if (i == opcnt && (ops[j].flags & OPF_JMP)) {
+        if (found && is_like_tailjmp(j))
+            break;
+        j--;
+      }
+
+      if (ecx_push > 0) {
+        for (l = 0; l < ecx_push; l++) {
+          if (ops[j].op == OP_POP && IS(opr_name(&ops[j], 0), "ecx"))
+            /* pop ecx */;
+          else if (ops[j].op == OP_ADD
+                   && IS(opr_name(&ops[j], 0), "esp")
+                   && ops[j].operand[1].type == OPT_CONST)
+          {
+            /* add esp, N */
+            ecx_push -= ops[j].operand[1].val / 4 - 1;
+          }
+          else
+            ferr(&ops[j], "'pop ecx' expected\n");
+
+          ops[j].flags |= OPF_RMD;
+          j--;
+        }
+        if (l != ecx_push)
+          ferr(&ops[j], "epilogue scan failed\n");
+
+        found = 1;
+      }
+
+      if (esp_sub) {
+        if (ops[j].op != OP_ADD
+            || !IS(opr_name(&ops[j], 0), "esp")
+            || ops[j].operand[1].type != OPT_CONST
+            || ops[j].operand[1].val != g_stack_fsz)
+          ferr(&ops[j], "'add esp' expected\n");
+
+        ops[j].flags |= OPF_RMD;
+        ops[j].operand[1].val = 0; // hack for stack arg scanner
+        found = 1;
+      }
+
+      i++;
+    } while (i < opcnt);
+  }
+}
+
 static const struct parsed_proto *resolve_icall(int i, int opcnt,
   int *multi_src)
 {
@@ -2751,7 +3018,7 @@ static int resolve_origin(int i, const struct parsed_opr *opr,
   ops[i].cc_scratch = magic;
 
   while (1) {
-    if (g_labels[i][0] != 0) {
+    if (g_labels[i] != NULL) {
       lr = &g_label_refs[i];
       for (; lr != NULL; lr = lr->next) {
         check_i(&ops[i], lr->i);
@@ -2808,67 +3075,290 @@ static int try_resolve_const(int i, const struct parsed_opr *opr,
   return -1;
 }
 
-static int collect_call_args_r(struct parsed_op *po, int i,
-  struct parsed_proto *pp, int *regmask, int *save_arg_vars, int arg,
-  int magic, int need_op_saving, int may_reuse)
+static struct parsed_proto *process_call_early(int i, int opcnt,
+  int *adj_i)
 {
-  struct parsed_proto *pp_tmp;
-  struct label_ref *lr;
-  int need_to_save_current;
-  int save_args;
-  int ret = 0;
-  int reg;
-  char buf[32];
-  int j, k;
+  struct parsed_op *po = &ops[i];
+  struct parsed_proto *pp;
+  int multipath = 0;
+  int adj = 0;
+  int ret;
 
-  if (i < 0) {
-    ferr(po, "dead label encountered\n");
-    return -1;
+  pp = po->pp;
+  if (pp == NULL || pp->is_vararg || pp->argc_reg != 0)
+    // leave for later
+    return NULL;
+
+  // look for and make use of esp adjust
+  *adj_i = ret = -1;
+  if (!pp->is_stdcall && pp->argc_stack > 0)
+    ret = scan_for_esp_adjust(i + 1, opcnt,
+            pp->argc_stack * 4, &adj, &multipath);
+  if (ret >= 0) {
+    if (pp->argc_stack > adj / 4)
+      return NULL;
+    if (multipath)
+      return NULL;
+    if (ops[ret].op == OP_POP && adj != 4)
+      return NULL;
   }
 
-  for (; arg < pp->argc; arg++)
-    if (pp->arg[arg].reg == NULL)
-      break;
-  magic = (magic & 0xffffff) | (arg << 24);
+  *adj_i = ret;
+  return pp;
+}
 
-  for (j = i; j >= 0 && (arg < pp->argc || pp->is_unresolved); )
+static struct parsed_proto *process_call(int i, int opcnt)
+{
+  struct parsed_op *po = &ops[i];
+  const struct parsed_proto *pp_c;
+  struct parsed_proto *pp;
+  const char *tmpname;
+  int adj = 0, multipath = 0;
+  int ret, arg;
+
+  tmpname = opr_name(po, 0);
+  pp = po->pp;
+  if (pp == NULL)
   {
-    if (((ops[j].cc_scratch ^ magic) & 0xffffff) == 0) {
-      if (ops[j].cc_scratch != magic) {
-        ferr(&ops[j], "arg collect hit same path with diff args for %s\n",
-           pp->name);
-        return -1;
+    // indirect call
+    pp_c = resolve_icall(i, opcnt, &multipath);
+    if (pp_c != NULL) {
+      if (!pp_c->is_func && !pp_c->is_fptr)
+        ferr(po, "call to non-func: %s\n", pp_c->name);
+      pp = proto_clone(pp_c);
+      my_assert_not(pp, NULL);
+      if (multipath)
+        // not resolved just to single func
+        pp->is_fptr = 1;
+
+      switch (po->operand[0].type) {
+      case OPT_REG:
+        // we resolved this call and no longer need the register
+        po->regmask_src &= ~(1 << po->operand[0].reg);
+        break;
+      case OPT_REGMEM:
+        pp->is_fptr = 1;
+        break;
+      default:
+        break;
       }
-      // ok: have already been here
-      return 0;
     }
-    ops[j].cc_scratch = magic;
-
-    if (g_labels[j][0] != 0 && g_label_refs[j].i != -1) {
-      lr = &g_label_refs[j];
-      if (lr->next != NULL)
-        need_op_saving = 1;
-      for (; lr->next; lr = lr->next) {
-        check_i(&ops[j], lr->i);
-        if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
-          may_reuse = 1;
-        ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
-                arg, magic, need_op_saving, may_reuse);
-        if (ret < 0)
-          return ret;
+    if (pp == NULL) {
+      pp = calloc(1, sizeof(*pp));
+      my_assert_not(pp, NULL);
+
+      pp->is_fptr = 1;
+      ret = scan_for_esp_adjust(i + 1, opcnt, ~0, &adj, &multipath);
+      if (ret < 0 || adj < 0) {
+        if (!g_allow_regfunc)
+          ferr(po, "non-__cdecl indirect call unhandled yet\n");
+        pp->is_unresolved = 1;
+        adj = 0;
       }
-
-      check_i(&ops[j], lr->i);
-      if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
-        may_reuse = 1;
-      if (j > 0 && LAST_OP(j - 1)) {
-        // follow last branch in reverse
-        j = lr->i;
-        continue;
+      adj /= 4;
+      if (adj > ARRAY_SIZE(pp->arg))
+        ferr(po, "esp adjust too large: %d\n", adj);
+      pp->ret_type.name = strdup("int");
+      pp->argc = pp->argc_stack = adj;
+      for (arg = 0; arg < pp->argc; arg++)
+        pp->arg[arg].type.name = strdup("int");
+    }
+    po->pp = pp;
+  }
+
+  // look for and make use of esp adjust
+  ret = -1;
+  if (!pp->is_stdcall && pp->argc_stack > 0)
+    ret = scan_for_esp_adjust(i + 1, opcnt,
+            pp->argc_stack * 4, &adj, &multipath);
+  if (ret >= 0) {
+    if (pp->is_vararg) {
+      if (adj / 4 < pp->argc_stack) {
+        fnote(po, "(this call)\n");
+        ferr(&ops[ret], "esp adjust is too small: %x < %x\n",
+          adj, pp->argc_stack * 4);
       }
-      need_op_saving = 1;
+      // modify pp to make it have varargs as normal args
+      arg = pp->argc;
+      pp->argc += adj / 4 - pp->argc_stack;
+      for (; arg < pp->argc; arg++) {
+        pp->arg[arg].type.name = strdup("int");
+        pp->argc_stack++;
+      }
+      if (pp->argc > ARRAY_SIZE(pp->arg))
+        ferr(po, "too many args for '%s'\n", tmpname);
+    }
+    if (pp->argc_stack > adj / 4) {
+      fnote(po, "(this call)\n");
+      ferr(&ops[ret], "stack tracking failed for '%s': %x %x\n",
+        tmpname, pp->argc_stack * 4, adj);
+    }
+
+    ops[ret].flags |= OPF_RMD;
+    if (ops[ret].op == OP_POP) {
+      if (adj > 4) {
+        // deal with multi-pop stack adjust
+        adj = pp->argc_stack;
+        while (ops[ret].op == OP_POP && adj > 0 && ret < opcnt) {
+          ops[ret].flags |= OPF_RMD;
+          adj--;
+          ret++;
+        }
+      }
+    }
+    else if (!multipath) {
+      // a bit of a hack, but deals with use of
+      // single adj for multiple calls
+      ops[ret].operand[1].val -= pp->argc_stack * 4;
+    }
+  }
+  else if (pp->is_vararg)
+    ferr(po, "missing esp_adjust for vararg func '%s'\n",
+      pp->name);
+
+  return pp;
+}
+
+static int collect_call_args_early(struct parsed_op *po, int i,
+  struct parsed_proto *pp, int *regmask)
+{
+  int arg, ret;
+  int j;
+
+  for (arg = 0; arg < pp->argc; arg++)
+    if (pp->arg[arg].reg == NULL)
+      break;
+
+  // first see if it can be easily done
+  for (j = i; j > 0 && arg < pp->argc; )
+  {
+    if (g_labels[j] != NULL)
+      return -1;
+    j--;
+
+    if (ops[j].op == OP_CALL)
+      return -1;
+    else if (ops[j].op == OP_ADD && ops[j].operand[0].reg == xSP)
+      return -1;
+    else if (ops[j].op == OP_POP)
+      return -1;
+    else if (ops[j].flags & OPF_CJMP)
+      return -1;
+    else if (ops[j].op == OP_PUSH) {
+      if (ops[j].flags & (OPF_FARG|OPF_FARGNR))
+        return -1;
+      ret = scan_for_mod(&ops[j], j + 1, i, 1);
+      if (ret >= 0)
+        return -1;
+
+      if (pp->arg[arg].type.is_va_list)
+        return -1;
+
+      // next arg
+      for (arg++; arg < pp->argc; arg++)
+        if (pp->arg[arg].reg == NULL)
+          break;
+    }
+  }
+
+  if (arg < pp->argc)
+    return -1;
+
+  // now do it
+  for (arg = 0; arg < pp->argc; arg++)
+    if (pp->arg[arg].reg == NULL)
+      break;
+
+  for (j = i; j > 0 && arg < pp->argc; )
+  {
+    j--;
+
+    if (ops[j].op == OP_PUSH)
+    {
+      ops[j].p_argnext = -1;
+      ferr_assert(&ops[j], pp->arg[arg].datap == NULL);
+      pp->arg[arg].datap = &ops[j];
+
+      if (ops[j].operand[0].type == OPT_REG)
+        *regmask |= 1 << ops[j].operand[0].reg;
+
+      ops[j].flags |= OPF_RMD | OPF_FARGNR | OPF_FARG;
+      ops[j].flags &= ~OPF_RSAVE;
+
+      // next arg
+      for (arg++; arg < pp->argc; arg++)
+        if (pp->arg[arg].reg == NULL)
+          break;
+    }
+  }
+
+  return 0;
+}
+
+static int collect_call_args_r(struct parsed_op *po, int i,
+  struct parsed_proto *pp, int *regmask, int *save_arg_vars,
+  int *arg_grp, int arg, int magic, int need_op_saving, int may_reuse)
+{
+  struct parsed_proto *pp_tmp;
+  struct parsed_op *po_tmp;
+  struct label_ref *lr;
+  int need_to_save_current;
+  int arg_grp_current = 0;
+  int save_args_seen = 0;
+  int save_args;
+  int ret = 0;
+  int reg;
+  char buf[32];
+  int j, k;
+
+  if (i < 0) {
+    ferr(po, "dead label encountered\n");
+    return -1;
+  }
+
+  for (; arg < pp->argc; arg++)
+    if (pp->arg[arg].reg == NULL)
+      break;
+  magic = (magic & 0xffffff) | (arg << 24);
+
+  for (j = i; j >= 0 && (arg < pp->argc || pp->is_unresolved); )
+  {
+    if (((ops[j].cc_scratch ^ magic) & 0xffffff) == 0) {
+      if (ops[j].cc_scratch != magic) {
+        ferr(&ops[j], "arg collect hit same path with diff args for %s\n",
+           pp->name);
+        return -1;
+      }
+      // ok: have already been here
+      return 0;
+    }
+    ops[j].cc_scratch = magic;
+
+    if (g_labels[j] != NULL && g_label_refs[j].i != -1) {
+      lr = &g_label_refs[j];
+      if (lr->next != NULL)
+        need_op_saving = 1;
+      for (; lr->next; lr = lr->next) {
+        check_i(&ops[j], lr->i);
+        if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
+          may_reuse = 1;
+        ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
+                arg_grp, arg, magic, need_op_saving, may_reuse);
+        if (ret < 0)
+          return ret;
+      }
+
+      check_i(&ops[j], lr->i);
+      if ((ops[lr->i].flags & (OPF_JMP|OPF_CJMP)) != OPF_JMP)
+        may_reuse = 1;
+      if (j > 0 && LAST_OP(j - 1)) {
+        // follow last branch in reverse
+        j = lr->i;
+        continue;
+      }
+      need_op_saving = 1;
       ret = collect_call_args_r(po, lr->i, pp, regmask, save_arg_vars,
-               arg, magic, need_op_saving, may_reuse);
+               arg_grp, arg, magic, need_op_saving, may_reuse);
       if (ret < 0)
         return ret;
     }
@@ -2898,7 +3388,9 @@ static int collect_call_args_r(struct parsed_op *po, int i,
       ferr(po, "arg collect %d/%d hit esp adjust of %d\n",
         arg, pp->argc, ops[j].operand[1].val);
     }
-    else if (ops[j].op == OP_POP) {
+    else if (ops[j].op == OP_POP && !(ops[j].flags & OPF_RMD)
+      && ops[j].datap == NULL)
+    {
       if (pp->is_unresolved)
         break;
 
@@ -2911,12 +3403,17 @@ static int collect_call_args_r(struct parsed_op *po, int i,
 
       may_reuse = 1;
     }
-    else if (ops[j].op == OP_PUSH && !(ops[j].flags & OPF_FARG))
+    else if (ops[j].op == OP_PUSH && !(ops[j].flags & OPF_FARGNR))
     {
       if (pp->is_unresolved && (ops[j].flags & OPF_RMD))
         break;
 
+      ops[j].p_argnext = -1;
+      po_tmp = pp->arg[arg].datap;
+      if (po_tmp != NULL)
+        ops[j].p_argnext = po_tmp - ops;
       pp->arg[arg].datap = &ops[j];
+
       need_to_save_current = 0;
       save_args = 0;
       reg = -1;
@@ -2940,6 +3437,14 @@ static int collect_call_args_r(struct parsed_op *po, int i,
           ops[j].p_argnum = arg + 1;
           save_args |= 1 << arg;
         }
+
+        if (save_args_seen & (1 << (ops[j].p_argnum - 1))) {
+          save_args_seen = 0;
+          arg_grp_current++;
+          if (arg_grp_current >= MAX_ARG_GRP)
+            ferr(&ops[j], "out of arg groups (arg%d), f %s\n",
+              ops[j].p_argnum, pp->name);
+        }
       }
       else if (ops[j].p_argnum == 0)
         ops[j].flags |= OPF_RMD;
@@ -2948,8 +3453,9 @@ static int collect_call_args_r(struct parsed_op *po, int i,
       // but that can't happen if we didn't branch, so they
       // can be removed from future searches (handles nested calls)
       if (!may_reuse)
-        ops[j].flags |= OPF_FARG;
+        ops[j].flags |= OPF_FARGNR;
 
+      ops[j].flags |= OPF_FARG;
       ops[j].flags &= ~OPF_RSAVE;
 
       // check for __VALIST
@@ -3005,6 +3511,13 @@ static int collect_call_args_r(struct parsed_op *po, int i,
       }
       magic = (magic & 0xffffff) | (arg << 24);
     }
+
+    if (ops[j].p_arggrp > arg_grp_current) {
+      save_args_seen = 0;
+      arg_grp_current = ops[j].p_arggrp;
+    }
+    if (ops[j].p_argnum > 0)
+      save_args_seen |= 1 << (ops[j].p_argnum - 1);
   }
 
   if (arg < pp->argc) {
@@ -3013,6 +3526,9 @@ static int collect_call_args_r(struct parsed_op *po, int i,
     return -1;
   }
 
+  if (arg_grp_current > *arg_grp)
+    *arg_grp = arg_grp_current;
+
   return arg;
 }
 
@@ -3020,14 +3536,37 @@ static int collect_call_args(struct parsed_op *po, int i,
   struct parsed_proto *pp, int *regmask, int *save_arg_vars,
   int magic)
 {
+  // arg group is for cases when pushes for
+  // multiple funcs are going on
+  struct parsed_op *po_tmp;
+  int save_arg_vars_current = 0;
+  int arg_grp = 0;
   int ret;
   int a;
 
-  ret = collect_call_args_r(po, i, pp, regmask, save_arg_vars,
-          0, magic, 0, 0);
+  ret = collect_call_args_r(po, i, pp, regmask,
+          &save_arg_vars_current, &arg_grp, 0, magic, 0, 0);
   if (ret < 0)
     return ret;
 
+  if (arg_grp != 0) {
+    // propagate arg_grp
+    for (a = 0; a < pp->argc; a++) {
+      if (pp->arg[a].reg != NULL)
+        continue;
+
+      po_tmp = pp->arg[a].datap;
+      while (po_tmp != NULL) {
+        po_tmp->p_arggrp = arg_grp;
+        if (po_tmp->p_argnext > 0)
+          po_tmp = &ops[po_tmp->p_argnext];
+        else
+          po_tmp = NULL;
+      }
+    }
+  }
+  save_arg_vars[arg_grp] |= save_arg_vars_current;
+
   if (pp->is_unresolved) {
     pp->argc += ret;
     pp->argc_stack += ret;
@@ -3039,22 +3578,6 @@ static int collect_call_args(struct parsed_op *po, int i,
   return ret;
 }
 
-// early check for tail call or branch back
-static int is_like_tailjmp(int j)
-{
-  if (!(ops[j].flags & OPF_JMP))
-    return 0;
-
-  if (ops[j].op == OP_JMP && !ops[j].operand[0].had_ds)
-    // probably local branch back..
-    return 1;
-  if (ops[j].op == OP_CALL)
-    // probably noreturn call..
-    return 1;
-
-  return 0;
-}
-
 static void pp_insert_reg_arg(struct parsed_proto *pp, const char *reg)
 {
   int i;
@@ -3119,7 +3642,7 @@ static struct parsed_data *try_resolve_jumptab(int i, int opcnt)
   // find all labels, link
   for (j = 0; j < pd->count; j++) {
     for (l = 0; l < opcnt; l++) {
-      if (g_labels[l][0] && IS(g_labels[l], pd->d[j].u.label)) {
+      if (g_labels[l] != NULL && IS(g_labels[l], pd->d[j].u.label)) {
         add_label_ref(&g_label_refs[l], i);
         pd->d[j].bt_i = l;
         break;
@@ -3130,6 +3653,18 @@ static struct parsed_data *try_resolve_jumptab(int i, int opcnt)
   return pd;
 }
 
+static void clear_labels(int count)
+{
+  int i;
+
+  for (i = 0; i < count; i++) {
+    if (g_labels[i] != NULL) {
+      free(g_labels[i]);
+      g_labels[i] = NULL;
+    }
+  }
+}
+
 static void output_std_flags(FILE *fout, struct parsed_op *po,
   int *pfomask, const char *dst_opr_text)
 {
@@ -3156,6 +3691,39 @@ static void output_pp_attrs(FILE *fout, const struct parsed_proto *pp,
     fprintf(fout, "noreturn ");
 }
 
+static int get_pp_arg_regmask(const struct parsed_proto *pp)
+{
+  int regmask = 0;
+  int i, reg;
+
+  for (i = 0; i < pp->argc; i++) {
+    if (pp->arg[i].reg != NULL) {
+      reg = char_array_i(regs_r32,
+              ARRAY_SIZE(regs_r32), pp->arg[i].reg);
+      if (reg < 0)
+        ferr(ops, "arg '%s' of func '%s' is not a reg?\n",
+          pp->arg[i].reg, pp->name);
+      regmask |= 1 << reg;
+    }
+  }
+
+  return regmask;
+}
+
+static char *saved_arg_name(char *buf, size_t buf_size, int grp, int num)
+{
+  char buf1[16];
+
+  buf1[0] = 0;
+  if (grp > 0)
+    snprintf(buf1, sizeof(buf1), "%d", grp);
+  snprintf(buf, buf_size, "s%s_a%d", buf1, num);
+
+  return buf;
+}
+
+static void gen_x_cleanup(int opcnt);
+
 static void gen_func(FILE *fout, FILE *fhdr, const char *funcn, int opcnt)
 {
   struct parsed_op *po, *delayed_flag_op = NULL, *tmp_op;
@@ -3166,7 +3734,7 @@ static void gen_func(FILE *fout, FILE *fhdr, const char *funcn, int opcnt)
   struct parsed_data *pd;
   const char *tmpname;
   unsigned int uval;
-  int save_arg_vars = 0;
+  int save_arg_vars[MAX_ARG_GRP] = { 0, };
   int cond_vars = 0;
   int need_tmp_var = 0;
   int need_tmp64 = 0;
@@ -3193,172 +3761,11 @@ static void gen_func(FILE *fout, FILE *fhdr, const char *funcn, int opcnt)
   if (g_func_pp == NULL)
     ferr(ops, "proto_parse failed for '%s'\n", funcn);
 
-  for (i = 0; i < g_func_pp->argc; i++) {
-    if (g_func_pp->arg[i].reg != NULL) {
-      reg = char_array_i(regs_r32,
-              ARRAY_SIZE(regs_r32), g_func_pp->arg[i].reg);
-      if (reg < 0)
-        ferr(ops, "arg '%s' is not a reg?\n", g_func_pp->arg[i].reg);
-      regmask_arg |= 1 << reg;
-    }
-  }
+  regmask_arg = get_pp_arg_regmask(g_func_pp);
 
   // pass1:
   // - handle ebp/esp frame, remove ops related to it
-  if (ops[0].op == OP_PUSH && IS(opr_name(&ops[0], 0), "ebp")
-      && ops[1].op == OP_MOV
-      && IS(opr_name(&ops[1], 0), "ebp")
-      && IS(opr_name(&ops[1], 1), "esp"))
-  {
-    int ecx_push = 0;
-
-    g_bp_frame = 1;
-    ops[0].flags |= OPF_RMD;
-    ops[1].flags |= OPF_RMD;
-    i = 2;
-
-    if (ops[2].op == OP_SUB && IS(opr_name(&ops[2], 0), "esp")) {
-      g_stack_fsz = opr_const(&ops[2], 1);
-      ops[2].flags |= OPF_RMD;
-      i++;
-    }
-    else {
-      // another way msvc builds stack frame..
-      i = 2;
-      while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
-        g_stack_fsz += 4;
-        ops[i].flags |= OPF_RMD;
-        ecx_push++;
-        i++;
-      }
-      // and another way..
-      if (i == 2 && ops[i].op == OP_MOV && ops[i].operand[0].reg == xAX
-          && ops[i].operand[1].type == OPT_CONST
-          && ops[i + 1].op == OP_CALL
-          && IS(opr_name(&ops[i + 1], 0), "__alloca_probe"))
-      {
-        g_stack_fsz += ops[i].operand[1].val;
-        ops[i].flags |= OPF_RMD;
-        i++;
-        ops[i].flags |= OPF_RMD;
-        i++;
-      }
-    }
-
-    found = 0;
-    do {
-      for (; i < opcnt; i++)
-        if (ops[i].op == OP_RET)
-          break;
-      j = i - 1;
-      if (i == opcnt && (ops[j].flags & OPF_JMP)) {
-        if (found && is_like_tailjmp(j))
-            break;
-        j--;
-      }
-
-      if ((ops[j].op == OP_POP && IS(opr_name(&ops[j], 0), "ebp"))
-          || ops[j].op == OP_LEAVE)
-      {
-        ops[j].flags |= OPF_RMD;
-      }
-      else if (!(g_ida_func_attr & IDAFA_NORETURN))
-        ferr(&ops[j], "'pop ebp' expected\n");
-
-      if (g_stack_fsz != 0) {
-        if (ops[j - 1].op == OP_MOV
-            && IS(opr_name(&ops[j - 1], 0), "esp")
-            && IS(opr_name(&ops[j - 1], 1), "ebp"))
-        {
-          ops[j - 1].flags |= OPF_RMD;
-        }
-        else if (ops[j].op != OP_LEAVE
-          && !(g_ida_func_attr & IDAFA_NORETURN))
-        {
-          ferr(&ops[j - 1], "esp restore expected\n");
-        }
-
-        if (ecx_push && ops[j - 2].op == OP_POP
-          && IS(opr_name(&ops[j - 2], 0), "ecx"))
-        {
-          ferr(&ops[j - 2], "unexpected ecx pop\n");
-        }
-      }
-
-      found = 1;
-      i++;
-    } while (i < opcnt);
-  }
-  else {
-    int ecx_push = 0, esp_sub = 0;
-
-    i = 0;
-    while (ops[i].op == OP_PUSH && IS(opr_name(&ops[i], 0), "ecx")) {
-      ops[i].flags |= OPF_RMD;
-      g_stack_fsz += 4;
-      ecx_push++;
-      i++;
-    }
-
-    for (; i < opcnt; i++) {
-      if (ops[i].op == OP_PUSH || (ops[i].flags & (OPF_JMP|OPF_TAIL)))
-        break;
-      if (ops[i].op == OP_SUB && ops[i].operand[0].reg == xSP
-        && ops[i].operand[1].type == OPT_CONST)
-      {
-        g_stack_fsz = ops[i].operand[1].val;
-        ops[i].flags |= OPF_RMD;
-        esp_sub = 1;
-        break;
-      }
-    }
-
-    found = 0;
-    if (ecx_push || esp_sub)
-    {
-      g_sp_frame = 1;
-
-      i++;
-      do {
-        for (; i < opcnt; i++)
-          if (ops[i].op == OP_RET)
-            break;
-        j = i - 1;
-        if (i == opcnt && (ops[j].flags & OPF_JMP)) {
-          if (found && is_like_tailjmp(j))
-              break;
-          j--;
-        }
-
-        if (ecx_push > 0) {
-          for (l = 0; l < ecx_push; l++) {
-            if (ops[j].op != OP_POP
-              || !IS(opr_name(&ops[j], 0), "ecx"))
-            {
-              ferr(&ops[j], "'pop ecx' expected\n");
-            }
-            ops[j].flags |= OPF_RMD;
-            j--;
-          }
-
-          found = 1;
-        }
-
-        if (esp_sub) {
-          if (ops[j].op != OP_ADD
-              || !IS(opr_name(&ops[j], 0), "esp")
-              || ops[j].operand[1].type != OPT_CONST
-              || ops[j].operand[1].val != g_stack_fsz)
-            ferr(&ops[j], "'add esp' expected\n");
-          ops[j].flags |= OPF_RMD;
-
-          found = 1;
-        }
-
-        i++;
-      } while (i < opcnt);
-    }
-  }
+  scan_prologue_epilogue(opcnt);
 
   // pass2:
   // - parse calls with labels
@@ -3420,7 +3827,9 @@ static void gen_func(FILE *fout, FILE *fhdr, const char *funcn, int opcnt)
     }
 
     for (l = 0; l < opcnt; l++) {
-      if (g_labels[l][0] && IS(po->operand[0].name, g_labels[l])) {
+      if (g_labels[l] != NULL
+          && IS(po->operand[0].name, g_labels[l]))
+      {
         if (l == i + 1 && po->op == OP_JMP) {
           // yet another alignment type..
           po->flags |= OPF_RMD;
@@ -3451,11 +3860,13 @@ tailcall:
 
   // pass3:
   // - remove dead labels
-  // - process calls
+  // - process trivial calls
   for (i = 0; i < opcnt; i++)
   {
-    if (g_labels[i][0] != 0 && g_label_refs[i].i == -1)
-      g_labels[i][0] = 0;
+    if (g_labels[i] != NULL && g_label_refs[i].i == -1) {
+      free(g_labels[i]);
+      g_labels[i] = NULL;
+    }
 
     po = &ops[i];
     if (po->flags & OPF_RMD)
@@ -3463,101 +3874,47 @@ tailcall:
 
     if (po->op == OP_CALL)
     {
-      tmpname = opr_name(po, 0);
-      pp = po->pp;
-      if (pp == NULL)
-      {
-        // indirect call
-        pp_c = resolve_icall(i, opcnt, &l);
-        if (pp_c != NULL) {
-          if (!pp_c->is_func && !pp_c->is_fptr)
-            ferr(po, "call to non-func: %s\n", pp_c->name);
-          pp = proto_clone(pp_c);
-          my_assert_not(pp, NULL);
-          if (l)
-            // not resolved just to single func
-            pp->is_fptr = 1;
-
-          switch (po->operand[0].type) {
-          case OPT_REG:
-            // we resolved this call and no longer need the register
-            po->regmask_src &= ~(1 << po->operand[0].reg);
-            break;
-          case OPT_REGMEM:
-            pp->is_fptr = 1;
-            break;
-          default:
-            break;
-          }
-        }
-        if (pp == NULL) {
-          pp = calloc(1, sizeof(*pp));
-          my_assert_not(pp, NULL);
-          pp->is_fptr = 1;
-          ret = scan_for_esp_adjust(i + 1, opcnt, &j, &l);
-          if (ret < 0) {
-            if (!g_allow_regfunc)
-              ferr(po, "non-__cdecl indirect call unhandled yet\n");
-            pp->is_unresolved = 1;
-            j = 0;
-          }
-          j /= 4;
-          if (j > ARRAY_SIZE(pp->arg))
-            ferr(po, "esp adjust too large: %d\n", j);
-          pp->ret_type.name = strdup("int");
-          pp->argc = pp->argc_stack = j;
-          for (arg = 0; arg < pp->argc; arg++)
-            pp->arg[arg].type.name = strdup("int");
-        }
-        po->pp = pp;
-      }
-
-      // look for and make use of esp adjust
-      ret = -1;
-      if (!pp->is_stdcall && pp->argc_stack > 0)
-        ret = scan_for_esp_adjust(i + 1, opcnt, &j, &l);
-      if (ret >= 0) {
-        if (pp->is_vararg) {
-          if (j / 4 < pp->argc_stack)
-            ferr(po, "esp adjust is too small: %x < %x\n",
-              j, pp->argc_stack * 4);
-          // modify pp to make it have varargs as normal args
-          arg = pp->argc;
-          pp->argc += j / 4 - pp->argc_stack;
-          for (; arg < pp->argc; arg++) {
-            pp->arg[arg].type.name = strdup("int");
-            pp->argc_stack++;
-          }
-          if (pp->argc > ARRAY_SIZE(pp->arg))
-            ferr(po, "too many args for '%s'\n", tmpname);
-        }
-        if (pp->argc_stack != j / 4)
-          ferr(po, "stack tracking failed for '%s': %x %x\n",
-            tmpname, pp->argc_stack * 4, j);
-
-        ops[ret].flags |= OPF_RMD;
-        if (ops[ret].op == OP_POP && j > 4) {
-          // deal with multi-pop stack adjust
-          j = pp->argc_stack;
-          while (ops[ret].op == OP_POP && j > 0 && ret < opcnt) {
-            ops[ret].flags |= OPF_RMD;
-            j--;
-            ret++;
+      pp = process_call_early(i, opcnt, &j);
+      if (pp != NULL) {
+        if (!(po->flags & OPF_ATAIL))
+          // since we know the args, try to collect them
+          if (collect_call_args_early(po, i, pp, &regmask) != 0)
+            pp = NULL;
+      }
+
+      if (pp != NULL) {
+        if (j >= 0) {
+          // commit esp adjust
+          ops[j].flags |= OPF_RMD;
+          if (ops[j].op != OP_POP) {
+            ferr_assert(&ops[j], ops[j].op == OP_ADD);
+            ops[j].operand[1].val -= pp->argc_stack * 4;
           }
         }
-        else if (!l) {
-          // a bit of a hack, but deals with use of
-          // single adj for multiple calls
-          ops[ret].operand[1].val -= j;
-        }
+
+        if (strstr(pp->ret_type.name, "int64"))
+          need_tmp64 = 1;
+
+        po->flags |= OPF_DONE;
       }
-      else if (pp->is_vararg)
-        ferr(po, "missing esp_adjust for vararg func '%s'\n",
-          pp->name);
+    }
+  }
+
+  // pass4:
+  // - process calls
+  for (i = 0; i < opcnt; i++)
+  {
+    po = &ops[i];
+    if (po->flags & OPF_RMD)
+      continue;
+
+    if (po->op == OP_CALL && !(po->flags & OPF_DONE))
+    {
+      pp = process_call(i, opcnt);
 
       if (!pp->is_unresolved && !(po->flags & OPF_ATAIL)) {
         // since we know the args, collect them
-        collect_call_args(po, i, pp, &regmask, &save_arg_vars,
+        collect_call_args(po, i, pp, &regmask, save_arg_vars,
           i + opcnt * 2);
       }
 
@@ -3566,14 +3923,15 @@ tailcall:
     }
   }
 
-  // pass4:
+  // pass5:
   // - find POPs for PUSHes, rm both
   // - scan for STD/CLD, propagate DF
   // - scan for all used registers
   // - find flag set ops for their users
   // - do unreselved calls
   // - declare indirect functions
-  for (i = 0; i < opcnt; i++) {
+  for (i = 0; i < opcnt; i++)
+  {
     po = &ops[i];
     if (po->flags & OPF_RMD)
       continue;
@@ -3587,7 +3945,7 @@ tailcall:
         regmask_save |= 1 << reg;
     }
 
-    if (po->op == OP_PUSH && po->p_argnum == 0
+    if (po->op == OP_PUSH && !(po->flags & OPF_FARG)
       && !(po->flags & OPF_RSAVE) && !g_func_pp->is_userstack)
     {
       if (po->operand[0].type == OPT_REG)
@@ -3622,20 +3980,7 @@ tailcall:
         }
       }
       else if (po->operand[0].type == OPT_CONST) {
-        for (j = i + 1; j < opcnt; j++) {
-          if ((ops[j].flags & (OPF_JMP|OPF_TAIL|OPF_RSAVE))
-            || ops[j].op == OP_PUSH || g_labels[i][0] != 0)
-          {
-            break;
-          }
-
-          if (!(ops[j].flags & OPF_RMD) && ops[j].op == OP_POP)
-          {
-            po->flags |= OPF_RMD;
-            ops[j].datap = po;
-            break;
-          }
-        }
+        scan_for_pop_const(i, opcnt);
       }
     }
 
@@ -3725,13 +4070,14 @@ tailcall:
         need_tmp64 = 1;
     }
     else if (po->op == OP_CALL) {
+      // note: resolved non-reg calls are OPF_DONE already
       pp = po->pp;
       if (pp == NULL)
         ferr(po, "NULL pp\n");
 
       if (pp->is_unresolved) {
         int regmask_stack = 0;
-        collect_call_args(po, i, pp, &regmask, &save_arg_vars,
+        collect_call_args(po, i, pp, &regmask, save_arg_vars,
           i + opcnt * 2);
 
         // this is pretty rough guess:
@@ -3825,7 +4171,7 @@ tailcall:
     }
   }
 
-  // pass4:
+  // pass6:
   // - confirm regmask_save, it might have been reduced
   if (regmask_save != 0)
   {
@@ -4040,10 +4386,13 @@ tailcall:
     }
   }
 
-  if (save_arg_vars) {
+  for (i = 0; i < ARRAY_SIZE(save_arg_vars); i++) {
+    if (save_arg_vars[i] == 0)
+      continue;
     for (reg = 0; reg < 32; reg++) {
-      if (save_arg_vars & (1 << reg)) {
-        fprintf(fout, "  u32 s_a%d;\n", reg + 1);
+      if (save_arg_vars[i] & (1 << reg)) {
+        fprintf(fout, "  u32 %s;\n",
+          saved_arg_name(buf1, sizeof(buf1), i, reg + 1));
         had_decl = 1;
       }
     }
@@ -4080,7 +4429,7 @@ tailcall:
   // output ops
   for (i = 0; i < opcnt; i++)
   {
-    if (g_labels[i][0] != 0) {
+    if (g_labels[i] != NULL) {
       fprintf(fout, "\n%s:\n", g_labels[i]);
       label_pending = 1;
 
@@ -4887,7 +5236,9 @@ tailcall:
               fprintf(fout, "a%d", tmp_op->p_argpass);
             }
             else if (tmp_op->p_argnum != 0) {
-              fprintf(fout, "%ss_a%d", cast, tmp_op->p_argnum);
+              fprintf(fout, "%s%s", cast,
+                saved_arg_name(buf1, sizeof(buf1),
+                  tmp_op->p_arggrp, tmp_op->p_argnum));
             }
             else {
               fprintf(fout, "%s",
@@ -4977,7 +5328,9 @@ tailcall:
         out_src_opr_u32(buf1, sizeof(buf1), po, &po->operand[0]);
         if (po->p_argnum != 0) {
           // special case - saved func arg
-          fprintf(fout, "  s_a%d = %s;", po->p_argnum, buf1);
+          fprintf(fout, "  %s = %s;",
+            saved_arg_name(buf2, sizeof(buf2),
+              po->p_arggrp, po->p_argnum), buf1);
           break;
         }
         else if (po->flags & OPF_RSAVE) {
@@ -5080,7 +5433,13 @@ tailcall:
 
   fprintf(fout, "}\n\n");
 
-  // cleanup
+  gen_x_cleanup(opcnt);
+}
+
+static void gen_x_cleanup(int opcnt)
+{
+  int i;
+
   for (i = 0; i < opcnt; i++) {
     struct label_ref *lr, *lr_del;
 
@@ -5125,6 +5484,17 @@ struct func_proto_dep {
 static struct func_prototype *hg_fp;
 static int hg_fp_cnt;
 
+static struct scanned_var {
+  char name[NAMELEN];
+  enum opr_lenmod lmod;
+  unsigned int is_seeded:1;
+  unsigned int is_c_str:1;
+} *hg_vars;
+static int hg_var_cnt;
+
+static void output_hdr_fp(FILE *fout, const struct func_prototype *fp,
+  int count);
+
 static struct func_proto_dep *hg_fp_find_dep(struct func_prototype *fp,
   const char *name)
 {
@@ -5170,10 +5540,15 @@ static int hg_fp_cmp_id(const void *p1_, const void *p2_)
 
 static void gen_hdr(const char *funcn, int opcnt)
 {
+  int save_arg_vars[MAX_ARG_GRP] = { 0, };
+  const struct parsed_proto *pp_c;
+  struct parsed_proto *pp;
   struct func_prototype *fp;
   struct func_proto_dep *dep;
   struct parsed_data *pd;
   struct parsed_op *po;
+  const char *tmpname;
+  int regmask_dummy = 0;
   int regmask_save = 0;
   int regmask_dst = 0;
   int regmask_dep = 0;
@@ -5192,9 +5567,26 @@ static void gen_hdr(const char *funcn, int opcnt)
   fp = &hg_fp[hg_fp_cnt];
   snprintf(fp->name, sizeof(fp->name), "%s", funcn);
   fp->id = hg_fp_cnt;
+  fp->argc_stack = -1;
   hg_fp_cnt++;
 
+  // perhaps already in seed header?
+  pp_c = proto_parse(g_fhdr, funcn, 1);
+  if (pp_c != NULL) {
+    fp->argc_stack = pp_c->argc_stack;
+    fp->regmask_dep = get_pp_arg_regmask(pp_c);
+    fp->has_ret = !IS(pp_c->ret_type.name, "void");
+    return;
+  }
+
+  g_bp_frame = g_sp_frame = g_stack_fsz = 0;
+  g_stack_frame_used = 0;
+
   // pass1:
+  // - handle ebp/esp frame, remove ops related to it
+  scan_prologue_epilogue(opcnt);
+
+  // pass2:
   // - collect calls
   // - resolve all branches
   for (i = 0; i < opcnt; i++)
@@ -5207,9 +5599,30 @@ static void gen_hdr(const char *funcn, int opcnt)
       continue;
 
     if (po->op == OP_CALL) {
-      if (po->operand[0].type == OPT_LABEL)
-        hg_fp_add_dep(fp, opr_name(po, 0));
+      tmpname = opr_name(po, 0);
+      pp = NULL;
+      if (po->operand[0].type == OPT_LABEL) {
+        hg_fp_add_dep(fp, tmpname);
+
+        // perhaps a call to already known func?
+        pp_c = proto_parse(g_fhdr, tmpname, 1);
+        if (pp_c != NULL)
+          pp = proto_clone(pp_c);
+      }
+      else if (po->datap != NULL) {
+        pp = calloc(1, sizeof(*pp));
+        my_assert_not(pp, NULL);
+
+        ret = parse_protostr(po->datap, pp);
+        if (ret < 0)
+          ferr(po, "bad protostr supplied: %s\n", (char *)po->datap);
+        free(po->datap);
+        po->datap = NULL;
+      }
+      if (pp != NULL && pp->is_noreturn)
+        po->flags |= OPF_TAIL;
 
+      po->pp = pp;
       continue;
     }
 
@@ -5226,7 +5639,9 @@ static void gen_hdr(const char *funcn, int opcnt)
     }
 
     for (l = 0; l < opcnt; l++) {
-      if (g_labels[l][0] && IS(po->operand[0].name, g_labels[l])) {
+      if (g_labels[l] != NULL
+          && IS(po->operand[0].name, g_labels[l]))
+      {
         add_label_ref(&g_label_refs[l], i);
         po->bt_i = l;
         break;
@@ -5250,24 +5665,81 @@ tailcall:
     i--; // reprocess
   }
 
-  // pass2:
+  // pass3:
   // - remove dead labels
+  // - process trivial calls
+  // - handle push <const>/pop pairs
   for (i = 0; i < opcnt; i++)
   {
-    if (g_labels[i][0] != 0 && g_label_refs[i].i == -1)
-      g_labels[i][0] = 0;
+    if (g_labels[i] != NULL && g_label_refs[i].i == -1) {
+      free(g_labels[i]);
+      g_labels[i] = NULL;
+    }
+
+    po = &ops[i];
+    if (po->flags & OPF_RMD)
+      continue;
+
+    if (po->op == OP_CALL)
+    {
+      pp = process_call_early(i, opcnt, &j);
+      if (pp != NULL) {
+        if (!(po->flags & OPF_ATAIL))
+          // since we know the args, try to collect them
+          if (collect_call_args_early(po, i, pp, &regmask_dummy) != 0)
+            pp = NULL;
+      }
+
+      if (pp != NULL) {
+        if (j >= 0) {
+          // commit esp adjust
+          ops[j].flags |= OPF_RMD;
+          if (ops[j].op != OP_POP) {
+            ferr_assert(&ops[j], ops[j].op == OP_ADD);
+            ops[j].operand[1].val -= pp->argc_stack * 4;
+          }
+        }
+
+        po->flags |= OPF_DONE;
+      }
+    }
+    else if (po->op == OP_PUSH && po->operand[0].type == OPT_CONST) {
+      scan_for_pop_const(i, opcnt);
+    }
   }
 
-  // pass3:
-  // - track saved regs
-  // - try to figure out arg-regs
+  // pass4:
+  // - process calls
   for (i = 0; i < opcnt; i++)
   {
     po = &ops[i];
     if (po->flags & OPF_RMD)
       continue;
 
-    if (po->op == OP_PUSH && po->operand[0].type == OPT_REG)
+    if (po->op == OP_CALL && !(po->flags & OPF_DONE))
+    {
+      pp = process_call(i, opcnt);
+
+      if (!pp->is_unresolved && !(po->flags & OPF_ATAIL)) {
+        // since we know the args, collect them
+        collect_call_args(po, i, pp, &regmask_dummy, save_arg_vars,
+          i + opcnt * 2);
+      }
+    }
+  }
+
+  // pass5:
+  // - track saved regs
+  // - try to figure out arg-regs
+  for (i = 0; i < opcnt; i++)
+  {
+    po = &ops[i];
+
+    if (po->flags & OPF_FARG)
+      /* (just calculate register deps) */;
+    else if (po->flags & OPF_RMD)
+      continue;
+    else if (po->op == OP_PUSH && po->operand[0].type == OPT_REG)
     {
       reg = po->operand[0].reg;
       if (reg < 0)
@@ -5291,23 +5763,6 @@ tailcall:
         continue;
       }
     }
-    else if (po->op == OP_PUSH && po->operand[0].type == OPT_CONST) {
-      for (j = i + 1; j < opcnt; j++) {
-        if ((ops[j].flags & (OPF_JMP|OPF_TAIL|OPF_RSAVE))
-          || ops[j].op == OP_PUSH || g_labels[i][0] != 0)
-        {
-          break;
-        }
-
-        if (!(ops[j].flags & OPF_RMD) && ops[j].op == OP_POP)
-        {
-          po->flags |= OPF_RMD;
-          ops[j].datap = po;
-          break;
-        }
-      }
-      continue;
-    }
     else if (po->op == OP_CALL) {
       po->regmask_dst |= 1 << xAX;
 
@@ -5316,8 +5771,13 @@ tailcall:
         dep->regmask_live = regmask_save | regmask_dst;
     }
     else if (po->op == OP_RET) {
-      if (po->operand_cnt > 0)
+      if (po->operand_cnt > 0) {
         fp->is_stdcall = 1;
+        if (fp->argc_stack >= 0
+            && fp->argc_stack != po->operand[0].val / 4)
+          ferr(po, "ret mismatch? (%d)\n", fp->argc_stack * 4);
+        fp->argc_stack = po->operand[0].val / 4;
+      }
     }
 
     if (has_ret != 0 && (po->flags & OPF_TAIL)) {
@@ -5351,7 +5811,11 @@ tailcall:
       }
     }
 
-    l = po->regmask_src & ~(regmask_save | regmask_dst);
+    l = regmask_save | regmask_dst;
+    if (g_bp_frame && !(po->flags & OPF_EBP_S))
+      l |= 1 << xBP;
+
+    l = po->regmask_src & ~l;
 #if 0
     if (l)
       fnote(po, "dep |= %04x, dst %04x, save %04x\n", l,
@@ -5364,19 +5828,23 @@ tailcall:
   if (has_ret == -1 && (regmask_dep & (1 << xAX)))
     has_ret = 1;
 
-  for (i = 0; i < g_eqcnt; i++)
+  for (i = 0; i < g_eqcnt; i++) {
     if (g_eqs[i].offset > max_bp_offset && g_eqs[i].offset < 4*32)
       max_bp_offset = g_eqs[i].offset;
+  }
 
-  if (max_bp_offset > 0) {
+  if (fp->argc_stack < 0) {
     max_bp_offset = (max_bp_offset + 3) & ~3;
-    fp->argc_stack = max_bp_offset / 4 - 1;
-    if (!(g_ida_func_attr & IDAFA_BP_FRAME))
+    fp->argc_stack = max_bp_offset / 4;
+    if ((g_ida_func_attr & IDAFA_BP_FRAME) && fp->argc_stack > 0)
       fp->argc_stack--;
   }
 
   fp->regmask_dep = regmask_dep & ~(1 << xSP);
   fp->has_ret = has_ret;
+  // output_hdr_fp(stdout, fp, 1);
+
+  gen_x_cleanup(opcnt);
 }
 
 static void hg_fp_resolve_deps(struct func_prototype *fp)
@@ -5404,24 +5872,17 @@ static void hg_fp_resolve_deps(struct func_prototype *fp)
   }
 }
 
-static void output_hdr(FILE *fout)
+static void output_hdr_fp(FILE *fout, const struct func_prototype *fp,
+  int count)
 {
-  struct func_prototype *fp;
-  int had_usercall = 0;
+  const struct parsed_proto *pp;
+  char *p, namebuf[NAMELEN];
+  const char *name;
   int regmask_dep;
   int argc_stack;
-  int i, j, arg;
-
-  // resolve deps
-  qsort(hg_fp, hg_fp_cnt, sizeof(hg_fp[0]), hg_fp_cmp_name);
-  for (i = 0; i < hg_fp_cnt; i++)
-    hg_fp_resolve_deps(&hg_fp[i]);
-
-  // note: messes up .proto ptr, don't use
-  //qsort(hg_fp, hg_fp_cnt, sizeof(hg_fp[0]), hg_fp_cmp_id);
+  int j, arg;
 
-  for (i = 0; i < hg_fp_cnt; i++) {
-    fp = &hg_fp[i];
+  for (; count > 0; count--, fp++) {
     if (fp->has_ret == -1)
       fprintf(fout, "// ret unresolved\n");
 #if 0
@@ -5435,6 +5896,21 @@ static void output_hdr(FILE *fout)
     fprintf(fout, "\n");
 #endif
 
+    p = strchr(fp->name, '@');
+    if (p != NULL) {
+      memcpy(namebuf, fp->name, p - fp->name);
+      namebuf[p - fp->name] = 0;
+      name = namebuf;
+    }
+    else
+      name = fp->name;
+    if (name[0] == '_')
+      name++;
+
+    pp = proto_parse(g_fhdr, name, 1);
+    if (pp != NULL && pp->is_include)
+      continue;
+
     regmask_dep = fp->regmask_dep;
     argc_stack = fp->argc_stack;
 
@@ -5442,9 +5918,7 @@ static void output_hdr(FILE *fout)
     if (regmask_dep && (fp->is_stdcall || argc_stack == 0)
       && (regmask_dep & ~((1 << xCX) | (1 << xDX))) == 0)
     {
-      fprintf(fout, "__fastcall ");
-      if (had_usercall)
-        fprintf(fout, "     "); // align
+      fprintf(fout, "  __fastcall    ");
       if (!(regmask_dep & (1 << xDX)) && argc_stack == 0)
         argc_stack = 1;
       else
@@ -5453,18 +5927,16 @@ static void output_hdr(FILE *fout)
     }
     else if (regmask_dep && !fp->is_stdcall) {
       fprintf(fout, "/*__usercall*/  ");
-      had_usercall = 1;
     }
     else if (regmask_dep) {
       fprintf(fout, "/*__userpurge*/ ");
-      had_usercall = 1;
     }
     else if (fp->is_stdcall)
-      fprintf(fout, "__stdcall  ");
+      fprintf(fout, "  __stdcall     ");
     else
-      fprintf(fout, "__cdecl ");
+      fprintf(fout, "  __cdecl       ");
 
-    fprintf(fout, "%s(", fp->name);
+    fprintf(fout, "%s(", name);
 
     arg = 0;
     for (j = 0; j < xSP; j++) {
@@ -5487,6 +5959,221 @@ static void output_hdr(FILE *fout)
   }
 }
 
+static void output_hdr(FILE *fout)
+{
+  static const char *lmod_c_names[] = {
+    [OPLM_UNSPEC] = "???",
+    [OPLM_BYTE]  = "uint8_t",
+    [OPLM_WORD]  = "uint16_t",
+    [OPLM_DWORD] = "uint32_t",
+    [OPLM_QWORD] = "uint64_t",
+  };
+  const struct scanned_var *var;
+  int i;
+
+  // resolve deps
+  qsort(hg_fp, hg_fp_cnt, sizeof(hg_fp[0]), hg_fp_cmp_name);
+  for (i = 0; i < hg_fp_cnt; i++)
+    hg_fp_resolve_deps(&hg_fp[i]);
+
+  // note: messes up .proto ptr, don't use
+  //qsort(hg_fp, hg_fp_cnt, sizeof(hg_fp[0]), hg_fp_cmp_id);
+
+  // output variables
+  for (i = 0; i < hg_var_cnt; i++) {
+    var = &hg_vars[i];
+
+    if (var->is_c_str)
+      fprintf(fout, "extern %-8s %s[];", "char", var->name);
+    else
+      fprintf(fout, "extern %-8s %s;",
+        lmod_c_names[var->lmod], var->name);
+
+    if (var->is_seeded)
+      fprintf(fout, " // seeded");
+    fprintf(fout, "\n");
+  }
+
+  fprintf(fout, "\n");
+
+  // output function prototypes
+  output_hdr_fp(fout, hg_fp, hg_fp_cnt);
+}
+
+// read a line, truncating it if it doesn't fit
+static char *my_fgets(char *s, size_t size, FILE *stream)
+{
+  char *ret, *ret2;
+  char buf[64];
+  int p;
+
+  p = size - 2;
+  if (p >= 0)
+    s[p] = 0;
+
+  ret = fgets(s, size, stream);
+  if (ret != NULL && p >= 0 && s[p] != 0 && s[p] != '\n') {
+    p = sizeof(buf) - 2;
+    do {
+      buf[p] = 0;
+      ret2 = fgets(buf, sizeof(buf), stream);
+    }
+    while (ret2 != NULL && buf[p] != 0 && buf[p] != '\n');
+  }
+
+  return ret;
+}
+
+// '=' needs special treatment
+// also ' quote
+static char *next_word_s(char *w, size_t wsize, char *s)
+{
+  size_t i;
+
+  s = sskip(s);
+
+  i = 0;
+  if (*s == '\'') {
+    w[0] = s[0];
+    for (i = 1; i < wsize - 1; i++) {
+      if (s[i] == 0) {
+        printf("warning: missing closing quote: \"%s\"\n", s);
+        break;
+      }
+      if (s[i] == '\'')
+        break;
+      w[i] = s[i];
+    }
+  }
+
+  for (; i < wsize - 1; i++) {
+    if (s[i] == 0 || my_isblank(s[i]) || (s[i] == '=' && i > 0))
+      break;
+    w[i] = s[i];
+  }
+  w[i] = 0;
+
+  if (s[i] != 0 && !my_isblank(s[i]) && s[i] != '=')
+    printf("warning: '%s' truncated\n", w);
+
+  return s + i;
+}
+
+static void scan_variables(FILE *fasm)
+{
+  const struct parsed_proto *pp_c;
+  struct scanned_var *var;
+  char line[256] = { 0, };
+  char words[3][256];
+  char *p = NULL;
+  int wordc;
+  int l;
+
+  while (!feof(fasm))
+  {
+    // skip to next data section
+    while (my_fgets(line, sizeof(line), fasm))
+    {
+      asmln++;
+
+      p = sskip(line);
+      if (*p == 0 || *p == ';')
+        continue;
+
+      p = sskip(next_word_s(words[0], sizeof(words[0]), p));
+      if (*p == 0 || *p == ';')
+        continue;
+
+      if (*p != 's' || !IS_START(p, "segment para public"))
+        continue;
+
+      break;
+    }
+
+    if (p == NULL || !IS_START(p, "segment para public"))
+      break;
+    p = sskip(p + 19);
+
+    if (!IS_START(p, "'DATA'"))
+      continue;
+
+    // now process it
+    while (my_fgets(line, sizeof(line), fasm))
+    {
+      asmln++;
+
+      p = line;
+      if (my_isblank(*p))
+        continue;
+
+      p = sskip(p);
+      if (*p == 0 || *p == ';')
+        continue;
+
+      for (wordc = 0; wordc < ARRAY_SIZE(words); wordc++) {
+        words[wordc][0] = 0;
+        p = sskip(next_word_s(words[wordc], sizeof(words[0]), p));
+        if (*p == 0 || *p == ';') {
+          wordc++;
+          break;
+        }
+      }
+
+      if (wordc == 2 && IS(words[1], "ends"))
+        break;
+      if (wordc < 2)
+        continue;
+
+      if ((hg_var_cnt & 0xff) == 0) {
+        hg_vars = realloc(hg_vars, sizeof(hg_vars[0])
+                   * (hg_var_cnt + 0x100));
+        my_assert_not(hg_vars, NULL);
+        memset(hg_vars + hg_var_cnt, 0, sizeof(hg_vars[0]) * 0x100);
+      }
+
+      var = &hg_vars[hg_var_cnt++];
+      snprintf(var->name, sizeof(var->name), "%s", words[0]);
+
+      // maybe already in seed header?
+      pp_c = proto_parse(g_fhdr, var->name, 1);
+      if (pp_c != NULL) {
+        if (pp_c->is_func)
+          aerr("func?\n");
+        else if (pp_c->is_fptr) {
+          var->lmod = OPLM_DWORD;
+          //var->is_ptr = 1;
+        }
+        else if (!guess_lmod_from_c_type(&var->lmod, &pp_c->type))
+          aerr("unhandled C type '%s' for '%s'\n",
+            pp_c->type.name, var->name);
+
+        var->is_seeded = 1;
+        continue;
+      }
+
+      if      (IS(words[1], "dd"))
+        var->lmod = OPLM_DWORD;
+      else if (IS(words[1], "dw"))
+        var->lmod = OPLM_WORD;
+      else if (IS(words[1], "db")) {
+        var->lmod = OPLM_BYTE;
+        if (wordc >= 3 && (l = strlen(words[2])) > 4) {
+          if (words[2][0] == '\'' && IS(words[2] + l - 2, ",0"))
+            var->is_c_str = 1;
+        }
+      }
+      else if (IS(words[1], "dq"))
+        var->lmod = OPLM_QWORD;
+      //else if (IS(words[1], "dt"))
+      else
+        aerr("type '%s' not known\n", words[1]);
+    }
+  }
+
+  rewind(fasm);
+  asmln = 0;
+}
+
 static void set_label(int i, const char *name)
 {
   const char *p;
@@ -5497,34 +6184,14 @@ static void set_label(int i, const char *name)
   if (p != NULL)
     len = p - name;
 
-  if (len > sizeof(g_labels[0]) - 1)
-    aerr("label '%s' too long: %d\n", name, len);
-  if (g_labels[i][0] != 0 && !IS_START(g_labels[i], "algn_"))
+  if (g_labels[i] != NULL && !IS_START(g_labels[i], "algn_"))
     aerr("dupe label '%s' vs '%s'?\n", name, g_labels[i]);
+  g_labels[i] = realloc(g_labels[i], len + 1);
+  my_assert_not(g_labels[i], NULL);
   memcpy(g_labels[i], name, len);
   g_labels[i][len] = 0;
 }
 
-// '=' needs special treatment..
-static char *next_word_s(char *w, size_t wsize, char *s)
-{
-       size_t i;
-
-       s = sskip(s);
-
-       for (i = 0; i < wsize - 1; i++) {
-               if (s[i] == 0 || my_isblank(s[i]) || (s[i] == '=' && i > 0))
-                       break;
-               w[i] = s[i];
-       }
-       w[i] = 0;
-
-       if (s[i] != 0 && !my_isblank(s[i]) && s[i] != '=')
-               printf("warning: '%s' truncated\n", w);
-
-       return s + i;
-}
-
 struct chunk_item {
   char *name;
   long fptr;
@@ -5573,7 +6240,7 @@ static void scan_ahead(FILE *fasm)
   oldpos = ftell(fasm);
   oldasmln = asmln;
 
-  while (fgets(line, sizeof(line), fasm))
+  while (my_fgets(line, sizeof(line), fasm))
   {
     wordc = 0;
     asmln++;
@@ -5643,7 +6310,6 @@ int main(int argc, char *argv[])
   int pending_endp = 0;
   int skip_func = 0;
   int skip_warned = 0;
-  int header_mode = 0;
   int eq_alloc;
   int verbose = 0;
   int multi_seg = 0;
@@ -5664,14 +6330,14 @@ int main(int argc, char *argv[])
     else if (IS(argv[arg], "-m"))
       multi_seg = 1;
     else if (IS(argv[arg], "-hdr"))
-      header_mode = g_quiet_pp = 1;
+      g_header_mode = g_quiet_pp = g_allow_regfunc = 1;
     else
       break;
   }
 
   if (argc < arg + 3) {
     printf("usage:\n%s [-v] [-rf] [-m] <.c> <.asm> <hdrf> [rlist]*\n"
-           "%s -hdr <.h> <.asm> <seed_hdrf> [rlist]*\n",
+           "%s -hdr <out.h> <.asm> <seed.h> [rlist]*\n",
       argv[0], argv[0]);
     return 1;
   }
@@ -5702,7 +6368,7 @@ int main(int argc, char *argv[])
     frlist = fopen(argv[arg], "r");
     my_assert_not(frlist, NULL);
 
-    while (fgets(line, sizeof(line), frlist)) {
+    while (my_fgets(line, sizeof(line), frlist)) {
       p = sskip(line);
       if (*p == 0 || *p == ';')
         continue;
@@ -5751,7 +6417,10 @@ int main(int argc, char *argv[])
     g_label_refs[i].next = NULL;
   }
 
-  while (fgets(line, sizeof(line), fasm))
+  if (g_header_mode)
+    scan_variables(fasm);
+
+  while (my_fgets(line, sizeof(line), fasm))
   {
     wordc = 0;
     asmln++;
@@ -5962,7 +6631,7 @@ do_pending_endp:
       }
 
       if (in_func && !skip_func) {
-        if (header_mode)
+        if (g_header_mode)
           gen_hdr(g_func, pi);
         else
           gen_func(fout, g_fhdr, g_func, pi);
@@ -5978,7 +6647,7 @@ do_pending_endp:
       func_chunk_i = -1;
       if (pi != 0) {
         memset(&ops, 0, pi * sizeof(ops[0]));
-        memset(g_labels, 0, pi * sizeof(g_labels[0]));
+        clear_labels(pi);
         pi = 0;
       }
       g_eqcnt = 0;
@@ -6068,7 +6737,7 @@ do_pending_endp:
       }
 
       // scan for next text segment
-      while (fgets(line, sizeof(line), fasm)) {
+      while (my_fgets(line, sizeof(line), fasm)) {
         asmln++;
         p = sskip(line);
         if (*p == 0 || *p == ';')
@@ -6088,12 +6757,13 @@ do_pending_endp:
     }
 
     if (!in_func || skip_func) {
-      if (!skip_warned && !skip_func && g_labels[pi][0] != 0) {
+      if (!skip_warned && !skip_func && g_labels[pi] != NULL) {
         if (verbose)
           anote("skipping from '%s'\n", g_labels[pi]);
         skip_warned = 1;
       }
-      g_labels[pi][0] = 0;
+      free(g_labels[pi]);
+      g_labels[pi] = NULL;
       continue;
     }
 
@@ -6143,7 +6813,7 @@ do_pending_endp:
     pi++;
   }
 
-  if (header_mode)
+  if (g_header_mode)
     output_hdr(fout);
 
   fclose(fout);