Changeset 7bdcc45 in mainline for kernel/arch/mips32/include
- Timestamp:
- 2010-12-16T16:38:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7837101
- Parents:
- 8e58f94 (diff), eb221e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch/mips32/include
- Files:
-
- 3 edited
-
debugger.h (modified) (2 diffs)
-
fpu_context.h (modified) (1 diff)
-
types.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/debugger.h
r8e58f94 r7bdcc45 58 58 59 59 typedef struct { 60 uintptr_t address; /**< Breakpoint address */61 unative_t instruction; /**< Original instruction */62 unative_t nextinstruction; /**< Original instruction following break */63 unsigned int flags; /**< Flags regarding breakpoint */60 uintptr_t address; /**< Breakpoint address */ 61 sysarg_t instruction; /**< Original instruction */ 62 sysarg_t nextinstruction; /**< Original instruction following break */ 63 unsigned int flags; /**< Flags regarding breakpoint */ 64 64 size_t counter; 65 65 void (*bkfunc)(void *, istate_t *); … … 68 68 extern bpinfo_t breakpoints[BKPOINTS_MAX]; 69 69 70 extern bool is_jump( unative_t);70 extern bool is_jump(sysarg_t); 71 71 72 72 extern void debugger_init(void); -
kernel/arch/mips32/include/fpu_context.h
r8e58f94 r7bdcc45 38 38 #include <typedefs.h> 39 39 40 #define FPU_CONTEXT_ALIGN sizeof( unative_t)40 #define FPU_CONTEXT_ALIGN sizeof(sysarg_t) 41 41 42 42 typedef struct { 43 unative_t dregs[32];44 unative_t cregs[32];43 sysarg_t dregs[32]; 44 sysarg_t cregs[32]; 45 45 } fpu_context_t; 46 46 -
kernel/arch/mips32/include/types.h
r8e58f94 r7bdcc45 43 43 typedef uint32_t ipl_t; 44 44 45 typedef uint32_t unative_t;45 typedef uint32_t sysarg_t; 46 46 typedef int32_t native_t; 47 47 typedef uint32_t atomic_count_t; … … 50 50 } fncptr_t; 51 51 52 #define PRIp "x" /**< Format for uintptr_t. */53 #define PRIs "u" /**< Format for size_t. */52 #define INTN_C(c) INT32_C(c) 53 #define UINTN_C(c) UINT32_C(c) 54 54 55 #define PRId8 "d" /**< Format for int8_t. */ 56 #define PRId16 "d" /**< Format for int16_t. */ 57 #define PRId32 "ld" /**< Format for int32_t. */ 58 #define PRId64 "lld" /**< Format for int64_t. */ 59 #define PRIdn "d" /**< Format for native_t. */ 60 61 #define PRIu8 "u" /**< Format for uint8_t. */ 62 #define PRIu16 "u" /**< Format for uint16_t. */ 63 #define PRIu32 "u" /**< Format for uint32_t. */ 64 #define PRIu64 "llu" /**< Format for uint64_t. */ 65 #define PRIun "u" /**< Format for unative_t. */ 66 67 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 68 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 69 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 70 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ 71 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 55 #define PRIdn PRId32 /**< Format for native_t. */ 56 #define PRIun PRIu32 /**< Format for sysarg_t. */ 57 #define PRIxn PRIx32 /**< Format for hexadecimal sysarg_t. */ 58 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 72 59 73 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
