OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [config/] [arm/] [arm-opts.h] - Blame information for rev 713

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 709 jeremybenn
/* Definitions for option handling for ARM.
2
   Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3
   2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4
   Free Software Foundation, Inc.
5
 
6
   This file is part of GCC.
7
 
8
   GCC is free software; you can redistribute it and/or modify it
9
   under the terms of the GNU General Public License as published
10
   by the Free Software Foundation; either version 3, or (at your
11
   option) any later version.
12
 
13
   GCC is distributed in the hope that it will be useful, but WITHOUT
14
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
16
   License for more details.
17
 
18
   You should have received a copy of the GNU General Public License
19
   along with GCC; see the file COPYING3.  If not see
20
   <http://www.gnu.org/licenses/>.  */
21
 
22
#ifndef ARM_OPTS_H
23
#define ARM_OPTS_H
24
 
25
/* The various ARM cores.  */
26
enum processor_type
27
{
28
#define ARM_CORE(NAME, IDENT, ARCH, FLAGS, COSTS) \
29
  IDENT,
30
#include "arm-cores.def"
31
#undef ARM_CORE
32
  /* Used to indicate that no processor has been specified.  */
33
  arm_none
34
};
35
 
36
/* Which __fp16 format to use.
37
   The enumeration values correspond to the numbering for the
38
   Tag_ABI_FP_16bit_format attribute.
39
 */
40
enum arm_fp16_format_type
41
{
42
  ARM_FP16_FORMAT_NONE = 0,
43
  ARM_FP16_FORMAT_IEEE = 1,
44
  ARM_FP16_FORMAT_ALTERNATIVE = 2
45
};
46
 
47
/* Which ABI to use.  */
48
enum arm_abi_type
49
{
50
  ARM_ABI_APCS,
51
  ARM_ABI_ATPCS,
52
  ARM_ABI_AAPCS,
53
  ARM_ABI_IWMMXT,
54
  ARM_ABI_AAPCS_LINUX
55
};
56
 
57
enum float_abi_type
58
{
59
  ARM_FLOAT_ABI_SOFT,
60
  ARM_FLOAT_ABI_SOFTFP,
61
  ARM_FLOAT_ABI_HARD
62
};
63
 
64
/* Which thread pointer access sequence to use.  */
65
enum arm_tp_type {
66
  TP_AUTO,
67
  TP_SOFT,
68
  TP_CP15
69
};
70
 
71
/* Which TLS scheme to use.  */
72
enum arm_tls_type {
73
  TLS_GNU,
74
  TLS_GNU2
75
};
76
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.