riscv: Allocate enough space to strcpy() string
[official-gcc.git] / libgcc / soft-fp / fixtdti.c
blob9ac13331af74eaca711ac3d1fe9b23cec29413c9
1 /* Software floating-point emulation.
2 Convert _Decimal128 to 128bit signed integer.
4 Copyright (C) 2023 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 #include "soft-fp.h"
28 #include "bitint.h"
30 #if defined(__BITINT_MAXWIDTH__) && defined(__SIZEOF_INT128__)
31 extern void __bid_fixtdbitint (UBILtype *, SItype, _Decimal128);
32 extern TItype __bid_fixtdti (_Decimal128);
34 TItype
35 __bid_fixtdti (_Decimal128 a)
37 UBILtype rb[128 / BIL_TYPE_SIZE];
38 __bid_fixtdbitint (rb, -128, a);
39 #if BIL_TYPE_SIZE == 128
40 return rb[0];
41 #elif BIL_TYPE_SIZE == 64
42 return ((((UTItype) rb[BITINT_END (0, 1)]) << 64)
43 | rb[BITINT_END (1, 0)]);
44 #elif BIL_TYPE_SIZE == 32
45 return ((((UTItype) rb[BITINT_END (0, 3)]) << 96)
46 | (((UTItype) rb[BITINT_END (1, 2)]) << 64)
47 | (((UTItype) rb[BITINT_END (2, 1)]) << 32)
48 | rb[BITINT_END (3, 0)]);
49 #else
50 #error Unsupported UBILtype
51 #endif
53 #endif