198944Sobrien/* i387-specific utility functions, for the remote server for GDB.
298944Sobrien   Copyright 2000, 2001, 2002
398944Sobrien   Free Software Foundation, Inc.
498944Sobrien
598944Sobrien   This file is part of GDB.
698944Sobrien
798944Sobrien   This program is free software; you can redistribute it and/or modify
898944Sobrien   it under the terms of the GNU General Public License as published by
998944Sobrien   the Free Software Foundation; either version 2 of the License, or
1098944Sobrien   (at your option) any later version.
1198944Sobrien
1298944Sobrien   This program is distributed in the hope that it will be useful,
1398944Sobrien   but WITHOUT ANY WARRANTY; without even the implied warranty of
1498944Sobrien   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1598944Sobrien   GNU General Public License for more details.
1698944Sobrien
1798944Sobrien   You should have received a copy of the GNU General Public License
1898944Sobrien   along with this program; if not, write to the Free Software
1998944Sobrien   Foundation, Inc., 59 Temple Place - Suite 330,
2098944Sobrien   Boston, MA 02111-1307, USA.  */
2198944Sobrien
2298944Sobrien#ifndef I387_FP_H
2398944Sobrien#define I387_FP_H
2498944Sobrien
2598944Sobrienvoid i387_cache_to_fsave (void *buf);
26130803Smarcelvoid i387_fsave_to_cache (const void *buf);
2798944Sobrien
2898944Sobrienvoid i387_cache_to_fxsave (void *buf);
29130803Smarcelvoid i387_fxsave_to_cache (const void *buf);
3098944Sobrien
3198944Sobrienextern int num_xmm_registers;
3298944Sobrien
3398944Sobrien#endif /* I387_FP_H */
34