📄 2bsd.h
字号:
/* Definitions of target machine for GNU compiler, for a PDP with 2BSD Copyright (C) 1995, 1996, 1999, 2000 Free Software Foundation, Inc. Contributed by Michael K. Gschwind (mike@vlsivie.tuwien.ac.at).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. */#define TWO_BSD/* EXIT_IGNORE_STACK should be nonzero if, when returning from a function, the stack pointer does not matter. The value is tested only in functions that have frame pointers. No definition is equivalent to always zero. */#undef EXIT_IGNORE_STACK#define EXIT_IGNORE_STACK 1#undef INITIAL_FRAME_POINTER_OFFSET #define INITIAL_FRAME_POINTER_OFFSET(DEPTH_VAR) \{ \ int offset; \ offset = get_frame_size(); \ offset = (offset <= 2)? 0: (offset -2); \ (DEPTH_VAR) = offset+10; \} /* 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. */#undef FRAME_POINTER_REQUIRED #define FRAME_POINTER_REQUIRED 1/* 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. */#undef STARTING_FRAME_OFFSET#define STARTING_FRAME_OFFSET -8#undef ASM_DECLARE_FUNCTION_NAME#define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \do { \ASM_OUTPUT_LABEL (STREAM, NAME); \fprintf (STREAM, "~~%s:\n", NAME); \} while (0)#undef TARGET_UNIX_ASM_DEFAULT#define TARGET_UNIX_ASM_DEFAULT 2048
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -