]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/config/arc/divtab-arc700.c
Update copyright years.
[thirdparty/gcc.git] / libgcc / config / arc / divtab-arc700.c
CommitLineData
7adcbafe 1/* Copyright (C) 2004-2022 Free Software Foundation, Inc.
d38a64b4
JR
2 Contributor: Joern Rennecke <joern.rennecke@embecosm.com>
3 on behalf of Synopsys Inc.
4
5This file is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
7Free Software Foundation; either version 3, or (at your option) any
8later version.
9
10In addition to the permissions in the GNU General Public License, the
11Free Software Foundation gives you unlimited permission to link the
12compiled version of this file into combinations with other programs,
13and to distribute those combinations without any restriction coming
14from the use of this file. (The General Public License restrictions
15do apply in other respects; for example, they cover modification of
16the file, and distribution when not linked into a combine
17executable.)
18
19This file is distributed in the hope that it will be useful, but
20WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22General Public License for more details.
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING3. If not see
26<http://www.gnu.org/licenses/>. */
27
28/* Calculate division table for ARC700 integer division
29 Contributed by Joern Rennecke
30 joern.rennecke@arc.com */
31
32#include <stdio.h>
33#include <math.h>
34
35int
36main ()
37{
38 int i, j;
39 unsigned x;
40 double q, r, err, max_err = -1;
41
42 puts("/* This table has been generated by divtab-arc700.c. */");
43 puts("\
44/* 1/512 .. 1/256, normalized. There is a leading 1 in bit 31.\n\
45 For powers of two, we list unnormalized numbers instead. The values\n\
46 for powers of 2 are loaded, but not used. The value for 1 is actually\n\
47 the first instruction after .Lmuldiv. */\n\
48 .balign 4");
49 puts (".Ldivtab:\n");
50 for (i = 256; i >= 2; --i)
51 {
52 j = i < 0 ? -i : i;
53 if (j & (j-1))
54 while (j < 128)
55 j += j;
56 else
57 /* Power of two. */
58 j *= 128;
59 q = 4.*(1<<30)*128/j;
60 r = ceil (q);
61 printf ("\t.long\t0x%X\n", (unsigned) r);
62 err = r - q;
63 if (err > max_err)
64 max_err = err;
65 }
66#if 0
67 printf ("\t/* maximum error: %f */\n", max_err);
68#endif
69 exit (0);
70}