2012-08-05 00:06:17 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-08-04 20:24:59 +02:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2014.
|
2012-08-05 00:06:17 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
This file is part of Sortix.
|
2012-08-05 00:06:17 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
Sortix 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.
|
2012-08-05 00:06:17 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
Sortix 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.
|
2012-08-05 00:06:17 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2012-08-05 00:06:17 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
x86-family/float.cpp
|
|
|
|
Handles saving and restoration of floating point numbers.
|
2012-08-05 00:06:17 +02:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2013-10-27 02:42:10 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2013-01-09 23:30:36 +01:00
|
|
|
#include <sortix/kernel/interrupt.h>
|
2013-10-27 02:42:10 +02:00
|
|
|
#include <sortix/kernel/kernel.h>
|
2013-05-13 00:41:30 +02:00
|
|
|
#include <sortix/kernel/thread.h>
|
2013-01-09 23:30:36 +01:00
|
|
|
|
2012-08-05 00:06:17 +02:00
|
|
|
#include "float.h"
|
|
|
|
|
|
|
|
namespace Sortix {
|
|
|
|
namespace Float {
|
|
|
|
|
2014-03-04 00:11:13 +01:00
|
|
|
extern "C" { __attribute__((aligned(16))) uint8_t fpu_initialized_regs[512]; }
|
2012-08-05 00:06:17 +02:00
|
|
|
|
|
|
|
} // namespace Float
|
|
|
|
} // namespace Sortix
|