* ########################################################################
*/
+#include <linux/compiler.h>
#include "ieee754int.h"
#include "ieee754sp.h"
};
-int ieee754si_xcpt(int r, const char *op, ...)
+int __cold ieee754si_xcpt(int r, const char *op, ...)
{
struct ieee754xctx ax;
return ax.rv.si;
}
-s64 ieee754di_xcpt(s64 r, const char *op, ...)
+s64 __cold ieee754di_xcpt(s64 r, const char *op, ...)
{
struct ieee754xctx ax;
#ifndef __ARCH_MIPS_MATH_EMU_IEEE754_H
#define __ARCH_MIPS_MATH_EMU_IEEE754_H
+#include <linux/compiler.h>
#include <asm/byteorder.h>
#include <linux/types.h>
#include <linux/sched.h>
#define IEEE754_RT_SI 3
#define IEEE754_RT_DI 4
-extern void ieee754_xcpt(struct ieee754xctx *xcp);
+extern void __cold ieee754_xcpt(struct ieee754xctx *xcp);
/* compat */
#define ieee754dp_fix(x) ieee754dp_tint(x)
* ########################################################################
*/
+#include <linux/compiler.h>
#include "ieee754dp.h"
}
-ieee754dp ieee754dp_xcpt(ieee754dp r, const char *op, ...)
+ieee754dp __cold ieee754dp_xcpt(ieee754dp r, const char *op, ...)
{
struct ieee754xctx ax;
if (!TSTX())
return ax.rv.dp;
}
-ieee754dp ieee754dp_nanxcpt(ieee754dp r, const char *op, ...)
+ieee754dp __cold ieee754dp_nanxcpt(ieee754dp r, const char *op, ...)
{
struct ieee754xctx ax;
* ########################################################################
*/
+#include <linux/compiler.h>
#include "ieee754int.h"
extern int ieee754dp_isnan(ieee754dp);
extern int ieee754dp_issnan(ieee754dp);
-extern int ieee754si_xcpt(int, const char *, ...);
-extern s64 ieee754di_xcpt(s64, const char *, ...);
-extern ieee754dp ieee754dp_xcpt(ieee754dp, const char *, ...);
-extern ieee754dp ieee754dp_nanxcpt(ieee754dp, const char *, ...);
+extern int __cold ieee754si_xcpt(int, const char *, ...);
+extern s64 __cold ieee754di_xcpt(s64, const char *, ...);
+extern ieee754dp __cold ieee754dp_xcpt(ieee754dp, const char *, ...);
+extern ieee754dp __cold ieee754dp_nanxcpt(ieee754dp, const char *, ...);
extern ieee754dp ieee754dp_bestnan(ieee754dp, ieee754dp);
extern ieee754dp ieee754dp_format(int, int, u64);
* ########################################################################
*/
+#include <linux/compiler.h>
#include "ieee754sp.h"
}
-ieee754sp ieee754sp_xcpt(ieee754sp r, const char *op, ...)
+ieee754sp __cold ieee754sp_xcpt(ieee754sp r, const char *op, ...)
{
struct ieee754xctx ax;
return ax.rv.sp;
}
-ieee754sp ieee754sp_nanxcpt(ieee754sp r, const char *op, ...)
+ieee754sp __cold ieee754sp_nanxcpt(ieee754sp r, const char *op, ...)
{
struct ieee754xctx ax;
* ########################################################################
*/
+#include <linux/compiler.h>
#include "ieee754int.h"
extern int ieee754sp_isnan(ieee754sp);
extern int ieee754sp_issnan(ieee754sp);
-extern int ieee754si_xcpt(int, const char *, ...);
-extern s64 ieee754di_xcpt(s64, const char *, ...);
-extern ieee754sp ieee754sp_xcpt(ieee754sp, const char *, ...);
-extern ieee754sp ieee754sp_nanxcpt(ieee754sp, const char *, ...);
+extern int __cold ieee754si_xcpt(int, const char *, ...);
+extern s64 __cold ieee754di_xcpt(s64, const char *, ...);
+extern ieee754sp __cold ieee754sp_xcpt(ieee754sp, const char *, ...);
+extern ieee754sp __cold ieee754sp_nanxcpt(ieee754sp, const char *, ...);
extern ieee754sp ieee754sp_bestnan(ieee754sp, ieee754sp);
extern ieee754sp ieee754sp_format(int, int, unsigned);
* Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
*************************************************************************/
+#include <linux/compiler.h>
#include <linux/kernel.h>
#include "ieee754.h"
"sp", "dp", "xp", "si", "di"
};
-void ieee754_xcpt(struct ieee754xctx *xcp)
+void __cold ieee754_xcpt(struct ieee754xctx *xcp)
{
printk(KERN_DEBUG "floating point exception in \"%s\", type=%s\n",
xcp->op, rtnames[xcp->rt]);