forked from Minki/linux
1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
30 lines
881 B
C
30 lines
881 B
C
/*
|
|
* arch/s390/kernel/mathemu.h
|
|
* IEEE floating point emulation.
|
|
*
|
|
* S390 version
|
|
* Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
|
|
* Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
|
|
*/
|
|
|
|
#ifndef __MATHEMU__
|
|
#define __MATHEMU__
|
|
|
|
extern int math_emu_b3(__u8 *, struct pt_regs *);
|
|
extern int math_emu_ed(__u8 *, struct pt_regs *);
|
|
extern int math_emu_ldr(__u8 *);
|
|
extern int math_emu_ler(__u8 *);
|
|
extern int math_emu_std(__u8 *, struct pt_regs *);
|
|
extern int math_emu_ld(__u8 *, struct pt_regs *);
|
|
extern int math_emu_ste(__u8 *, struct pt_regs *);
|
|
extern int math_emu_le(__u8 *, struct pt_regs *);
|
|
extern int math_emu_lfpc(__u8 *, struct pt_regs *);
|
|
extern int math_emu_stfpc(__u8 *, struct pt_regs *);
|
|
extern int math_emu_srnm(__u8 *, struct pt_regs *);
|
|
|
|
#endif /* __MATHEMU__ */
|
|
|
|
|
|
|
|
|