/[gxemul]/trunk/src/cpus/generate_tail.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/cpus/generate_tail.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 26 by dpavlin, Mon Oct 8 16:20:10 2007 UTC revision 42 by dpavlin, Mon Oct 8 16:22:32 2007 UTC
# Line 1  Line 1 
1  /*  /*
2   *  Copyright (C) 2005  Anders Gavare.  All rights reserved.   *  Copyright (C) 2005-2007  Anders Gavare.  All rights reserved.
3   *   *
4   *  Redistribution and use in source and binary forms, with or without   *  Redistribution and use in source and binary forms, with or without
5   *  modification, are permitted provided that the following conditions are met:   *  modification, are permitted provided that the following conditions are met:
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: generate_tail.c,v 1.11 2006/06/24 21:47:23 debug Exp $   *  $Id: generate_tail.c,v 1.16 2007/06/07 15:36:24 debug Exp $
29   */   */
30    
31  #include <stdio.h>  #include <stdio.h>
# Line 66  int main(int argc, char *argv[]) Line 66  int main(int argc, char *argv[])
66    
67          printf("\n/*\n *  AUTOMATICALLY GENERATED! Do not edit.\n */\n\n");          printf("\n/*\n *  AUTOMATICALLY GENERATED! Do not edit.\n */\n\n");
68    
69            printf("extern size_t dyntrans_cache_size;\n");
70            printf("extern int native_code_translation_enabled;\n");
71            printf("#include \"native.h\"\n");
72    
73          printf("#ifdef DYNTRANS_32\n");          printf("#ifdef DYNTRANS_32\n");
74          printf("#define MODE32\n");          printf("#define MODE32\n");
75          printf("#endif\n");          printf("#endif\n");
# Line 80  int main(int argc, char *argv[]) Line 84  int main(int argc, char *argv[])
84          printf("#include \"cpu_dyntrans.c\"\n");          printf("#include \"cpu_dyntrans.c\"\n");
85          printf("#undef DYNTRANS_INIT_TABLES\n\n");          printf("#undef DYNTRANS_INIT_TABLES\n\n");
86    
87            printf("#define DYNTRANS_TIMER_SAMPLE_TICK "
88                "%s_timer_sample_tick\n", a);
89            printf("#include \"cpu_dyntrans.c\"\n");
90            printf("#undef DYNTRANS_TIMER_SAMPLE_TICK\n\n");
91    
92          printf("#define DYNTRANS_TC_ALLOCATE_DEFAULT_PAGE "          printf("#define DYNTRANS_TC_ALLOCATE_DEFAULT_PAGE "
93              "%s_tc_allocate_default_page\n", a);              "%s_tc_allocate_default_page\n", a);
94          printf("#include \"cpu_dyntrans.c\"\n");          printf("#include \"cpu_dyntrans.c\"\n");
# Line 132  int main(int argc, char *argv[]) Line 141  int main(int argc, char *argv[])
141          printf("#include \"quick_pc_to_pointers.h\"\n");          printf("#include \"quick_pc_to_pointers.h\"\n");
142          printf("#include \"cpu_%s_instr.c\"\n\n", a);          printf("#include \"cpu_%s_instr.c\"\n\n", a);
143    
144            printf("#define DYNTRANS_RUN_INSTR %s_run_instr\n", a);
145            printf("#include \"cpu_dyntrans.c\"\n");
146            printf("#undef DYNTRANS_RUN_INSTR\n\n");
147    
148    
149          printf("#ifdef DYNTRANS_DUALMODE_32\n");          printf("#ifdef DYNTRANS_DUALMODE_32\n");
150          printf("#undef COMBINE_INSTRUCTIONS\n");          printf("#undef COMBINE_INSTRUCTIONS\n");
# Line 185  int main(int argc, char *argv[]) Line 198  int main(int argc, char *argv[])
198              "#define DYNTRANS_PC_TO_POINTERS %s_pc_to_pointers\n"              "#define DYNTRANS_PC_TO_POINTERS %s_pc_to_pointers\n"
199              "#define DYNTRANS_PC_TO_POINTERS32 %s32_pc_to_pointers\n\n", a, a);              "#define DYNTRANS_PC_TO_POINTERS32 %s32_pc_to_pointers\n\n", a, a);
200    
201          printf("#endif /*  DYNTRANS_DUALMODE_32  */\n\n\n");          printf("#define DYNTRANS_RUN_INSTR %s32_run_instr\n", a);
202            printf("#include \"cpu_dyntrans.c\"\n");
203            printf("#undef DYNTRANS_RUN_INSTR\n\n");
204    
205            printf("#endif /*  DYNTRANS_DUALMODE_32  */\n\n\n");
206    
         printf("#define DYNTRANS_CPU_RUN_INSTR %s_cpu_run_instr\n", a);  
         printf("#include \"cpu_dyntrans.c\"\n");  
         printf("#undef DYNTRANS_CPU_RUN_INSTR\n\n");  
207    
208          printf("CPU_FAMILY_INIT(%s,\"%s\")\n\n", a, b);          printf("CPU_FAMILY_INIT(%s,\"%s\")\n\n", a, b);
209    

Legend:
Removed from v.26  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26