aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/lib/java/net/UnknownServiceException.class
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-09-27 03:56:50 +0000
committerDavid S. Miller <davem@gcc.gnu.org>2011-09-26 20:56:50 -0700
commitf14e02622f52850e6186887aea6c354f1a7d4b49 (patch)
tree441a2549171d7c28afe6ae704a69fba0da20b9f6 /libjava/classpath/lib/java/net/UnknownServiceException.class
parenta7cee01d32cdbe912b32ad113b569b39a0e95445 (diff)
downloadgcc-f14e02622f52850e6186887aea6c354f1a7d4b49.zip
gcc-f14e02622f52850e6186887aea6c354f1a7d4b49.tar.gz
gcc-f14e02622f52850e6186887aea6c354f1a7d4b49.tar.bz2
Add explicit VIS intrinsics for addition and subtraction.
gcc/ * config/sparc/sparc.c (sparc_vis_init_builtins): Add explicit builtins for VIS vector addition and subtraction. * config/sparc/visintrin.h (__vis_fpadd16, __vis_fpadd16s, __vis_fpadd32, __vis_fpadd32s, __vis_fpsub16, __vis_fpsub16s, __vis_fpsub32, __vis_fpsub32s): New. * doc/extend.texi: Document new VIS intrinsics. gcc/testsuite/ * gcc.target/sparc/fpaddsubi.c: New test. From-SVN: r179235
Diffstat (limited to 'libjava/classpath/lib/java/net/UnknownServiceException.class')
0 files changed, 0 insertions, 0 deletions
1'>users/aburgess/try-rhel-2366461 Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/bfd/cpu-k1om.c
blob: 927bab6f2c77c6c740d40e898530923ec35190c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* BFD support for the Intel K1OM architecture.
   Copyright (C) 2011-2019 Free Software Foundation, Inc.

   This file is part of BFD, the Binary File Descriptor library.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */

#include "sysdep.h"
#include "bfd.h"
#include "libbfd.h"

extern void * bfd_arch_i386_short_nop_fill (bfd_size_type, bfd_boolean,
					    bfd_boolean);

static const bfd_arch_info_type bfd_k1om_arch_intel_syntax =
{
  64, /* 64 bits in a word */
  64, /* 64 bits in an address */
  8,  /* 8 bits in a byte */
  bfd_arch_k1om,
  bfd_mach_k1om_intel_syntax,
  "k1om:intel",
  "k1om:intel",
  3,
  TRUE,
  bfd_default_compatible,
  bfd_default_scan,
  bfd_arch_i386_short_nop_fill,
  0
};

const bfd_arch_info_type bfd_k1om_arch =
{
  64, /* 64 bits in a word */
  64, /* 64 bits in an address */
  8,  /* 8 bits in a byte */
  bfd_arch_k1om,
  bfd_mach_k1om,
  "k1om",
  "k1om",
  3,
  TRUE,
  bfd_default_compatible,
  bfd_default_scan,
  bfd_arch_i386_short_nop_fill,
  &bfd_k1om_arch_intel_syntax
};