diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/mips/math-emu/dsemul.h |
Linux-2.6.12-rc2v2.6.12-rc2
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!
Diffstat (limited to 'arch/mips/math-emu/dsemul.h')
-rw-r--r-- | arch/mips/math-emu/dsemul.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/mips/math-emu/dsemul.h b/arch/mips/math-emu/dsemul.h new file mode 100644 index 000000000000..dbd85f95268d --- /dev/null +++ b/arch/mips/math-emu/dsemul.h | |||
@@ -0,0 +1,23 @@ | |||
1 | typedef long gpreg_t; | ||
2 | typedef void *vaddr_t; | ||
3 | |||
4 | #define REG_TO_VA (vaddr_t) | ||
5 | #define VA_TO_REG (gpreg_t) | ||
6 | |||
7 | int mips_dsemul(struct pt_regs *regs, mips_instruction ir, gpreg_t cpc); | ||
8 | int do_dsemulret(struct pt_regs *xcp); | ||
9 | |||
10 | /* Instruction which will always cause an address error */ | ||
11 | #define AdELOAD 0x8c000001 /* lw $0,1($0) */ | ||
12 | /* Instruction which will plainly cause a CP1 exception when FPU is disabled */ | ||
13 | #define CP1UNDEF 0x44400001 /* cfc1 $0,$0 undef */ | ||
14 | |||
15 | /* Instruction inserted following the badinst to further tag the sequence */ | ||
16 | #define BD_COOKIE 0x0000bd36 /* tne $0,$0 with baggage */ | ||
17 | |||
18 | /* Setup which instruction to use for trampoline */ | ||
19 | #ifdef STANDALONE_EMULATOR | ||
20 | #define BADINST CP1UNDEF | ||
21 | #else | ||
22 | #define BADINST AdELOAD | ||
23 | #endif | ||