⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 std-config.h

📁 gdb-6.0 linux 下的调试工具
💻 H
📖 第 1 页 / 共 2 页
字号:
         Make external functions within the module `inline'.  Thus if         the module is included into a file being compiled, calls to	 its funtions can be eliminated. 2 implies 1.      PSIM_INLINE_LOCALS:         Make internal (static) functions within the module `inline'.   The following abreviations are available:      INCLUDE_MODULE == (REVEAL_MODULE | INLINE_MODULE)      ALL_INLINE == (REVEAL_MODULE | INLINE_MODULE | PSIM_INLINE_LOCALS)   In addition to this, modules have been put into two categories.         Simple modules - eg sim-endian.h bits.h	 Because these modules are small and simple and do not have	 any complex interpendencies they are configured, if	 <module>_INLINE is so enabled, to inline themselves in all	 modules that include those files.	 For the default build, this is a real win as all byte	 conversion and bit manipulation functions are inlined.	 Complex modules - the rest	 These are all handled using the files inline.h and inline.c.	 psim.c includes the above which in turn include any remaining	 code.   IMPLEMENTATION:   The inline ability is enabled by prefixing every data / function   declaration and definition with one of the following:       INLINE_<module>       Prefix to any global function that is a candidate for being       inline.       values - `', `static', `static INLINE'       EXTERN_<module>             Prefix to any global data structures for the module.  Global       functions that are not to be inlined shall also be prefixed       with this.       values - `', `static', `static'       STATIC_INLINE_<module>       Prefix to any local (static) function that is a candidate for       being made inline.       values - `static', `static INLINE'       static       Prefix all local data structures.  Local functions that are not       to be inlined shall also be prefixed with this.       values - `static', `static'       nb: will not work for modules that are being inlined for every       use (white lie).       extern       #ifndef _INLINE_C_       #endif              Prefix to any declaration of a global object (function or       variable) that should not be inlined and should have only one       definition.  The #ifndef wrapper goes around the definition       propper to ensure that only one copy is generated.       nb: this will not work when a module is being inlined for every       use.       STATIC_<module>       Replaced by either `static' or `EXTERN_MODULE'.   REALITY CHECK:   This is not for the faint hearted.  I've seen GCC get up to 500mb   trying to compile what this can create.   Some of the modules do not yet implement the WITH_INLINE_STATIC   option.  Instead they use the macro STATIC_INLINE to control their   local function.   Because of the way that GCC parses __attribute__(), the macro's   need to be adjacent to the function name rather than at the start   of the line vis:   	int STATIC_INLINE_MODULE f(void);	void INLINE_MODULE *g(void);   */#define REVEAL_MODULE			1#define INLINE_MODULE			2#define INCLUDE_MODULE			(INLINE_MODULE | REVEAL_MODULE)#define PSIM_INLINE_LOCALS			4#define ALL_INLINE			7/* Your compilers inline reserved word */#ifndef INLINE#if defined(__GNUC__) && defined(__OPTIMIZE__)#define INLINE __inline__#else#define INLINE /*inline*/#endif#endif/* Your compilers pass parameters in registers reserved word */#ifndef WITH_REGPARM#define WITH_REGPARM                   0#endif/* Your compilers use an alternative calling sequence reserved word */#ifndef WITH_STDCALL#define WITH_STDCALL                   0#endif#if !defined REGPARM#if defined(__GNUC__) && (defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__))#if (WITH_REGPARM && WITH_STDCALL)#define REGPARM __attribute__((__regparm__(WITH_REGPARM),__stdcall__))#else#if (WITH_REGPARM && !WITH_STDCALL)#define REGPARM __attribute__((__regparm__(WITH_REGPARM)))#else#if (!WITH_REGPARM && WITH_STDCALL)#define REGPARM __attribute__((__stdcall__))#endif#endif#endif#endif#endif#if !defined REGPARM#define REGPARM#endif/* Default prefix for static functions */#ifndef STATIC_INLINE#define STATIC_INLINE static INLINE#endif/* Default macro to simplify control several of key the inlines */#ifndef DEFAULT_INLINE#define	DEFAULT_INLINE			PSIM_INLINE_LOCALS#endif/* Code that converts between hosts and target byte order.  Used on   every memory access (instruction and data).  See sim-endian.h for   additional byte swapping configuration information.  This module   can inline for all callers */#ifndef SIM_ENDIAN_INLINE#define SIM_ENDIAN_INLINE		(DEFAULT_INLINE ? ALL_INLINE : 0)#endif/* Low level bit manipulation routines. This module can inline for all   callers */#ifndef BITS_INLINE#define BITS_INLINE			(DEFAULT_INLINE ? ALL_INLINE : 0)#endif/* Code that gives access to various CPU internals such as registers.   Used every time an instruction is executed */#ifndef CPU_INLINE#define CPU_INLINE			(DEFAULT_INLINE ? ALL_INLINE : 0)#endif/* Code that translates between an effective and real address.  Used   by every load or store. */#ifndef VM_INLINE#define VM_INLINE			DEFAULT_INLINE#endif/* Code that loads/stores data to/from the memory data structure.   Used by every load or store */#ifndef CORE_INLINE#define CORE_INLINE			DEFAULT_INLINE#endif/* Code to check for and process any events scheduled in the future.   Called once per instruction cycle */#ifndef EVENTS_INLINE#define EVENTS_INLINE			(DEFAULT_INLINE ? ALL_INLINE : 0)#endif/* Code monotoring the processors performance.  It counts events on   every instruction cycle */#ifndef MON_INLINE#define MON_INLINE			(DEFAULT_INLINE ? ALL_INLINE : 0)#endif/* Code called on the rare occasions that an interrupt occures. */#ifndef INTERRUPTS_INLINE#define INTERRUPTS_INLINE		DEFAULT_INLINE#endif/* Code called on the rare occasion that either gdb or the device tree   need to manipulate a register within a processor */#ifndef REGISTERS_INLINE#define REGISTERS_INLINE		DEFAULT_INLINE#endif/* Code called on the rare occasion that a processor is manipulating   real hardware instead of RAM.   Also, most of the functions in devices.c are always called through   a jump table. */#ifndef DEVICE_INLINE#define DEVICE_INLINE			(DEFAULT_INLINE ? PSIM_INLINE_LOCALS : 0)#endif/* Code called used while the device tree is being built.   Inlining this is of no benefit */#ifndef TREE_INLINE#define TREE_INLINE			(DEFAULT_INLINE ? PSIM_INLINE_LOCALS : 0)#endif/* Code called whenever information on a Special Purpose Register is   required.  Called by the mflr/mtlr pseudo instructions */#ifndef SPREG_INLINE#define SPREG_INLINE			DEFAULT_INLINE#endif/* Functions modeling the semantics of each instruction.  Two cases to   consider, firstly of idecode is implemented with a switch then this   allows the idecode function to inline each semantic function   (avoiding a call).  The second case is when idecode is using a   table, even then while the semantic functions can't be inlined,   setting it to one still enables each semantic function to inline   anything they call (if that code is marked for being inlined).   WARNING: you need lots (like 200mb of swap) of swap.  Setting this   to 1 is useful when using a table as it enables the sematic code to   inline all of their called functions */#ifndef SEMANTICS_INLINE#define SEMANTICS_INLINE		(DEFAULT_INLINE & ~INLINE_MODULE)#endif/* When using the instruction cache, code to decode an instruction and   install it into the cache.  Normally called when ever there is a   miss in the instruction cache. */#ifndef ICACHE_INLINE#define ICACHE_INLINE			(DEFAULT_INLINE & ~INLINE_MODULE)#endif/* General functions called by semantics functions but part of the   instruction table.  Although called by the semantic functions the   frequency of calls is low.  Consequently the need to inline this   code is reduced. */#ifndef SUPPORT_INLINE#define SUPPORT_INLINE			PSIM_INLINE_LOCALS#endif/* Model specific code used in simulating functional units.  Note, it actaully   pays NOT to inline the PowerPC model functions (at least on the x86).  This   is because if it is inlined, each PowerPC instruction gets a separate copy   of the code, which is not friendly to the cache.  */#ifndef MODEL_INLINE#define	MODEL_INLINE			(DEFAULT_INLINE & ~INLINE_MODULE)#endif/* Code to print out what options we were compiled with.  Because this   is called at process startup, it doesn't have to be inlined, but   if it isn't brought in and the model routines are inline, the model   routines will be pulled in twice.  */#ifndef OPTIONS_INLINE#define OPTIONS_INLINE			MODEL_INLINE#endif/* idecode acts as the hub of the system, everything else is imported   into this file */#ifndef IDECOCE_INLINE#define IDECODE_INLINE			PSIM_INLINE_LOCALS#endif/* psim, isn't actually inlined */#ifndef PSIM_INLINE#define PSIM_INLINE			PSIM_INLINE_LOCALS#endif/* Code to emulate os or rom compatibility.  This code is called via a   table and hence there is little benefit in making it inline */#ifndef OS_EMUL_INLINE#define OS_EMUL_INLINE			0#endif#endif /* _PSIM_CONFIG_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -