expr_is_guardable, stmt_is_guardable, add_guarded_stmt_to_end_of: handle GetI/PutI...
[valgrind.git] / VEX / priv / host_generic_maddf.h
blob9fc0d1c256e3cb0ae225c294f0affd09ab951e2c
2 /*---------------------------------------------------------------*/
3 /*--- begin host_generic_maddf.h ---*/
4 /*---------------------------------------------------------------*/
6 /*
7 Compute x * y + z as ternary operation.
8 Copyright (C) 2010-2017 Free Software Foundation, Inc.
9 This file is part of the GNU C Library.
10 Contributed by Jakub Jelinek <jakub@redhat.com>, 2010.
12 The GNU C Library is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Lesser General Public
14 License as published by the Free Software Foundation; either
15 version 2.1 of the License, or (at your option) any later version.
17 The GNU C Library is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
22 You should have received a copy of the GNU Lesser General Public
23 License along with the GNU C Library; if not, see
24 <http://www.gnu.org/licenses/>.
27 /* Generic helper functions for doing FMA, i.e. compute x * y + z
28 as ternary operation.
29 These are purely back-end entities and cannot be seen/referenced
30 from IR. */
32 #ifndef __VEX_HOST_GENERIC_MADDF_H
33 #define __VEX_HOST_GENERIC_MADDF_H
35 #include "libvex_basictypes.h"
37 extern VEX_REGPARM(3)
38 void h_generic_calc_MAddF32 ( /*OUT*/Float*, Float*, Float*, Float* );
40 extern VEX_REGPARM(3)
41 void h_generic_calc_MAddF64 ( /*OUT*/Double*, Double*, Double*,
42 Double* );
44 #endif /* ndef __VEX_HOST_GENERIC_MADDF_H */
46 /*---------------------------------------------------------------*/
47 /*--- end host_generic_maddf.h --*/
48 /*---------------------------------------------------------------*/