]>
Commit | Line | Data |
---|---|---|
8e20a3ac MM |
1 | /* This file is part of the program psim. |
2 | ||
3 | Copyright (C) 1994-1995, Andrew Cagney <[email protected]> | |
4 | ||
5 | This program is free software; you can redistribute it and/or modify | |
6 | it under the terms of the GNU General Public License as published by | |
7 | the Free Software Foundation; either version 2 of the License, or | |
8 | (at your option) any later version. | |
9 | ||
10 | This program is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | GNU General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU General Public License | |
16 | along with this program; if not, write to the Free Software | |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
18 | ||
19 | */ | |
20 | ||
21 | ||
93fac324 MM |
22 | #ifndef _PSIM_CONFIG_H_ |
23 | #define _PSIM_CONFIG_H_ | |
8e20a3ac MM |
24 | |
25 | ||
26 | /* endianness of the host/target: | |
27 | ||
28 | If the build process is aware (at compile time) of the endianness | |
29 | of the host/target it is able to eliminate slower generic endian | |
30 | handling code. | |
31 | ||
5b4d72dd | 32 | Possible values are 0 (unknown), LITTLE_ENDIAN, BIG_ENDIAN */ |
8e20a3ac | 33 | |
5b4d72dd | 34 | #ifndef WITH_HOST_BYTE_ORDER |
8e20a3ac | 35 | #define WITH_HOST_BYTE_ORDER 0 /*unknown*/ |
5b4d72dd MM |
36 | #endif |
37 | ||
38 | #ifndef WITH_TARGET_BYTE_ORDER | |
8e20a3ac | 39 | #define WITH_TARGET_BYTE_ORDER 0 /*unknown*/ |
5b4d72dd | 40 | #endif |
8e20a3ac MM |
41 | |
42 | extern int current_host_byte_order; | |
8e20a3ac MM |
43 | #define CURRENT_HOST_BYTE_ORDER (WITH_HOST_BYTE_ORDER \ |
44 | ? WITH_HOST_BYTE_ORDER \ | |
45 | : current_host_byte_order) | |
5b4d72dd | 46 | extern int current_target_byte_order; |
8e20a3ac MM |
47 | #define CURRENT_TARGET_BYTE_ORDER (WITH_TARGET_BYTE_ORDER \ |
48 | ? WITH_TARGET_BYTE_ORDER \ | |
49 | : current_target_byte_order) | |
50 | ||
51 | ||
acb06d30 MM |
52 | /* PowerPC XOR endian. |
53 | ||
54 | In addition to the above, the simulator can support the PowerPC's | |
55 | horrible XOR endian mode. This feature makes it possible to | |
56 | control the endian mode of a processor using the MSR. */ | |
57 | ||
58 | #ifndef WITH_XOR_ENDIAN | |
59 | #define WITH_XOR_ENDIAN 8 | |
60 | #endif | |
61 | ||
62 | ||
5b4d72dd MM |
63 | /* Intel host BSWAP support: |
64 | ||
65 | Whether to use bswap on the 486 and pentiums rather than the 386 | |
66 | sequence that uses xchgb/rorl/xchgb */ | |
67 | #ifndef WITH_BSWAP | |
68 | #define WITH_BSWAP 0 | |
69 | #endif | |
70 | ||
71 | ||
8e20a3ac MM |
72 | /* SMP support: |
73 | ||
74 | Sets a limit on the number of processors that can be simulated. If | |
75 | WITH_SMP is set to zero (0), the simulator is restricted to | |
76 | suporting only on processor (and as a consequence leaves the SMP | |
5b4d72dd MM |
77 | code out of the build process). |
78 | ||
79 | The actual number of processors is taken from the device | |
80 | /options/smp@<nr-cpu> */ | |
8e20a3ac MM |
81 | |
82 | #ifndef WITH_SMP | |
acb06d30 | 83 | #define WITH_SMP 5 |
5b4d72dd MM |
84 | #endif |
85 | #if WITH_SMP | |
86 | #define MAX_NR_PROCESSORS WITH_SMP | |
87 | #else | |
88 | #define MAX_NR_PROCESSORS 1 | |
8e20a3ac MM |
89 | #endif |
90 | ||
91 | ||
92 | /* Word size of host/target: | |
93 | ||
94 | Set these according to your host and target requirements. At this | |
95 | point in time, I've only compiled (not run) for a 64bit and never | |
96 | built for a 64bit host. This will always remain a compile time | |
97 | option */ | |
98 | ||
99 | #ifndef WITH_TARGET_WORD_BITSIZE | |
100 | #define WITH_TARGET_WORD_BITSIZE 32 /* compiled only */ | |
101 | #endif | |
5b4d72dd | 102 | |
8e20a3ac MM |
103 | #ifndef WITH_HOST_WORD_BITSIZE |
104 | #define WITH_HOST_WORD_BITSIZE 32 /* 64bit ready? */ | |
105 | #endif | |
106 | ||
107 | ||
108 | /* Program environment: | |
109 | ||
a983c8f0 MM |
110 | Three environments are available - UEA (user), VEA (virtual) and |
111 | OEA (perating). The former two are environment that users would | |
112 | expect to see (VEA includes things like coherency and the time | |
113 | base) while OEA is what an operating system expects to see. By | |
8e20a3ac MM |
114 | setting these to specific values, the build process is able to |
115 | eliminate non relevent environment code | |
116 | ||
117 | CURRENT_ENVIRONMENT specifies which of vea or oea is required for | |
118 | the current runtime. */ | |
119 | ||
a983c8f0 MM |
120 | #define USER_ENVIRONMENT 1 |
121 | #define VIRTUAL_ENVIRONMENT 2 | |
122 | #define OPERATING_ENVIRONMENT 3 | |
8e20a3ac | 123 | |
5b4d72dd MM |
124 | #ifndef WITH_ENVIRONMENT |
125 | #define WITH_ENVIRONMENT 0 | |
126 | #endif | |
127 | ||
8e20a3ac MM |
128 | extern int current_environment; |
129 | #define CURRENT_ENVIRONMENT (WITH_ENVIRONMENT \ | |
130 | ? WITH_ENVIRONMENT \ | |
131 | : current_environment) | |
132 | ||
133 | ||
134 | /* Optional VEA/OEA code: | |
135 | ||
136 | The below, required for the OEA model may also be included in the | |
137 | VEA model however, as far as I can tell only make things | |
138 | slower... */ | |
139 | ||
140 | ||
141 | /* Events. Devices modeling real H/W need to be able to efficiently | |
142 | schedule things to do at known times in the future. The event | |
143 | queue implements this. Unfortunatly this adds the need to check | |
144 | for any events once each full instruction cycle. */ | |
145 | ||
a983c8f0 | 146 | #define WITH_EVENTS (WITH_ENVIRONMENT != USER_ENVIRONMENT) |
8e20a3ac MM |
147 | |
148 | ||
149 | /* Time base: | |
150 | ||
151 | The PowerPC architecture includes the addition of both a time base | |
152 | register and a decrement timer. Like events adds to the overhead | |
153 | of of some instruction cycles. */ | |
154 | ||
155 | #ifndef WITH_TIME_BASE | |
a983c8f0 | 156 | #define WITH_TIME_BASE (WITH_ENVIRONMENT != USER_ENVIRONMENT) |
8e20a3ac MM |
157 | #endif |
158 | ||
159 | ||
160 | /* Callback/Default Memory. | |
161 | ||
162 | Core includes a builtin memory type (raw_memory) that is | |
163 | implemented using an array. raw_memory does not require any | |
164 | additional functions etc. | |
165 | ||
166 | Callback memory is where the core calls a core device for the data | |
167 | it requires. | |
168 | ||
169 | Default memory is an extenstion of this where for addresses that do | |
170 | not map into either a callback or core memory range a default map | |
171 | can be used. | |
172 | ||
173 | The OEA model uses callback memory for devices and default memory | |
174 | for buses. | |
175 | ||
176 | The VEA model uses callback memory to capture `page faults'. | |
177 | ||
178 | While it may be possible to eliminate callback/default memory (and | |
179 | hence also eliminate an additional test per memory fetch) it | |
180 | probably is not worth the effort. | |
181 | ||
182 | BTW, while raw_memory could have been implemented as a callback, | |
183 | profiling has shown that there is a biger win (at least for the | |
184 | x86) in eliminating a function call for the most common | |
185 | (raw_memory) case. */ | |
186 | ||
187 | #define WITH_CALLBACK_MEMORY 1 | |
188 | ||
189 | ||
190 | /* Alignment: | |
191 | ||
192 | The PowerPC may or may not handle miss aligned transfers. An | |
193 | implementation normally handles miss aligned transfers in big | |
194 | endian mode but generates an exception in little endian mode. | |
195 | ||
196 | This model. Instead allows both little and big endian modes to | |
197 | either take exceptions or handle miss aligned transfers. | |
198 | ||
199 | If 0 is specified then for big-endian mode miss alligned accesses | |
200 | are permitted (NONSTRICT_ALIGNMENT) while in little-endian mode the | |
201 | processor will fault on them (STRICT_ALIGNMENT). */ | |
202 | ||
203 | #define NONSTRICT_ALIGNMENT 1 | |
204 | #define STRICT_ALIGNMENT 2 | |
205 | ||
206 | #ifndef WITH_ALIGNMENT | |
207 | #define WITH_ALIGNMENT 0 | |
208 | #endif | |
5b4d72dd | 209 | |
8e20a3ac MM |
210 | extern int current_alignment; |
211 | #define CURRENT_ALIGNMENT (WITH_ALIGNMENT \ | |
212 | ? WITH_ALIGNMENT \ | |
213 | : current_alignment) | |
214 | ||
215 | ||
216 | /* Floating point suport: | |
217 | ||
218 | Still under development. */ | |
219 | ||
220 | #define SOFT_FLOATING_POINT 1 | |
221 | #define HARD_FLOATING_POINT 2 | |
222 | ||
223 | #ifndef WITH_FLOATING_POINT | |
224 | #define WITH_FLOATING_POINT HARD_FLOATING_POINT | |
225 | #endif | |
226 | extern int current_floating_point; | |
227 | #define CURRENT_FLOATING_POINT (WITH_FLOATING_POINT \ | |
228 | ? WITH_FLOATING_POINT \ | |
229 | : current_floating_point) | |
230 | ||
231 | ||
232 | /* Debugging: | |
233 | ||
234 | Control the inclusion of debugging code. */ | |
235 | ||
236 | /* Include the tracing code. Disabling this eliminates all tracing | |
237 | code */ | |
238 | ||
239 | #ifndef WITH_TRACE | |
240 | #define WITH_TRACE 1 | |
241 | #endif | |
242 | ||
243 | /* include code that checks assertions scattered through out the | |
244 | program */ | |
245 | ||
246 | #ifndef WITH_ASSERT | |
247 | #define WITH_ASSERT 1 | |
248 | #endif | |
249 | ||
28816f45 MM |
250 | /* Whether to check instructions for reserved bits being set */ |
251 | ||
252 | #ifndef WITH_RESERVED_BITS | |
253 | #define WITH_RESERVED_BITS 1 | |
254 | #endif | |
255 | ||
5b4d72dd | 256 | /* include monitoring code */ |
8e20a3ac | 257 | |
5b4d72dd MM |
258 | #define MONITOR_INSTRUCTION_ISSUE 1 |
259 | #define MONITOR_LOAD_STORE_UNIT 2 | |
260 | #ifndef WITH_MON | |
261 | #define WITH_MON (MONITOR_LOAD_STORE_UNIT \ | |
262 | | MONITOR_INSTRUCTION_ISSUE) | |
8e20a3ac MM |
263 | #endif |
264 | ||
28816f45 MM |
265 | /* Current CPU model (models are in the generated models.h include file) */ |
266 | #ifndef WITH_MODEL | |
267 | #define WITH_MODEL 0 | |
268 | #endif | |
269 | ||
270 | #define CURRENT_MODEL (WITH_MODEL \ | |
271 | ? WITH_MODEL \ | |
272 | : current_model) | |
273 | ||
274 | #ifndef WITH_DEFAULT_MODEL | |
275 | #define WITH_DEFAULT_MODEL DEFAULT_MODEL | |
276 | #endif | |
277 | ||
290ad14a MM |
278 | #define MODEL_ISSUE_IGNORE (-1) |
279 | #define MODEL_ISSUE_PROCESS 1 | |
280 | ||
70fc4ad3 | 281 | #ifndef WITH_MODEL_ISSUE |
290ad14a | 282 | #define WITH_MODEL_ISSUE 0 |
70fc4ad3 MM |
283 | #endif |
284 | ||
290ad14a MM |
285 | extern int current_model_issue; |
286 | #define CURRENT_MODEL_ISSUE (WITH_MODEL_ISSUE \ | |
287 | ? WITH_MODEL_ISSUE \ | |
288 | : current_model_issue) | |
289 | ||
30c87b55 MM |
290 | /* Whether or not input/output just uses stdio, or uses printf_filtered for |
291 | output, and polling input for input. */ | |
2e913166 MM |
292 | |
293 | #define DONT_USE_STDIO 2 | |
30c87b55 MM |
294 | #define DO_USE_STDIO 1 |
295 | ||
296 | #ifndef WITH_STDIO | |
2e913166 | 297 | #define WITH_STDIO DO_USE_STDIO |
30c87b55 MM |
298 | #endif |
299 | ||
2e913166 MM |
300 | extern int current_stdio; |
301 | #define CURRENT_STDIO (WITH_STDIO \ | |
302 | ? WITH_STDIO \ | |
303 | : current_stdio) | |
304 | ||
305 | ||
306 | ||
8e20a3ac MM |
307 | /* INLINE CODE SELECTION: |
308 | ||
309 | GCC -O3 attempts to inline any function or procedure in scope. The | |
310 | options below facilitate fine grained control over what is and what | |
311 | isn't made inline. For instance it can control things down to a | |
93fac324 MM |
312 | specific modules static routines. Doing this allows the compiler |
313 | to both eliminate the overhead of function calls and (as a | |
314 | consequence) also eliminate further dead code. | |
8e20a3ac | 315 | |
93fac324 MM |
316 | On a CISC (x86) I've found that I can achieve an order of magintude |
317 | speed improvement (x3-x5). In the case of RISC (sparc) while the | |
318 | performance gain isn't as great it is still significant. | |
8e20a3ac | 319 | |
93fac324 MM |
320 | Each module is controled by the macro <module>_INLINE which can |
321 | have the values described below | |
8e20a3ac | 322 | |
93fac324 | 323 | 0 Do not inline any thing for the given module |
8e20a3ac | 324 | |
93fac324 MM |
325 | The following additional values are `bit fields' and can be |
326 | combined. | |
8e20a3ac | 327 | |
30c87b55 MM |
328 | REVEAL_MODULE: |
329 | ||
330 | Include the C file for the module into the file being compiled | |
93fac324 | 331 | but do not make the functions within the module inline. |
8e20a3ac | 332 | |
93fac324 MM |
333 | While of no apparent benefit, this makes it possible for the |
334 | included module, when compiled to inline its calls to what | |
335 | would otherwize be external functions. | |
8e20a3ac | 336 | |
30c87b55 MM |
337 | INLINE_MODULE: |
338 | ||
339 | Make external functions within the module `inline'. Thus if | |
93fac324 MM |
340 | the module is included into a file being compiled, calls to |
341 | its funtions can be eliminated. 2 implies 1. | |
342 | ||
30c87b55 MM |
343 | INLINE_LOCALS: |
344 | ||
345 | Make internal (static) functions within the module `inline'. | |
346 | ||
347 | The following abreviations are available: | |
348 | ||
349 | INCLUDE_MODULE == (REVEAL_MODULE | INLINE_MODULE) | |
350 | ||
351 | ALL_INLINE == (REVEAL_MODULE | INLINE_MODULE | INLINE_LOCALS) | |
93fac324 MM |
352 | |
353 | In addition to this, modules have been put into two categories. | |
354 | ||
355 | Simple modules - eg sim-endian.h bits.h | |
356 | ||
357 | Because these modules are small and simple and do not have | |
358 | any complex interpendencies they are configured, if | |
359 | <module>_INLINE is so enabled, to inline themselves in all | |
360 | modules that include those files. | |
361 | ||
362 | For the default build, this is a real win as all byte | |
363 | conversion and bit manipulation functions are inlined. | |
364 | ||
365 | Complex modules - the rest | |
366 | ||
367 | These are all handled using the files inline.h and inline.c. | |
368 | psim.c includes the above which in turn include any remaining | |
369 | code. | |
370 | ||
371 | IMPLEMENTATION: | |
372 | ||
373 | The inline ability is enabled by prefixing every data / function | |
374 | declaration and definition with one of the following: | |
375 | ||
376 | ||
377 | INLINE_<module> | |
378 | ||
379 | Prefix to any global function that is a candidate for being | |
380 | inline. | |
381 | ||
382 | values - `', `static', `static INLINE' | |
383 | ||
384 | ||
385 | EXTERN_<module> | |
386 | ||
387 | Prefix to any global data structures for the module. Global | |
388 | functions that are not to be inlined shall also be prefixed | |
389 | with this. | |
390 | ||
391 | values - `', `static', `static' | |
392 | ||
393 | ||
394 | STATIC_INLINE_<module> | |
395 | ||
396 | Prefix to any local (static) function that is a candidate for | |
397 | being made inline. | |
398 | ||
399 | values - `static', `static INLINE' | |
400 | ||
401 | ||
402 | static | |
403 | ||
404 | Prefix all local data structures. Local functions that are not | |
405 | to be inlined shall also be prefixed with this. | |
406 | ||
407 | values - `static', `static' | |
408 | ||
409 | nb: will not work for modules that are being inlined for every | |
410 | use (white lie). | |
411 | ||
412 | ||
413 | extern | |
414 | #ifndef _INLINE_C_ | |
415 | #endif | |
416 | ||
417 | Prefix to any declaration of a global object (function or | |
418 | variable) that should not be inlined and should have only one | |
419 | definition. The #ifndef wrapper goes around the definition | |
420 | propper to ensure that only one copy is generated. | |
421 | ||
422 | nb: this will not work when a module is being inlined for every | |
423 | use. | |
424 | ||
425 | ||
426 | STATIC_<module> | |
427 | ||
428 | Replaced by either `static' or `EXTERN_MODULE'. | |
429 | ||
430 | ||
431 | REALITY CHECK: | |
432 | ||
30c87b55 | 433 | This is not for the faint hearted. I've seen GCC get up to 500mb |
93fac324 MM |
434 | trying to compile what this can create. |
435 | ||
436 | Some of the modules do not yet implement the WITH_INLINE_STATIC | |
437 | option. Instead they use the macro STATIC_INLINE to control their | |
438 | local function. | |
439 | ||
440 | Because of the way that GCC parses __attribute__(), the macro's | |
441 | need to be adjacent to the functioin name rather then at the start | |
442 | of the line vis: | |
443 | ||
444 | int STATIC_INLINE_MODULE f(void); | |
445 | void INLINE_MODULE *g(void); | |
446 | ||
447 | */ | |
448 | ||
449 | #define REVEAL_MODULE 1 | |
450 | #define INLINE_MODULE 2 | |
451 | #define INCLUDE_MODULE (INLINE_MODULE | REVEAL_MODULE) | |
452 | #define INLINE_LOCALS 4 | |
453 | #define ALL_INLINE 7 | |
8e20a3ac MM |
454 | |
455 | /* Your compilers inline reserved word */ | |
456 | ||
457 | #ifndef INLINE | |
93fac324 | 458 | #if defined(__GNUC__) && defined(__OPTIMIZE__) |
8e20a3ac MM |
459 | #define INLINE __inline__ |
460 | #else | |
461 | #define INLINE /*inline*/ | |
462 | #endif | |
463 | #endif | |
464 | ||
2e913166 | 465 | |
30c87b55 MM |
466 | /* Your compilers pass parameters in registers reserved word */ |
467 | ||
2e913166 MM |
468 | #ifndef WITH_REGPARM |
469 | #define WITH_REGPARM 0 | |
470 | #endif | |
471 | ||
472 | #ifndef WITH_STDCALL | |
473 | #define WITH_STDCALL 0 | |
474 | #endif | |
475 | ||
30c87b55 | 476 | #if !defined REGPARM |
2e913166 MM |
477 | #if (defined(i386) || defined(i486) || defined(i586) || defined(__i386__) || defined(__i486__) || defined(__i586__)) |
478 | #if (WITH_REGPARM && WITH_STDCALL) | |
479 | #define REGPARM __attribute__((__regparm__(WITH_REGPARM),__stdcall__)) | |
480 | #else | |
481 | #if (WITH_REGPARM && !WITH_STDCALL) | |
30c87b55 MM |
482 | #define REGPARM __attribute__((__regparm__(WITH_REGPARM))) |
483 | #else | |
2e913166 MM |
484 | #if (!WITH_REGPARM && WITH_STDCALL) |
485 | #define REGPARM __attribute__((__stdcall__)) | |
486 | #else | |
30c87b55 MM |
487 | #define REGPARM |
488 | #endif | |
489 | #endif | |
2e913166 MM |
490 | #endif |
491 | #endif | |
492 | #endif | |
30c87b55 MM |
493 | |
494 | ||
495 | ||
8e20a3ac MM |
496 | /* Default prefix for static functions */ |
497 | ||
498 | #ifndef STATIC_INLINE | |
499 | #define STATIC_INLINE static INLINE | |
500 | #endif | |
501 | ||
5b4d72dd | 502 | /* Default macro to simplify control several of key the inlines */ |
8e20a3ac MM |
503 | |
504 | #ifndef DEFAULT_INLINE | |
93fac324 | 505 | #define DEFAULT_INLINE INLINE_LOCALS |
8e20a3ac MM |
506 | #endif |
507 | ||
5b4d72dd | 508 | /* Code that converts between hosts and target byte order. Used on |
93fac324 MM |
509 | every memory access (instruction and data). See sim-endian.h for |
510 | additional byte swapping configuration information. This module | |
511 | can inline for all callers */ | |
8e20a3ac | 512 | |
73c4941b | 513 | #ifndef SIM_ENDIAN_INLINE |
93fac324 | 514 | #define SIM_ENDIAN_INLINE (DEFAULT_INLINE ? ALL_INLINE : 0) |
73c4941b MM |
515 | #endif |
516 | ||
93fac324 MM |
517 | /* Low level bit manipulation routines. This module can inline for all |
518 | callers */ | |
73c4941b MM |
519 | |
520 | #ifndef BITS_INLINE | |
93fac324 | 521 | #define BITS_INLINE (DEFAULT_INLINE ? ALL_INLINE : 0) |
8e20a3ac MM |
522 | #endif |
523 | ||
5b4d72dd MM |
524 | /* Code that gives access to various CPU internals such as registers. |
525 | Used every time an instruction is executed */ | |
8e20a3ac | 526 | |
5b4d72dd | 527 | #ifndef CPU_INLINE |
93fac324 | 528 | #define CPU_INLINE (DEFAULT_INLINE ? ALL_INLINE : 0) |
8e20a3ac MM |
529 | #endif |
530 | ||
5b4d72dd MM |
531 | /* Code that translates between an effective and real address. Used |
532 | by every load or store. */ | |
8e20a3ac MM |
533 | |
534 | #ifndef VM_INLINE | |
535 | #define VM_INLINE DEFAULT_INLINE | |
536 | #endif | |
537 | ||
5b4d72dd MM |
538 | /* Code that loads/stores data to/from the memory data structure. |
539 | Used by every load or store */ | |
8e20a3ac | 540 | |
5b4d72dd MM |
541 | #ifndef CORE_INLINE |
542 | #define CORE_INLINE DEFAULT_INLINE | |
8e20a3ac MM |
543 | #endif |
544 | ||
5b4d72dd MM |
545 | /* Code to check for and process any events scheduled in the future. |
546 | Called once per instruction cycle */ | |
8e20a3ac MM |
547 | |
548 | #ifndef EVENTS_INLINE | |
93fac324 | 549 | #define EVENTS_INLINE (DEFAULT_INLINE ? ALL_INLINE : 0) |
8e20a3ac MM |
550 | #endif |
551 | ||
5b4d72dd MM |
552 | /* Code monotoring the processors performance. It counts events on |
553 | every instruction cycle */ | |
8e20a3ac | 554 | |
5b4d72dd | 555 | #ifndef MON_INLINE |
93fac324 | 556 | #define MON_INLINE (DEFAULT_INLINE ? ALL_INLINE : 0) |
8e20a3ac MM |
557 | #endif |
558 | ||
5b4d72dd | 559 | /* Code called on the rare occasions that an interrupt occures. */ |
8e20a3ac MM |
560 | |
561 | #ifndef INTERRUPTS_INLINE | |
93fac324 | 562 | #define INTERRUPTS_INLINE DEFAULT_INLINE |
5b4d72dd MM |
563 | #endif |
564 | ||
565 | /* Code called on the rare occasion that either gdb or the device tree | |
566 | need to manipulate a register within a processor */ | |
567 | ||
568 | #ifndef REGISTERS_INLINE | |
93fac324 | 569 | #define REGISTERS_INLINE DEFAULT_INLINE |
8e20a3ac MM |
570 | #endif |
571 | ||
5b4d72dd MM |
572 | /* Code called on the rare occasion that a processor is manipulating |
573 | real hardware instead of RAM. | |
574 | ||
575 | Also, most of the functions in devices.c are always called through | |
30c87b55 | 576 | a jump table. */ |
8e20a3ac | 577 | |
93fac324 | 578 | #ifndef DEVICE_INLINE |
30c87b55 | 579 | #define DEVICE_INLINE INLINE_LOCALS |
8e20a3ac MM |
580 | #endif |
581 | ||
5b4d72dd MM |
582 | /* Code called whenever information on a Special Purpose Register is |
583 | required. Called by the mflr/mtlr pseudo instructions */ | |
8e20a3ac MM |
584 | |
585 | #ifndef SPREG_INLINE | |
586 | #define SPREG_INLINE DEFAULT_INLINE | |
587 | #endif | |
588 | ||
589 | /* Functions modeling the semantics of each instruction. Two cases to | |
590 | consider, firstly of idecode is implemented with a switch then this | |
591 | allows the idecode function to inline each semantic function | |
592 | (avoiding a call). The second case is when idecode is using a | |
593 | table, even then while the semantic functions can't be inlined, | |
594 | setting it to one still enables each semantic function to inline | |
595 | anything they call (if that code is marked for being inlined). | |
596 | ||
597 | WARNING: you need lots (like 200mb of swap) of swap. Setting this | |
598 | to 1 is useful when using a table as it enables the sematic code to | |
599 | inline all of their called functions */ | |
600 | ||
601 | #ifndef SEMANTICS_INLINE | |
2e913166 | 602 | #define SEMANTICS_INLINE (DEFAULT_INLINE & ~INLINE_MODULE) |
8e20a3ac MM |
603 | #endif |
604 | ||
30c87b55 MM |
605 | /* When using the instruction cache, code to decode an instruction and |
606 | install it into the cache. Normally called when ever there is a | |
607 | miss in the instruction cache. */ | |
608 | ||
609 | #ifndef ICACHE_INLINE | |
2e913166 | 610 | #define ICACHE_INLINE (DEFAULT_INLINE & ~INLINE_MODULE) |
30c87b55 MM |
611 | #endif |
612 | ||
613 | /* General functions called by semantics functions but part of the | |
614 | instruction table. Although called by the semantic functions the | |
615 | frequency of calls is low. Consequently the need to inline this | |
616 | code is reduced. */ | |
8e20a3ac | 617 | |
30c87b55 MM |
618 | #ifndef SUPPORT_INLINE |
619 | #define SUPPORT_INLINE INLINE_LOCALS | |
8e20a3ac MM |
620 | #endif |
621 | ||
70fc4ad3 MM |
622 | /* Model specific code used in simulating functional units. Note, it actaully |
623 | pays NOT to inline the PowerPC model functions (at least on the x86). This | |
624 | is because if it is inlined, each PowerPC instruction gets a separate copy | |
625 | of the code, which is not friendly to the cache. */ | |
28816f45 MM |
626 | |
627 | #ifndef MODEL_INLINE | |
30c87b55 | 628 | #define MODEL_INLINE (DEFAULT_INLINE & ~INLINE_MODULE) |
73c4941b MM |
629 | #endif |
630 | ||
acb06d30 MM |
631 | /* Code to print out what options we were compiled with. Because this |
632 | is called at process startup, it doesn't have to be inlined, but | |
633 | if it isn't brought in and the model routines are inline, the model | |
634 | routines will be pulled in twice. */ | |
635 | ||
636 | #ifndef OPTIONS_INLINE | |
30c87b55 MM |
637 | #define OPTIONS_INLINE MODEL_INLINE |
638 | #endif | |
639 | ||
640 | /* idecode acts as the hub of the system, everything else is imported | |
641 | into this file */ | |
642 | ||
643 | #ifndef IDECOCE_INLINE | |
644 | #define IDECODE_INLINE INLINE_LOCALS | |
645 | #endif | |
646 | ||
647 | /* psim, isn't actually inlined */ | |
648 | ||
649 | #ifndef PSIM_INLINE | |
650 | #define PSIM_INLINE INLINE_LOCALS | |
93fac324 MM |
651 | #endif |
652 | ||
30c87b55 MM |
653 | /* Code to emulate os or rom compatibility. This code is called via a |
654 | table and hence there is little benefit in making it inline */ | |
93fac324 MM |
655 | |
656 | #ifndef OS_EMUL_INLINE | |
657 | #define OS_EMUL_INLINE 0 | |
acb06d30 MM |
658 | #endif |
659 | ||
93fac324 | 660 | #endif /* _PSIM_CONFIG_H */ |