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

📄 avr.h

📁 linux下的gcc编译器
💻 H
📖 第 1 页 / 共 5 页
字号:
				     || (r) == ARG_POINTER_REGNUM))	\				|| (reg_renumber			\				    && (reg_renumber[r] == REG_X	\					|| reg_renumber[r] == REG_Y	\					|| reg_renumber[r] == REG_Z	\					|| (reg_renumber[r]		\					    == ARG_POINTER_REGNUM))))/* A C expression which is nonzero if register number NUM is suitable   for use as a base register in operand addresses.  It may be either   a suitable hard register or a pseudo register that has been   allocated such a hard register.  *//* #define REGNO_MODE_OK_FOR_BASE_P(r, m) regno_mode_ok_for_base_p(r, m)   A C expression that is just like `REGNO_OK_FOR_BASE_P', except that   that expression may examine the mode of the memory reference in   MODE.  You should define this macro if the mode of the memory   reference affects whether a register may be used as a base   register.  If you define this macro, the compiler will use it   instead of `REGNO_OK_FOR_BASE_P'.  */#define REGNO_OK_FOR_INDEX_P(NUM) 0/* A C expression which is nonzero if register number NUM is suitable   for use as an index register in operand addresses.  It may be   either a suitable hard register or a pseudo register that has been   allocated such a hard register.   The difference between an index register and a base register is   that the index register may be scaled.  If an address involves the   sum of two registers, neither one of them scaled, then either one   may be labeled the "base" and the other the "index"; but whichever   labeling is used must fit the machine's constraints of which   registers may serve in each capacity.  The compiler will try both   labelings, looking for one that is valid, and will reload one or   both registers only if neither labeling works.  */#define PREFERRED_RELOAD_CLASS(X, CLASS) preferred_reload_class(X,CLASS)/* A C expression that places additional restrictions on the register   class to use when it is necessary to copy value X into a register   in class CLASS.  The value is a register class; perhaps CLASS, or   perhaps another, smaller class.  On many machines, the following   definition is safe:   #define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS   Sometimes returning a more restrictive class makes better code.   For example, on the 68000, when X is an integer constant that is   in range for a `moveq' instruction, the value of this macro is   always `DATA_REGS' as long as CLASS includes the data registers.   Requiring a data register guarantees that a `moveq' will be used.   If X is a `const_double', by returning `NO_REGS' you can force X   into a memory constant.  This is useful on certain machines where   immediate floating values cannot be loaded into certain kinds of   registers.  *//* `PREFERRED_OUTPUT_RELOAD_CLASS (X, CLASS)'   Like `PREFERRED_RELOAD_CLASS', but for output reloads instead of   input reloads.  If you don't define this macro, the default is to   use CLASS, unchanged.  *//* `LIMIT_RELOAD_CLASS (MODE, CLASS)'   A C expression that places additional restrictions on the register   class to use when it is necessary to be able to hold a value of   mode MODE in a reload register for which class CLASS would   ordinarily be used.   Unlike `PREFERRED_RELOAD_CLASS', this macro should be used when   there are certain modes that simply can't go in certain reload   classes.   The value is a register class; perhaps CLASS, or perhaps another,   smaller class.   Don't define this macro unless the target machine has limitations   which require the macro to do something nontrivial.  *//* SECONDARY_INPUT_RELOAD_CLASS(CLASS, MODE, X)   `SECONDARY_RELOAD_CLASS (CLASS, MODE, X)'   `SECONDARY_OUTPUT_RELOAD_CLASS (CLASS, MODE, X)'   Many machines have some registers that cannot be copied directly   to or from memory or even from other types of registers.  An   example is the `MQ' register, which on most machines, can only be   copied to or from general registers, but not memory.  Some   machines allow copying all registers to and from memory, but   require a scratch register for stores to some memory locations   (e.g., those with symbolic address on the RT, and those with   certain symbolic address on the SPARC when compiling PIC).  In   some cases, both an intermediate and a scratch register are   required.   You should define these macros to indicate to the reload phase   that it may need to allocate at least one register for a reload in   addition to the register to contain the data.  Specifically, if   copying X to a register CLASS in MODE requires an intermediate   register, you should define `SECONDARY_INPUT_RELOAD_CLASS' to   return the largest register class all of whose registers can be   used as intermediate registers or scratch registers.   If copying a register CLASS in MODE to X requires an intermediate   or scratch register, `SECONDARY_OUTPUT_RELOAD_CLASS' should be   defined to return the largest register class required.  If the   requirements for input and output reloads are the same, the macro   `SECONDARY_RELOAD_CLASS' should be used instead of defining both   macros identically.   The values returned by these macros are often `GENERAL_REGS'.   Return `NO_REGS' if no spare register is needed; i.e., if X can be   directly copied to or from a register of CLASS in MODE without   requiring a scratch register.  Do not define this macro if it   would always return `NO_REGS'.   If a scratch register is required (either with or without an   intermediate register), you should define patterns for   `reload_inM' or `reload_outM', as required (*note Standard   Names::..  These patterns, which will normally be implemented with   a `define_expand', should be similar to the `movM' patterns,   except that operand 2 is the scratch register.   Define constraints for the reload register and scratch register   that contain a single register class.  If the original reload   register (whose class is CLASS) can meet the constraint given in   the pattern, the value returned by these macros is used for the   class of the scratch register.  Otherwise, two additional reload   registers are required.  Their classes are obtained from the   constraints in the insn pattern.   X might be a pseudo-register or a `subreg' of a pseudo-register,   which could either be in a hard register or in memory.  Use   `true_regnum' to find out; it will return -1 if the pseudo is in   memory and the hard register number if it is in a register.   These macros should not be used in the case where a particular   class of registers can only be copied to memory and not to another   class of registers.  In that case, secondary reload registers are   not needed and would not be helpful.  Instead, a stack location   must be used to perform the copy and the `movM' pattern should use   memory as an intermediate storage.  This case often occurs between   floating-point and general registers.  *//* `SECONDARY_MEMORY_NEEDED (CLASS1, CLASS2, M)'   Certain machines have the property that some registers cannot be   copied to some other registers without using memory.  Define this   macro on those machines to be a C expression that is nonzero if   objects of mode M in registers of CLASS1 can only be copied to   registers of class CLASS2 by storing a register of CLASS1 into   memory and loading that memory location into a register of CLASS2.   Do not define this macro if its value would always be zero.   `SECONDARY_MEMORY_NEEDED_RTX (MODE)'   Normally when `SECONDARY_MEMORY_NEEDED' is defined, the compiler   allocates a stack slot for a memory location needed for register   copies.  If this macro is defined, the compiler instead uses the   memory location defined by this macro.   Do not define this macro if you do not define   `SECONDARY_MEMORY_NEEDED'.  */#define SMALL_REGISTER_CLASSES 1/* Normally the compiler avoids choosing registers that have been   explicitly mentioned in the rtl as spill registers (these   registers are normally those used to pass parameters and return   values).  However, some machines have so few registers of certain   classes that there would not be enough registers to use as spill   registers if this were done.   Define `SMALL_REGISTER_CLASSES' to be an expression with a nonzero   value on these machines.  When this macro has a nonzero value, the   compiler allows registers explicitly used in the rtl to be used as   spill registers but avoids extending the lifetime of these   registers.   It is always safe to define this macro with a nonzero value, but   if you unnecessarily define it, you will reduce the amount of   optimizations that can be performed in some cases.  If you do not   define this macro with a nonzero value when it is required, the   compiler will run out of spill registers and print a fatal error   message.  For most machines, you should not define this macro at   all.  */#define CLASS_LIKELY_SPILLED_P(c) class_likely_spilled_p(c)/* A C expression whose value is nonzero if pseudos that have been   assigned to registers of class CLASS would likely be spilled   because registers of CLASS are needed for spill registers.   The default value of this macro returns 1 if CLASS has exactly one   register and zero otherwise.  On most machines, this default   should be used.  Only define this macro to some other expression   if pseudo allocated by `local-alloc.c' end up in memory because   their hard registers were needed for spill registers.  If this   macro returns nonzero for those classes, those pseudos will only   be allocated by `global.c', which knows how to reallocate the   pseudo to another register.  If there would not be another   register available for reallocation, you should not change the   definition of this macro since the only effect of such a   definition would be to slow down register allocation.  */#define CLASS_MAX_NREGS(CLASS, MODE)   class_max_nregs (CLASS, MODE)/* A C expression for the maximum number of consecutive registers of   class CLASS needed to hold a value of mode MODE.   This is closely related to the macro `HARD_REGNO_NREGS'.  In fact,   the value of the macro `CLASS_MAX_NREGS (CLASS, MODE)' should be   the maximum value of `HARD_REGNO_NREGS (REGNO, MODE)' for all   REGNO values in the class CLASS.   This macro helps control the handling of multiple-word values in   the reload pass.  */#define CONST_OK_FOR_LETTER_P(VALUE, C)				\  ((C) == 'I' ? (VALUE) >= 0 && (VALUE) <= 63 :			\   (C) == 'J' ? (VALUE) <= 0 && (VALUE) >= -63:			\   (C) == 'K' ? (VALUE) == 2 :					\   (C) == 'L' ? (VALUE) == 0 :					\   (C) == 'M' ? (VALUE) >= 0 && (VALUE) <= 0xff :		\   (C) == 'N' ? (VALUE) == -1:					\   (C) == 'O' ? (VALUE) == 8 || (VALUE) == 16 || (VALUE) == 24:	\   (C) == 'P' ? (VALUE) == 1 :					\   0)/* A C expression that defines the machine-dependent operand   constraint letters (`I', `J', `K', ... `P') that specify   particular ranges of integer values.  If C is one of those   letters, the expression should check that VALUE, an integer, is in   the appropriate range and return 1 if so, 0 otherwise.  If C is   not one of those letters, the value should be 0 regardless of   VALUE.  */#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \  ((C) == 'G' ? (VALUE) == CONST0_RTX (SFmode)	\   : 0)/* `CONST_DOUBLE_OK_FOR_LETTER_P (VALUE, C)'   A C expression that defines the machine-dependent operand   constraint letters that specify particular ranges of   `const_double' values (`G' or `H').   If C is one of those letters, the expression should check that   VALUE, an RTX of code `const_double', is in the appropriate range   and return 1 if so, 0 otherwise.  If C is not one of those   letters, the value should be 0 regardless of VALUE.   `const_double' is used for all floating-point constants and for   `DImode' fixed-point constants.  A given letter can accept either   or both kinds of values.  It can use `GET_MODE' to distinguish   between these kinds.  */#define EXTRA_CONSTRAINT(x, c) extra_constraint(x, c)/* A C expression that defines the optional machine-dependent   constraint letters (``Q', `R', `S', `T', `U') that can'   be used to segregate specific types of operands, usually memory   references, for the target machine.  Normally this macro will not   be defined.  If it is required for a particular target machine, it   should return 1 if VALUE corresponds to the operand type   represented by the constraint letter C.  If C is not defined as an   extra constraint, the value returned should be 0 regardless of   VALUE.   For example, on the ROMP, load instructions cannot have their   output in r0 if the memory reference contains a symbolic address.   Constraint letter `Q' is defined as representing a memory address   that does *not* contain a symbolic address.  An alternative is   specified with a `Q' constraint on the input and `r' on the   output.  The next alternative specifies `m' on the input and a   register class that does not include r0 on the output.  *//*  This is an undocumented variable which describes    how GCC will push a data */#define STACK_PUSH_CODE POST_DEC#define STACK_GROWS_DOWNWARD/* Define this macro if pushing a word onto the stack moves the stack   pointer to a smaller address.   When we say, "define this macro if ...," it means that the   compiler checks this macro only with `#ifdef' so the precise   definition used does not matter.  */#define STARTING_FRAME_OFFSET 1/* Offset from the frame pointer to the first local variable slot to   be allocated.   If `FRAME_GROWS_DOWNWARD', find the next slot's offset by   subtracting the first slot's length from `STARTING_FRAME_OFFSET'.   Otherwise, it is found by adding the length of the first slot to   the value `STARTING_FRAME_OFFSET'.  */#define STACK_POINTER_OFFSET 1/* Offset from the stack pointer register to the first location at   which outgoing arguments are placed.  If not specified, the   default value of zero is used.  This is the proper value for most   machines.   If `ARGS_GROW_DOWNWARD', this is the offset to the location above   the first location at which outgoing arguments are placed.  */#define FIRST_PARM_OFFSET(FUNDECL) 0/* Offset from the argument pointer register to the first argument's

⌨️ 快捷键说明

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