summaryrefslogtreecommitdiffhomepage
path: root/src/logic/mdso_asmgen_symfn.c
blob: e9484af74f6e1abc849234be31c5529d23e970e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/****************************************************************/
/*  mdso: midipix dso scavenger                                 */
/*  Copyright (C) 2015--2017  Z. Gilboa                         */
/*  Released under GPLv2 and GPLv3; see COPYING.MDSO.           */
/****************************************************************/

#include <stdint.h>
#include <stdio.h>

#include <mdso/mdso.h>
#include "mdso_errinfo_impl.h"

static const char * const asm_lines[] = {
	"\t.section  .text\n",
	"\t.globl    %s%s\n",
	"\t.def      %s%s; .scl 2; .type 32; .endef\n\n",

	"%s%s:\n",
	"\tjmp *__imp_%s%s\n\n",
	0
};

int mdso_asmgen_symfn(
	const struct mdso_driver_ctx *	dctx,
	const char *			sym,
	FILE *				fout)
{
	const char * const * line;
	const char *         uscore;

	if (fprintf(fout,"\t.file     \".%s_symfn.s\"\n",sym) < 0)
		return MDSO_FILE_ERROR(dctx);

	uscore = (dctx->cctx->drvflags & MDSO_DRIVER_QUAD_PTR)
		? "" : "_";

	for (line=asm_lines; *line; line++)
		if (fprintf(fout,*line,uscore,sym) < 0)
			return MDSO_FILE_ERROR(dctx);

	return 0;
}