📄 d30v.h
字号:
vector. Define this macro only if the target machine offers a way to optimize the treatment of leaf functions. *//* #define LEAF_REGISTERS *//* A C expression whose value is the register number to which REGNO should be renumbered, when a function is treated as a leaf function. If REGNO is a register number which should not appear in a leaf function before renumbering, then the expression should yield -1, which will cause the compiler to abort. Define this macro only if the target machine offers a way to optimize the treatment of leaf functions, and registers need to be renumbered to do this. *//* #define LEAF_REG_REMAP(REGNO) *//* Register Classes *//* An enumeral type that must be defined with all the register class names as enumeral values. `NO_REGS' must be first. `ALL_REGS' must be the last register class, followed by one more enumeral value, `LIM_REG_CLASSES', which is not a register class but rather tells how many classes there are. Each register class has a number, which is the value of casting the class name to type `int'. The number serves as an index in many of the tables described below. */enum reg_class{ NO_REGS, REPEAT_REGS, CR_REGS, ACCUM_REGS, OTHER_FLAG_REGS, F0_REGS, F1_REGS, BR_FLAG_REGS, FLAG_REGS, EVEN_REGS, GPR_REGS, ALL_REGS, LIM_REG_CLASSES};#define GENERAL_REGS GPR_REGS/* The number of distinct register classes, defined as follows: #define N_REG_CLASSES (int) LIM_REG_CLASSES */#define N_REG_CLASSES ((int) LIM_REG_CLASSES)/* An initializer containing the names of the register classes as C string constants. These names are used in writing some of the debugging dumps. */#define REG_CLASS_NAMES \{ \ "NO_REGS", \ "REPEAT_REGS", \ "CR_REGS", \ "ACCUM_REGS", \ "OTHER_FLAG_REGS", \ "F0_REGS", \ "F1_REGS", \ "BR_FLAG_REGS", \ "FLAG_REGS", \ "EVEN_REGS", \ "GPR_REGS", \ "ALL_REGS", \}/* Create mask bits for 3rd word of REG_CLASS_CONTENTS */#define MASK_WORD3(REG) ((long)1 << ((REG) - 64))#define NO_MASK 0#define REPEAT_MASK MASK_WORD3 (CR_RPT_C)#define CR_MASK (MASK_WORD3 (CR_PSW) | MASK_WORD3 (CR_BPSW) \ | MASK_WORD3 (CR_PC) | MASK_WORD3 (CR_BPC) \ | MASK_WORD3 (CR_DPSW) | MASK_WORD3 (CR_DPC) \ | MASK_WORD3 (CR_RPT_C) | MASK_WORD3 (CR_RPT_S) \ | MASK_WORD3 (CR_RPT_E) | MASK_WORD3 (CR_MOD_S) \ | MASK_WORD3 (CR_MOD_E) | MASK_WORD3 (CR_IBA) \ | MASK_WORD3 (CR_EIT_VB) | MASK_WORD3 (CR_INT_S) \ | MASK_WORD3 (CR_INT_M))#define ACCUM_MASK (MASK_WORD3 (ACCUM_A0) | MASK_WORD3 (ACCUM_A1))#define OTHER_FLAG_MASK (MASK_WORD3 (FLAG_F2) | MASK_WORD3 (FLAG_F3) \ | MASK_WORD3 (FLAG_SAT) | MASK_WORD3 (FLAG_OVERFLOW) \ | MASK_WORD3 (FLAG_ACC_OVER) | MASK_WORD3 (FLAG_CARRY))#define F0_MASK MASK_WORD3 (FLAG_F0)#define F1_MASK MASK_WORD3 (FLAG_F1)#define BR_FLAG_MASK (F0_MASK | F1_MASK)#define FLAG_MASK (BR_FLAG_MASK | OTHER_FLAG_MASK)#define SPECIAL_MASK MASK_WORD3 (ARG_POINTER_REGNUM)#define ALL_MASK (CR_MASK | ACCUM_MASK | FLAG_MASK | SPECIAL_MASK)/* An initializer containing the contents of the register classes, as integers which are bit masks. The Nth integer specifies the contents of class N. The way the integer MASK is interpreted is that register R is in the class if `MASK & (1 << R)' is 1. When the machine has more than 32 registers, an integer does not suffice. Then the integers are replaced by sub-initializers, braced groupings containing several integers. Each sub-initializer must be suitable as an initializer for the type `HARD_REG_SET' which is defined in `hard-reg-set.h'. */#define REG_CLASS_CONTENTS \{ \ { 0x00000000, 0x00000000, NO_MASK }, /* NO_REGS */ \ { 0x00000000, 0x00000000, REPEAT_MASK }, /* REPEAT_REGS */ \ { 0x00000000, 0x00000000, CR_MASK }, /* CR_REGS */ \ { 0x00000000, 0x00000000, ACCUM_MASK }, /* ACCUM_REGS */ \ { 0x00000000, 0x00000000, OTHER_FLAG_MASK }, /* OTHER_FLAG_REGS */ \ { 0x00000000, 0x00000000, F0_MASK }, /* F0_REGS */ \ { 0x00000000, 0x00000000, F1_MASK }, /* F1_REGS */ \ { 0x00000000, 0x00000000, BR_FLAG_MASK }, /* BR_FLAG_REGS */ \ { 0x00000000, 0x00000000, FLAG_MASK }, /* FLAG_REGS */ \ { 0xfffffffc, 0x3fffffff, NO_MASK }, /* EVEN_REGS */ \ { 0xffffffff, 0xffffffff, SPECIAL_MASK }, /* GPR_REGS */ \ { 0xffffffff, 0xffffffff, ALL_MASK }, /* ALL_REGS */ \}/* A C expression whose value is a register class containing hard register REGNO. In general there is more than one such class; choose a class which is "minimal", meaning that no smaller class also contains the register. */extern enum reg_class regno_reg_class[FIRST_PSEUDO_REGISTER];#define REGNO_REG_CLASS(REGNO) regno_reg_class[ (REGNO) ]/* A macro whose definition is the name of the class to which a valid base register must belong. A base register is one used in an address which is the register value plus a displacement. */#define BASE_REG_CLASS GPR_REGS/* A macro whose definition is the name of the class to which a valid index register must belong. An index register is one used in an address where its value is either multiplied by a scale factor or added to another register (as well as added to a displacement). */#define INDEX_REG_CLASS GPR_REGS/* A C expression which defines the machine-dependent operand constraint letters for register classes. If CHAR is such a letter, the value should be the register class corresponding to it. Otherwise, the value should be `NO_REGS'. The register letter `r', corresponding to class `GENERAL_REGS', will not be passed to this macro; you do not need to handle it. The following letters are unavailable, due to being used as constraints: '0'..'9' '<', '>' 'E', 'F', 'G', 'H' 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P' 'Q', 'R', 'S', 'T', 'U' 'V', 'X' 'g', 'i', 'm', 'n', 'o', 'p', 'r', 's' */extern enum reg_class reg_class_from_letter[256];#define REG_CLASS_FROM_LETTER(CHAR) reg_class_from_letter[(unsigned char)(CHAR)]/* 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_OK_FOR_BASE_P(NUM) \((NUM) < FIRST_PSEUDO_REGISTER \ ? GPR_P (NUM) \ : (reg_renumber[NUM] >= 0 && GPR_P (reg_renumber[NUM])))/* 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 REGNO_OK_FOR_INDEX_P(NUM) \((NUM) < FIRST_PSEUDO_REGISTER \ ? GPR_P (NUM) \ : (reg_renumber[NUM] >= 0 && GPR_P (reg_renumber[NUM])))/* 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. */#define PREFERRED_RELOAD_CLASS(X, CLASS) 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. *//* #define PREFERRED_OUTPUT_RELOAD_CLASS(X, 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. *//* #define LIMIT_RELOAD_CLASS(MODE, CLASS) *//* 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. */#define SECONDARY_RELOAD_CLASS(CLASS, MODE, X) \((CLASS) == GPR_REGS ? NO_REGS \ : (CLASS) == EVEN_REGS ? NO_REGS \ : (CLASS) == ACCUM_REGS ? EVEN_REGS \ : GPR_REGS)/* #define SECONDARY_INPUT_RELOAD_CLASS(CLASS, MODE, X) *//* #define SECONDARY_OUTPUT_RELOAD_CLASS(CLASS, MODE, X) *//* 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. *//* #define SECONDARY_MEMORY_NEEDED(CLASS1, CLASS2, M) *//* Normally when `SECONDARY_MEMORY_NEEDED' is defined, the compiler allocates a
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -