代码拉取完成,页面将自动刷新
#include "std.h"
#if defined(LPC_TO_C) && defined(BINARIES)
#define SUPRESS_COMPILER_INLINES
#include "compile_file.h"
#include "file_incl.h"
#include "interface.h"
#include "compiler.h"
#include "md.h"
#include "otable.h"
#include "cfuns.h"
#include "file.h"
#include "backend.h"
#include "binaries.h"
#include "cc.h"
#include "master.h"
void
link_jump_table P2(program_t *, prog, void **, jump_table)
{
int num = prog->num_functions_defined;
function_t *funcs = prog->function_table;
int i;
int j;
for (i = 0, j = 0; i < num; i++) {
if (jump_table[j])
funcs[i].address = (unsigned long) jump_table[j];
else
funcs[i].address = 0;
j++;
}
}
void
init_lpc_to_c()
{
interface_t **p = interface;
lpc_object_t *ob;
while (*p) {
ob = ALLOCATE(lpc_object_t, TAG_LPC_OBJECT, "init_lpc_to_c");
ob->name = alloc_cstring((*p)->fname, "init_lpc_to_c");
SET_TAG(ob->name, TAG_OBJ_NAME);
enter_object_hash_at_end((object_t *)ob);
ob->flags = O_COMPILED_PROGRAM;
ob->jump_table = (*p)->jump_table;
if ((ob->string_switch_tables = (*p)->string_switch_tables))
fix_switches(ob->string_switch_tables);
p++;
}
}
/* F_GENERATE_SOURCE will only be def'd if LPC->C is */
#ifdef F_GENERATE_SOURCE
static void generate_identifier P2(char *, buf, char *, name)
{
while (*name) {
if ((*name >= 'a' && *name <= 'z') || (*name >= 'A' && *name <= 'Z'))
*buf++ = *name++;
else {
*buf++ = '_';
name++;
}
}
*buf = 0;
}
#ifdef RUNTIME_LOADING
/* $c = COMPILER, $l = CFLAGS, $s = src dir, $f = file, $e = errors */
static void create_command P7(char *, buf, char *, format,
char *, compiler, char *, cflags,
char *, src, char *, file, char *, errors) {
char *p = format, *q = buf;
while (1) {
switch (*p) {
case 0:
*q = 0;
return;
case '$':
switch (*++p) {
case 'c':
strcpy(q, compiler);
q += strlen(q);
break;
case 'l':
strcpy(q, cflags);
q += strlen(q);
break;
case 's':
strcpy(q, src);
q += strlen(q);
break;
case 'f':
strcpy(q, file);
q += strlen(q);
break;
case 'e':
strcpy(q, errors);
q += strlen(q);
break;
default:
fprintf(stderr, "Bad character in command format.\n");
break;
}
p++;
break;
default:
*q++ = *p++;
break;
}
}
}
static void compile_and_link P2(char *, file, char *, ident) {
char *p, command[1024];
char tmp[1024];
void *handle;
lpc_object_t *ob;
interface_t *interface;
if ((p = strrchr(file, '.')))
*p = 0;
/* Do the compile */
create_command(command,
#if defined(sgi)
"$c $l -c -shared -I$s -G 0 -o $f.so $f.c >$e 2>&1",
#elif defined(__NetBSD__)
"($c $l -c -fpic -DPIC -I$s -o $f.o $f.c && ld -X -Bshareable -o $f.so $f.o && rm $f.o) >$e 2>&1",
#elif defined(__alpha)
"($c $l -c -I$s -o $f.o $f.c && ld -msym -shared -expect_unresolved '*' -o $f.so $f.o && rm $f.o) >$e 2>&1",
#else
/* Everything else ... known to work for Linux and FreeBSD */
"$c $l -I$s -fPIC -shared -Wl,-soname,$f.so -o $f.so $f.c > $e 2>&1",
#endif
COMPILER, CFLAGS, "lpc2c", file, "lpc2c/errors");
if (system(command))
error("Compilation of generated C code failed.\n");
sprintf(tmp, "%s.so", file);
handle = dlopen(tmp, RTLD_LAZY);
if (!handle) {
sprintf(tmp, "dlopen() failed: %s\n", dlerror());
error(tmp);
}
sprintf(tmp, "LPCINFO_%s", ident);
interface = dlsym(handle, tmp);
if (!interface) {
sprintf(tmp, "_LPCINFO_%s", ident);
interface = dlsym(handle, tmp);
}
if (!interface) {
sprintf(tmp, "dlsym() failed: %s\n", dlerror());
error(tmp);
}
remove_precompiled_hashes(interface->fname);
ob = ALLOCATE(lpc_object_t, TAG_LPC_OBJECT, "compile_and_link");
ob->name = alloc_cstring(interface->fname, "compile_and_link");
SET_TAG(ob->name, TAG_OBJ_NAME);
enter_object_hash_at_end((object_t *)ob);
ob->flags = O_COMPILED_PROGRAM;
ob->jump_table = interface->jump_table;
if ((ob->string_switch_tables = interface->string_switch_tables))
fix_switches(ob->string_switch_tables);
}
#endif
static char *rest_of_makefile = "interface.c\n\
\n\
%%ifdef GNU\n\
OBJ=$(addprefix $(OBJDIR)/,$(subst .c,.o,$(SRC)))\n\
\n\
$(OBJDIR)/%%.o: %%.c $(OBJDIR)\n\
\t$(CC) -I$(OBJDIR) -I.. $(CFLAGS) -o $@ -c $<\n\
%%else\n\
.c.o:\n\
\t$(CC) $(CFLAGS) -I.. -c $*.c\n\
%%endif\n\
\n\
all: $(OBJ)\n\
\tar rlcu mudlib.a $(OBJ)\n\
\n\
clean:\n\
\t-rm -f *.o\n\
\t-rm -f mudlib.a\n\
\n";
int generate_source P2(svalue_t *, arg1, char *, out_fname)
{
FILE *makefile;
struct stat c_st;
char real_name[200];
char name[200];
char out_name[200];
char ident[205];
int done;
char *outp;
char *string_needs_free;
int index;
#ifdef RUNTIME_LOADING
array_t tmp_arr;
#endif
array_t *arr;
program_t *prog;
int f;
int single;
error_context_t econ;
svalue_t *mret;
mret = apply_master_ob(APPLY_VALID_COMPILE_TO_C, 0);
if (!MASTER_APPROVED(mret))
error("Permission to use generate_source() denied by master::valid_compile_to_c()\n");
compilation_output_file = 0;
string_needs_free = 0;
if (!save_context(&econ))
error("Too deep recursion.");
if (SETJMP(econ.context)) {
restore_context(&econ);
pop_context(&econ);
if (compilation_output_file)
fclose(compilation_output_file);
if (string_needs_free)
FREE(string_needs_free);
return 0;
}
if (arg1->type != T_ARRAY) {
#ifdef RUNTIME_LOADING
tmp_arr.size = 1;
tmp_arr.item[0] = *arg1;
arr = &tmp_arr;
single = 1;
out_fname = out_name;
strcpy(out_name, SAVE_BINARIES);
strcat(out_fname, "/");
#else
error("RUNTIME_LOADING not enabled\n");
#endif
} else {
arr = arg1->u.arr;
single = 0;
if (!out_fname) {
out_fname = out_name;
strcpy(out_name, SAVE_BINARIES);
strcat(out_fname, "/mudlib/");
}
}
outp = out_fname + strlen(out_fname);
while (*out_fname == '/')
out_fname++;
for (index = 0; index < arr->size; index++) {
*outp = 0; /* go back to the base name */
if (arr->item[index].type != T_STRING)
error("Bad type for filename in generate_source()\n");
if (!strip_name(arr->item[index].u.string, name, sizeof name))
error("Filenames with consecutive /'s in them aren't allowed.\n");
/*
* First check that the c-file exists.
*/
(void) strcpy(real_name, name);
(void) strcat(real_name, ".c");
if (stat(real_name, &c_st) == -1)
error("Could not find '%s' to compile.\n", real_name);
if (!legal_path(real_name)) {
debug_message("Illegal pathname: %s\n", real_name);
error("Illegal path name.\n");
}
generate_identifier(ident, name);
strcat(out_fname, ident);
strcat(out_fname, ".c");
compilation_output_file = crdir_fopen(out_fname);
if (compilation_output_file == 0) {
debug_perror("generate_source: fopen", out_fname);
error("Could not open output file '/%s'.\n", out_fname);
}
fprintf(compilation_output_file, "#include \"std.h\"\n#include \"interface.h\"\n#include \"lpc_to_c.h\"\n\n");
done = 0;
while (!done) {
if (comp_flag)
debug_message(" compiling /%s ...", real_name);
f = open(real_name, O_RDONLY);
if (f == -1) {
fclose(compilation_output_file);
compilation_output_file = 0;
debug_perror("generate_source", real_name);
error("Could not read the file '/%s'.\n", real_name);
}
generate_identifier(ident, name);
compilation_ident = ident;
compile_to_c = 1;
prog = compile_file(f, real_name);
compile_to_c = 0;
if (comp_flag)
debug_message(" done\n");
update_compile_av(total_lines);
close(f);
total_lines = 0;
if (inherit_file == 0 && (num_parse_error > 0 || !prog)) {
fclose(compilation_output_file);
compilation_output_file = 0;
if (prog)
free_prog(prog, 1);
pop_context(&econ);
return 0;
}
if (inherit_file) {
string_needs_free = inherit_file;
if (prog) {
free_prog(prog, 1);
prog = 0;
}
if (strcmp(inherit_file, name) == 0) {
fclose(compilation_output_file);
compilation_output_file = 0;
FREE(inherit_file);
string_needs_free = inherit_file = 0;
error("Illegal to inherit self.\n");
}
inherit_file = 0;
if (!load_object(string_needs_free, 0))
error("Attempted to inherit a non-existent file.");
FREE(string_needs_free);
string_needs_free = 0;
} else
done = 1;
}
if (prog) {
free_prog(prog, 1);
prog = 0;
}
fclose(compilation_output_file);
compilation_output_file = 0;
}
if (!single) {
*outp = 0;
strcat(out_fname, "interface.c");
compilation_output_file = crdir_fopen(out_fname);
if (compilation_output_file == 0) {
debug_perror("generate_source: fopen", out_fname);
error("Could not open output file '/%s'.\n", out_fname);
}
*outp = 0;
strcat(out_fname, "Makefile.master");
makefile = crdir_fopen(out_fname);
if (makefile == 0) {
fclose(compilation_output_file);
compilation_output_file = 0;
debug_perror("generate_source: fclose", out_fname);
error("Could not open output file '/%s'.\n", out_fname);
}
fprintf(compilation_output_file, "#include \"std.h\"\n#include \"interface.h\"\n#include \"lpc_to_c.h\"\n\n");
fprintf(makefile, "OBJ=");
for (index = 0; index < arr->size; index++) {
strip_name(arr->item[index].u.string, name, sizeof name);
generate_identifier(ident, name);
fprintf(compilation_output_file, "extern interface_t LPCINFO_%s;\n", ident);
}
fprintf(compilation_output_file, "\n\ninterface_t *interface[] = {\n");
fprintf(makefile, "interface.o");
for (index = 0; index < arr->size; index++) {
strip_name(arr->item[index].u.string, name, sizeof name);
generate_identifier(ident, name);
fprintf(compilation_output_file, " &LPCINFO_%s,\n", ident);
fprintf(makefile, " %s.o", ident);
}
fprintf(makefile, "\nSRC=");
for (index = 0; index < arr->size; index++) {
strip_name(arr->item[index].u.string, name, sizeof name);
generate_identifier(ident, name);
fprintf(makefile, "%s.c ", ident);
}
fprintf(compilation_output_file, " 0\n};\n");
fclose(compilation_output_file);
compilation_output_file = 0;
fprintf(makefile,"%s", rest_of_makefile);
fclose(makefile);
*outp = 0;
strcat(out_fname, "Makefile.pre");
makefile = crdir_fopen(out_fname);
if (makefile == 0) {
debug_perror("generate_source: fclose", out_fname);
error("Could not open output file '/%s'.\n", out_fname);
}
fprintf(makefile, "%%define NORMAL\n\n%%include \"mudlib/Makefile.master\"\n\n");
fclose(makefile);
*outp = 0;
strcat(out_fname, "GNUmakefile.pre");
makefile = crdir_fopen(out_fname);
if (makefile == 0) {
debug_perror("generate_source: fclose", out_fname);
error("Could not open output file '/%s'.\n", out_fname);
}
fprintf(makefile, "%%define GNU\n\n%%include \"mudlib/Makefile.master\"\n\n");
fclose(makefile);
} else {
#ifdef RUNTIME_LOADING
compile_and_link(out_fname, ident);
#endif
}
pop_context(&econ);
return 1;
}
#endif
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。