/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (show annotations)
Mon Oct 8 16:22:56 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 7460 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1632 2007/09/11 21:46:35 debug Exp $
20070616	Implementing the MIPS32/64 revision 2 "ror" instruction.
20070617	Adding a struct for each physpage which keeps track of which
		ranges within that page (base offset, length) that are
		continuously translatable. When running with native code
		generation enabled (-b), a range is added after each read-
		ahead loop.
		Experimenting with using the physical program counter sample
		data (implemented 20070608) together with the "translatable
		range" information, to figure out which physical address ranges
		would be worth translating to native code (if the number of
		samples falling within a range is above a certain threshold).
20070618	Adding automagic building of .index comment files for
		src/file/, src/promemul/, src src/useremul/ as well.
		Adding a "has been translated" bit to the ranges, so that only
		not-yet-translated ranges will be sampled.
20070619	Moving src/cpu.c and src/memory_rw.c into src/cpus/,
		src/device.c into src/devices/, and src/machine.c into
		src/machines/.
		Creating a skeleton cc/ld native backend module; beginning on
		the function which will detect cc command line, etc.
20070620	Continuing on the native code generation infrastructure.
20070621	Moving src/x11.c and src/console.c into a new src/console/
		subdir (for everything that is console or framebuffer related).
		Moving src/symbol*.c into a new src/symbol/, which should
		contain anything that is symbol handling related.
20070624	Making the program counter sampling threshold a "settings
		variable" (sampling_threshold), i.e. it can now be changed
		during runtime.
		Switching the RELEASE notes format from plain text to HTML.
		If the TMPDIR environment variable is set, it is used instead
		of "/tmp" for temporary files.
		Continuing on the cc/ld backend: simple .c code is generated,
		the compiler and linker are called, etc.
		Adding detection of host architecture to the configure script
		(again), and adding icache invalidation support (only
		implemented for Alpha hosts so far).
20070625	Simplifying the program counter sampling mechanism.
20070626	Removing the cc/ld native code generation stuff, program
		counter sampling, etc; it would not have worked well in the
		general case.
20070627	Removing everything related to native code generation.
20070629	Removing the (practically unusable) support for multiple
		emulations. (The single emulation allowed now still supports
		multiple simultaneous machines, as before.)
		Beginning on PCCTWO and M88K interrupts.
20070723	Adding a dummy skeleton for emulation of M32R processors.
20070901	Fixing a warning found by "gcc version 4.3.0 20070817
		(experimental)" on amd64.
20070905	Removing some more traces of the old "multiple emulations"
		code.
		Also looking in /usr/local/include and /usr/local/lib for
		X11 libs, when running configure.
20070909	Minor updates to the guest OS install instructions, in
		preparation for the NetBSD 4.0 release.
20070918	More testing of NetBSD 4.0 RC1.

