Subversion Repositories Kolibri OS

Rev

Rev 6410 | Rev 6441 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  *  TCC - Tiny C Compiler
  3.  *
  4.  *  Copyright (c) 2001-2004 Fabrice Bellard
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20.  
  21. #ifdef ONE_SOURCE
  22. #include "libtcc.c"
  23. #else
  24. #include "tcc.h"
  25. #endif
  26.  
  27. static void print_paths(const char *msg, char **paths, int nb_paths)
  28. {
  29.     int i;
  30.     printf("%s:\n%s", msg, nb_paths ? "" : "  -\n");
  31.     for(i = 0; i < nb_paths; i++)
  32.         printf("  %s\n", paths[i]);
  33. }
  34.  
  35. static void display_info(TCCState *s, int what)
  36. {
  37.     switch (what) {
  38.     case 0:
  39.         printf("tcc version %s ("
  40. #ifdef TCC_TARGET_I386
  41.         "i386"
  42. #elif defined TCC_TARGET_X86_64
  43.         "x86-64"
  44. #elif defined TCC_TARGET_C67
  45.         "C67"
  46. #elif defined TCC_TARGET_ARM
  47.         "ARM"
  48. # ifdef TCC_ARM_HARDFLOAT
  49.         " Hard Float"
  50. # endif
  51. #elif defined TCC_TARGET_ARM64
  52.         "AArch64"
  53. # ifdef TCC_ARM_HARDFLOAT
  54.         " Hard Float"
  55. # endif
  56. #endif
  57. #ifdef TCC_TARGET_PE
  58.         " Windows"
  59. #elif defined TCC_TARGET_MEOS
  60.                 " KolibriOS"
  61. #else
  62.         " Linux"
  63. #endif
  64.         ")\n", TCC_VERSION);
  65.         break;
  66.     case 1:
  67.         printf("install: %s\n", s->tcc_lib_path);
  68.         /* print_paths("programs", NULL, 0); */
  69.         print_paths("include", s->sysinclude_paths, s->nb_sysinclude_paths);
  70.         print_paths("libraries", s->library_paths, s->nb_library_paths);
  71. #ifndef TCC_TARGET_PE
  72.         print_paths("crt", s->crt_paths, s->nb_crt_paths);
  73.         printf("elfinterp:\n  %s\n",  DEFAULT_ELFINTERP(s));
  74. #endif
  75.         break;
  76.     }
  77. }
  78.  
  79. static void help(void)
  80. {
  81.     printf("Tiny C Compiler "TCC_VERSION" - Copyright (C) 2001-2006 Fabrice Bellard\n"
  82.            "Usage: tcc [options...] [-o outfile] [-c] infile(s)...\n"
  83.            "       tcc [options...] -run infile [arguments...]\n"
  84.            "General options:\n"
  85.            "  -c          compile only - generate an object file\n"
  86.            "  -o outfile  set output filename\n"
  87.            "  -run        run compiled source\n"
  88.            "  -fflag      set or reset (with 'no-' prefix) 'flag' (see man page)\n"
  89.            "  -Wwarning   set or reset (with 'no-' prefix) 'warning' (see man page)\n"
  90.            "  -w          disable all warnings\n"
  91.            "  -v          show version\n"
  92.            "  -vv         show included files (as sole argument: show search paths)\n"
  93.            "  -dumpversion\n"
  94.            "  -bench      show compilation statistics\n"
  95.            "  -xc -xa     specify type of the next infile\n"
  96.            "  -           use stdin pipe as infile\n"
  97.            "  @listfile   read line separated arguments from 'listfile'\n"
  98.            "Preprocessor options:\n"
  99.            "  -Idir       add include path 'dir'\n"
  100.            "  -Dsym[=val] define 'sym' with value 'val'\n"
  101.            "  -Usym       undefine 'sym'\n"
  102.            "  -E          preprocess only\n"
  103.            "    -P[1]       no/alternative output of #line directives\n"
  104.            "    -d{D|M}     dump defines\n"
  105.            "    -C          keep comments\n"
  106.            "Linker options:\n"
  107.            "  -Ldir       add library path 'dir'\n"
  108.            "  -llib       link with dynamic or static library 'lib'\n"
  109.            "  -pthread    link with -lpthread and -D_REENTRANT (POSIX Linux)\n"
  110.            "  -r          generate (relocatable) object file\n"
  111.            "  -rdynamic   export all global symbols to dynamic linker\n"
  112.            "  -shared     generate a shared library\n"
  113.            "  -soname     set name for shared library to be used at runtime\n"
  114.            "  -static     static linking\n"
  115.            "  -Wl,-opt[=val]  set linker option (see manual)\n"
  116.            "Debugger options:\n"
  117.            "  -g          generate runtime debug info\n"
  118. #ifdef CONFIG_TCC_BCHECK
  119.            "  -b          compile with built-in memory and bounds checker (implies -g)\n"
  120. #endif
  121. #ifdef CONFIG_TCC_BACKTRACE
  122.            "  -bt N       show N callers in stack traces\n"
  123. #endif
  124.            "Misc options:\n"
  125.            "  -nostdinc   do not use standard system include paths\n"
  126.            "  -nostdlib   do not link with standard crt and libraries\n"
  127.            "  -Bdir       use 'dir' as tcc internal library and include path\n"
  128.            "  -MD         generate target dependencies for make\n"
  129.            "  -MF depfile put generated dependencies here\n"
  130.            );
  131. }
  132.  
  133. /* re-execute the i386/x86_64 cross-compilers with tcc -m32/-m64: */
  134. #if (defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64) && !defined(TCC_TARGET_MEOS)
  135. #ifdef _WIN32
  136. #include <process.h>
  137. static int execvp_win32(const char *prog, char **argv)
  138. {
  139.     int ret = spawnvp(P_NOWAIT, prog, (const char *const*)argv);
  140.     if (-1 == ret)
  141.         return ret;
  142.     cwait(&ret, ret, WAIT_CHILD);
  143.     exit(ret);
  144. }
  145. #define execvp execvp_win32
  146. #endif
  147. static void exec_other_tcc(TCCState *s, char **argv, const char *optarg)
  148. {
  149.     char child_path[4096], *child_name; const char *target;
  150.     switch (atoi(optarg)) {
  151. #ifdef TCC_TARGET_I386
  152.         case 32: break;
  153.         case 64: target = "x86_64";
  154. #else
  155.         case 64: break;
  156.         case 32: target = "i386";
  157. #endif
  158.             pstrcpy(child_path, sizeof child_path - 40, argv[0]);
  159.             child_name = tcc_basename(child_path);
  160.             strcpy(child_name, target);
  161. #ifdef TCC_TARGET_PE
  162.             strcat(child_name, "-win32");
  163. #elif defined TCC_TARGET_MEOS
  164.             strcat(child_name, "-kos32");
  165. #endif
  166.             strcat(child_name, "-tcc");
  167.             if (strcmp(argv[0], child_path)) {
  168.                 if (s->verbose > 0)
  169.                     printf("tcc: using '%s'\n", child_name), fflush(stdout);
  170.                 execvp(argv[0] = child_path, argv);
  171.             }
  172.             tcc_error("'%s' not found", child_name);
  173.         case 0: /* ignore -march etc. */
  174.             break;
  175.         default:
  176.             tcc_warning("unsupported option \"-m%s\"", optarg);
  177.     }
  178. }
  179. #else
  180. #define exec_other_tcc(s, argv, optarg)
  181. #endif
  182.  
  183. static void gen_makedeps(TCCState *s, const char *target, const char *filename)
  184. {
  185.     FILE *depout;
  186.     char buf[1024], *ext;
  187.     int i;
  188.  
  189.     if (!filename) {
  190.         /* compute filename automatically
  191.          * dir/file.o -> dir/file.d             */
  192.         pstrcpy(buf, sizeof(buf), target);
  193.         ext = tcc_fileextension(buf);
  194.         pstrcpy(ext, sizeof(buf) - (ext-buf), ".d");
  195.         filename = buf;
  196.     }
  197.  
  198.     if (s->verbose)
  199.         printf("<- %s\n", filename);
  200.  
  201.     /* XXX return err codes instead of error() ? */
  202.     depout = fopen(filename, "w");
  203.     if (!depout)
  204.         tcc_error("could not open '%s'", filename);
  205.  
  206.     fprintf(depout, "%s : \\\n", target);
  207.     for (i=0; i<s->nb_target_deps; ++i)
  208.         fprintf(depout, " %s \\\n", s->target_deps[i]);
  209.     fprintf(depout, "\n");
  210.     fclose(depout);
  211. }
  212.  
  213. static char *default_outputfile(TCCState *s, const char *first_file)
  214. {
  215.     char buf[1024];
  216.     char *ext;
  217.     const char *name = "a";
  218.  
  219.     if (first_file && strcmp(first_file, "-"))
  220.         name = tcc_basename(first_file);
  221.     pstrcpy(buf, sizeof(buf), name);
  222.     ext = tcc_fileextension(buf);
  223. #ifdef TCC_TARGET_PE
  224.     if (s->output_type == TCC_OUTPUT_DLL)
  225.         strcpy(ext, ".dll");
  226.     else
  227.     if (s->output_type == TCC_OUTPUT_EXE)
  228.         strcpy(ext, ".exe");
  229.     else
  230. #endif
  231.     if (( (s->output_type == TCC_OUTPUT_OBJ && !s->option_r) ||
  232.           (s->output_type == TCC_OUTPUT_PREPROCESS) )
  233.         && *ext)
  234.         strcpy(ext, ".o");
  235.     else
  236.         strcpy(buf, "a.out");
  237.  
  238.     return tcc_strdup(buf);
  239. }
  240.  
  241. static int64_t getclock_us(void)
  242. {
  243. #ifdef _WIN32
  244.     LARGE_INTEGER frequency, t1;
  245.     QueryPerformanceFrequency(&frequency);
  246.     QueryPerformanceCounter(&t1);
  247.     return t1.QuadPart * 1000000LL / frequency.QuadPart;
  248. #else
  249.     struct timeval tv;
  250.     gettimeofday(&tv, NULL);
  251.     return tv.tv_sec * 1000000LL + tv.tv_usec;
  252. #endif
  253. }
  254.  
  255. int main(int argc, char **argv)
  256. {
  257.     TCCState *s;
  258.     int ret, optind, i;
  259.     int64_t start_time = 0;
  260.  
  261.     s = tcc_new();
  262.  
  263.     optind = tcc_parse_args(s, argc - 1, argv + 1);
  264.  
  265.     if (s->do_bench)
  266.         start_time = getclock_us();
  267.  
  268.     tcc_set_environment(s);
  269.  
  270.     if (optind == 0) {
  271.         help();
  272.         return 1;
  273.     }
  274.  
  275.     if (s->option_m)
  276.         exec_other_tcc(s, argv, s->option_m);
  277.  
  278.     if (s->verbose)
  279.         display_info(s, 0);
  280.  
  281.     if (s->print_search_dirs || (s->verbose == 2 && optind == 1)) {
  282.         tcc_set_output_type(s, TCC_OUTPUT_MEMORY);
  283.         display_info(s, 1);
  284.         return 0;
  285.     }
  286.  
  287.     if (s->verbose && optind == 1)
  288.         return 0;
  289.  
  290.     if (s->nb_files == 0)
  291.         tcc_error("no input files\n");
  292.  
  293.     /* check -c consistency : only single file handled. XXX: checks file type */
  294.     if (s->output_type == TCC_OUTPUT_OBJ && !s->option_r) {
  295.         if (s->nb_libraries != 0)
  296.             tcc_error("cannot specify libraries with -c");
  297.         /* accepts only a single input file */
  298.         if ((s->nb_files != 1) && s->outfile) {
  299.             tcc_error("cannot specify multiple files with -c and -o");
  300.         }
  301.     }
  302.  
  303.     tcc_set_output_type(s, s->output_type);
  304.  
  305.     /* compile or add each files or library */
  306.     for(i = ret = 0; i < s->nb_files && ret == 0; i++) {
  307.         int filetype = *(unsigned char *)s->files[i];
  308.         const char *filename = s->files[i] + 1;
  309.         if (filename[0] == '-' && filename[1] == 'l') {
  310.             if (tcc_add_library(s, filename + 2) < 0) {
  311.                 /* don't fail on -lm as it's harmless to skip math lib */
  312.                 if (strcmp(filename + 2, "m")) {
  313.                     tcc_error_noabort("cannot find library 'lib%s'", filename + 2);
  314.                     ret = 1;
  315.                 }
  316.             }
  317.         } else {
  318.             if (1 == s->verbose)
  319.                 printf("-> %s\n", filename);
  320.             if (!s->outfile)
  321.                 s->outfile = default_outputfile(s, filename);
  322.             if (tcc_add_file(s, filename, filetype) < 0)
  323.                 ret = 1;
  324.             else
  325.             if (s->output_type == TCC_OUTPUT_OBJ) {
  326.                 ret = !!tcc_output_file(s, s->outfile);
  327.                 if (s->gen_deps && !ret)
  328.                     gen_makedeps(s, s->outfile, s->deps_outfile);
  329.                 if (!ret) {
  330.                     if ((i+1) < s->nb_files) {
  331.                         tcc_delete(s);
  332.                         s = tcc_new();
  333.                         tcc_parse_args(s, argc - 1, argv + 1);
  334.                         tcc_set_environment(s);
  335.                         if (s->output_type != TCC_OUTPUT_OBJ)
  336.                             tcc_error("internal error");
  337.                         tcc_set_output_type(s, s->output_type);
  338.                     }
  339.                 }
  340.             }
  341.         }
  342.     }
  343.  
  344.     if (0 == ret) {
  345.         if (s->output_type == TCC_OUTPUT_MEMORY) {
  346. #ifdef TCC_IS_NATIVE
  347.             ret = tcc_run(s, argc - 1 - optind, argv + 1 + optind);
  348. #else
  349.             tcc_error_noabort("-run is not available in a cross compiler");
  350.             ret = 1;
  351. #endif
  352.         } else
  353.         if (s->output_type == TCC_OUTPUT_EXE ||
  354.             s->output_type == TCC_OUTPUT_DLL)
  355.         {
  356.             ret = !!tcc_output_file(s, s->outfile);
  357.             if (s->gen_deps && !ret)
  358.                 gen_makedeps(s, s->outfile, s->deps_outfile);
  359.         }
  360.     }
  361.  
  362.     if (s->do_bench)
  363.         tcc_print_stats(s, getclock_us() - start_time);
  364.  
  365.     tcc_delete(s);
  366.     return ret;
  367. }
  368.