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

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

?? mcore.h

?? linux下的gcc編譯器
?? H
?? 第 1 頁 / 共 4 頁
字號:
/* Definitions of target machine for GNU compiler,   for Motorola M*CORE Processor.   Copyright (C) 1993, 1999, 2000, 2001, 2002 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 2, 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, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  */#ifndef GCC_MCORE_H#define GCC_MCORE_H/* RBE: need to move these elsewhere.  */#undef	LIKE_PPC_ABI #define	MCORE_STRUCT_ARGS/* RBE: end of "move elsewhere".  */#include "hwint.h"#ifndef HAVE_MACHINE_MODES#include "machmode.h"#endif/* Run-time Target Specification.  */#define TARGET_MCORE/* Get tree.c to declare a target-specific specialization of   merge_decl_attributes.  */#define TARGET_DLLIMPORT_DECL_ATTRIBUTES/* Support the __declspec keyword by turning them into attributes.   We currently only support: dllexport and dllimport.   Note that the current way we do this may result in a collision with   predefined attributes later on.  This can be solved by using one attribute,   say __declspec__, and passing args to it.  The problem with that approach   is that args are not accumulated: each new appearance would clobber any   existing args.  XXX- FIXME the definition below relies upon string   concatenation, which is non-portable.  */#define CPP_PREDEFINES \  "-D__mcore__ -D__MCORE__=1 -D__declspec(x)=__attribute__((x))" SUBTARGET_CPP_PREDEFINES/* If -m4align is ever re-enabled then uncomment this line as well:   #define CPP_SPEC "%{!m4align:-D__MCORE_ALIGN_8__} %{m4align:-D__MCORE__ALIGN_4__}" */#undef  CPP_SPEC#define CPP_SPEC "							\%{mbig-endian:								\  %{mlittle-endian:%echoose either big or little endian, not both}	\  -D__MCOREBE__}							\%{m210:									\  %{m340:%echoose either m340 or m210 not both}				\  %{mlittle-endian:%ethe m210 does not have little endian support}	\  -D__M210__}								\%{!mbig-endian: -D__MCORELE__}						\%{!m210: -D__M340__}							\"/* If -m4align is ever re-enabled then add this line to the definition of CPP_SPEC   %{!m4align:-D__MCORE_ALIGN_8__} %{m4align:-D__MCORE__ALIGN_4__} *//* We don't have a -lg library, so don't put it in the list.  */#undef	LIB_SPEC#define LIB_SPEC "%{!shared: %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"#undef	ASM_SPEC#define	ASM_SPEC "%{mbig-endian:-EB} %{m210:-cpu=210 -EB}"#undef  LINK_SPEC#define LINK_SPEC "%{mbig-endian:-EB} %{m210:-EB} -X"/* Can only count on 16 bits of availability; change to long would affect   many architecture specific files (other architectures...).  */extern int target_flags;#define HARDLIT_BIT	   (1 << 0) /* Build in-line literals using 2 insns */#define ALIGN8_BIT	   (1 << 1) /* Max alignment goes to 8 instead of 4 */#define DIV_BIT		   (1 << 2) /* Generate divide instructions */#define RELAX_IMM_BIT	   (1 << 3) /* Arbitrary immediates in and, or, tst */#define W_FIELD_BIT	   (1 << 4) /* Generate bit insv/extv using SImode */#define	OVERALIGN_FUNC_BIT (1 << 5) /* Align functions to 4 byte boundary */#define CGDATA_BIT	   (1 << 6) /* Generate callgraph data */#define SLOW_BYTES_BIT     (1 << 7) /* Slow byte access */#define LITTLE_END_BIT     (1 << 8) /* Generate little endian code */#define M340_BIT           (1 << 9) /* Generate code for the m340 */#define TARGET_DEFAULT     \ (HARDLIT_BIT | ALIGN8_BIT | DIV_BIT | RELAX_IMM_BIT | M340_BIT | LITTLE_END_BIT)#ifndef MULTILIB_DEFAULTS#define MULTILIB_DEFAULTS { "mlittle-endian", "m340" }#endif#define TARGET_HARDLIT		(target_flags & HARDLIT_BIT)/* The ability to have 4 byte alignment is being suppressed for now.   If this ability is reenabled, you must enable the definition below   *and* edit t-mcore to enable multilibs for 4 byte alignment code.  */#if 0 #define TARGET_8ALIGN		(target_flags & ALIGN8_BIT)#else#define TARGET_8ALIGN		1#endif#define TARGET_DIV		(target_flags & DIV_BIT)#define TARGET_RELAX_IMM        (target_flags & RELAX_IMM_BIT)#define TARGET_W_FIELD          (target_flags & W_FIELD_BIT)#define TARGET_OVERALIGN_FUNC   (target_flags & OVERALIGN_FUNC_BIT)#define TARGET_CG_DATA 		(target_flags & CGDATA_BIT)#define TARGET_CG_DATA 		(target_flags & CGDATA_BIT)#define TARGET_SLOW_BYTES 	(target_flags & SLOW_BYTES_BIT)#define TARGET_LITTLE_END	(target_flags & LITTLE_END_BIT)#define TARGET_M340 		(target_flags & M340_BIT)#define TARGET_SWITCHES							\{ {"hardlit", 	            HARDLIT_BIT,				\     N_("Inline constants if it can be done in 2 insns or less") },	\  {"no-hardlit",          - HARDLIT_BIT,				\     N_("Inline constants if it only takes 1 instruction") },		\  {"4align",              - ALIGN8_BIT,					\     N_("Set maximum alignment to 4") },				\  {"8align",	            ALIGN8_BIT,					\     N_("Set maximum alignment to 8") },				\  {"div",                   DIV_BIT,					\     "" },								\  {"no-div",	          - DIV_BIT,					\     N_("Do not use the divide instruction") },				\  {"relax-immediates",      RELAX_IMM_BIT,				\     "" },								\  {"no-relax-immediates", - RELAX_IMM_BIT,				\     N_("Do not arbitrary sized immediates in bit operations") },	\  {"wide-bitfields",        W_FIELD_BIT,				\     N_("Always treat bit-field as int-sized") },			\  {"no-wide-bitfields",   - W_FIELD_BIT,				\     "" },								\  {"4byte-functions",       OVERALIGN_FUNC_BIT,				\     N_("Force functions to be aligned to a 4 byte boundary") },	\  {"no-4byte-functions",  - OVERALIGN_FUNC_BIT,				\     N_("Force functions to be aligned to a 2 byte boundary") },	\  {"callgraph-data",        CGDATA_BIT,					\     N_("Emit call graph information") },				\  {"no-callgraph-data",   - CGDATA_BIT,					\     "" },								\  {"slow-bytes",            SLOW_BYTES_BIT,				\     N_("Prefer word accesses over byte accesses") },			\  {"no-slow-bytes",       - SLOW_BYTES_BIT,				\     "" },								\  { "no-lsim",              0, "" },			 		\  {"little-endian",         LITTLE_END_BIT,				\     N_("Generate little endian code") },				\  {"big-endian",          - LITTLE_END_BIT,				\     "" },								\  {"210",                 - M340_BIT,					\     "" },								\  {"340",                   M340_BIT,					\     N_("Generate code for the M*Core M340") },				\  {"",   	            TARGET_DEFAULT,				\     "" }								\}extern char * mcore_current_function_name; /* Target specific options (as opposed to the switches above).  */extern const char * mcore_stack_increment_string;#define	TARGET_OPTIONS							\{									\  {"stack-increment=", & mcore_stack_increment_string,			\     N_("Maximum amount for a single stack increment operation")}	\}#ifndef CC1_SPEC/* The MCore ABI says that bitfields are unsigned by default.  */#define CC1_SPEC "-funsigned-bitfields"#endif/* What options are we going to default to specific settings when   -O* happens; the user can subsequently override these settings.     Omitting the frame pointer is a very good idea on the MCore.   Scheduling isn't worth anything on the current MCore implementation.  */#define OPTIMIZATION_OPTIONS(LEVEL,SIZE)	\{						\  if (LEVEL)					\    {						\      flag_no_function_cse = 1;			\      flag_omit_frame_pointer = 1;		\						\      if (LEVEL >= 2)				\        {					\          flag_caller_saves = 0;		\          flag_schedule_insns = 0;		\          flag_schedule_insns_after_reload = 0;	\        }					\    }						\  if (SIZE)					\    {						\      target_flags &= ~ HARDLIT_BIT;		\    }						\}/* What options are we going to force to specific settings,   regardless of what the user thought he wanted.   We also use this for some post-processing of options. */#define OVERRIDE_OPTIONS  mcore_override_options ()/* Target machine storage Layout.  */#define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE)  	\  if (GET_MODE_CLASS (MODE) == MODE_INT         \      && GET_MODE_SIZE (MODE) < UNITS_PER_WORD) \    {						\      (MODE) = SImode;				\      (UNSIGNEDP) = 1;				\    }#define PROMOTE_FUNCTION_ARGS#define PROMOTE_FUNCTION_RETURN/* Define this if most significant bit is lowest numbered   in instructions that operate on numbered bit-fields.  */#define BITS_BIG_ENDIAN  0/* Define this if most significant byte of a word is the lowest numbered.  */#define BYTES_BIG_ENDIAN (! TARGET_LITTLE_END)/* Define this if most significant word of a multiword number is the lowest   numbered.  */#define WORDS_BIG_ENDIAN (! TARGET_LITTLE_END)#define LIBGCC2_WORDS_BIG_ENDIAN 1#ifdef __MCORELE__#undef  LIBGCC2_WORDS_BIG_ENDIAN#define LIBGCC2_WORDS_BIG_ENDIAN 0#endif#define MAX_BITS_PER_WORD 32/* Width of a word, in units (bytes).  */#define UNITS_PER_WORD	4/* A C expression for the size in bits of the type `long long' on the   target machine.  If you don't define this, the default is two   words.  */#define LONG_LONG_TYPE_SIZE 64/* Allocation boundary (in *bits*) for storing arguments in argument list.  */#define PARM_BOUNDARY  	32/* Doubles must be alogned to an 8 byte boundary.  */#define FUNCTION_ARG_BOUNDARY(MODE, TYPE) \  ((MODE != BLKmode && (GET_MODE_SIZE (MODE) == 8)) \   ? BIGGEST_ALIGNMENT : PARM_BOUNDARY)     /* Boundary (in *bits*) on which stack pointer should be aligned.  */#define STACK_BOUNDARY  (TARGET_8ALIGN ? 64 : 32)/* Largest increment in UNITS we allow the stack to grow in a single operation.  */extern int mcore_stack_increment;#define STACK_UNITS_MAXSTEP  4096/* Allocation boundary (in *bits*) for the code of a function.  */#define FUNCTION_BOUNDARY  ((TARGET_OVERALIGN_FUNC) ? 32 : 16)/* Alignment of field after `int : 0' in a structure.  */#define EMPTY_FIELD_BOUNDARY  32/* No data type wants to be aligned rounder than this.  */#define BIGGEST_ALIGNMENT  (TARGET_8ALIGN ? 64 : 32)/* The best alignment to use in cases where we have a choice.  */#define FASTEST_ALIGNMENT 32/* Every structures size must be a multiple of 8 bits.  */#define STRUCTURE_SIZE_BOUNDARY 8/* Look at the fundamental type that is used for a bit-field and use    that to impose alignment on the enclosing structure.   struct s {int a:8}; should have same alignment as "int", not "char".  */#define	PCC_BITFIELD_TYPE_MATTERS	1/* Largest integer machine mode for structures.  If undefined, the default   is GET_MODE_SIZE(DImode).  */#define MAX_FIXED_MODE_SIZE 32/* Make strings word-aligned so strcpy from constants will be faster.  */#define CONSTANT_ALIGNMENT(EXP, ALIGN)  \  ((TREE_CODE (EXP) == STRING_CST	\    && (ALIGN) < FASTEST_ALIGNMENT)	\   ? FASTEST_ALIGNMENT : (ALIGN))/* Make arrays of chars word-aligned for the same reasons.  */#define DATA_ALIGNMENT(TYPE, ALIGN)		\  (TREE_CODE (TYPE) == ARRAY_TYPE		\   && TYPE_MODE (TREE_TYPE (TYPE)) == QImode	\   && (ALIGN) < FASTEST_ALIGNMENT ? FASTEST_ALIGNMENT : (ALIGN))     /* Set this nonzero if move instructions will actually fail to work   when given unaligned data.  */#define STRICT_ALIGNMENT 1/* Standard register usage.  *//* Register allocation for our first guess 	r0		stack pointer	r1		scratch, target reg for xtrb?	r2-r7		arguments.	r8-r14		call saved	r15		link register	ap		arg pointer (doesn't really exist, always eliminated)	c               c bit	fp		frame pointer (doesn't really exist, always eliminated)	x19		two control registers  *//* 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,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美一区二区三区极速播放 | 亚洲蜜臀av乱码久久精品| 色丁香久综合在线久综合在线观看| 午夜欧美大尺度福利影院在线看| 久久网站热最新地址| 91黄视频在线| 国产99精品国产| 日韩电影一区二区三区四区| 中文字幕久久午夜不卡| 日韩一区二区三区观看| 亚洲精品一区二区三区福利| 欧美综合久久久| 成人a免费在线看| 蜜臀av一区二区| 亚洲午夜在线视频| 中文字幕一区在线观看视频| 精品少妇一区二区| 在线观看成人免费视频| 成人性生交大片免费看视频在线| 免费人成在线不卡| 午夜国产精品影院在线观看| 亚洲黄一区二区三区| 中文av一区特黄| 国产欧美日韩麻豆91| 2022国产精品视频| 91精品国产91久久久久久最新毛片| 一本色道**综合亚洲精品蜜桃冫| 成人高清视频免费观看| 国产黑丝在线一区二区三区| 韩国女主播一区| 美女任你摸久久| 青草国产精品久久久久久| 亚洲电影激情视频网站| 一区二区三区在线观看欧美| 国产精品久久久久久久裸模| 国产欧美日韩另类视频免费观看| 精品欧美一区二区久久| 日韩欧美一二区| 日韩精品在线一区二区| 精品美女被调教视频大全网站| 制服丝袜亚洲网站| 欧美人伦禁忌dvd放荡欲情| 欧美日精品一区视频| 欧美日韩国产成人在线免费| 欧美人妇做爰xxxⅹ性高电影| 中文字幕亚洲电影| 亚洲男人都懂的| 亚洲影院理伦片| 亚洲成a人v欧美综合天堂下载| 亚洲成人av资源| 日韩国产一二三区| 毛片基地黄久久久久久天堂| 精品无人码麻豆乱码1区2区| 久久99国内精品| 国产乱码精品一区二区三区av| 国产精品91xxx| 不卡视频在线观看| 色婷婷精品大视频在线蜜桃视频| 91福利国产精品| 欧美喷潮久久久xxxxx| 日韩欧美精品在线| 久久综合狠狠综合久久激情| 国产欧美一区二区精品秋霞影院 | 亚洲丝袜制服诱惑| 亚洲国产人成综合网站| 久久精品国产久精国产爱| 国产精品自拍av| 99精品久久只有精品| 欧美日韩精品福利| 精品美女在线观看| 亚洲视频一区在线观看| 午夜不卡av在线| 国产黄色成人av| 在线日韩一区二区| 欧美大肚乱孕交hd孕妇| 国产精品短视频| 丝袜美腿亚洲色图| 高清日韩电视剧大全免费| 91高清视频在线| 欧美大肚乱孕交hd孕妇| 亚洲人成精品久久久久久| 日韩vs国产vs欧美| 99久久精品国产一区| 亚洲一区免费在线观看| 激情欧美一区二区| 99国产精品久久久久久久久久久| 精品视频999| 中文字幕av不卡| 青青草精品视频| 91老司机福利 在线| 欧美r级电影在线观看| 亚洲在线观看免费视频| 国内精品久久久久影院色| 91视频一区二区| 精品久久久久久久人人人人传媒| 亚洲欧美另类在线| 久久激情五月婷婷| 欧美最新大片在线看| 中文字幕av一区二区三区高| 奇米777欧美一区二区| 91视频com| 国产亚洲1区2区3区| 日韩精品久久理论片| 91欧美一区二区| 国产日韩在线不卡| 美女www一区二区| 在线中文字幕一区| 国产精品视频一区二区三区不卡| 日本美女一区二区| 在线精品视频免费播放| 中文字幕亚洲不卡| 国产超碰在线一区| 精品国产一区二区三区四区四| 亚洲一区二区在线免费观看视频 | 欧美一级午夜免费电影| 亚洲精品欧美专区| 风间由美中文字幕在线看视频国产欧美| 欧美精品tushy高清| 亚洲色图在线看| 岛国av在线一区| 欧美精品一区二区三区很污很色的 | 欧洲另类一二三四区| 亚洲婷婷综合色高清在线| 国产91精品精华液一区二区三区 | 亚洲一区免费视频| 一本久道中文字幕精品亚洲嫩 | 一区二区三区在线看| 成人av在线观| 国产精品国产自产拍高清av| 国产一区二区三区观看| 精品国产乱码久久久久久夜甘婷婷| 秋霞国产午夜精品免费视频| 欧美人与性动xxxx| 日日摸夜夜添夜夜添精品视频| 欧美日韩高清在线| 天天射综合影视| 欧美夫妻性生活| 男女视频一区二区| 日韩西西人体444www| 蜜桃视频一区二区三区在线观看| 欧美精品一二三四| 日韩专区在线视频| 欧美一级xxx| 69堂成人精品免费视频| 免费欧美在线视频| 久久综合九色综合97婷婷女人| 麻豆91在线看| 欧美激情一区二区三区不卡 | 国产日韩欧美a| 高清av一区二区| 国产精品剧情在线亚洲| 色综合一个色综合| 亚洲成人av中文| 日韩欧美视频在线| 国产在线不卡一区| 国产精品电影一区二区| 欧日韩精品视频| 视频在线观看91| 久久亚洲综合色| av爱爱亚洲一区| 亚洲精品成人悠悠色影视| 欧美日韩一区二区三区在线| 日韩二区三区在线观看| 久久亚洲一区二区三区四区| 成人综合在线视频| 夜夜操天天操亚洲| 欧美一级爆毛片| av一区二区不卡| 亚洲一区二区三区四区五区中文| 日韩欧美亚洲一区二区| www.激情成人| 五月激情综合网| 久久久91精品国产一区二区精品| 色综合久久中文字幕| 日本一区中文字幕| 国产精品视频九色porn| 欧美日韩久久久一区| 国产精品18久久久久久久久| 亚洲欧美福利一区二区| 欧美一卡在线观看| 波多野结衣中文字幕一区二区三区 | 亚洲一区二区三区视频在线播放| 制服.丝袜.亚洲.中文.综合| 国产成人亚洲综合色影视| 亚洲免费av在线| 久久久噜噜噜久噜久久综合| 色系网站成人免费| 狠狠色丁香婷综合久久| 亚洲欧美日韩电影| 精品88久久久久88久久久| 91视频一区二区三区| 国产精品一区二区不卡| 亚洲成人精品一区| 国产精品电影院| 欧美mv日韩mv| 欧美日韩久久不卡| 99综合影院在线| 国产在线精品视频| 亚洲福中文字幕伊人影院| 国产精品乱子久久久久|