1 /*
2 * Copyright (C) 2005-2007 Anders Gavare. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 *
28 * $Id: generate_tail.c,v 1.21 2007/06/28 13:36:47 debug Exp $
29 */
30
31 #include <stdio.h>
32 #include <stdlib.h>
33
34
35 char *uppercase(char *l)
36 {
37 static char staticbuf[1000];
38 size_t i = 0;
39
40 while (*l && i < sizeof(staticbuf)) {
41 char u = *l++;
42 if (u >= 'a' && u <= 'z')
43 u -= 32;
44 staticbuf[i++] = u;
45 }
46 if (i == sizeof(staticbuf))
47 i--;
48 staticbuf[i] = 0;
49 return staticbuf;
50 }
51
52
53 int main(int argc, char *argv[])
54 {
55 char *a, *b;
56
57 if (argc != 3) {
58 fprintf(stderr, "usage: %s arch Arch\n", argv[0]);
59 fprintf(stderr, "Example: %s alpha Alpha\n", argv[0]);
60 fprintf(stderr, " or: %s arm ARM\n", argv[0]);
61 exit(1);
62 }
63
64 a = argv[1];
65 b = argv[2];
66
67 printf("\n/*\n * AUTOMATICALLY GENERATED! Do not edit.\n */\n\n");
68
69 printf("extern size_t dyntrans_cache_size;\n");
70
71 printf("#ifdef DYNTRANS_32\n");
72 printf("#define MODE32\n");
73 printf("#endif\n");
74
75 printf("#define DYNTRANS_FUNCTION_TRACE_DEF "
76 "%s_cpu_functioncall_trace\n", a);
77 printf("#include \"cpu_dyntrans.c\"\n");
78 printf("#undef DYNTRANS_FUNCTION_TRACE_DEF\n\n");
79
80 printf("#define DYNTRANS_INIT_TABLES "
81 "%s_cpu_init_tables\n", a);
82 printf("#include \"cpu_dyntrans.c\"\n");
83 printf("#undef DYNTRANS_INIT_TABLES\n\n");
84
85 printf("#define DYNTRANS_TC_ALLOCATE_DEFAULT_PAGE_DEF "
86 "%s_tc_allocate_default_page\n", a);
87 printf("#include \"cpu_dyntrans.c\"\n");
88 printf("#undef DYNTRANS_TC_ALLOCATE_DEFAULT_PAGE_DEF\n\n");
89
90 printf("#define DYNTRANS_INVAL_ENTRY\n");
91 printf("#include \"cpu_dyntrans.c\"\n");
92 printf("#undef DYNTRANS_INVAL_ENTRY\n\n");
93
94 printf("#define DYNTRANS_INVALIDATE_TC "
95 "%s_invalidate_translation_caches\n", a);
96 printf("#include \"cpu_dyntrans.c\"\n");
97 printf("#undef DYNTRANS_INVALIDATE_TC\n\n");
98
99 printf("#define DYNTRANS_INVALIDATE_TC_CODE "
100 "%s_invalidate_code_translation\n", a);
101 printf("#include \"cpu_dyntrans.c\"\n");
102 printf("#undef DYNTRANS_INVALIDATE_TC_CODE\n\n");
103
104 printf("#define DYNTRANS_UPDATE_TRANSLATION_TABLE "
105 "%s_update_translation_table\n", a);
106 printf("#include \"cpu_dyntrans.c\"\n");
107 printf("#undef DYNTRANS_UPDATE_TRANSLATION_TABLE\n\n");
108
109 printf("#define MEMORY_RW %s_memory_rw\n", a);
110 printf("#define MEM_%s\n", uppercase(a));
111 printf("#include \"memory_rw.c\"\n");
112 printf("#undef MEM_%s\n", uppercase(a));
113 printf("#undef MEMORY_RW\n\n");
114
115 printf("#define DYNTRANS_PC_TO_POINTERS_FUNC %s_pc_to_pointers\n", a);
116 printf("#define DYNTRANS_PC_TO_POINTERS_GENERIC "
117 "%s_pc_to_pointers_generic\n", a);
118 printf("#include \"cpu_dyntrans.c\"\n");
119 printf("#undef DYNTRANS_PC_TO_POINTERS_FUNC\n\n");
120 printf("#undef DYNTRANS_PC_TO_POINTERS_GENERIC\n\n");
121
122
123 printf("#define COMBINE_INSTRUCTIONS %s_combine_instructions\n", a);
124 printf("#ifndef DYNTRANS_32\n");
125 printf("#define reg(x) (*((uint64_t *)(x)))\n");
126 printf("#define MODE_uint_t uint64_t\n");
127 printf("#define MODE_int_t int64_t\n");
128 printf("#else\n");
129 printf("#define reg(x) (*((uint32_t *)(x)))\n");
130 printf("#define MODE_uint_t uint32_t\n");
131 printf("#define MODE_int_t int32_t\n");
132 printf("#endif\n");
133 printf("#define COMBINE(n) %s_combine_ ## n\n", a);
134 printf("#include \"quick_pc_to_pointers.h\"\n");
135 printf("#include \"cpu_%s_instr.c\"\n\n", a);
136
137 printf("#define DYNTRANS_RUN_INSTR_DEF %s_run_instr\n", a);
138 printf("#include \"cpu_dyntrans.c\"\n");
139 printf("#undef DYNTRANS_RUN_INSTR_DEF\n\n");
140
141
142 printf("#ifdef DYNTRANS_DUALMODE_32\n");
143 printf("#undef COMBINE_INSTRUCTIONS\n");
144 printf("#define COMBINE_INSTRUCTIONS %s32_combine_instructions\n", a);
145 printf("#undef X\n#undef instr\n#undef reg\n"
146 "#define X(n) void %s32_instr_ ## n(struct cpu *cpu, \\\n"
147 "\tstruct %s_instr_call *ic)\n", a, a);
148 printf("#define instr(n) %s32_instr_ ## n\n", a);
149 printf("#ifdef HOST_LITTLE_ENDIAN\n");
150 printf("#define reg(x) ( *((uint32_t *)(x)) )\n");
151 printf("#else\n");
152 printf("#define reg(x) ( *((uint32_t *)(x)+1) )\n");
153 printf("#endif\n");
154 printf("#define MODE32\n");
155 printf("#undef MODE_uint_t\n#undef MODE_int_t\n");
156 printf("#define MODE_uint_t uint32_t\n");
157 printf("#define MODE_int_t int32_t\n");
158
159 printf("#define DYNTRANS_INVAL_ENTRY\n");
160 printf("#undef DYNTRANS_INVALIDATE_TLB_ENTRY\n"
161 "#define DYNTRANS_INVALIDATE_TLB_ENTRY "
162 "%s32_invalidate_tlb_entry\n", a);
163 printf("#include \"cpu_dyntrans.c\"\n");
164 printf("#undef DYNTRANS_INVAL_ENTRY\n\n");
165 printf("#define DYNTRANS_INVALIDATE_TC "
166 "%s32_invalidate_translation_caches\n", a);
167 printf("#include \"cpu_dyntrans.c\"\n");
168 printf("#undef DYNTRANS_INVALIDATE_TC\n\n");
169 printf("#define DYNTRANS_INVALIDATE_TC_CODE "
170 "%s32_invalidate_code_translation\n", a);
171 printf("#include \"cpu_dyntrans.c\"\n");
172 printf("#undef DYNTRANS_INVALIDATE_TC_CODE\n\n");
173 printf("#define DYNTRANS_UPDATE_TRANSLATION_TABLE "
174 "%s32_update_translation_table\n", a);
175 printf("#include \"cpu_dyntrans.c\"\n");
176 printf("#undef DYNTRANS_UPDATE_TRANSLATION_TABLE\n\n");
177 printf("#define DYNTRANS_PC_TO_POINTERS_FUNC %s32_pc_to_pointers\n", a);
178 printf("#define DYNTRANS_PC_TO_POINTERS_GENERIC "
179 "%s32_pc_to_pointers_generic\n", a);
180 printf("#undef DYNTRANS_PC_TO_POINTERS\n"
181 "#define DYNTRANS_PC_TO_POINTERS %s32_pc_to_pointers\n", a);
182 printf("#include \"cpu_dyntrans.c\"\n");
183 printf("#undef DYNTRANS_PC_TO_POINTERS_FUNC\n\n");
184 printf("#undef DYNTRANS_PC_TO_POINTERS_GENERIC\n\n");
185 printf("#undef COMBINE\n");
186 printf("#define COMBINE(n) %s32_combine_ ## n\n", a);
187 printf("#include \"quick_pc_to_pointers.h\"\n");
188 printf("#include \"cpu_%s_instr.c\"\n", a);
189
190 printf("\n#undef DYNTRANS_PC_TO_POINTERS\n"
191 "#define DYNTRANS_PC_TO_POINTERS %s_pc_to_pointers\n"
192 "#define DYNTRANS_PC_TO_POINTERS32 %s32_pc_to_pointers\n\n", a, a);
193
194 printf("#define DYNTRANS_RUN_INSTR_DEF %s32_run_instr\n", a);
195 printf("#include \"cpu_dyntrans.c\"\n");
196 printf("#undef DYNTRANS_RUN_INSTR_DEF\n\n");
197
198 printf("#endif /* DYNTRANS_DUALMODE_32 */\n\n\n");
199
200
201 printf("CPU_FAMILY_INIT(%s,\"%s\")\n\n", a, b);
202
203 return 0;
204 }
205

  ViewVC Help
Powered by ViewVC 1.1.26