亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tm-vax.h

?? 這是完整的gcc源代碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* Definitions of target machine for GNU compiler.  Vax version.   Copyright (C) 1987, 1988 Free Software Foundation, Inc.This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 1, or (at your option)any later version.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING.  If not, write tothe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  *//* Names to predefine in the preprocessor for this target machine.  */#define CPP_PREDEFINES "-Dvax -Dunix"/* If using g-format floating point, alter math.h.  */#define	CPP_SPEC "%{mg:-DGFLOAT}"/* Choose proper libraries depending on float format.   Note that there are no profiling libraries for g-format.  */#define LIB_SPEC "%{mg:%{lm:-lmg} -lcg \  %{p:%eprofiling not supported with -mg}\n\  %{pg:%eprofiling not supported with -mg}\n}\ %{!mg:%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"/* Print subsidiary information on the compiler version in use.  */#define TARGET_VERSION fprintf (stderr, " (vax)");/* Run-time compilation parameters selecting different hardware subsets.  */extern int target_flags;/* Macros used in the machine description to test the flags.  *//* Nonzero if compiling code that Unix assembler can assemble.  */#define TARGET_UNIX_ASM (target_flags & 1)/* Nonzero if compiling with VAX-11 "C" style structure alignment */#define	TARGET_VAXC_ALIGNMENT (target_flags & 2)/* Nonzero if compiling with `G'-format floating point */#define TARGET_G_FLOAT (target_flags & 4)/* Macro to define tables used to set the flags.   This is a list in braces of pairs in braces,   each pair being { "NAME", VALUE }   where VALUE is the bits to set or minus the bits to clear.   An empty string NAME is used to identify the default VALUE.  */#define TARGET_SWITCHES  \  { {"unix", 1},  \    {"gnu", -1},  \    {"vaxc-alignment", 2}, \    {"g", 4}, \    {"g-float", 4}, \    {"d", -4},	\    {"d-float", -4}, \    { "", TARGET_DEFAULT}}/* Default target_flags if no switches specified.  */#ifndef TARGET_DEFAULT#define TARGET_DEFAULT 1#endif/* Target machine storage layout *//* Define this if most significant bit is lowest numbered   in instructions that operate on numbered bit-fields.   This is not true on the vax.  *//* #define BITS_BIG_ENDIAN *//* Define this if most significant byte of a word is the lowest numbered.  *//* That is not true on the vax.  *//* #define BYTES_BIG_ENDIAN *//* Define this if most significant word of a multiword number is numbered.  *//* This is not true on the vax.  *//* #define WORDS_BIG_ENDIAN *//* Number of bits in an addressible storage unit */#define BITS_PER_UNIT 8/* Width in bits of a "word", which is the contents of a machine register.   Note that this is not necessarily the width of data type `int';   if using 16-bit ints on a 68000, this would still be 32.   But on a machine with 16-bit registers, this would be 16.  */#define BITS_PER_WORD 32/* Width of a word, in units (bytes).  */#define UNITS_PER_WORD 4/* Width in bits of a pointer.   See also the macro `Pmode' defined below.  */#define POINTER_SIZE 32/* Allocation boundary (in *bits*) for storing pointers in memory.  */#define POINTER_BOUNDARY (TARGET_VAXC_ALIGNMENT ? 8 : 32)/* Allocation boundary (in *bits*) for storing arguments in argument list.  */#define PARM_BOUNDARY 32/* Allocation boundary (in *bits*) for the code of a function.  */#define FUNCTION_BOUNDARY 16/* Alignment of field after `int : 0' in a structure.  */#define EMPTY_FIELD_BOUNDARY (TARGET_VAXC_ALIGNMENT ? 8 : 32)/* Every structure's size must be a multiple of this.  */#define STRUCTURE_SIZE_BOUNDARY 8/* A bitfield declared as `int' forces `int' alignment for the struct.  */#define PCC_BITFIELD_TYPE_MATTERS (! TARGET_VAXC_ALIGNMENT)/* No data type wants to be aligned rounder than this.  */#define BIGGEST_ALIGNMENT (TARGET_VAXC_ALIGNMENT ? 8 : 32)/* Define this if move instructions will actually fail to work   when given unaligned data.  *//* #define STRICT_ALIGNMENT *//* Standard register usage.  *//* Number of actual hardware registers.   The hardware registers are assigned numbers for the compiler   from 0 to just below FIRST_PSEUDO_REGISTER.   All registers that the compiler knows about must be given numbers,   even those that are not normally considered general registers.  */#define FIRST_PSEUDO_REGISTER 16/* 1 for registers that have pervasive standard uses   and are not available for the register allocator.   On the vax, these are the AP, FP, SP and PC.  */#define FIXED_REGISTERS {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}/* 1 for registers not available across function calls.   These must include the FIXED_REGISTERS and also any   registers that can be used without being saved.   The latter must include the registers where values are returned   and the register where structure-value addresses are passed.   Aside from that, you can include as many other registers as you like.  */#define CALL_USED_REGISTERS {1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}/* Return number of consecutive hard regs needed starting at reg REGNO   to hold something of mode MODE.   This is ordinarily the length in words of a value of mode MODE   but can be less for certain modes in special long registers.   On the vax, all registers are one word long.  */#define HARD_REGNO_NREGS(REGNO, MODE)   \ ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.   On the vax, all registers can hold all modes.  */#define HARD_REGNO_MODE_OK(REGNO, MODE) 1/* Value is 1 if it is a good idea to tie two pseudo registers   when one has mode MODE1 and one has mode MODE2.   If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,   for any hard reg, then this must be 0 for correct output.  */#define MODES_TIEABLE_P(MODE1, MODE2)  1/* Specify the registers used for certain standard purposes.   The values of these macros are register numbers.  *//* Vax pc is overloaded on a register.  */#define PC_REGNUM 15/* Register to use for pushing function arguments.  */#define STACK_POINTER_REGNUM 14/* Base register for access to local variables of the function.  */#define FRAME_POINTER_REGNUM 13/* Value should be nonzero if functions must have frame pointers.   Zero means the frame pointer need not be set up (and parms   may be accessed via the stack pointer) in functions that seem suitable.   This is computed in `reload', in reload1.c.  */#define FRAME_POINTER_REQUIRED 1/* Base register for access to arguments of the function.  */#define ARG_POINTER_REGNUM 12/* Register in which static-chain is passed to a function.  */#define STATIC_CHAIN_REGNUM 0/* Register in which address to store a structure value   is passed to a function.  */#define STRUCT_VALUE_REGNUM 1/* Define the classes of registers for register constraints in the   machine description.  Also define ranges of constants.   One of the classes must always be named ALL_REGS and include all hard regs.   If there is more than one class, another class must be named NO_REGS   and contain no registers.   The name GENERAL_REGS must be the name of a class (or an alias for   another name such as ALL_REGS).  This is the class of registers   that is allowed by "g" or "r" in a register constraint.   Also, registers outside this class are allocated only when   instructions express preferences for them.   The classes must be numbered in nondecreasing order; that is,   a larger-numbered class must never be contained completely   in a smaller-numbered class.   For any two classes, it is very desirable that there be another   class that represents their union.  */   /* The vax has only one kind of registers, so NO_REGS and ALL_REGS   are the only classes.  */enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES };#define N_REG_CLASSES (int) LIM_REG_CLASSES/* Since GENERAL_REGS is the same class as ALL_REGS,   don't give it a different class number; just make it an alias.  */#define GENERAL_REGS ALL_REGS/* Give names of register classes as strings for dump file.   */#define REG_CLASS_NAMES \ {"NO_REGS", "ALL_REGS" }/* Define which registers fit in which classes.   This is an initializer for a vector of HARD_REG_SET   of length N_REG_CLASSES.  */#define REG_CLASS_CONTENTS {0, 0xffff}/* The same information, inverted:   Return the class number of the smallest class containing   reg number REGNO.  This could be a conditional expression   or could index an array.  */#define REGNO_REG_CLASS(REGNO) ALL_REGS/* The class value for index registers, and the one for base regs.  */#define INDEX_REG_CLASS ALL_REGS#define BASE_REG_CLASS ALL_REGS/* Get reg_class from a letter such as appears in the machine description.  */#define REG_CLASS_FROM_LETTER(C) NO_REGS/* The letters I, J, K, L and M in a register constraint string   can be used to stand for particular ranges of immediate operands.   This macro defines what the ranges are.   C is the letter, and VALUE is a constant value.   Return 1 if VALUE is in the range specified by C.  */#define CONST_OK_FOR_LETTER_P(VALUE, C)  0/* Similar, but for floating constants, and defining letters G and H.   Here VALUE is the CONST_DOUBLE rtx itself.  */#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) 1/* Given an rtx X being reloaded into a reg required to be   in class CLASS, return the class of reg to actually use.   In general this is just CLASS; but on some machines   in some cases it is preferable to use a more restrictive class.  */#define PREFERRED_RELOAD_CLASS(X,CLASS)  (CLASS)/* Return the maximum number of consecutive registers   needed to represent mode MODE in a register of class CLASS.  *//* On the vax, this is always the size of MODE in words,   since all registers are the same size.  */#define CLASS_MAX_NREGS(CLASS, MODE)	\ ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)/* Stack layout; function entry, exit and calling.  *//* Define this if pushing a word on the stack   makes the stack pointer a smaller address.  */#define STACK_GROWS_DOWNWARD/* Define this if longjmp restores from saved registers   rather than from what setjmp saved.  */#define LONGJMP_RESTORE_FROM_STACK/* Define this if the nominal address of the stack frame   is at the high-address end of the local variables;   that is, each additional local variable allocated   goes at a more negative offset in the frame.  */#define FRAME_GROWS_DOWNWARD/* Offset within stack frame to start allocating local variables at.   If FRAME_GROWS_DOWNWARD, this is the offset to the END of the   first local allocated.  Otherwise, it is the offset to the BEGINNING   of the first local allocated.  */#define STARTING_FRAME_OFFSET 0/* If we generate an insn to push BYTES bytes,   this says how many the stack pointer really advances by.   On the vax, -(sp) pushes only the bytes of the operands.  */#define PUSH_ROUNDING(BYTES) (BYTES)/* Offset of first parameter from the argument pointer register value.  */#define FIRST_PARM_OFFSET(FNDECL) 4/* Value is 1 if returning from a function call automatically   pops the arguments described by the number-of-args field in the call.   FUNTYPE is the data type of the function (as a tree),   or for a library call it is an identifier node for the subroutine name.   On the Vax, the RET insn always pops all the args for any function.  */#define RETURN_POPS_ARGS(FUNTYPE) 1/* Define how to find the value returned by a function.   VALTYPE is the data type of the value (as a tree).   If the precise function being called is known, FUNC is its FUNCTION_DECL;   otherwise, FUNC is 0.  *//* On the Vax the return value is in R0 regardless.  */   #define FUNCTION_VALUE(VALTYPE, FUNC)  \  gen_rtx (REG, TYPE_MODE (VALTYPE), 0)/* Define how to find the value returned by a library function   assuming the value has mode MODE.  *//* On the Vax the return value is in R0 regardless.  */   #define LIBCALL_VALUE(MODE)  gen_rtx (REG, MODE, 0)/* Define this if PCC uses the nonreentrant convention for returning   structure and union values.  */#define PCC_STATIC_STRUCT_RETURN/* 1 if N is a possible register number for a function value.   On the Vax, R0 is the only register thus used.  */#define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)/* 1 if N is a possible register number for function argument passing.   On the Vax, no registers are used in this way.  */#define FUNCTION_ARG_REGNO_P(N) 0/* Define a data type for recording info about an argument list   during the scan of that argument list.  This data type should   hold all necessary information about the function itself   and about the args processed so far, enough to enable macros   such as FUNCTION_ARG to determine where the next arg should go.   On the vax, this is a single integer, which is a number of bytes

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天天色图综合网| 91麻豆国产精品久久| 粉嫩欧美一区二区三区高清影视| 91久久精品网| 国产夜色精品一区二区av| 亚洲欧洲综合另类在线| 理论电影国产精品| 欧美日韩你懂得| 国产精品乱码久久久久久| 免费成人在线视频观看| 91黄色免费网站| 欧美国产亚洲另类动漫| 九九热在线视频观看这里只有精品| 色94色欧美sute亚洲线路二| 久久久久久久av麻豆果冻| 日本亚洲视频在线| 欧美三片在线视频观看| 亚洲丝袜制服诱惑| 粉嫩一区二区三区性色av| 精品成人一区二区三区| 日产精品久久久久久久性色| 91黄色免费看| 一区二区三区国产| 91女厕偷拍女厕偷拍高清| 欧美国产精品一区二区| 国产一区二区免费视频| 欧美大尺度电影在线| 另类成人小视频在线| 日韩三级精品电影久久久 | 一级日本不卡的影视| 丁香五精品蜜臀久久久久99网站| 久久亚洲一区二区三区明星换脸| 另类人妖一区二区av| 欧美va亚洲va| 精品一区二区三区不卡| 精品欧美黑人一区二区三区| 久久国内精品自在自线400部| 日韩免费视频线观看| 国内精品在线播放| 久久久久久夜精品精品免费| 国产精品一区二区黑丝| 久久久国产午夜精品| 成人精品鲁一区一区二区| 中文字幕不卡在线| av在线播放不卡| 亚洲自拍另类综合| 欧美疯狂性受xxxxx喷水图片| 美女任你摸久久| 久久欧美中文字幕| 99视频在线精品| 亚洲大型综合色站| 日韩一卡二卡三卡国产欧美| 国产精品系列在线播放| 中文字幕一区视频| 91福利在线播放| 久久国产视频网| 国产精品视频看| 欧美性生活久久| 喷水一区二区三区| 欧美国产乱子伦| 91捆绑美女网站| 蜜臀av性久久久久蜜臀aⅴ| 国产蜜臀av在线一区二区三区| 91毛片在线观看| 奇米精品一区二区三区在线观看| 国产亚洲精品bt天堂精选| 色婷婷av久久久久久久| 美女一区二区三区在线观看| 欧美激情一区不卡| 欧美精品成人一区二区三区四区| 国产精品亚洲视频| 亚洲v中文字幕| 国产拍揄自揄精品视频麻豆| 色婷婷综合在线| 国产一区二区日韩精品| 亚洲精品日产精品乱码不卡| 日韩精品专区在线影院重磅| 99久久精品久久久久久清纯| 青青草原综合久久大伊人精品| 中文字幕一区二区三区四区不卡| 91精品国产91久久综合桃花| voyeur盗摄精品| 日韩福利电影在线观看| **网站欧美大片在线观看| 日韩免费高清av| 99久免费精品视频在线观看| 美女mm1313爽爽久久久蜜臀| 有坂深雪av一区二区精品| 国产日韩视频一区二区三区| 91麻豆精品国产自产在线| 成人国产在线观看| 精品一区二区日韩| 日韩黄色免费电影| 一区二区免费看| 国产精品免费观看视频| 2020国产成人综合网| 欧美日韩成人综合在线一区二区| 成人高清视频在线观看| 精品午夜久久福利影院| 日产精品久久久久久久性色| 亚洲第一主播视频| 亚洲一区二区三区激情| 亚洲欧美日本韩国| 亚洲人成网站色在线观看| 国产精品国产三级国产有无不卡| 精品少妇一区二区三区日产乱码| 欧美日韩国产a| 欧美性色综合网| 91久久免费观看| 在线观看www91| 欧美中文字幕亚洲一区二区va在线| 成人免费视频网站在线观看| 国产激情一区二区三区| 国产东北露脸精品视频| 激情国产一区二区 | 国产 欧美在线| 国产成人亚洲综合a∨猫咪| 国产成人精品影视| 成人av电影免费观看| 97国产精品videossex| 色视频一区二区| 欧美性感一类影片在线播放| 欧美视频一区二区| 欧美三区在线观看| 日韩丝袜美女视频| 久久综合久久综合久久| 国产午夜精品美女毛片视频| 日本一区二区三区国色天香| 国产精品久久久久三级| 亚洲激情校园春色| 丝袜亚洲另类欧美| 精品无码三级在线观看视频| 国产精品18久久久久久久久 | 日韩成人精品在线观看| 免费人成黄页网站在线一区二区| 久久精品国产99久久6| 国产99久久久国产精品免费看| 成人午夜精品一区二区三区| 91香蕉视频黄| 精品视频一区三区九区| 日韩欧美123| 中文字幕欧美三区| 亚洲电影一级片| 久久99九九99精品| av综合在线播放| 欧美人与禽zozo性伦| 久久一二三国产| 亚洲男人的天堂av| 久久99国产精品久久99果冻传媒| 国产成人免费xxxxxxxx| 在线免费一区三区| 2017欧美狠狠色| 亚洲永久精品国产| 黄网站免费久久| 91福利在线观看| 久久久久久9999| 天天爽夜夜爽夜夜爽精品视频| 国产激情一区二区三区| 欧美日韩一级视频| 亚洲国产精品av| 爽好久久久欧美精品| av一本久道久久综合久久鬼色| 欧美老人xxxx18| 国产精品对白交换视频| 蜜臀99久久精品久久久久久软件| 91在线你懂得| 久久婷婷综合激情| 舔着乳尖日韩一区| 97se亚洲国产综合在线| 久久网站最新地址| 日韩vs国产vs欧美| 91美女在线观看| 国产三级精品三级| 欧美a一区二区| 欧洲视频一区二区| 国产精品乱人伦一区二区| 日本va欧美va精品发布| 日本精品视频一区二区| 国产亚洲一区二区三区四区| 日韩精品一级二级| 在线看不卡av| 中文字幕一区二区三区视频| 国产在线国偷精品免费看| 69堂亚洲精品首页| 婷婷丁香激情综合| 日本精品一区二区三区高清| 中文字幕在线视频一区| 国产美女在线精品| 欧美精品一区二区三区高清aⅴ | 国产一区二区三区在线观看免费视频 | 成人精品一区二区三区中文字幕| 777亚洲妇女| 天天综合色天天综合色h| 在线这里只有精品| 亚洲免费观看高清完整版在线观看| 丁香婷婷综合色啪| 国产免费观看久久| 成人午夜碰碰视频| 欧美国产欧美综合| 成人动漫视频在线|