2007-07-06 20:28:40 +00:00
|
|
|
/*===- llvm-stub.c - Stub executable to run llvm bitcode files -----------===//
|
2004-06-01 23:48:45 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tool is used by the gccld program to enable transparent execution of
|
2007-07-06 20:28:40 +00:00
|
|
|
// bitcode files by the user. Specifically, gccld outputs two files when asked
|
2004-06-01 23:48:45 +00:00
|
|
|
// to compile a <program> file:
|
2007-07-06 20:28:40 +00:00
|
|
|
// 1. It outputs the LLVM bitcode file to <program>.bc
|
2004-06-01 23:48:45 +00:00
|
|
|
// 2. It outputs a stub executable that runs lli on <program>.bc
|
|
|
|
//
|
|
|
|
// This allows the end user to just say ./<program> and have the JIT executed
|
|
|
|
// automatically. On unix, the stub executable emitted is actually a bourne
|
2004-06-02 00:29:52 +00:00
|
|
|
// shell script that does the forwarding. Windows does not like #!/bin/sh
|
2004-06-01 23:48:45 +00:00
|
|
|
// programs in .exe files, so we make it an actual program, defined here.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-12-20 04:34:36 +00:00
|
|
|
|
|
|
|
#include "llvm/Config/config.h"
|
|
|
|
|
|
|
|
#if defined(HAVE_UNISTD_H) && !defined(_MSC_VER)
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <process.h>
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
2004-06-01 23:48:45 +00:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
const char *Interp = getenv("LLVMINTERP");
|
|
|
|
const char **Args;
|
|
|
|
if (Interp == 0) Interp = "lli";
|
|
|
|
|
|
|
|
/* Set up the command line options to pass to the JIT. */
|
|
|
|
Args = (const char**)malloc(sizeof(char*) * (argc+2));
|
|
|
|
/* argv[0] is the JIT */
|
|
|
|
Args[0] = Interp;
|
2004-06-02 00:04:54 +00:00
|
|
|
|
|
|
|
#ifdef __CYGWIN32__
|
|
|
|
/* Cygwin strips the .exe suffix off of argv[0] to "help" us. Put it back
|
|
|
|
* on.
|
|
|
|
*/
|
|
|
|
argv[0] = strcat(strcpy((char*)malloc(strlen(argv[0])+5), argv[0]), ".exe");
|
|
|
|
#endif
|
|
|
|
|
2004-06-01 23:48:45 +00:00
|
|
|
/* argv[1] is argv[0] + ".bc". */
|
|
|
|
Args[1] = strcat(strcpy((char*)malloc(strlen(argv[0])+4), argv[0]), ".bc");
|
|
|
|
|
|
|
|
/* The rest of the args are as before. */
|
|
|
|
memcpy(Args+2, argv+1, sizeof(char*)*argc);
|
|
|
|
|
|
|
|
/* Run the JIT. */
|
|
|
|
execvp(Interp, (char *const*)Args);
|
|
|
|
|
|
|
|
/* if _execv returns, the JIT could not be started. */
|
|
|
|
fprintf(stderr, "Could not execute the LLVM JIT. Either add 'lli' to your"
|
|
|
|
" path, or set the\ninterpreter you want to use in the LLVMINTERP "
|
|
|
|
"environment variable.\n");
|
|
|
|
return 1;
|
|
|
|
}
|