Changeset 5301662 in mainline
- Timestamp:
- 2014-09-08T20:56:13Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 24c394b
- Parents:
- 9827b5b
- Location:
- kernel/arch/mips32
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/Makefile.inc
r9827b5b r5301662 87 87 ARCH_AUTOGENS_AG = \ 88 88 arch/$(KARCH)/include/arch/istate_struct.ag \ 89 arch/$(KARCH)/include/arch/context_struct.ag 89 arch/$(KARCH)/include/arch/context_struct.ag \ 90 arch/$(KARCH)/include/arch/fpu_context_struct.ag 90 91 -
kernel/arch/mips32/include/arch/fpu_context.h
r9827b5b r5301662 37 37 38 38 #include <typedefs.h> 39 #include <arch/fpu_context_struct.h> 39 40 40 41 #define FPU_CONTEXT_ALIGN sizeof(sysarg_t) 41 42 typedef struct {43 sysarg_t dregs[32];44 sysarg_t cregs[32];45 } fpu_context_t;46 42 47 43 #endif -
kernel/arch/mips32/src/asm.S
r9827b5b r5301662 28 28 29 29 #include <arch/asm/regname.h> 30 #include <arch/fpu_context_struct.h> 30 31 31 32 .text … … 136 137 .macro fpu_gp_save reg ctx 137 138 mfc1 $t0, $\reg 138 sw $t0, \reg * 4(\ctx)139 sw $t0, FPU_CONTEXT_OFFSET_DREGS + \reg * FPU_CONTEXT_DREGS_ITEM_SIZE(\ctx) 139 140 .endm 140 141 141 142 .macro fpu_gp_restore reg ctx 142 lw $t0, \reg * 4(\ctx)143 lw $t0, FPU_CONTEXT_OFFSET_DREGS + \reg * FPU_CONTEXT_DREGS_ITEM_SIZE(\ctx) 143 144 mtc1 $t0, $\reg 144 145 .endm … … 146 147 .macro fpu_ct_save reg ctx 147 148 cfc1 $t0, $1 148 sw $t0, (\reg + 32) * 4(\ctx)149 sw $t0, FPU_CONTEXT_OFFSET_CREGS + \reg * FPU_CONTEXT_CREGS_ITEM_SIZE(\ctx) 149 150 .endm 150 151 151 152 .macro fpu_ct_restore reg ctx 152 lw $t0, (\reg + 32) * 4(\ctx)153 lw $t0, FPU_CONTEXT_OFFSET_CREGS + \reg * FPU_CONTEZT_CREGS_ITEM_SIZE(\ctx) 153 154 ctc1 $t0, $\reg 154 155 .endm
Note:
See TracChangeset
for help on using the changeset viewer.