📄 mot3300.h
字号:
/* Definitions of target machine for GNU compiler. SysV68 Motorola 3300 Delta Series Written by Abramo and Roberto Bagnara after Alex Crain's 3B1 definitions. Bug reports to bagnara@dipisa.di.unipi.it Copyright (C) 1987 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, 675 Mass Ave, Cambridge, MA 02139, USA. */#define MOTOROLA /* Use Motorola syntax rather than "MIT" */#define SGS /* Uses SGS assembler */#define SGS_CMP_ORDER /* Takes cmp operands in reverse order */#define SGS_SWAP_W /* Use swap.w rather than just plain swap */#define SGS_SWITCH_TABLES /* Different switch table handling */#include "m68k.h"/* See m68k.h. 7 means 68020 with 68881. */#ifndef TARGET_DEFAULT#define TARGET_DEFAULT 7#endif/* NYI: FP= is equivalent to -msoft-float *//* We use /lib/libp/lib* when profiling. *//* NYI: if FP=M68881U library is -lc881u *//* NYI: if FP= library is -lc. *//* Default for us: FP=M68881 library is -lc881 */#undef LIB_SPEC#define LIB_SPEC "%{!shlib:%{p:-L/usr/lib/libp} %{pg:-L/usr/lib/libp} -lc881}"#define CPP_SPEC "%{!msoft-float:-D__HAVE_68881__}"/* Shared libraries need to use crt0s.o */#undef STARTFILE_SPEC#define STARTFILE_SPEC \ "%{!shlib:%{pg:mcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}}\ %{shlib:crt0s.o%s shlib.ifile%s} "/* Generate calls to memcpy, memcmp and memset. */#define TARGET_MEM_FUNCTIONS/* size_t is unsigned int. */#define SIZE_TYPE "unsigned int"/* Every structure or union's size must be a multiple of 2 bytes. */#define STRUCTURE_SIZE_BOUNDARY 16/* cpp has to support a #sccs directive for the /usr/include files */#define SCCS_DIRECTIVE/* Make output for SDB. */#define SDB_DEBUGGING_INFO#undef REGISTER_NAMES#define REGISTER_NAMES \{"%d0", "%d1", "%d2", "%d3", "%d4", "%d5", "%d6", "%d7", \ "%a0", "%a1", "%a2", "%a3", "%a4", "%a5", "%fp", "%sp", \ "%fp0", "%fp1", "%fp2", "%fp3", "%fp4", "%fp5", "%fp6", "%fp7"}#undef FUNCTION_PROLOGUE#define FUNCTION_PROLOGUE(FILE, SIZE) \{ register int regno; \ register int mask = 0; \ extern char call_used_regs[]; \ int fsize = (SIZE); \ if (frame_pointer_needed) \ { if (fsize < 0x8000) \ fprintf (FILE, "\tlink.w %%fp,&%d\n", -fsize); \ else if (TARGET_68020) \ fprintf (FILE, "\tlink.l %%fp,&%d\n", -fsize); \ else \ fprintf (FILE, "\tlink.w %%fp,&0\n\tsub.l &%d,%%sp\n", fsize); } \ for (regno = 16; regno < FIRST_PSEUDO_REGISTER; regno++) \ if (regs_ever_live[regno] && ! call_used_regs[regno]) \ mask |= 1 << (regno - 16); \ if (mask != 0) \ fprintf (FILE, "\tfmovem &0x%x,-(%%sp)\n", mask & 0xff); \ mask = 0; \ for (regno = 0; regno < 16; regno++) \ if (regs_ever_live[regno] && ! call_used_regs[regno]) \ mask |= 1 << (15 - regno); \ if (frame_pointer_needed) \ mask &= ~ (1 << (15-FRAME_POINTER_REGNUM)); \ if (exact_log2 (mask) >= 0) \ fprintf (FILE, "\tmov.l %s,-(%%sp)\n", reg_names[15 - exact_log2 (mask)]); \ else if (mask) fprintf (FILE, "\tmovm.l &0x%x,-(%%sp)\n", mask); }#undef FUNCTION_PROFILER#define FUNCTION_PROFILER(FILE, LABEL_NO) \ fprintf (FILE, "\tmov.l &LP%%%d,%%a0\n\tjsr mcount%%\n", (LABEL_NO))#undef FUNCTION_EPILOGUE#define FUNCTION_EPILOGUE(FILE, SIZE) \{ register int regno; \ register int mask, fmask; \ register int nregs; \ int offset, foffset; \ extern char call_used_regs[]; \ int fsize = (SIZE); \ int big = 0; \ nregs = 0; fmask = 0; \ for (regno = 16; regno < FIRST_PSEUDO_REGISTER; regno++) \ if (regs_ever_live[regno] && ! call_used_regs[regno]) \ { nregs++; fmask |= 1 << (23 - regno); } \ foffset = nregs * 12; \ nregs = 0; mask = 0; \ if (frame_pointer_needed) regs_ever_live[FRAME_POINTER_REGNUM] = 0; \ for (regno = 0; regno < 16; regno++) \ if (regs_ever_live[regno] && ! call_used_regs[regno]) \ { nregs++; mask |= 1 << regno; } \ offset = foffset + nregs * 4; \ if (offset + fsize >= 0x8000 && frame_pointer_needed) \ { fprintf (FILE, "\tmov.l &%d,%%a0\n", -fsize); \ fsize = 0, big = 1; } \ if (exact_log2 (mask) >= 0) { \ if (big) \ fprintf (FILE, "\tmov.l -%d(%%fp,%%a0.l),%s\n", \ offset + fsize, reg_names[exact_log2 (mask)]); \ else if (! frame_pointer_needed) \ fprintf (FILE, "\tmov.l (%%sp)+,%s\n", \ reg_names[exact_log2 (mask)]); \ else \ fprintf (FILE, "\tmov.l -%d(%%fp),%s\n", \ offset + fsize, reg_names[exact_log2 (mask)]); } \ else if (mask) { \ if (big) \ fprintf (FILE, "\tmovm.l -%d(%%fp,%%a0.l),&0x%x\n", \ offset + fsize, mask); \ else if (! frame_pointer_needed) \ fprintf (FILE, "\tmovm.l (%%sp)+,&0x%x\n", mask); \ else \ fprintf (FILE, "\tmovm.l -%d(%%fp),&0x%x\n", \ offset + fsize, mask); } \ if (fmask) { \ if (big) \ fprintf (FILE, "\tfmovem -%d(%%fp,%%a0.l),&0x%x\n", \ foffset + fsize, fmask); \ else if (! frame_pointer_needed) \ fprintf (FILE, "\tfmovem (%%sp)+,&0x%x\n", fmask); \ else \ fprintf (FILE, "\tfmovem -%d(%%fp),&0x%x\n", \ foffset + fsize, fmask); } \ if (frame_pointer_needed) \ fprintf (FILE, "\tunlk %%fp\n"); \ if (current_function_pops_args) \ fprintf (FILE, "\trtd &%d\n", current_function_pops_args); \ else fprintf (FILE, "\trts\n"); }/* This is how to output an insn to push a register on the stack. It need not be very fast code. */#undef ASM_OUTPUT_REG_PUSH#define ASM_OUTPUT_REG_PUSH(FILE,REGNO) \ fprintf (FILE, "\tmov.l %s,-(%%sp)\n", reg_names[REGNO])/* This is how to output an insn to pop a register from the stack. It need not be very fast code. */#undef ASM_OUTPUT_REG_POP#define ASM_OUTPUT_REG_POP(FILE,REGNO) \ fprintf (FILE, "\tmov.l (%%sp)+,%s\n", reg_names[REGNO])#undef ASM_APP_ON#define ASM_APP_ON ""#undef ASM_APP_OFF#define ASM_APP_OFF ""#undef TEXT_SECTION_ASM_OP#define TEXT_SECTION_ASM_OP "text"#undef DATA_SECTION_ASM_OP#define DATA_SECTION_ASM_OP "data"#undef ASCII_DATA_ASM_OP#define ASCII_DATA_ASM_OP "byte"/* The file command should always begin the output. */#undef ASM_FILE_START#define ASM_FILE_START(FILE) \output_file_directive ((FILE), main_input_filename)/* Don't try to define `gcc_compiled.' since the assembler might not accept symbols with periods and GDB doesn't run on this machine anyway. */#define ASM_IDENTIFY_GCC(FILE)/* Names to predefine in the preprocessor for this target machine. *//* ihnp4!lmayk!lgm@eddie.mit.edu says mc68000 and m68k should not be here, on the other hand I don't care what he says. */#undef CPP_PREDEFINES#define CPP_PREDEFINES "-Dm68k -Dunix -DsysV68"/* Specify how to pad function arguments. Value should be `upward', `downward' or `none'. Same as the default, except no padding for large or variable-size args. */#define FUNCTION_ARG_PADDING(MODE, TYPE) \ (((MODE) == BLKmode \ ? ((TYPE) && TREE_CODE (TYPE_SIZE (TYPE)) == INTEGER_CST \ && int_size_in_bytes (TYPE) < PARM_BOUNDARY / BITS_PER_UNIT) \ : GET_MODE_BITSIZE (MODE) < PARM_BOUNDARY) \ ? downward : none)/* Override part of the obstack macros. */#define __PTR_TO_INT(P) ((int)(P))#define __INT_TO_PTR(P) ((char *)(P))#undef TARGET_VERSION#define TARGET_VERSION fprintf (stderr, " (68k, SGS/AT&T sysV68 syntax)");/* Function calls save all but a0, a1, d0, d1, fp0, fp1. */#undef CALL_USED_REGISTERS#define CALL_USED_REGISTERS \ {1, 1, 0, 0, 0, 0, 0, 0, \ 1, 1, 0, 0, 0, 0, 0, 1, \ 1, 1, 0, 0, 0, 0, 0, 0}/* If TARGET_68881, return SF and DF values in fp0 instead of d0. *//* NYI: If FP=M68881U return SF and DF values in d0. *//* NYI: If -mold return pointer in a0 and d0 */#undef FUNCTION_VALUE#define FUNCTION_VALUE(VALTYPE,FUNC) LIBCALL_VALUE(TYPE_MODE(VALTYPE))/* sysV68 (brain damaged) cc convention support. *//* Commented out until we find a safe way to make it optional. */#if 0#define FUNCTION_VALUE(VALTYPE,FUNC) \ (TREE_CODE (VALTYPE) == REAL_TYPE && TARGET_68881 \ ? gen_rtx (REG, TYPE_MODE (VALTYPE), 16) \ : (TREE_CODE (VALTYPE) == POINTER_TYPE \ ? gen_rtx (REG, TYPE_MODE (VALTYPE), 8) \ : gen_rtx (REG, TYPE_MODE (VALTYPE), 0)))#endif/* If TARGET_68881, SF and DF values are returned in fp0 instead of d0. */#undef LIBCALL_VALUE#define LIBCALL_VALUE(MODE) \ gen_rtx (REG, (MODE), ((TARGET_68881 && ((MODE) == SFmode || (MODE) == DFmode)) ? 16 : 0))/* 1 if N is a possible register number for a function value. d0 may be used, and fp0 as well if -msoft-float is not specified. */#undef FUNCTION_VALUE_REGNO_P#define FUNCTION_VALUE_REGNO_P(N) \ ((N) == 0 || (TARGET_68881 && (N) == 16))/* sysV68 (brain damaged) cc convention support. *//* Commented out until we find a safe way to make it optional. */#if 0#define FUNCTION_VALUE_REGNO_P(N) \ ((N) == 0 || (N) == 8 || (TARGET_68881 && (N) == 16))#endif /* This is the command to make the user-level label named NAME defined for reference from other files. */#undef GLOBAL_ASM_OP#define GLOBAL_ASM_OP "global"/* Store in OUTPUT a string (made with alloca) containing an assembler-name for a local static variable named NAME. LABELNO is an integer which is different for each call. */#undef ASM_FORMAT_PRIVATE_NAME#define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 12), \ sprintf ((OUTPUT), "%s_%%%d", (NAME), (LABELNO)))/* The sysV68 as doesn't know about double's and float's. */#undef ASM_OUTPUT_DOUBLE#define ASM_OUTPUT_DOUBLE(FILE,VALUE) \do { union { double d; long l[2]; } tem; \ tem.d = (VALUE); \ fprintf(FILE, "\tlong 0x%x,0x%x\n", tem.l[0], tem.l[1]); \ } while (0)#undef ASM_OUTPUT_FLOAT#define ASM_OUTPUT_FLOAT(FILE,VALUE) \do { union { float f; long l;} tem; \ tem.f = (VALUE); \ fprintf (FILE, "\tlong 0x%x\n", tem.l); \ } while (0)/* This is how to output an assembler line defining an `int' constant. */#undef ASM_OUTPUT_INT#define ASM_OUTPUT_INT(FILE,VALUE) \( fprintf (FILE, "\tlong "), \ output_addr_const (FILE, (VALUE)), \ fprintf (FILE, "\n"))/* Likewise for `char' and `short' constants. */#undef ASM_OUTPUT_SHORT#define ASM_OUTPUT_SHORT(FILE,VALUE) \( fprintf (FILE, "\tshort "), \ output_addr_const (FILE, (VALUE)), \ fprintf (FILE, "\n"))#undef ASM_OUTPUT_CHAR#define ASM_OUTPUT_CHAR(FILE,VALUE) \( fprintf (FILE, "\tbyte "), \ output_addr_const (FILE, (VALUE)), \ fprintf (FILE, "\n"))/* This is how to output an assembler line for a numeric constant byte. */#undef ASM_OUTPUT_BYTE#define ASM_OUTPUT_BYTE(FILE,VALUE) \ fprintf (FILE, "\tbyte 0x%x\n", (VALUE))/* This is how to output an assembler line that says to advance the location counter to a multiple of 2**LOG bytes. */#undef ASM_OUTPUT_ALIGN#define ASM_OUTPUT_ALIGN(FILE,LOG) \ if ((LOG) == 1) \ fprintf (FILE, "\teven\n"); \ else if ((LOG) != 0) \ abort ();#undef ASM_OUTPUT_SKIP#define ASM_OUTPUT_SKIP(FILE,SIZE) \ fprintf (FILE, "\tspace %u\n", (SIZE))/* Can't use ASM_OUTPUT_SKIP in text section. */#define ASM_NO_SKIP_IN_TEXT 1/* The beginnings of sdb support... */#undef ASM_OUTPUT_SOURCE_FILENAME#define ASM_OUTPUT_SOURCE_FILENAME(FILE, FILENAME) \ fprintf (FILE, "\tfile\t\"%s\"\n", FILENAME)#undef ASM_OUTPUT_SOURCE_LINE#define ASM_OUTPUT_SOURCE_LINE(FILE, LINENO) \ fprintf (FILE, "\tln\t%d\n", \ (sdb_begin_function_line \ ? last_linenum - sdb_begin_function_line : 1))/* Yet another null terminated string format. */#undef ASM_OUTPUT_ASCII#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \ { register int sp = 0, lp = 0; \ fprintf ((FILE), "\tbyte\t"); \ loop: \ if ((PTR)[sp] > ' ' && ! ((PTR)[sp] & 0x80) && (PTR)[sp] != '\\') \ { lp += 3; \ fprintf ((FILE), "'%c", (PTR)[sp]); } \ else \ { lp += 5; \ fprintf ((FILE), "0x%x", (PTR)[sp]); } \ if (++sp < (LEN)) \ { if (lp > 60) \ { lp = 0; \ fprintf ((FILE), "\n\t%s ", ASCII_DATA_ASM_OP); } \ else \ putc (',', (FILE)); \ goto loop; } \ putc ('\n', (FILE)); }/* Print operand X (an rtx) in assembler syntax to file FILE. CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -