diff lwasm/symdump.c @ 487:7fbf3171ca15

Add symbol table dump in assembly format Add --symbol-dump[=FILE] which will dump the global symbol table in assembly source format to stdout or to the FILE named by FILE.
author William Astle <lost@l-w.ca>
date Fri, 03 May 2019 19:44:02 -0600
parents
children 1c3220ed87a8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lwasm/symdump.c	Fri May 03 19:44:02 2019 -0600
@@ -0,0 +1,146 @@
+/*
+symdump.c
+
+Copyright © 2019 William Astle
+
+This file is part of LWTOOLS.
+
+LWTOOLS is free software: you can redistribute it and/or modify it under the
+terms of the GNU General Public License as published by the Free Software
+Foundation, either version 3 of the License, or (at your option) any later
+version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+more details.
+
+You should have received a copy of the GNU General Public License along with
+this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <lw_alloc.h>
+#include <lw_expr.h>
+#include <lw_string.h>
+
+#include "lwasm.h"
+
+struct listinfo
+{
+	sectiontab_t *sect;
+	asmstate_t *as;
+	int complex;
+};
+
+int dump_symbols_test(lw_expr_t e, void *p)
+{
+	struct listinfo *li = p;
+	
+	if (li -> complex)
+		return 0;
+	
+	if (lw_expr_istype(e, lw_expr_type_special))
+	{
+		if (lw_expr_specint(e) == lwasm_expr_secbase)
+		{
+			if (li -> sect)
+			{
+				li -> complex = 1;
+			}
+			else
+			{
+				li -> sect = lw_expr_specptr(e);
+			}
+		}
+	}
+	return 0;
+}
+
+void dump_symbols_aux(asmstate_t *as, FILE *of, struct symtabe *se)
+{
+	struct symtabe *s;
+	lw_expr_t te;
+	struct listinfo li;
+
+	li.as = as;
+	
+	if (!se)
+		return;
+	
+	dump_symbols_aux(as, of, se -> left);
+	
+	for (s = se; s; s = s -> nextver)
+	{	
+		if (s -> flags & symbol_flag_nolist)
+			continue;
+
+		if (s -> context >= 0)
+			continue;
+
+		lwasm_reduce_expr(as, s -> value);
+
+		fprintf(of, "%s ", s -> symbol);
+		if (s -> flags & symbol_flag_set)
+			fputs("SET", of);
+		else
+			fputs("EQU", of);
+		te = lw_expr_copy(s -> value);
+		li.complex = 0;
+		li.sect = NULL;
+		lw_expr_testterms(te, dump_symbols_test, &li);
+		if (li.sect)
+		{
+			as -> exportcheck = 1;
+			as -> csect = li.sect;
+			lwasm_reduce_expr(as, te);
+			as -> exportcheck = 0;
+		}
+		
+		if (lw_expr_istype(te, lw_expr_type_int))
+		{
+			fprintf(of, " %04X\n", lw_expr_intval(te));
+		}
+		else
+		{
+			fprintf(of, " 0 ; <<incomplete>>\n");
+		}
+		lw_expr_destroy(te);
+	}
+	
+	dump_symbols_aux(as, of, se -> right);
+}
+
+void do_symdump(asmstate_t *as)
+{
+	FILE *of;
+	
+	if (!(as -> flags & FLAG_SYMDUMP))
+	{
+		return;
+	}
+	else
+	{		
+		if (as -> symbol_dump_file)
+		{
+			if (strcmp(as -> symbol_dump_file, "-") == 0)
+			{
+				of = stdout;
+			}
+			else
+				of = fopen(as -> symbol_dump_file, "w");
+		}
+		else
+			of = stdout;
+
+		if (!of)
+		{
+			fprintf(stderr, "Cannot open list file; list not generated\n");
+			return;
+		}
+	}
+	dump_symbols_aux(as, of, as -> symtab.head);
+}