source: trunk/src/gcc/gcc/config/i386/unix.h@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 2.9 KB
Line 
1/* Definitions for Unix assembler syntax for the Intel 80386.
2 Copyright (C) 1988, 1994, 1999, 2000, 2001 Free Software Foundation, Inc.
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21/* This file defines the aspects of assembler syntax
22 that are the same for all the i386 Unix systems
23 (though they may differ in non-Unix systems). */
24
25#define DEFAULT_ASSEMBLER_DIALECT 0
26
27/* Define macro used to output shift-double opcodes when the shift
28 count is in %cl. Some assemblers require %cl as an argument;
29 some don't. This macro controls what to do: by default, don't
30 print %cl. */
31#define SHIFT_DOUBLE_OMITS_COUNT 1
32
33
34/* Define the syntax of pseudo-ops, labels and comments. */
35
36/* String containing the assembler's comment-starter. */
37
38#define ASM_COMMENT_START "/"
39
40/* Output to assembler file text saying following lines
41 may contain character constants, extra white space, comments, etc. */
42
43#define ASM_APP_ON "/APP\n"
44
45/* Output to assembler file text saying following lines
46 no longer contain unusual constructs. */
47
48#define ASM_APP_OFF "/NO_APP\n"
49
50/* Output before read-only data. */
51
52#define TEXT_SECTION_ASM_OP "\t.text"
53
54/* Output before writable (initialized) data. */
55
56#define DATA_SECTION_ASM_OP "\t.data"
57
58/* Output before writable (uninitialized) data. */
59
60#define BSS_SECTION_ASM_OP "\t.bss"
61
62/* This is how to output a command to make the user-level label named NAME
63 defined for reference from other files. */
64
65#define ASM_GLOBALIZE_LABEL(FILE,NAME) \
66 (fputs (".globl ", FILE), assemble_name (FILE, NAME), fputs ("\n", FILE))
67
68/* By default, target has a 80387, uses IEEE compatible arithmetic,
69 and returns float values in the 387. */
70
71#define TARGET_SUBTARGET_DEFAULT (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS)
72
73/* Floating-point return values come in the FP register. */
74
75#define VALUE_REGNO(MODE) \
76 (GET_MODE_CLASS (MODE) == MODE_FLOAT \
77 && TARGET_FLOAT_RETURNS_IN_80387 ? FIRST_FLOAT_REG \
78 : (MODE) == TImode || VECTOR_MODE_P (MODE) ? FIRST_SSE_REG \
79 : 0)
80
81/* Output code to add DELTA to the first argument, and then jump to FUNCTION.
82 Used for C++ multiple inheritance. */
83#define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION) \
84 x86_output_mi_thunk (FILE, DELTA, FUNCTION);
Note: See TracBrowser for help on using the repository browser.