Changeset 8fb1bf82 in mainline for kernel/arch/sparc64/include
- Timestamp:
- 2010-11-25T13:42:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8df8415
- Parents:
- a93d79a (diff), eb667613 (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/sparc64/include
- Files:
-
- 1 added
- 2 edited
-
interrupt.h (modified) (2 diffs)
-
istate.h (added)
-
types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/interrupt.h
ra93d79a r8fb1bf82 38 38 39 39 #include <typedefs.h> 40 #include <arch/regdef.h> 41 #include <trace.h> 40 #include <arch/istate.h> 42 41 43 42 #define IVT_ITEMS 15 … … 51 50 }; 52 51 53 typedef struct istate {54 uint64_t tnpc;55 uint64_t tpc;56 uint64_t tstate;57 } istate_t;58 59 NO_TRACE static inline void istate_set_retaddr(istate_t *istate,60 uintptr_t retaddr)61 {62 istate->tpc = retaddr;63 }64 65 NO_TRACE static inline int istate_from_uspace(istate_t *istate)66 {67 return !(istate->tstate & TSTATE_PRIV_BIT);68 }69 70 NO_TRACE static inline unative_t istate_get_pc(istate_t *istate)71 {72 return istate->tpc;73 }74 75 NO_TRACE static inline unative_t istate_get_fp(istate_t *istate)76 {77 /* TODO */78 79 return 0;80 }81 82 52 #endif 83 53 -
kernel/arch/sparc64/include/types.h
ra93d79a r8fb1bf82 52 52 typedef uint8_t asi_t; 53 53 54 /** Formats for uintptr_t, size_t */ 55 #define PRIp "llx" 56 #define PRIs "llu" 57 58 /** Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 59 #define PRId8 "d" 60 #define PRId16 "d" 61 #define PRId32 "d" 62 #define PRId64 "lld" 63 #define PRIdn "lld" 64 65 #define PRIu8 "u" 66 #define PRIu16 "u" 67 #define PRIu32 "u" 68 #define PRIu64 "llu" 69 #define PRIun "llu" 70 71 #define PRIx8 "x" 72 #define PRIx16 "x" 73 #define PRIx32 "x" 74 #define PRIx64 "llx" 75 #define PRIxn "llx" 54 #define PRIp PRIx64 /**< Format for uintptr_t. */ 55 #define PRIs PRIu64 /**< Format for size_t. */ 56 #define PRIdn PRId64 /**< Format for native_t. */ 57 #define PRIun PRIu64 /**< Format for unative_t. */ 58 #define PRIxn PRIx64 /**< Format for hexadecimal unative_t. */ 76 59 77 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
