| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | #include "exec.h"
 | 
					
						
							| 
									
										
										
										
											2007-10-28 14:35:04 +00:00
										 |  |  | #include "host-utils.h"
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #include "helper.h"
 | 
					
						
							| 
									
										
										
										
											2008-05-09 20:12:09 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  | #include "softmmu_exec.h"
 | 
					
						
							|  |  |  | #endif /* !defined(CONFIG_USER_ONLY) */
 | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  | //#define DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | //#define DEBUG_MXCC
 | 
					
						
							| 
									
										
										
										
											2007-05-07 18:05:05 +00:00
										 |  |  | //#define DEBUG_UNALIGNED
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  | //#define DEBUG_UNASSIGNED
 | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | //#define DEBUG_ASI
 | 
					
						
							| 
									
										
										
										
											2008-09-26 18:02:48 +00:00
										 |  |  | //#define DEBUG_PCALL
 | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF_MMU(fmt, ...)                                   \
 | 
					
						
							|  |  |  |     do { printf("MMU: " fmt , ## __VA_ARGS__); } while (0) | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF_MMU(fmt, ...) do {} while (0)
 | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_MXCC
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF_MXCC(fmt, ...)                                  \
 | 
					
						
							|  |  |  |     do { printf("MXCC: " fmt , ## __VA_ARGS__); } while (0) | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF_MXCC(fmt, ...) do {} while (0)
 | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF_ASI(fmt, ...)                                   \
 | 
					
						
							|  |  |  |     do { printf("ASI: " fmt , ## __VA_ARGS__); } while (0) | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | #ifndef TARGET_ABI32
 | 
					
						
							|  |  |  | #define AM_CHECK(env1) ((env1)->pstate & PS_AM)
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  | #define AM_CHECK(env1) (1)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 16:28:27 +00:00
										 |  |  | #if defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  | // Calculates TSB pointer value for fault page size 8k or 64k
 | 
					
						
							|  |  |  | static uint64_t ultrasparc_tsb_pointer(uint64_t tsb_register, | 
					
						
							|  |  |  |                                        uint64_t tag_access_register, | 
					
						
							|  |  |  |                                        int page_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t tsb_base = tsb_register & ~0x1fffULL; | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |     int tsb_split = (tsb_register & 0x1000ULL) ? 1 : 0; | 
					
						
							|  |  |  |     int tsb_size  = tsb_register & 0xf; | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // discard lower 13 bits which hold tag access context
 | 
					
						
							|  |  |  |     uint64_t tag_access_va = tag_access_register & ~0x1fffULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // now reorder bits
 | 
					
						
							|  |  |  |     uint64_t tsb_base_mask = ~0x1fffULL; | 
					
						
							|  |  |  |     uint64_t va = tag_access_va; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // move va bits to correct position
 | 
					
						
							|  |  |  |     if (page_size == 8*1024) { | 
					
						
							|  |  |  |         va >>= 9; | 
					
						
							|  |  |  |     } else if (page_size == 64*1024) { | 
					
						
							|  |  |  |         va >>= 12; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (tsb_size) { | 
					
						
							|  |  |  |         tsb_base_mask <<= tsb_size; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // calculate tsb_base mask and adjust va if split is in use
 | 
					
						
							|  |  |  |     if (tsb_split) { | 
					
						
							|  |  |  |         if (page_size == 8*1024) { | 
					
						
							|  |  |  |             va &= ~(1ULL << (13 + tsb_size)); | 
					
						
							|  |  |  |         } else if (page_size == 64*1024) { | 
					
						
							|  |  |  |             va |= (1ULL << (13 + tsb_size)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         tsb_base_mask <<= 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ((tsb_base & tsb_base_mask) | (va & ~tsb_base_mask)) & ~0xfULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Calculates tag target register value by reordering bits
 | 
					
						
							|  |  |  | // in tag access register
 | 
					
						
							|  |  |  | static uint64_t ultrasparc_tag_target(uint64_t tag_access_register) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ((tag_access_register & 0x1fff) << 48) | (tag_access_register >> 22); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  | static void replace_tlb_entry(SparcTLBEntry *tlb, | 
					
						
							|  |  |  |                               uint64_t tlb_tag, uint64_t tlb_tte, | 
					
						
							|  |  |  |                               CPUState *env1) | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | { | 
					
						
							|  |  |  |     target_ulong mask, size, va, offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // flush page range if translation is valid
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |     if (TTE_IS_VALID(tlb->tte)) { | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         mask = 0xffffffffffffe000ULL; | 
					
						
							|  |  |  |         mask <<= 3 * ((tlb->tte >> 61) & 3); | 
					
						
							|  |  |  |         size = ~mask + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         va = tlb->tag & mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (offset = 0; offset < size; offset += TARGET_PAGE_SIZE) { | 
					
						
							|  |  |  |             tlb_flush_page(env1, va + offset); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tlb->tag = tlb_tag; | 
					
						
							|  |  |  |     tlb->tte = tlb_tte; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void demap_tlb(SparcTLBEntry *tlb, target_ulong demap_addr, | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |                       const char* strmmu, CPUState *env1) | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned int i; | 
					
						
							|  |  |  |     target_ulong mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < 64; i++) { | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |         if (TTE_IS_VALID(tlb[i].tte)) { | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             mask = 0xffffffffffffe000ULL; | 
					
						
							|  |  |  |             mask <<= 3 * ((tlb[i].tte >> 61) & 3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ((demap_addr & mask) == (tlb[i].tag & mask)) { | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |                 replace_tlb_entry(&tlb[i], 0, 0, env1); | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |                 DPRINTF_MMU("%s demap invalidated entry [%02u]\n", strmmu, i); | 
					
						
							|  |  |  |                 dump_mmu(env1); | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             //return;
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  | static void replace_tlb_1bit_lru(SparcTLBEntry *tlb, | 
					
						
							|  |  |  |                                  uint64_t tlb_tag, uint64_t tlb_tte, | 
					
						
							|  |  |  |                                  const char* strmmu, CPUState *env1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned int i, replace_used; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Try replacing invalid entry
 | 
					
						
							|  |  |  |     for (i = 0; i < 64; i++) { | 
					
						
							|  |  |  |         if (!TTE_IS_VALID(tlb[i].tte)) { | 
					
						
							|  |  |  |             replace_tlb_entry(&tlb[i], tlb_tag, tlb_tte, env1); | 
					
						
							|  |  |  | #ifdef DEBUG_MMU
 | 
					
						
							|  |  |  |             DPRINTF_MMU("%s lru replaced invalid entry [%i]\n", strmmu, i); | 
					
						
							|  |  |  |             dump_mmu(env1); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // All entries are valid, try replacing unlocked entry
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (replace_used = 0; replace_used < 2; ++replace_used) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Used entries are not replaced on first pass
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < 64; i++) { | 
					
						
							|  |  |  |             if (!TTE_IS_LOCKED(tlb[i].tte) && !TTE_IS_USED(tlb[i].tte)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 replace_tlb_entry(&tlb[i], tlb_tag, tlb_tte, env1); | 
					
						
							|  |  |  | #ifdef DEBUG_MMU
 | 
					
						
							|  |  |  |                 DPRINTF_MMU("%s lru replaced unlocked %s entry [%i]\n", | 
					
						
							|  |  |  |                             strmmu, (replace_used?"used":"unused"), i); | 
					
						
							|  |  |  |                 dump_mmu(env1); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Now reset used bit and search for unused entries again
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < 64; i++) { | 
					
						
							|  |  |  |             TTE_SET_UNUSED(tlb[i].tte); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_MMU
 | 
					
						
							|  |  |  |     DPRINTF_MMU("%s lru replacement failed: no entries available\n", strmmu); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     // error state?
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  | static inline void address_mask(CPUState *env1, target_ulong *addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  |     if (AM_CHECK(env1)) | 
					
						
							|  |  |  |         *addr &= 0xffffffffULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-11 17:29:00 +00:00
										 |  |  | static void raise_exception(int tt) | 
					
						
							| 
									
										
										
										
											2005-02-07 23:10:53 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     env->exception_index = tt; | 
					
						
							|  |  |  |     cpu_loop_exit(); | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-02-07 23:10:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-17 14:43:54 +00:00
										 |  |  | void HELPER(raise_exception)(int tt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     raise_exception(tt); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | static inline void set_cwp(int new_cwp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     cpu_set_cwp(env, new_cwp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 18:08:59 +00:00
										 |  |  | void helper_check_align(target_ulong addr, uint32_t align) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     if (addr & align) { | 
					
						
							|  |  |  | #ifdef DEBUG_UNALIGNED
 | 
					
						
							|  |  |  |     printf("Unaligned access to 0x" TARGET_FMT_lx " from 0x" TARGET_FMT_lx | 
					
						
							|  |  |  |            "\n", addr, env->pc); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-03-21 18:08:59 +00:00
										 |  |  |         raise_exception(TT_UNALIGNED); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-03-21 18:08:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | #define F_HELPER(name, p) void helper_f##name##p(void)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define F_BINOP(name)                                           \
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |     float32 helper_f ## name ## s (float32 src1, float32 src2)  \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     {                                                           \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |         return float32_ ## name (src1, src2, &env->fp_status);  \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     }                                                           \ | 
					
						
							|  |  |  |     F_HELPER(name, d)                                           \ | 
					
						
							|  |  |  |     {                                                           \ | 
					
						
							|  |  |  |         DT0 = float64_ ## name (DT0, DT1, &env->fp_status);     \ | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  |     }                                                           \ | 
					
						
							|  |  |  |     F_HELPER(name, q)                                           \ | 
					
						
							|  |  |  |     {                                                           \ | 
					
						
							|  |  |  |         QT0 = float128_ ## name (QT0, QT1, &env->fp_status);    \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | F_BINOP(add); | 
					
						
							|  |  |  | F_BINOP(sub); | 
					
						
							|  |  |  | F_BINOP(mul); | 
					
						
							|  |  |  | F_BINOP(div); | 
					
						
							|  |  |  | #undef F_BINOP
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | void helper_fsmuld(float32 src1, float32 src2) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     DT0 = float64_mul(float32_to_float64(src1, &env->fp_status), | 
					
						
							|  |  |  |                       float32_to_float64(src2, &env->fp_status), | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |                       &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | void helper_fdmulq(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QT0 = float128_mul(float64_to_float128(DT0, &env->fp_status), | 
					
						
							|  |  |  |                        float64_to_float128(DT1, &env->fp_status), | 
					
						
							|  |  |  |                        &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | float32 helper_fnegs(float32 src) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |     return float32_chs(src); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | F_HELPER(neg, d) | 
					
						
							| 
									
										
										
										
											2008-03-04 20:00:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     DT0 = float64_chs(DT1); | 
					
						
							| 
									
										
										
										
											2008-03-04 20:00:18 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | F_HELPER(neg, q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QT0 = float128_chs(QT1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Integer to float conversion.  */ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | float32 helper_fitos(int32_t src) | 
					
						
							| 
									
										
										
										
											2004-10-10 17:46:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |     return int32_to_float32(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2004-10-10 17:46:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | void helper_fitod(int32_t src) | 
					
						
							| 
									
										
										
										
											2004-10-10 17:46:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     DT0 = int32_to_float64(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2004-10-10 17:46:24 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2007-11-28 18:08:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  | void helper_fitoq(int32_t src) | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  |     QT0 = int32_to_float128(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-20 07:07:47 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | float32 helper_fxtos(void) | 
					
						
							| 
									
										
										
										
											2007-10-20 07:07:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     return int64_to_float32(*((int64_t *)&DT1), &env->fp_status); | 
					
						
							| 
									
										
										
										
											2007-10-20 07:07:47 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | F_HELPER(xto, d) | 
					
						
							| 
									
										
										
										
											2007-10-20 07:07:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     DT0 = int64_to_float64(*((int64_t *)&DT1), &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | F_HELPER(xto, q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QT0 = int64_to_float128(*((int64_t *)&DT1), &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | #undef F_HELPER
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* floating point conversion */ | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | float32 helper_fdtos(void) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     return float64_to_float32(DT1, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | void helper_fstod(float32 src) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     DT0 = float32_to_float64(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2007-11-28 18:08:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  | float32 helper_fqtos(void) | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  |     return float128_to_float32(QT1, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  | void helper_fstoq(float32 src) | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  |     QT0 = float32_to_float128(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fqtod(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DT0 = float128_to_float64(QT1, &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fdtoq(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QT0 = float64_to_float128(DT1, &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | /* Float to integer conversion.  */ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | int32_t helper_fstoi(float32 src) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |     return float32_to_int32_round_to_zero(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | int32_t helper_fdtoi(void) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     return float64_to_int32_round_to_zero(DT1, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  | int32_t helper_fqtoi(void) | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:00:18 +00:00
										 |  |  |     return float128_to_int32_round_to_zero(QT1, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  | void helper_fstox(float32 src) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 20:09:22 +00:00
										 |  |  |     *((int64_t *)&DT0) = float32_to_int64_round_to_zero(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fdtox(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     *((int64_t *)&DT0) = float64_to_int64_round_to_zero(DT1, &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | void helper_fqtox(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     *((int64_t *)&DT0) = float128_to_int64_round_to_zero(QT1, &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | void helper_faligndata(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tmp = (*((uint64_t *)&DT0)) << ((env->gsr & 7) * 8); | 
					
						
							| 
									
										
										
										
											2008-08-06 19:50:16 +00:00
										 |  |  |     /* on many architectures a shift of 64 does nothing */ | 
					
						
							|  |  |  |     if ((env->gsr & 7) != 0) { | 
					
						
							|  |  |  |         tmp |= (*((uint64_t *)&DT1)) >> (64 - (env->gsr & 7) * 8); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     *((uint64_t *)&DT0) = tmp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 16:13:06 +02:00
										 |  |  | #ifdef HOST_WORDS_BIGENDIAN
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | #define VIS_B64(n) b[7 - (n)]
 | 
					
						
							|  |  |  | #define VIS_W64(n) w[3 - (n)]
 | 
					
						
							|  |  |  | #define VIS_SW64(n) sw[3 - (n)]
 | 
					
						
							|  |  |  | #define VIS_L64(n) l[1 - (n)]
 | 
					
						
							|  |  |  | #define VIS_B32(n) b[3 - (n)]
 | 
					
						
							|  |  |  | #define VIS_W32(n) w[1 - (n)]
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define VIS_B64(n) b[n]
 | 
					
						
							|  |  |  | #define VIS_W64(n) w[n]
 | 
					
						
							|  |  |  | #define VIS_SW64(n) sw[n]
 | 
					
						
							|  |  |  | #define VIS_L64(n) l[n]
 | 
					
						
							|  |  |  | #define VIS_B32(n) b[n]
 | 
					
						
							|  |  |  | #define VIS_W32(n) w[n]
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef union { | 
					
						
							|  |  |  |     uint8_t b[8]; | 
					
						
							|  |  |  |     uint16_t w[4]; | 
					
						
							|  |  |  |     int16_t sw[4]; | 
					
						
							|  |  |  |     uint32_t l[2]; | 
					
						
							|  |  |  |     float64 d; | 
					
						
							|  |  |  | } vis64; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef union { | 
					
						
							|  |  |  |     uint8_t b[4]; | 
					
						
							|  |  |  |     uint16_t w[2]; | 
					
						
							|  |  |  |     uint32_t l; | 
					
						
							|  |  |  |     float32 f; | 
					
						
							|  |  |  | } vis32; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fpmerge(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Reverse calculation order to handle overlap
 | 
					
						
							|  |  |  |     d.VIS_B64(7) = s.VIS_B64(3); | 
					
						
							|  |  |  |     d.VIS_B64(6) = d.VIS_B64(3); | 
					
						
							|  |  |  |     d.VIS_B64(5) = s.VIS_B64(2); | 
					
						
							|  |  |  |     d.VIS_B64(4) = d.VIS_B64(2); | 
					
						
							|  |  |  |     d.VIS_B64(3) = s.VIS_B64(1); | 
					
						
							|  |  |  |     d.VIS_B64(2) = d.VIS_B64(1); | 
					
						
							|  |  |  |     d.VIS_B64(1) = s.VIS_B64(0); | 
					
						
							|  |  |  |     //d.VIS_B64(0) = d.VIS_B64(0);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmul8x16(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                 \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(r) * (int32_t)s.VIS_B64(r);       \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                    \ | 
					
						
							|  |  |  |         tmp += 0x100;                                           \ | 
					
						
							|  |  |  |     d.VIS_W64(r) = tmp >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(2); | 
					
						
							|  |  |  |     PMUL(3); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmul8x16al(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                 \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(1) * (int32_t)s.VIS_B64(r);       \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                    \ | 
					
						
							|  |  |  |         tmp += 0x100;                                           \ | 
					
						
							|  |  |  |     d.VIS_W64(r) = tmp >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(2); | 
					
						
							|  |  |  |     PMUL(3); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmul8x16au(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                 \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(0) * (int32_t)s.VIS_B64(r);       \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                    \ | 
					
						
							|  |  |  |         tmp += 0x100;                                           \ | 
					
						
							|  |  |  |     d.VIS_W64(r) = tmp >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(2); | 
					
						
							|  |  |  |     PMUL(3); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmul8sux16(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                         \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(r) * ((int32_t)s.VIS_SW64(r) >> 8);       \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                            \ | 
					
						
							|  |  |  |         tmp += 0x100;                                                   \ | 
					
						
							|  |  |  |     d.VIS_W64(r) = tmp >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(2); | 
					
						
							|  |  |  |     PMUL(3); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmul8ulx16(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                         \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(r) * ((uint32_t)s.VIS_B64(r * 2));        \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                            \ | 
					
						
							|  |  |  |         tmp += 0x100;                                                   \ | 
					
						
							|  |  |  |     d.VIS_W64(r) = tmp >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(2); | 
					
						
							|  |  |  |     PMUL(3); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmuld8sux16(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                         \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(r) * ((int32_t)s.VIS_SW64(r) >> 8);       \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                            \ | 
					
						
							|  |  |  |         tmp += 0x100;                                                   \ | 
					
						
							|  |  |  |     d.VIS_L64(r) = tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Reverse calculation order to handle overlap
 | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fmuld8ulx16(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis64 s, d; | 
					
						
							|  |  |  |     uint32_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.d = DT0; | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMUL(r)                                                         \
 | 
					
						
							|  |  |  |     tmp = (int32_t)d.VIS_SW64(r) * ((uint32_t)s.VIS_B64(r * 2));        \ | 
					
						
							|  |  |  |     if ((tmp & 0xff) > 0x7f)                                            \ | 
					
						
							|  |  |  |         tmp += 0x100;                                                   \ | 
					
						
							|  |  |  |     d.VIS_L64(r) = tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Reverse calculation order to handle overlap
 | 
					
						
							|  |  |  |     PMUL(1); | 
					
						
							|  |  |  |     PMUL(0); | 
					
						
							|  |  |  | #undef PMUL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_fexpand(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vis32 s; | 
					
						
							|  |  |  |     vis64 d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s.l = (uint32_t)(*(uint64_t *)&DT0 & 0xffffffff); | 
					
						
							|  |  |  |     d.d = DT1; | 
					
						
							| 
									
										
										
										
											2008-10-07 18:54:35 +00:00
										 |  |  |     d.VIS_W64(0) = s.VIS_B32(0) << 4; | 
					
						
							|  |  |  |     d.VIS_W64(1) = s.VIS_B32(1) << 4; | 
					
						
							|  |  |  |     d.VIS_W64(2) = s.VIS_B32(2) << 4; | 
					
						
							|  |  |  |     d.VIS_W64(3) = s.VIS_B32(3) << 4; | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     DT0 = d.d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define VIS_HELPER(name, F)                             \
 | 
					
						
							|  |  |  |     void name##16(void)                                 \ | 
					
						
							|  |  |  |     {                                                   \ | 
					
						
							|  |  |  |         vis64 s, d;                                     \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |         s.d = DT0;                                      \ | 
					
						
							|  |  |  |         d.d = DT1;                                      \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |         d.VIS_W64(0) = F(d.VIS_W64(0), s.VIS_W64(0));   \ | 
					
						
							|  |  |  |         d.VIS_W64(1) = F(d.VIS_W64(1), s.VIS_W64(1));   \ | 
					
						
							|  |  |  |         d.VIS_W64(2) = F(d.VIS_W64(2), s.VIS_W64(2));   \ | 
					
						
							|  |  |  |         d.VIS_W64(3) = F(d.VIS_W64(3), s.VIS_W64(3));   \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |         DT0 = d.d;                                      \ | 
					
						
							|  |  |  |     }                                                   \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:57:13 +00:00
										 |  |  |     uint32_t name##16s(uint32_t src1, uint32_t src2)    \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     {                                                   \ | 
					
						
							|  |  |  |         vis32 s, d;                                     \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:57:13 +00:00
										 |  |  |         s.l = src1;                                     \ | 
					
						
							|  |  |  |         d.l = src2;                                     \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |                                                         \ | 
					
						
							|  |  |  |         d.VIS_W32(0) = F(d.VIS_W32(0), s.VIS_W32(0));   \ | 
					
						
							|  |  |  |         d.VIS_W32(1) = F(d.VIS_W32(1), s.VIS_W32(1));   \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:57:13 +00:00
										 |  |  |         return d.l;                                     \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     }                                                   \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |     void name##32(void)                                 \ | 
					
						
							|  |  |  |     {                                                   \ | 
					
						
							|  |  |  |         vis64 s, d;                                     \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |         s.d = DT0;                                      \ | 
					
						
							|  |  |  |         d.d = DT1;                                      \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |         d.VIS_L64(0) = F(d.VIS_L64(0), s.VIS_L64(0));   \ | 
					
						
							|  |  |  |         d.VIS_L64(1) = F(d.VIS_L64(1), s.VIS_L64(1));   \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							|  |  |  |         DT0 = d.d;                                      \ | 
					
						
							|  |  |  |     }                                                   \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:57:13 +00:00
										 |  |  |     uint32_t name##32s(uint32_t src1, uint32_t src2)    \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     {                                                   \ | 
					
						
							|  |  |  |         vis32 s, d;                                     \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:57:13 +00:00
										 |  |  |         s.l = src1;                                     \ | 
					
						
							|  |  |  |         d.l = src2;                                     \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |                                                         \ | 
					
						
							|  |  |  |         d.l = F(d.l, s.l);                              \ | 
					
						
							|  |  |  |                                                         \ | 
					
						
							| 
									
										
										
										
											2008-09-10 19:57:13 +00:00
										 |  |  |         return d.l;                                     \ | 
					
						
							| 
									
										
										
										
											2008-03-21 17:56:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FADD(a, b) ((a) + (b))
 | 
					
						
							|  |  |  | #define FSUB(a, b) ((a) - (b))
 | 
					
						
							|  |  |  | VIS_HELPER(helper_fpadd, FADD) | 
					
						
							|  |  |  | VIS_HELPER(helper_fpsub, FSUB) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define VIS_CMPHELPER(name, F)                                        \
 | 
					
						
							|  |  |  |     void name##16(void)                                           \ | 
					
						
							|  |  |  |     {                                                             \ | 
					
						
							|  |  |  |         vis64 s, d;                                               \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |         s.d = DT0;                                                \ | 
					
						
							|  |  |  |         d.d = DT1;                                                \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |         d.VIS_W64(0) = F(d.VIS_W64(0), s.VIS_W64(0))? 1: 0;       \ | 
					
						
							|  |  |  |         d.VIS_W64(0) |= F(d.VIS_W64(1), s.VIS_W64(1))? 2: 0;      \ | 
					
						
							|  |  |  |         d.VIS_W64(0) |= F(d.VIS_W64(2), s.VIS_W64(2))? 4: 0;      \ | 
					
						
							|  |  |  |         d.VIS_W64(0) |= F(d.VIS_W64(3), s.VIS_W64(3))? 8: 0;      \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |         DT0 = d.d;                                                \ | 
					
						
							|  |  |  |     }                                                             \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |     void name##32(void)                                           \ | 
					
						
							|  |  |  |     {                                                             \ | 
					
						
							|  |  |  |         vis64 s, d;                                               \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |         s.d = DT0;                                                \ | 
					
						
							|  |  |  |         d.d = DT1;                                                \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |         d.VIS_L64(0) = F(d.VIS_L64(0), s.VIS_L64(0))? 1: 0;       \ | 
					
						
							|  |  |  |         d.VIS_L64(0) |= F(d.VIS_L64(1), s.VIS_L64(1))? 2: 0;      \ | 
					
						
							|  |  |  |                                                                   \ | 
					
						
							|  |  |  |         DT0 = d.d;                                                \ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FCMPGT(a, b) ((a) > (b))
 | 
					
						
							|  |  |  | #define FCMPEQ(a, b) ((a) == (b))
 | 
					
						
							|  |  |  | #define FCMPLE(a, b) ((a) <= (b))
 | 
					
						
							|  |  |  | #define FCMPNE(a, b) ((a) != (b))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | VIS_CMPHELPER(helper_fcmpgt, FCMPGT) | 
					
						
							|  |  |  | VIS_CMPHELPER(helper_fcmpeq, FCMPEQ) | 
					
						
							|  |  |  | VIS_CMPHELPER(helper_fcmple, FCMPLE) | 
					
						
							|  |  |  | VIS_CMPHELPER(helper_fcmpne, FCMPNE) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_check_ieee_exceptions(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     target_ulong status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = get_float_exception_flags(&env->fp_status); | 
					
						
							|  |  |  |     if (status) { | 
					
						
							|  |  |  |         /* Copy IEEE 754 flags into FSR */ | 
					
						
							|  |  |  |         if (status & float_flag_invalid) | 
					
						
							|  |  |  |             env->fsr |= FSR_NVC; | 
					
						
							|  |  |  |         if (status & float_flag_overflow) | 
					
						
							|  |  |  |             env->fsr |= FSR_OFC; | 
					
						
							|  |  |  |         if (status & float_flag_underflow) | 
					
						
							|  |  |  |             env->fsr |= FSR_UFC; | 
					
						
							|  |  |  |         if (status & float_flag_divbyzero) | 
					
						
							|  |  |  |             env->fsr |= FSR_DZC; | 
					
						
							|  |  |  |         if (status & float_flag_inexact) | 
					
						
							|  |  |  |             env->fsr |= FSR_NXC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ((env->fsr & FSR_CEXC_MASK) & ((env->fsr & FSR_TEM_MASK) >> 23)) { | 
					
						
							|  |  |  |             /* Unmasked exception, generate a trap */ | 
					
						
							|  |  |  |             env->fsr |= FSR_FTT_IEEE_EXCP; | 
					
						
							|  |  |  |             raise_exception(TT_FP_EXCP); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             /* Accumulate exceptions */ | 
					
						
							|  |  |  |             env->fsr |= (env->fsr & FSR_CEXC_MASK) << 5; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_clear_float_exceptions(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     set_float_exception_flags(0, &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | float32 helper_fabss(float32 src) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |     return float32_abs(src); | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2008-03-04 20:00:18 +00:00
										 |  |  | void helper_fabsd(void) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     DT0 = float64_abs(DT1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void helper_fabsq(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QT0 = float128_abs(QT1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | float32 helper_fsqrts(float32 src) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |     return float32_sqrt(src, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-04 20:00:18 +00:00
										 |  |  | void helper_fsqrtd(void) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |     DT0 = float64_sqrt(DT1, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | void helper_fsqrtq(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QT0 = float128_sqrt(QT1, &env->fp_status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | #define GEN_FCMP(name, size, reg1, reg2, FS, TRAP)                      \
 | 
					
						
							| 
									
										
										
										
											2008-03-04 20:00:18 +00:00
										 |  |  |     void glue(helper_, name) (void)                                     \ | 
					
						
							| 
									
										
										
										
											2006-06-21 18:37:05 +00:00
										 |  |  |     {                                                                   \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         target_ulong new_fsr;                                           \ | 
					
						
							|  |  |  |                                                                         \ | 
					
						
							| 
									
										
										
										
											2006-06-21 18:37:05 +00:00
										 |  |  |         env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS);                     \ | 
					
						
							|  |  |  |         switch (glue(size, _compare) (reg1, reg2, &env->fp_status)) {   \ | 
					
						
							|  |  |  |         case float_relation_unordered:                                  \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             new_fsr = (FSR_FCC1 | FSR_FCC0) << FS;                      \ | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  |             if ((env->fsr & FSR_NVM) || TRAP) {                         \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->fsr |= new_fsr;                                    \ | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  |                 env->fsr |= FSR_NVC;                                    \ | 
					
						
							|  |  |  |                 env->fsr |= FSR_FTT_IEEE_EXCP;                          \ | 
					
						
							| 
									
										
										
										
											2006-06-21 18:37:05 +00:00
										 |  |  |                 raise_exception(TT_FP_EXCP);                            \ | 
					
						
							|  |  |  |             } else {                                                    \ | 
					
						
							|  |  |  |                 env->fsr |= FSR_NVA;                                    \ | 
					
						
							|  |  |  |             }                                                           \ | 
					
						
							|  |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         case float_relation_less:                                       \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             new_fsr = FSR_FCC0 << FS;                                   \ | 
					
						
							| 
									
										
										
										
											2006-06-21 18:37:05 +00:00
										 |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         case float_relation_greater:                                    \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             new_fsr = FSR_FCC1 << FS;                                   \ | 
					
						
							| 
									
										
										
										
											2006-06-21 18:37:05 +00:00
										 |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         default:                                                        \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             new_fsr = 0;                                                \ | 
					
						
							| 
									
										
										
										
											2006-06-21 18:37:05 +00:00
										 |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         }                                                               \ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         env->fsr |= new_fsr;                                            \ | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | #define GEN_FCMPS(name, size, FS, TRAP)                                 \
 | 
					
						
							|  |  |  |     void glue(helper_, name)(float32 src1, float32 src2)                \ | 
					
						
							|  |  |  |     {                                                                   \ | 
					
						
							|  |  |  |         target_ulong new_fsr;                                           \ | 
					
						
							|  |  |  |                                                                         \ | 
					
						
							|  |  |  |         env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS);                     \ | 
					
						
							|  |  |  |         switch (glue(size, _compare) (src1, src2, &env->fp_status)) {   \ | 
					
						
							|  |  |  |         case float_relation_unordered:                                  \ | 
					
						
							|  |  |  |             new_fsr = (FSR_FCC1 | FSR_FCC0) << FS;                      \ | 
					
						
							|  |  |  |             if ((env->fsr & FSR_NVM) || TRAP) {                         \ | 
					
						
							|  |  |  |                 env->fsr |= new_fsr;                                    \ | 
					
						
							|  |  |  |                 env->fsr |= FSR_NVC;                                    \ | 
					
						
							|  |  |  |                 env->fsr |= FSR_FTT_IEEE_EXCP;                          \ | 
					
						
							|  |  |  |                 raise_exception(TT_FP_EXCP);                            \ | 
					
						
							|  |  |  |             } else {                                                    \ | 
					
						
							|  |  |  |                 env->fsr |= FSR_NVA;                                    \ | 
					
						
							|  |  |  |             }                                                           \ | 
					
						
							|  |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         case float_relation_less:                                       \ | 
					
						
							|  |  |  |             new_fsr = FSR_FCC0 << FS;                                   \ | 
					
						
							|  |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         case float_relation_greater:                                    \ | 
					
						
							|  |  |  |             new_fsr = FSR_FCC1 << FS;                                   \ | 
					
						
							|  |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         default:                                                        \ | 
					
						
							|  |  |  |             new_fsr = 0;                                                \ | 
					
						
							|  |  |  |             break;                                                      \ | 
					
						
							|  |  |  |         }                                                               \ | 
					
						
							|  |  |  |         env->fsr |= new_fsr;                                            \ | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmps, float32, 0, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmpd, float64, DT0, DT1, 0, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmpes, float32, 0, 1); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmped, float64, DT0, DT1, 0, 1); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | GEN_FCMP(fcmpq, float128, QT0, QT1, 0, 0); | 
					
						
							|  |  |  | GEN_FCMP(fcmpeq, float128, QT0, QT1, 0, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:11 +00:00
										 |  |  | static uint32_t compute_all_flags(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return env->psr & PSR_ICC; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_flags(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return env->psr & PSR_CARRY; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:17 +00:00
										 |  |  | static inline uint32_t get_NZ_icc(target_ulong dst) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!(dst & 0xffffffffULL)) | 
					
						
							|  |  |  |         ret |= PSR_ZERO; | 
					
						
							|  |  |  |     if ((int32_t) (dst & 0xffffffffULL) < 0) | 
					
						
							|  |  |  |         ret |= PSR_NEG; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:11 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static uint32_t compute_all_flags_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return env->xcc & PSR_ICC; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_flags_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return env->xcc & PSR_CARRY; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:17 +00:00
										 |  |  | static inline uint32_t get_NZ_xcc(target_ulong dst) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!dst) | 
					
						
							|  |  |  |         ret |= PSR_ZERO; | 
					
						
							|  |  |  |     if ((int64_t)dst < 0) | 
					
						
							|  |  |  |         ret |= PSR_NEG; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 07:42:54 +00:00
										 |  |  | static inline uint32_t get_V_div_icc(target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (src2 != 0) | 
					
						
							|  |  |  |         ret |= PSR_OVF; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_all_div(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							|  |  |  |     ret |= get_V_div_icc(CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_div(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  | /* carry = (src1[31] & src2[31]) | ( ~dst[31] & (src1[31] | src2[31])) */ | 
					
						
							|  |  |  | static inline uint32_t get_C_add_icc(target_ulong dst, target_ulong src1, | 
					
						
							|  |  |  |                                      target_ulong src2) | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:17 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     if (((src1 & (1ULL << 31)) & (src2 & (1ULL << 31))) | 
					
						
							|  |  |  |         | ((~(dst & (1ULL << 31))) | 
					
						
							|  |  |  |            & ((src1 & (1ULL << 31)) | (src2 & (1ULL << 31))))) | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:17 +00:00
										 |  |  |         ret |= PSR_CARRY; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline uint32_t get_V_add_icc(target_ulong dst, target_ulong src1, | 
					
						
							|  |  |  |                                          target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (((src1 ^ src2 ^ -1) & (src1 ^ dst)) & (1ULL << 31)) | 
					
						
							|  |  |  |         ret |= PSR_OVF; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static inline uint32_t get_C_add_xcc(target_ulong dst, target_ulong src1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dst < src1) | 
					
						
							|  |  |  |         ret |= PSR_CARRY; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline uint32_t get_V_add_xcc(target_ulong dst, target_ulong src1, | 
					
						
							|  |  |  |                                          target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (((src1 ^ src2 ^ -1) & (src1 ^ dst)) & (1ULL << 63)) | 
					
						
							|  |  |  |         ret |= PSR_OVF; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_all_add_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_xcc(CC_DST); | 
					
						
							|  |  |  |     ret |= get_C_add_xcc(CC_DST, CC_SRC); | 
					
						
							|  |  |  |     ret |= get_V_add_xcc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_add_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return get_C_add_xcc(CC_DST, CC_SRC); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:11 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  | static uint32_t compute_all_add(void) | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     ret |= get_C_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:22 +00:00
										 |  |  |     ret |= get_V_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  | static uint32_t compute_C_add(void) | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     return get_C_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static uint32_t compute_all_addx_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_xcc(CC_DST); | 
					
						
							|  |  |  |     ret |= get_C_add_xcc(CC_DST - CC_SRC2, CC_SRC); | 
					
						
							|  |  |  |     ret |= get_C_add_xcc(CC_DST, CC_SRC); | 
					
						
							|  |  |  |     ret |= get_V_add_xcc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_addx_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_C_add_xcc(CC_DST - CC_SRC2, CC_SRC); | 
					
						
							|  |  |  |     ret |= get_C_add_xcc(CC_DST, CC_SRC); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  | static inline uint32_t get_V_tag_icc(target_ulong src1, target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((src1 | src2) & 0x3) | 
					
						
							|  |  |  |         ret |= PSR_OVF; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_all_tadd(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     ret |= get_C_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     ret |= get_V_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     ret |= get_V_tag_icc(CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_tadd(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     return get_C_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_all_taddtv(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     ret |= get_C_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_taddtv(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     return get_C_add_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  | /* carry = (~src1[31] & src2[31]) | ( dst[31]  & (~src1[31] | src2[31])) */ | 
					
						
							|  |  |  | static inline uint32_t get_C_sub_icc(target_ulong dst, target_ulong src1, | 
					
						
							|  |  |  |                                      target_ulong src2) | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     if (((~(src1 & (1ULL << 31))) & (src2 & (1ULL << 31))) | 
					
						
							|  |  |  |         | ((dst & (1ULL << 31)) & (( ~(src1 & (1ULL << 31))) | 
					
						
							|  |  |  |                                    | (src2 & (1ULL << 31))))) | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |         ret |= PSR_CARRY; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline uint32_t get_V_sub_icc(target_ulong dst, target_ulong src1, | 
					
						
							|  |  |  |                                      target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (((src1 ^ src2) & (src1 ^ dst)) & (1ULL << 31)) | 
					
						
							|  |  |  |         ret |= PSR_OVF; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static inline uint32_t get_C_sub_xcc(target_ulong src1, target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (src1 < src2) | 
					
						
							|  |  |  |         ret |= PSR_CARRY; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline uint32_t get_V_sub_xcc(target_ulong dst, target_ulong src1, | 
					
						
							|  |  |  |                                      target_ulong src2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (((src1 ^ src2) & (src1 ^ dst)) & (1ULL << 63)) | 
					
						
							|  |  |  |         ret |= PSR_OVF; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_all_sub_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_xcc(CC_DST); | 
					
						
							|  |  |  |     ret |= get_C_sub_xcc(CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     ret |= get_V_sub_xcc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_sub_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return get_C_sub_xcc(CC_SRC, CC_SRC2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  | static uint32_t compute_all_sub(void) | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     ret |= get_C_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |     ret |= get_V_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  | static uint32_t compute_C_sub(void) | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     return get_C_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static uint32_t compute_all_subx_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_xcc(CC_DST); | 
					
						
							|  |  |  |     ret |= get_C_sub_xcc(CC_DST - CC_SRC2, CC_SRC); | 
					
						
							|  |  |  |     ret |= get_C_sub_xcc(CC_DST, CC_SRC2); | 
					
						
							|  |  |  |     ret |= get_V_sub_xcc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_subx_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_C_sub_xcc(CC_DST - CC_SRC2, CC_SRC); | 
					
						
							|  |  |  |     ret |= get_C_sub_xcc(CC_DST, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  | static uint32_t compute_all_tsub(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     ret |= get_C_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     ret |= get_V_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     ret |= get_V_tag_icc(CC_SRC, CC_SRC2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_tsub(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     return get_C_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_all_tsubtv(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = get_NZ_icc(CC_DST); | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     ret |= get_C_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_tsubtv(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     return get_C_sub_icc(CC_DST, CC_SRC, CC_SRC2); | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  | static uint32_t compute_all_logic(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return get_NZ_icc(CC_DST); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t compute_C_logic(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static uint32_t compute_all_logic_xcc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return get_NZ_xcc(CC_DST); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:11 +00:00
										 |  |  | typedef struct CCTable { | 
					
						
							|  |  |  |     uint32_t (*compute_all)(void); /* return all the flags */ | 
					
						
							|  |  |  |     uint32_t (*compute_c)(void);  /* return the C flag */ | 
					
						
							|  |  |  | } CCTable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const CCTable icc_table[CC_OP_NB] = { | 
					
						
							|  |  |  |     /* CC_OP_DYNAMIC should never happen */ | 
					
						
							|  |  |  |     [CC_OP_FLAGS] = { compute_all_flags, compute_C_flags }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:42:54 +00:00
										 |  |  |     [CC_OP_DIV] = { compute_all_div, compute_C_div }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:17 +00:00
										 |  |  |     [CC_OP_ADD] = { compute_all_add, compute_C_add }, | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     [CC_OP_ADDX] = { compute_all_add, compute_C_add }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     [CC_OP_TADD] = { compute_all_tadd, compute_C_tadd }, | 
					
						
							|  |  |  |     [CC_OP_TADDTV] = { compute_all_taddtv, compute_C_taddtv }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |     [CC_OP_SUB] = { compute_all_sub, compute_C_sub }, | 
					
						
							| 
									
										
										
										
											2009-11-04 19:38:26 +00:00
										 |  |  |     [CC_OP_SUBX] = { compute_all_sub, compute_C_sub }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     [CC_OP_TSUB] = { compute_all_tsub, compute_C_tsub }, | 
					
						
							|  |  |  |     [CC_OP_TSUBTV] = { compute_all_tsubtv, compute_C_tsubtv }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |     [CC_OP_LOGIC] = { compute_all_logic, compute_C_logic }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:11 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | static const CCTable xcc_table[CC_OP_NB] = { | 
					
						
							|  |  |  |     /* CC_OP_DYNAMIC should never happen */ | 
					
						
							|  |  |  |     [CC_OP_FLAGS] = { compute_all_flags_xcc, compute_C_flags_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:42:54 +00:00
										 |  |  |     [CC_OP_DIV] = { compute_all_logic_xcc, compute_C_logic }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:17 +00:00
										 |  |  |     [CC_OP_ADD] = { compute_all_add_xcc, compute_C_add_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:22 +00:00
										 |  |  |     [CC_OP_ADDX] = { compute_all_addx_xcc, compute_C_addx_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     [CC_OP_TADD] = { compute_all_add_xcc, compute_C_add_xcc }, | 
					
						
							|  |  |  |     [CC_OP_TADDTV] = { compute_all_add_xcc, compute_C_add_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |     [CC_OP_SUB] = { compute_all_sub_xcc, compute_C_sub_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |     [CC_OP_SUBX] = { compute_all_subx_xcc, compute_C_subx_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:35 +03:00
										 |  |  |     [CC_OP_TSUB] = { compute_all_sub_xcc, compute_C_sub_xcc }, | 
					
						
							|  |  |  |     [CC_OP_TSUBTV] = { compute_all_sub_xcc, compute_C_sub_xcc }, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:38:34 +03:00
										 |  |  |     [CC_OP_LOGIC] = { compute_all_logic_xcc, compute_C_logic }, | 
					
						
							| 
									
										
										
										
											2009-05-10 07:19:11 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_compute_psr(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t new_psr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     new_psr = icc_table[CC_OP].compute_all(); | 
					
						
							|  |  |  |     env->psr = new_psr; | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  |     new_psr = xcc_table[CC_OP].compute_all(); | 
					
						
							|  |  |  |     env->xcc = new_psr; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     CC_OP = CC_OP_FLAGS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint32_t helper_compute_C_icc(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = icc_table[CC_OP].compute_c() >> PSR_CARRY_SHIFT; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmps_fcc1, float32, 22, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmpd_fcc1, float64, DT0, DT1, 22, 0); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | GEN_FCMP(fcmpq_fcc1, float128, QT0, QT1, 22, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmps_fcc2, float32, 24, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmpd_fcc2, float64, DT0, DT1, 24, 0); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | GEN_FCMP(fcmpq_fcc2, float128, QT0, QT1, 24, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmps_fcc3, float32, 26, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmpd_fcc3, float64, DT0, DT1, 26, 0); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | GEN_FCMP(fcmpq_fcc3, float128, QT0, QT1, 26, 0); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmpes_fcc1, float32, 22, 1); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmped_fcc1, float64, DT0, DT1, 22, 1); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | GEN_FCMP(fcmpeq_fcc1, float128, QT0, QT1, 22, 1); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmpes_fcc2, float32, 24, 1); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmped_fcc2, float64, DT0, DT1, 24, 1); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | GEN_FCMP(fcmpeq_fcc2, float128, QT0, QT1, 24, 1); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | GEN_FCMPS(fcmpes_fcc3, float32, 26, 1); | 
					
						
							| 
									
										
										
										
											2007-04-06 20:03:29 +00:00
										 |  |  | GEN_FCMP(fcmped_fcc3, float64, DT0, DT1, 26, 1); | 
					
						
							| 
									
										
										
										
											2008-04-22 19:05:18 +00:00
										 |  |  | GEN_FCMP(fcmpeq_fcc3, float128, QT0, QT1, 26, 1); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  | #undef GEN_FCMPS
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  | #if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY) && \
 | 
					
						
							|  |  |  |     defined(DEBUG_MXCC) | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | static void dump_mxcc(CPUState *env) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-20 17:19:25 +00:00
										 |  |  |     printf("mxccdata: %016" PRIx64 " %016" PRIx64 " %016" PRIx64 " %016" PRIx64 | 
					
						
							|  |  |  |            "\n", | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |            env->mxccdata[0], env->mxccdata[1], | 
					
						
							|  |  |  |            env->mxccdata[2], env->mxccdata[3]); | 
					
						
							| 
									
										
										
										
											2009-07-20 17:19:25 +00:00
										 |  |  |     printf("mxccregs: %016" PRIx64 " %016" PRIx64 " %016" PRIx64 " %016" PRIx64 | 
					
						
							|  |  |  |            "\n" | 
					
						
							|  |  |  |            "          %016" PRIx64 " %016" PRIx64 " %016" PRIx64 " %016" PRIx64 | 
					
						
							|  |  |  |            "\n", | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |            env->mxccregs[0], env->mxccregs[1], | 
					
						
							|  |  |  |            env->mxccregs[2], env->mxccregs[3], | 
					
						
							|  |  |  |            env->mxccregs[4], env->mxccregs[5], | 
					
						
							|  |  |  |            env->mxccregs[6], env->mxccregs[7]); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #if (defined(TARGET_SPARC64) || !defined(CONFIG_USER_ONLY)) \
 | 
					
						
							|  |  |  |     && defined(DEBUG_ASI) | 
					
						
							|  |  |  | static void dump_asi(const char *txt, target_ulong addr, int asi, int size, | 
					
						
							|  |  |  |                      uint64_t r1) | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     switch (size) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         DPRINTF_ASI("%s "TARGET_FMT_lx " asi 0x%02x = %02" PRIx64 "\n", txt, | 
					
						
							|  |  |  |                     addr, asi, r1 & 0xff); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         DPRINTF_ASI("%s "TARGET_FMT_lx " asi 0x%02x = %04" PRIx64 "\n", txt, | 
					
						
							|  |  |  |                     addr, asi, r1 & 0xffff); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 4: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         DPRINTF_ASI("%s "TARGET_FMT_lx " asi 0x%02x = %08" PRIx64 "\n", txt, | 
					
						
							|  |  |  |                     addr, asi, r1 & 0xffffffff); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 8: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         DPRINTF_ASI("%s "TARGET_FMT_lx " asi 0x%02x = %016" PRIx64 "\n", txt, | 
					
						
							|  |  |  |                     addr, asi, r1); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #ifndef TARGET_SPARC64
 | 
					
						
							|  |  |  | #ifndef CONFIG_USER_ONLY
 | 
					
						
							|  |  |  | uint64_t helper_ld_asi(target_ulong addr, int asi, int size, int sign) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     uint64_t ret = 0; | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #if defined(DEBUG_MXCC) || defined(DEBUG_ASI)
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     uint32_t last_addr = addr; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, size - 1); | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  |     switch (asi) { | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 2: /* SuperSparc MXCC registers */ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         switch (addr) { | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |         case 0x01c00a00: /* MXCC control register */ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             if (size == 8) | 
					
						
							|  |  |  |                 ret = env->mxccregs[3]; | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00a04: /* MXCC control register */ | 
					
						
							|  |  |  |             if (size == 4) | 
					
						
							|  |  |  |                 ret = env->mxccregs[3]; | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-11-17 08:18:59 +00:00
										 |  |  |         case 0x01c00c00: /* Module reset register */ | 
					
						
							|  |  |  |             if (size == 8) { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 ret = env->mxccregs[5]; | 
					
						
							| 
									
										
										
										
											2007-11-17 08:18:59 +00:00
										 |  |  |                 // should we do something here?
 | 
					
						
							|  |  |  |             } else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-11-17 08:18:59 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |         case 0x01c00f00: /* MBus port address register */ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             if (size == 8) | 
					
						
							|  |  |  |                 ret = env->mxccregs[7]; | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |             DPRINTF_MXCC("%08x: unimplemented address, size: %d\n", addr, | 
					
						
							|  |  |  |                          size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |         DPRINTF_MXCC("asi = %d, size = %d, sign = %d, " | 
					
						
							| 
									
										
										
										
											2008-10-02 18:06:50 +00:00
										 |  |  |                      "addr = %08x -> ret = %" PRIx64 "," | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                      "addr = %08x\n", asi, size, sign, last_addr, ret, addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #ifdef DEBUG_MXCC
 | 
					
						
							|  |  |  |         dump_mxcc(env); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case 3: /* MMU probe */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             int mmulev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             mmulev = (addr >> 8) & 15; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             if (mmulev > 4) | 
					
						
							|  |  |  |                 ret = 0; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             else | 
					
						
							|  |  |  |                 ret = mmu_probe(env, addr, mmulev); | 
					
						
							|  |  |  |             DPRINTF_MMU("mmu_probe: 0x%08x (lev %d) -> 0x%08" PRIx64 "\n", | 
					
						
							|  |  |  |                         addr, mmulev, ret); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case 4: /* read MMU regs */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             int reg = (addr >> 8) & 0x1f; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             ret = env->mmuregs[reg]; | 
					
						
							|  |  |  |             if (reg == 3) /* Fault status cleared on read */ | 
					
						
							| 
									
										
										
										
											2007-11-25 12:43:10 +00:00
										 |  |  |                 env->mmuregs[3] = 0; | 
					
						
							|  |  |  |             else if (reg == 0x13) /* Fault status read */ | 
					
						
							|  |  |  |                 ret = env->mmuregs[3]; | 
					
						
							|  |  |  |             else if (reg == 0x14) /* Fault address read */ | 
					
						
							|  |  |  |                 ret = env->mmuregs[4]; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             DPRINTF_MMU("mmu_read: reg[%d] = 0x%08" PRIx64 "\n", reg, ret); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 5: // Turbosparc ITLB Diagnostic
 | 
					
						
							|  |  |  |     case 6: // Turbosparc DTLB Diagnostic
 | 
					
						
							|  |  |  |     case 7: // Turbosparc IOTLB Diagnostic
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 9: /* Supervisor code access */ | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             ret = ldub_code(addr); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = lduw_code(addr); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldl_code(addr); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldq_code(addr); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0xa: /* User data access */ | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             ret = ldub_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = lduw_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldl_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldq_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0xb: /* Supervisor data access */ | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             ret = ldub_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = lduw_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldl_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldq_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 0xc: /* I-cache tag */ | 
					
						
							|  |  |  |     case 0xd: /* I-cache data */ | 
					
						
							|  |  |  |     case 0xe: /* D-cache tag */ | 
					
						
							|  |  |  |     case 0xf: /* D-cache data */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x20: /* MMU passthrough */ | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             ret = ldub_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = lduw_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldl_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2005-11-11 00:24:58 +00:00
										 |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             ret = ldq_phys(addr); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-12-28 20:57:43 +00:00
										 |  |  |     case 0x21 ... 0x2f: /* MMU passthrough, 0x100000000 to 0xfffffffff */ | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |             ret = ldub_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                             | ((target_phys_addr_t)(asi & 0xf) << 32)); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |             ret = lduw_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                             | ((target_phys_addr_t)(asi & 0xf) << 32)); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |             ret = ldl_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                            | ((target_phys_addr_t)(asi & 0xf) << 32)); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |             ret = ldq_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                            | ((target_phys_addr_t)(asi & 0xf) << 32)); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 0x30: // Turbosparc secondary cache diagnostic
 | 
					
						
							|  |  |  |     case 0x31: // Turbosparc RAM snoop
 | 
					
						
							|  |  |  |     case 0x32: // Turbosparc page table descriptor diagnostic
 | 
					
						
							| 
									
										
										
										
											2007-12-10 19:58:20 +00:00
										 |  |  |     case 0x39: /* data cache diagnostic register */ | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-12-23 15:30:50 +00:00
										 |  |  |     case 0x38: /* SuperSPARC MMU Breakpoint Control Registers */ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int reg = (addr >> 8) & 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             switch(reg) { | 
					
						
							|  |  |  |             case 0: /* Breakpoint Value (Addr) */ | 
					
						
							|  |  |  |                 ret = env->mmubpregs[reg]; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 1: /* Breakpoint Mask */ | 
					
						
							|  |  |  |                 ret = env->mmubpregs[reg]; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 2: /* Breakpoint Control */ | 
					
						
							|  |  |  |                 ret = env->mmubpregs[reg]; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 3: /* Breakpoint Status */ | 
					
						
							|  |  |  |                 ret = env->mmubpregs[reg]; | 
					
						
							|  |  |  |                 env->mmubpregs[reg] = 0ULL; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-07-20 17:19:25 +00:00
										 |  |  |             DPRINTF_MMU("read breakpoint reg[%d] 0x%016" PRIx64 "\n", reg, | 
					
						
							|  |  |  |                         ret); | 
					
						
							| 
									
										
										
										
											2008-12-23 15:30:50 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 8: /* User code access, XXX */ | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         do_unassigned_access(addr, 0, 0, asi, size); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     if (sign) { | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             ret = (int8_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             ret = (int16_t) ret; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 4: | 
					
						
							|  |  |  |             ret = (int32_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_st_asi(target_ulong addr, uint64_t val, int asi, int size) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, size - 1); | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     switch(asi) { | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 2: /* SuperSparc MXCC registers */ | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         switch (addr) { | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |         case 0x01c00000: /* MXCC stream data register 0 */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccdata[0] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00008: /* MXCC stream data register 1 */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccdata[1] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00010: /* MXCC stream data register 2 */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccdata[2] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00018: /* MXCC stream data register 3 */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccdata[3] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00100: /* MXCC stream source */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccregs[0] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							|  |  |  |             env->mxccdata[0] = ldq_phys((env->mxccregs[0] & 0xffffffffULL) + | 
					
						
							|  |  |  |                                         0); | 
					
						
							|  |  |  |             env->mxccdata[1] = ldq_phys((env->mxccregs[0] & 0xffffffffULL) + | 
					
						
							|  |  |  |                                         8); | 
					
						
							|  |  |  |             env->mxccdata[2] = ldq_phys((env->mxccregs[0] & 0xffffffffULL) + | 
					
						
							|  |  |  |                                         16); | 
					
						
							|  |  |  |             env->mxccdata[3] = ldq_phys((env->mxccregs[0] & 0xffffffffULL) + | 
					
						
							|  |  |  |                                         24); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00200: /* MXCC stream destination */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccregs[1] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							|  |  |  |             stq_phys((env->mxccregs[1] & 0xffffffffULL) +  0, | 
					
						
							|  |  |  |                      env->mxccdata[0]); | 
					
						
							|  |  |  |             stq_phys((env->mxccregs[1] & 0xffffffffULL) +  8, | 
					
						
							|  |  |  |                      env->mxccdata[1]); | 
					
						
							|  |  |  |             stq_phys((env->mxccregs[1] & 0xffffffffULL) + 16, | 
					
						
							|  |  |  |                      env->mxccdata[2]); | 
					
						
							|  |  |  |             stq_phys((env->mxccregs[1] & 0xffffffffULL) + 24, | 
					
						
							|  |  |  |                      env->mxccdata[3]); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00a00: /* MXCC control register */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccregs[3] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00a04: /* MXCC control register */ | 
					
						
							|  |  |  |             if (size == 4) | 
					
						
							| 
									
										
										
										
											2008-09-14 19:16:21 +00:00
										 |  |  |                 env->mxccregs[3] = (env->mxccregs[3] & 0xffffffff00000000ULL) | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                     | val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00e00: /* MXCC error register  */ | 
					
						
							| 
									
										
										
										
											2007-11-17 08:19:57 +00:00
										 |  |  |             // writing a 1 bit clears the error
 | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccregs[6] &= ~val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x01c00f00: /* MBus port address register */ | 
					
						
							|  |  |  |             if (size == 8) | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mxccregs[7] = val; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr, | 
					
						
							|  |  |  |                              size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |             DPRINTF_MXCC("%08x: unimplemented address, size: %d\n", addr, | 
					
						
							|  |  |  |                          size); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-10-02 18:06:50 +00:00
										 |  |  |         DPRINTF_MXCC("asi = %d, size = %d, addr = %08x, val = %" PRIx64 "\n", | 
					
						
							|  |  |  |                      asi, size, addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #ifdef DEBUG_MXCC
 | 
					
						
							|  |  |  |         dump_mxcc(env); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case 3: /* MMU flush */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             int mmulev; | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             mmulev = (addr >> 8) & 15; | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  |             DPRINTF_MMU("mmu flush level %d\n", mmulev); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             switch (mmulev) { | 
					
						
							|  |  |  |             case 0: // flush page
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 tlb_flush_page(env, addr & 0xfffff000); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 1: // flush segment (256k)
 | 
					
						
							|  |  |  |             case 2: // flush region (16M)
 | 
					
						
							|  |  |  |             case 3: // flush context (4G)
 | 
					
						
							|  |  |  |             case 4: // flush entire
 | 
					
						
							|  |  |  |                 tlb_flush(env, 1); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             dump_mmu(env); | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case 4: /* write MMU regs */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             int reg = (addr >> 8) & 0x1f; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             uint32_t oldreg; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             oldreg = env->mmuregs[reg]; | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |             switch(reg) { | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:33 +00:00
										 |  |  |             case 0: // Control Register
 | 
					
						
							| 
									
										
										
										
											2007-11-25 12:43:10 +00:00
										 |  |  |                 env->mmuregs[reg] = (env->mmuregs[reg] & 0xff000000) | | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                                     (val & 0x00ffffff); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |                 // Mappings generated during no-fault mode or MMU
 | 
					
						
							|  |  |  |                 // disabled mode are invalid in normal mode
 | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |                 if ((oldreg & (MMU_E | MMU_NF | env->def->mmu_bm)) != | 
					
						
							|  |  |  |                     (env->mmuregs[reg] & (MMU_E | MMU_NF | env->def->mmu_bm))) | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |                     tlb_flush(env, 1); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:33 +00:00
										 |  |  |             case 1: // Context Table Pointer Register
 | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |                 env->mmuregs[reg] = val & env->def->mmu_ctpr_mask; | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:33 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: // Context Register
 | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |                 env->mmuregs[reg] = val & env->def->mmu_cxr_mask; | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |                 if (oldreg != env->mmuregs[reg]) { | 
					
						
							|  |  |  |                     /* we flush when the MMU context changes because
 | 
					
						
							|  |  |  |                        QEMU has no MMU context support */ | 
					
						
							|  |  |  |                     tlb_flush(env, 1); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:33 +00:00
										 |  |  |             case 3: // Synchronous Fault Status Register with Clear
 | 
					
						
							|  |  |  |             case 4: // Synchronous Fault Address Register
 | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 0x10: // TLB Replacement Control Register
 | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |                 env->mmuregs[reg] = val & env->def->mmu_trcr_mask; | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:33 +00:00
										 |  |  |             case 0x13: // Synchronous Fault Status Register with Read and Clear
 | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |                 env->mmuregs[3] = val & env->def->mmu_sfsr_mask; | 
					
						
							| 
									
										
										
										
											2007-11-25 12:43:10 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:33 +00:00
										 |  |  |             case 0x14: // Synchronous Fault Address Register
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mmuregs[4] = val; | 
					
						
							| 
									
										
										
										
											2007-11-25 12:43:10 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |             default: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 env->mmuregs[reg] = val; | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (oldreg != env->mmuregs[reg]) { | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MMU("mmu change reg[%d]: 0x%08x -> 0x%08x\n", | 
					
						
							|  |  |  |                             reg, oldreg, env->mmuregs[reg]); | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             dump_mmu(env); | 
					
						
							| 
									
										
										
										
											2005-02-22 19:14:33 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 5: // Turbosparc ITLB Diagnostic
 | 
					
						
							|  |  |  |     case 6: // Turbosparc DTLB Diagnostic
 | 
					
						
							|  |  |  |     case 7: // Turbosparc IOTLB Diagnostic
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0xa: /* User data access */ | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             stb_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             stw_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             stl_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             stq_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0xb: /* Supervisor data access */ | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             stb_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             stw_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             stl_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |             stq_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 0xc: /* I-cache tag */ | 
					
						
							|  |  |  |     case 0xd: /* I-cache data */ | 
					
						
							|  |  |  |     case 0xe: /* D-cache tag */ | 
					
						
							|  |  |  |     case 0xf: /* D-cache data */ | 
					
						
							|  |  |  |     case 0x10: /* I/D-cache flush page */ | 
					
						
							|  |  |  |     case 0x11: /* I/D-cache flush segment */ | 
					
						
							|  |  |  |     case 0x12: /* I/D-cache flush region */ | 
					
						
							|  |  |  |     case 0x13: /* I/D-cache flush context */ | 
					
						
							|  |  |  |     case 0x14: /* I/D-cache flush user */ | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  |     case 0x17: /* Block copy, sta access */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             // val = src
 | 
					
						
							|  |  |  |             // addr = dst
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             // copy 32 bytes
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             unsigned int i; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             uint32_t src = val & ~3, dst = addr & ~3, temp; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             for (i = 0; i < 32; i += 4, src += 4, dst += 4) { | 
					
						
							|  |  |  |                 temp = ldl_kernel(src); | 
					
						
							|  |  |  |                 stl_kernel(dst, temp); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  |     case 0x1f: /* Block fill, stda access */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             // addr = dst
 | 
					
						
							|  |  |  |             // fill 32 bytes with val
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |             unsigned int i; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             uint32_t dst = addr & 7; | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             for (i = 0; i < 32; i += 8, dst += 8) | 
					
						
							|  |  |  |                 stq_kernel(dst, val); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 0x20: /* MMU passthrough */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 stb_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stw_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stl_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-11-11 00:24:58 +00:00
										 |  |  |             case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stq_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-11-11 00:24:58 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 0x21 ... 0x2f: /* MMU passthrough, 0x100000000 to 0xfffffffff */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |                 stb_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                          | ((target_phys_addr_t)(asi & 0xf) << 32), val); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |                 stw_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                          | ((target_phys_addr_t)(asi & 0xf) << 32), val); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |                 stl_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                          | ((target_phys_addr_t)(asi & 0xf) << 32), val); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 8: | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |                 stq_phys((target_phys_addr_t)addr | 
					
						
							|  |  |  |                          | ((target_phys_addr_t)(asi & 0xf) << 32), val); | 
					
						
							| 
									
										
										
										
											2007-05-19 12:58:30 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 0x30: // store buffer tags or Turbosparc secondary cache diagnostic
 | 
					
						
							|  |  |  |     case 0x31: // store buffer data, Ross RT620 I-cache flush or
 | 
					
						
							|  |  |  |                // Turbosparc snoop RAM
 | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |     case 0x32: // store buffer control or Turbosparc page table
 | 
					
						
							|  |  |  |                // descriptor diagnostic
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 0x36: /* I-cache flash clear */ | 
					
						
							|  |  |  |     case 0x37: /* D-cache flash clear */ | 
					
						
							| 
									
										
										
										
											2007-12-10 19:58:20 +00:00
										 |  |  |     case 0x4c: /* breakpoint action */ | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-12-23 15:30:50 +00:00
										 |  |  |     case 0x38: /* SuperSPARC MMU Breakpoint Control Registers*/ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int reg = (addr >> 8) & 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             switch(reg) { | 
					
						
							|  |  |  |             case 0: /* Breakpoint Value (Addr) */ | 
					
						
							|  |  |  |                 env->mmubpregs[reg] = (val & 0xfffffffffULL); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 1: /* Breakpoint Mask */ | 
					
						
							|  |  |  |                 env->mmubpregs[reg] = (val & 0xfffffffffULL); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 2: /* Breakpoint Control */ | 
					
						
							|  |  |  |                 env->mmubpregs[reg] = (val & 0x7fULL); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 3: /* Breakpoint Status */ | 
					
						
							|  |  |  |                 env->mmubpregs[reg] = (val & 0xfULL); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-07-20 17:19:25 +00:00
										 |  |  |             DPRINTF_MMU("write breakpoint reg[%d] 0x%016x\n", reg, | 
					
						
							| 
									
										
										
										
											2008-12-23 15:30:50 +00:00
										 |  |  |                         env->mmuregs[reg]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-01-01 17:07:39 +00:00
										 |  |  |     case 8: /* User code access, XXX */ | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     case 9: /* Supervisor code access, XXX */ | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         do_unassigned_access(addr, 1, 0, asi, size); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     dump_asi("write", addr, asi, size, val); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | #endif /* CONFIG_USER_ONLY */
 | 
					
						
							|  |  |  | #else /* TARGET_SPARC64 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_USER_ONLY
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | uint64_t helper_ld_asi(target_ulong addr, int asi, int size, int sign) | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     uint64_t ret = 0; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #if defined(DEBUG_ASI)
 | 
					
						
							|  |  |  |     target_ulong last_addr = addr; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (asi < 0x80) | 
					
						
							|  |  |  |         raise_exception(TT_PRIV_ACT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, size - 1); | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  |     address_mask(env, &addr); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0x82: // Primary no-fault
 | 
					
						
							|  |  |  |     case 0x8a: // Primary no-fault LE
 | 
					
						
							| 
									
										
										
										
											2008-09-03 17:32:10 +00:00
										 |  |  |         if (page_check_range(addr, size, PAGE_READ) == -1) { | 
					
						
							|  |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |             dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // Fall through
 | 
					
						
							|  |  |  |     case 0x80: // Primary
 | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 ret = ldub_raw(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = lduw_raw(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = ldl_raw(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |             case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = ldq_raw(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x83: // Secondary no-fault
 | 
					
						
							|  |  |  |     case 0x8b: // Secondary no-fault LE
 | 
					
						
							| 
									
										
										
										
											2008-09-03 17:32:10 +00:00
										 |  |  |         if (page_check_range(addr, size, PAGE_READ) == -1) { | 
					
						
							|  |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |             dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // Fall through
 | 
					
						
							|  |  |  |     case 0x81: // Secondary
 | 
					
						
							|  |  |  |     case 0x89: // Secondary LE
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         // XXX
 | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Convert from little endian */ | 
					
						
							|  |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							|  |  |  |     case 0x89: // Secondary LE
 | 
					
						
							|  |  |  |     case 0x8a: // Primary no-fault LE
 | 
					
						
							|  |  |  |     case 0x8b: // Secondary no-fault LE
 | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 2: | 
					
						
							|  |  |  |             ret = bswap16(ret); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 4: | 
					
						
							|  |  |  |             ret = bswap32(ret); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 8: | 
					
						
							|  |  |  |             ret = bswap64(ret); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Convert to signed number */ | 
					
						
							|  |  |  |     if (sign) { | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							|  |  |  |             ret = (int8_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 2: | 
					
						
							|  |  |  |             ret = (int16_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 4: | 
					
						
							|  |  |  |             ret = (int32_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |     dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_st_asi(target_ulong addr, target_ulong val, int asi, int size) | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |     dump_asi("write", addr, asi, size, val); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     if (asi < 0x80) | 
					
						
							|  |  |  |         raise_exception(TT_PRIV_ACT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, size - 1); | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  |     address_mask(env, &addr); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     /* Convert to little endian */ | 
					
						
							|  |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							|  |  |  |     case 0x89: // Secondary LE
 | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
											
												sparc64: fix helper_st_asi little endian case typo
On Sun, Jul 12, 2009 at 12:43 AM, Stuart Brady<sdbrady@ntlworld.com> wrote:
> On Sat, Jul 11, 2009 at 10:22:18PM +0400, Igor Kovalenko wrote:
>> It is clear that intention is to byte-swap value to be written, not
>> the target address.
>
> @@ -1949,13 +1949,13 @@ void helper_st_asi(target_ulong addr, ta
>     case 0x89: // Secondary LE
>         switch(size) {
>         case 2:
> -            addr = bswap16(addr);
> +            addr = bswap16(val);
>             ^^^^
> Shouldn't that be 'val = bswap16(val)' (and likewise for the 32-bit and
> 64-bit cases)?  Also needs a 'signed-off-by:'...
>
> Cheers,
> --
> Stuart Brady
>
Thanks, that part I did not runtime-tested.
Not sure if those asi stores are of any use for user-mode emulator.
Please find attached the corrected version.
Signed-off-by: igor.v.kovalenko@gmail.com
--
Kind regards,
Igor V. Kovalenko
											
										 
											2009-07-12 00:57:03 +04:00
										 |  |  |             val = bswap16(val); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 4: | 
					
						
							| 
									
										
										
											
												sparc64: fix helper_st_asi little endian case typo
On Sun, Jul 12, 2009 at 12:43 AM, Stuart Brady<sdbrady@ntlworld.com> wrote:
> On Sat, Jul 11, 2009 at 10:22:18PM +0400, Igor Kovalenko wrote:
>> It is clear that intention is to byte-swap value to be written, not
>> the target address.
>
> @@ -1949,13 +1949,13 @@ void helper_st_asi(target_ulong addr, ta
>     case 0x89: // Secondary LE
>         switch(size) {
>         case 2:
> -            addr = bswap16(addr);
> +            addr = bswap16(val);
>             ^^^^
> Shouldn't that be 'val = bswap16(val)' (and likewise for the 32-bit and
> 64-bit cases)?  Also needs a 'signed-off-by:'...
>
> Cheers,
> --
> Stuart Brady
>
Thanks, that part I did not runtime-tested.
Not sure if those asi stores are of any use for user-mode emulator.
Please find attached the corrected version.
Signed-off-by: igor.v.kovalenko@gmail.com
--
Kind regards,
Igor V. Kovalenko
											
										 
											2009-07-12 00:57:03 +04:00
										 |  |  |             val = bswap32(val); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 8: | 
					
						
							| 
									
										
										
											
												sparc64: fix helper_st_asi little endian case typo
On Sun, Jul 12, 2009 at 12:43 AM, Stuart Brady<sdbrady@ntlworld.com> wrote:
> On Sat, Jul 11, 2009 at 10:22:18PM +0400, Igor Kovalenko wrote:
>> It is clear that intention is to byte-swap value to be written, not
>> the target address.
>
> @@ -1949,13 +1949,13 @@ void helper_st_asi(target_ulong addr, ta
>     case 0x89: // Secondary LE
>         switch(size) {
>         case 2:
> -            addr = bswap16(addr);
> +            addr = bswap16(val);
>             ^^^^
> Shouldn't that be 'val = bswap16(val)' (and likewise for the 32-bit and
> 64-bit cases)?  Also needs a 'signed-off-by:'...
>
> Cheers,
> --
> Stuart Brady
>
Thanks, that part I did not runtime-tested.
Not sure if those asi stores are of any use for user-mode emulator.
Please find attached the corrected version.
Signed-off-by: igor.v.kovalenko@gmail.com
--
Kind regards,
Igor V. Kovalenko
											
										 
											2009-07-12 00:57:03 +04:00
										 |  |  |             val = bswap64(val); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch(asi) { | 
					
						
							|  |  |  |     case 0x80: // Primary
 | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 stb_raw(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stw_raw(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stl_raw(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 8: | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stq_raw(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x81: // Secondary
 | 
					
						
							|  |  |  |     case 0x89: // Secondary LE
 | 
					
						
							|  |  |  |         // XXX
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x82: // Primary no-fault, RO
 | 
					
						
							|  |  |  |     case 0x83: // Secondary no-fault, RO
 | 
					
						
							|  |  |  |     case 0x8a: // Primary no-fault LE, RO
 | 
					
						
							|  |  |  |     case 0x8b: // Secondary no-fault LE, RO
 | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         do_unassigned_access(addr, 1, 0, 1, size); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else /* CONFIG_USER_ONLY */
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | uint64_t helper_ld_asi(target_ulong addr, int asi, int size, int sign) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     uint64_t ret = 0; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #if defined(DEBUG_ASI)
 | 
					
						
							|  |  |  |     target_ulong last_addr = addr; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-23 23:39:51 +04:00
										 |  |  |     asi &= 0xff; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |     if ((asi < 0x80 && (env->pstate & PS_PRIV) == 0) | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |         || ((env->def->features & CPU_FEATURE_HYPV) | 
					
						
							|  |  |  |             && asi >= 0x30 && asi < 0x80 | 
					
						
							| 
									
										
										
										
											2008-07-20 18:22:16 +00:00
										 |  |  |             && !(env->hpstate & HS_PRIV))) | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         raise_exception(TT_PRIV_ACT); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, size - 1); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     switch (asi) { | 
					
						
							| 
									
										
										
										
											2008-09-03 17:32:10 +00:00
										 |  |  |     case 0x82: // Primary no-fault
 | 
					
						
							|  |  |  |     case 0x8a: // Primary no-fault LE
 | 
					
						
							|  |  |  |         if (cpu_get_phys_page_debug(env, addr) == -1ULL) { | 
					
						
							|  |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |             dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // Fall through
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0x10: // As if user primary
 | 
					
						
							|  |  |  |     case 0x18: // As if user primary LE
 | 
					
						
							|  |  |  |     case 0x80: // Primary
 | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							| 
									
										
										
										
											2008-09-26 18:07:24 +00:00
										 |  |  |     case 0xe2: // UA2007 Primary block init
 | 
					
						
							|  |  |  |     case 0xe3: // UA2007 Secondary block init
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         if ((asi & 0x80) && (env->pstate & PS_PRIV)) { | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |             if ((env->def->features & CPU_FEATURE_HYPV) | 
					
						
							|  |  |  |                 && env->hpstate & HS_PRIV) { | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                 switch(size) { | 
					
						
							|  |  |  |                 case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                     ret = ldub_hypv(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     ret = lduw_hypv(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     ret = ldl_hypv(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 default: | 
					
						
							|  |  |  |                 case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     ret = ldq_hypv(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 switch(size) { | 
					
						
							|  |  |  |                 case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                     ret = ldub_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     ret = lduw_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     ret = ldl_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 default: | 
					
						
							|  |  |  |                 case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     ret = ldq_kernel(addr); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 ret = ldub_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = lduw_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = ldl_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |             case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = ldq_user(addr); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x14: // Bypass
 | 
					
						
							|  |  |  |     case 0x15: // Bypass, non-cacheable
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0x1c: // Bypass LE
 | 
					
						
							|  |  |  |     case 0x1d: // Bypass, non-cacheable LE
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 ret = ldub_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = lduw_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = ldl_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |             case 8: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 ret = ldq_phys(addr); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-19 13:25:28 +00:00
										 |  |  |     case 0x24: // Nucleus quad LDD 128 bit atomic
 | 
					
						
							|  |  |  |     case 0x2c: // Nucleus quad LDD 128 bit atomic LE
 | 
					
						
							|  |  |  |         //  Only ldda allowed
 | 
					
						
							|  |  |  |         raise_exception(TT_ILL_INSN); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2008-09-03 17:32:10 +00:00
										 |  |  |     case 0x83: // Secondary no-fault
 | 
					
						
							|  |  |  |     case 0x8b: // Secondary no-fault LE
 | 
					
						
							|  |  |  |         if (cpu_get_phys_page_debug(env, addr) == -1ULL) { | 
					
						
							|  |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |             dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // Fall through
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x04: // Nucleus
 | 
					
						
							|  |  |  |     case 0x0c: // Nucleus Little Endian (LE)
 | 
					
						
							|  |  |  |     case 0x11: // As if user secondary
 | 
					
						
							|  |  |  |     case 0x19: // As if user secondary LE
 | 
					
						
							|  |  |  |     case 0x4a: // UPA config
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0x81: // Secondary
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x89: // Secondary LE
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         // XXX
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x45: // LSU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         ret = env->lsu; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x50: // I-MMU regs
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             int reg = (addr >> 3) & 0xf; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |             if (reg == 0) { | 
					
						
							|  |  |  |                 // I-TSB Tag Target register
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 ret = ultrasparc_tag_target(env->immu.tag_access); | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 ret = env->immuregs[reg]; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x51: // I-MMU 8k TSB pointer
 | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |         { | 
					
						
							|  |  |  |             // env->immuregs[5] holds I-MMU TSB register value
 | 
					
						
							|  |  |  |             // env->immuregs[6] holds I-MMU Tag Access register value
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = ultrasparc_tsb_pointer(env->immu.tsb, env->immu.tag_access, | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |                                          8*1024); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x52: // I-MMU 64k TSB pointer
 | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |         { | 
					
						
							|  |  |  |             // env->immuregs[5] holds I-MMU TSB register value
 | 
					
						
							|  |  |  |             // env->immuregs[6] holds I-MMU Tag Access register value
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = ultrasparc_tsb_pointer(env->immu.tsb, env->immu.tag_access, | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |                                          64*1024); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-16 16:58:49 +00:00
										 |  |  |     case 0x55: // I-MMU data access
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int reg = (addr >> 3) & 0x3f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = env->itlb[reg].tte; | 
					
						
							| 
									
										
										
										
											2008-07-16 16:58:49 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x56: // I-MMU tag read
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-08-06 18:16:08 +00:00
										 |  |  |             int reg = (addr >> 3) & 0x3f; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = env->itlb[reg].tag; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x58: // D-MMU regs
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             int reg = (addr >> 3) & 0xf; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |             if (reg == 0) { | 
					
						
							|  |  |  |                 // D-TSB Tag Target register
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 ret = ultrasparc_tag_target(env->dmmu.tag_access); | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 ret = env->dmmuregs[reg]; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     case 0x59: // D-MMU 8k TSB pointer
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // env->dmmuregs[5] holds D-MMU TSB register value
 | 
					
						
							|  |  |  |             // env->dmmuregs[6] holds D-MMU Tag Access register value
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = ultrasparc_tsb_pointer(env->dmmu.tsb, env->dmmu.tag_access, | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |                                          8*1024); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     case 0x5a: // D-MMU 64k TSB pointer
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // env->dmmuregs[5] holds D-MMU TSB register value
 | 
					
						
							|  |  |  |             // env->dmmuregs[6] holds D-MMU Tag Access register value
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = ultrasparc_tsb_pointer(env->dmmu.tsb, env->dmmu.tag_access, | 
					
						
							| 
									
										
										
										
											2009-04-25 18:17:25 +04:00
										 |  |  |                                          64*1024); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-16 16:58:49 +00:00
										 |  |  |     case 0x5d: // D-MMU data access
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int reg = (addr >> 3) & 0x3f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = env->dtlb[reg].tte; | 
					
						
							| 
									
										
										
										
											2008-07-16 16:58:49 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x5e: // D-MMU tag read
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-08-06 18:16:08 +00:00
										 |  |  |             int reg = (addr >> 3) & 0x3f; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             ret = env->dtlb[reg].tag; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-08 15:51:32 +00:00
										 |  |  |     case 0x46: // D-cache data
 | 
					
						
							|  |  |  |     case 0x47: // D-cache tag access
 | 
					
						
							| 
									
										
										
										
											2008-07-16 16:58:49 +00:00
										 |  |  |     case 0x4b: // E-cache error enable
 | 
					
						
							|  |  |  |     case 0x4c: // E-cache asynchronous fault status
 | 
					
						
							|  |  |  |     case 0x4d: // E-cache asynchronous fault address
 | 
					
						
							| 
									
										
										
										
											2008-07-08 15:51:32 +00:00
										 |  |  |     case 0x4e: // E-cache tag data
 | 
					
						
							|  |  |  |     case 0x66: // I-cache instruction access
 | 
					
						
							|  |  |  |     case 0x67: // I-cache tag access
 | 
					
						
							|  |  |  |     case 0x6e: // I-cache predecode
 | 
					
						
							|  |  |  |     case 0x6f: // I-cache LRU etc.
 | 
					
						
							|  |  |  |     case 0x76: // E-cache tag
 | 
					
						
							|  |  |  |     case 0x7e: // E-cache tag
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x5b: // D-MMU data pointer
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x48: // Interrupt dispatch, RO
 | 
					
						
							|  |  |  |     case 0x49: // Interrupt data receive
 | 
					
						
							|  |  |  |     case 0x7f: // Incoming interrupt vector, RO
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         // XXX
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x54: // I-MMU data in, WO
 | 
					
						
							|  |  |  |     case 0x57: // I-MMU demap, WO
 | 
					
						
							|  |  |  |     case 0x5c: // D-MMU data in, WO
 | 
					
						
							|  |  |  |     case 0x5f: // D-MMU demap, WO
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x77: // Interrupt vector, WO
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         do_unassigned_access(addr, 0, 0, 1, size); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         ret = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Convert from little endian */ | 
					
						
							|  |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0x0c: // Nucleus Little Endian (LE)
 | 
					
						
							|  |  |  |     case 0x18: // As if user primary LE
 | 
					
						
							|  |  |  |     case 0x19: // As if user secondary LE
 | 
					
						
							|  |  |  |     case 0x1c: // Bypass LE
 | 
					
						
							|  |  |  |     case 0x1d: // Bypass, non-cacheable LE
 | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							|  |  |  |     case 0x89: // Secondary LE
 | 
					
						
							|  |  |  |     case 0x8a: // Primary no-fault LE
 | 
					
						
							|  |  |  |     case 0x8b: // Secondary no-fault LE
 | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 2: | 
					
						
							|  |  |  |             ret = bswap16(ret); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 4: | 
					
						
							|  |  |  |             ret = bswap32(ret); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 8: | 
					
						
							|  |  |  |             ret = bswap64(ret); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Convert to signed number */ | 
					
						
							|  |  |  |     if (sign) { | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							|  |  |  |             ret = (int8_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 2: | 
					
						
							|  |  |  |             ret = (int16_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 4: | 
					
						
							|  |  |  |             ret = (int32_t) ret; | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |     dump_asi("read ", last_addr, asi, size, ret); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_st_asi(target_ulong addr, target_ulong val, int asi, int size) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | #ifdef DEBUG_ASI
 | 
					
						
							|  |  |  |     dump_asi("write", addr, asi, size, val); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-09-23 23:39:51 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     asi &= 0xff; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |     if ((asi < 0x80 && (env->pstate & PS_PRIV) == 0) | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |         || ((env->def->features & CPU_FEATURE_HYPV) | 
					
						
							|  |  |  |             && asi >= 0x30 && asi < 0x80 | 
					
						
							| 
									
										
										
										
											2008-07-20 18:22:16 +00:00
										 |  |  |             && !(env->hpstate & HS_PRIV))) | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         raise_exception(TT_PRIV_ACT); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, size - 1); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     /* Convert to little endian */ | 
					
						
							|  |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0x0c: // Nucleus Little Endian (LE)
 | 
					
						
							|  |  |  |     case 0x18: // As if user primary LE
 | 
					
						
							|  |  |  |     case 0x19: // As if user secondary LE
 | 
					
						
							|  |  |  |     case 0x1c: // Bypass LE
 | 
					
						
							|  |  |  |     case 0x1d: // Bypass, non-cacheable LE
 | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							|  |  |  |     case 0x89: // Secondary LE
 | 
					
						
							|  |  |  |         switch(size) { | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
											
												sparc64: fix helper_st_asi little endian case typo
On Sun, Jul 12, 2009 at 12:43 AM, Stuart Brady<sdbrady@ntlworld.com> wrote:
> On Sat, Jul 11, 2009 at 10:22:18PM +0400, Igor Kovalenko wrote:
>> It is clear that intention is to byte-swap value to be written, not
>> the target address.
>
> @@ -1949,13 +1949,13 @@ void helper_st_asi(target_ulong addr, ta
>     case 0x89: // Secondary LE
>         switch(size) {
>         case 2:
> -            addr = bswap16(addr);
> +            addr = bswap16(val);
>             ^^^^
> Shouldn't that be 'val = bswap16(val)' (and likewise for the 32-bit and
> 64-bit cases)?  Also needs a 'signed-off-by:'...
>
> Cheers,
> --
> Stuart Brady
>
Thanks, that part I did not runtime-tested.
Not sure if those asi stores are of any use for user-mode emulator.
Please find attached the corrected version.
Signed-off-by: igor.v.kovalenko@gmail.com
--
Kind regards,
Igor V. Kovalenko
											
										 
											2009-07-12 00:57:03 +04:00
										 |  |  |             val = bswap16(val); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 4: | 
					
						
							| 
									
										
										
											
												sparc64: fix helper_st_asi little endian case typo
On Sun, Jul 12, 2009 at 12:43 AM, Stuart Brady<sdbrady@ntlworld.com> wrote:
> On Sat, Jul 11, 2009 at 10:22:18PM +0400, Igor Kovalenko wrote:
>> It is clear that intention is to byte-swap value to be written, not
>> the target address.
>
> @@ -1949,13 +1949,13 @@ void helper_st_asi(target_ulong addr, ta
>     case 0x89: // Secondary LE
>         switch(size) {
>         case 2:
> -            addr = bswap16(addr);
> +            addr = bswap16(val);
>             ^^^^
> Shouldn't that be 'val = bswap16(val)' (and likewise for the 32-bit and
> 64-bit cases)?  Also needs a 'signed-off-by:'...
>
> Cheers,
> --
> Stuart Brady
>
Thanks, that part I did not runtime-tested.
Not sure if those asi stores are of any use for user-mode emulator.
Please find attached the corrected version.
Signed-off-by: igor.v.kovalenko@gmail.com
--
Kind regards,
Igor V. Kovalenko
											
										 
											2009-07-12 00:57:03 +04:00
										 |  |  |             val = bswap32(val); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         case 8: | 
					
						
							| 
									
										
										
											
												sparc64: fix helper_st_asi little endian case typo
On Sun, Jul 12, 2009 at 12:43 AM, Stuart Brady<sdbrady@ntlworld.com> wrote:
> On Sat, Jul 11, 2009 at 10:22:18PM +0400, Igor Kovalenko wrote:
>> It is clear that intention is to byte-swap value to be written, not
>> the target address.
>
> @@ -1949,13 +1949,13 @@ void helper_st_asi(target_ulong addr, ta
>     case 0x89: // Secondary LE
>         switch(size) {
>         case 2:
> -            addr = bswap16(addr);
> +            addr = bswap16(val);
>             ^^^^
> Shouldn't that be 'val = bswap16(val)' (and likewise for the 32-bit and
> 64-bit cases)?  Also needs a 'signed-off-by:'...
>
> Cheers,
> --
> Stuart Brady
>
Thanks, that part I did not runtime-tested.
Not sure if those asi stores are of any use for user-mode emulator.
Please find attached the corrected version.
Signed-off-by: igor.v.kovalenko@gmail.com
--
Kind regards,
Igor V. Kovalenko
											
										 
											2009-07-12 00:57:03 +04:00
										 |  |  |             val = bswap64(val); | 
					
						
							| 
									
										
										
										
											2007-09-23 11:40:57 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     switch(asi) { | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0x10: // As if user primary
 | 
					
						
							|  |  |  |     case 0x18: // As if user primary LE
 | 
					
						
							|  |  |  |     case 0x80: // Primary
 | 
					
						
							|  |  |  |     case 0x88: // Primary LE
 | 
					
						
							| 
									
										
										
										
											2008-09-26 18:07:24 +00:00
										 |  |  |     case 0xe2: // UA2007 Primary block init
 | 
					
						
							|  |  |  |     case 0xe3: // UA2007 Secondary block init
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |         if ((asi & 0x80) && (env->pstate & PS_PRIV)) { | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |             if ((env->def->features & CPU_FEATURE_HYPV) | 
					
						
							|  |  |  |                 && env->hpstate & HS_PRIV) { | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                 switch(size) { | 
					
						
							|  |  |  |                 case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                     stb_hypv(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     stw_hypv(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     stl_hypv(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 8: | 
					
						
							|  |  |  |                 default: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     stq_hypv(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 switch(size) { | 
					
						
							|  |  |  |                 case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                     stb_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     stw_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     stl_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 case 8: | 
					
						
							|  |  |  |                 default: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                     stq_kernel(addr, val); | 
					
						
							| 
									
										
										
										
											2007-10-14 17:07:21 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 stb_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stw_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stl_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 8: | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stq_user(addr, val); | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x14: // Bypass
 | 
					
						
							|  |  |  |     case 0x15: // Bypass, non-cacheable
 | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  |     case 0x1c: // Bypass LE
 | 
					
						
							|  |  |  |     case 0x1d: // Bypass, non-cacheable LE
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |             switch(size) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 stb_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stw_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stl_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 8: | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2008-05-20 19:36:22 +00:00
										 |  |  |                 stq_phys(addr, val); | 
					
						
							| 
									
										
										
										
											2005-10-30 20:49:44 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2008-07-19 13:25:28 +00:00
										 |  |  |     case 0x24: // Nucleus quad LDD 128 bit atomic
 | 
					
						
							|  |  |  |     case 0x2c: // Nucleus quad LDD 128 bit atomic LE
 | 
					
						
							|  |  |  |         //  Only ldda allowed
 | 
					
						
							|  |  |  |         raise_exception(TT_ILL_INSN); | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x04: // Nucleus
 | 
					
						
							|  |  |  |     case 0x0c: // Nucleus Little Endian (LE)
 | 
					
						
							|  |  |  |     case 0x11: // As if user secondary
 | 
					
						
							|  |  |  |     case 0x19: // As if user secondary LE
 | 
					
						
							|  |  |  |     case 0x4a: // UPA config
 | 
					
						
							| 
									
										
										
										
											2007-10-01 17:07:58 +00:00
										 |  |  |     case 0x81: // Secondary
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x89: // Secondary LE
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         // XXX
 | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x45: // LSU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             uint64_t oldreg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             oldreg = env->lsu; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             env->lsu = val & (DMMU_E | IMMU_E); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             // Mappings generated during D/I MMU disabled mode are
 | 
					
						
							|  |  |  |             // invalid in normal mode
 | 
					
						
							|  |  |  |             if (oldreg != env->lsu) { | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                 DPRINTF_MMU("LSU change: 0x%" PRIx64 " -> 0x%" PRIx64 "\n", | 
					
						
							|  |  |  |                             oldreg, env->lsu); | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |                 dump_mmu(env); | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |                 tlb_flush(env, 1); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x50: // I-MMU regs
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             int reg = (addr >> 3) & 0xf; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             uint64_t oldreg; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             oldreg = env->immuregs[reg]; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             switch(reg) { | 
					
						
							|  |  |  |             case 0: // RO
 | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             case 1: // Not in I-MMU
 | 
					
						
							|  |  |  |             case 2: | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             case 3: // SFSR
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 if ((val & 1) == 0) | 
					
						
							|  |  |  |                     val = 0; // Clear SFSR
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->immu.sfsr = val; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             case 4: // RO
 | 
					
						
							|  |  |  |                 return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             case 5: // TSB access
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 DPRINTF_MMU("immu TSB write: 0x%016" PRIx64 " -> 0x%016" | 
					
						
							|  |  |  |                             PRIx64 "\n", env->immu.tsb, val); | 
					
						
							|  |  |  |                 env->immu.tsb = val; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             case 6: // Tag access
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->immu.tag_access = val; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 7: | 
					
						
							|  |  |  |             case 8: | 
					
						
							|  |  |  |                 return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             if (oldreg != env->immuregs[reg]) { | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 DPRINTF_MMU("immu change reg[%d]: 0x%016" PRIx64 " -> 0x%016" | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                             PRIx64 "\n", reg, oldreg, env->immuregs[reg]); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             dump_mmu(env); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x54: // I-MMU data in
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |         replace_tlb_1bit_lru(env->itlb, env->immu.tag_access, val, "immu", env); | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x55: // I-MMU data access
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-09-27 19:43:18 +00:00
										 |  |  |             // TODO: auto demap
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             unsigned int i = (addr >> 3) & 0x3f; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |             replace_tlb_entry(&env->itlb[i], env->immu.tag_access, val, env); | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |             DPRINTF_MMU("immu data access replaced entry [%i]\n", i); | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             dump_mmu(env); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x57: // I-MMU demap
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |         demap_tlb(env->itlb, val, "immu", env); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x58: // D-MMU regs
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             int reg = (addr >> 3) & 0xf; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             uint64_t oldreg; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             oldreg = env->dmmuregs[reg]; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             switch(reg) { | 
					
						
							|  |  |  |             case 0: // RO
 | 
					
						
							|  |  |  |             case 4: | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             case 3: // SFSR
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |                 if ((val & 1) == 0) { | 
					
						
							|  |  |  |                     val = 0; // Clear SFSR, Fault address
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                     env->dmmu.sfar = 0; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->dmmu.sfsr = val; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 1: // Primary context
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->dmmu.mmu_primary_context = val; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             case 2: // Secondary context
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->dmmu.mmu_secondary_context = val; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             case 5: // TSB access
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 DPRINTF_MMU("dmmu TSB write: 0x%016" PRIx64 " -> 0x%016" | 
					
						
							|  |  |  |                             PRIx64 "\n", env->dmmu.tsb, val); | 
					
						
							|  |  |  |                 env->dmmu.tsb = val; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             case 6: // Tag access
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->dmmu.tag_access = val; | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             case 7: // Virtual Watchpoint
 | 
					
						
							|  |  |  |             case 8: // Physical Watchpoint
 | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 env->dmmuregs[reg] = val; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             if (oldreg != env->dmmuregs[reg]) { | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |                 DPRINTF_MMU("dmmu change reg[%d]: 0x%016" PRIx64 " -> 0x%016" | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                             PRIx64 "\n", reg, oldreg, env->dmmuregs[reg]); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-10-14 16:29:21 +00:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             dump_mmu(env); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x5c: // D-MMU data in
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |         replace_tlb_1bit_lru(env->dtlb, env->dmmu.tag_access, val, "dmmu", env); | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x5d: // D-MMU data access
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             unsigned int i = (addr >> 3) & 0x3f; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |             replace_tlb_entry(&env->dtlb[i], env->dmmu.tag_access, val, env); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  | #ifdef DEBUG_MMU
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |             DPRINTF_MMU("dmmu data access replaced entry [%i]\n", i); | 
					
						
							| 
									
										
										
										
											2009-07-27 01:49:04 +04:00
										 |  |  |             dump_mmu(env); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x5f: // D-MMU demap
 | 
					
						
							| 
									
										
										
										
											2009-07-27 01:57:39 +04:00
										 |  |  |         demap_tlb(env->dtlb, val, "dmmu", env); | 
					
						
							| 
									
										
										
										
											2008-09-27 19:43:18 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x49: // Interrupt data receive
 | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         // XXX
 | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2008-07-08 15:51:32 +00:00
										 |  |  |     case 0x46: // D-cache data
 | 
					
						
							|  |  |  |     case 0x47: // D-cache tag access
 | 
					
						
							| 
									
										
										
										
											2008-07-16 16:58:49 +00:00
										 |  |  |     case 0x4b: // E-cache error enable
 | 
					
						
							|  |  |  |     case 0x4c: // E-cache asynchronous fault status
 | 
					
						
							|  |  |  |     case 0x4d: // E-cache asynchronous fault address
 | 
					
						
							| 
									
										
										
										
											2008-07-08 15:51:32 +00:00
										 |  |  |     case 0x4e: // E-cache tag data
 | 
					
						
							|  |  |  |     case 0x66: // I-cache instruction access
 | 
					
						
							|  |  |  |     case 0x67: // I-cache tag access
 | 
					
						
							|  |  |  |     case 0x6e: // I-cache predecode
 | 
					
						
							|  |  |  |     case 0x6f: // I-cache LRU etc.
 | 
					
						
							|  |  |  |     case 0x76: // E-cache tag
 | 
					
						
							|  |  |  |     case 0x7e: // E-cache tag
 | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     case 0x51: // I-MMU 8k TSB pointer, RO
 | 
					
						
							|  |  |  |     case 0x52: // I-MMU 64k TSB pointer, RO
 | 
					
						
							|  |  |  |     case 0x56: // I-MMU tag read, RO
 | 
					
						
							|  |  |  |     case 0x59: // D-MMU 8k TSB pointer, RO
 | 
					
						
							|  |  |  |     case 0x5a: // D-MMU 64k TSB pointer, RO
 | 
					
						
							|  |  |  |     case 0x5b: // D-MMU data pointer, RO
 | 
					
						
							|  |  |  |     case 0x5e: // D-MMU tag read, RO
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case 0x48: // Interrupt dispatch, RO
 | 
					
						
							|  |  |  |     case 0x7f: // Incoming interrupt vector, RO
 | 
					
						
							|  |  |  |     case 0x82: // Primary no-fault, RO
 | 
					
						
							|  |  |  |     case 0x83: // Secondary no-fault, RO
 | 
					
						
							|  |  |  |     case 0x8a: // Primary no-fault LE, RO
 | 
					
						
							|  |  |  |     case 0x8b: // Secondary no-fault LE, RO
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         do_unassigned_access(addr, 1, 0, 1, size); | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | #endif /* CONFIG_USER_ONLY */
 | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-19 13:25:28 +00:00
										 |  |  | void helper_ldda_asi(target_ulong addr, int asi, int rd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((asi < 0x80 && (env->pstate & PS_PRIV) == 0) | 
					
						
							| 
									
										
										
										
											2008-08-21 17:33:42 +00:00
										 |  |  |         || ((env->def->features & CPU_FEATURE_HYPV) | 
					
						
							|  |  |  |             && asi >= 0x30 && asi < 0x80 | 
					
						
							| 
									
										
										
										
											2008-07-20 18:22:16 +00:00
										 |  |  |             && !(env->hpstate & HS_PRIV))) | 
					
						
							| 
									
										
										
										
											2008-07-19 13:25:28 +00:00
										 |  |  |         raise_exception(TT_PRIV_ACT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0x24: // Nucleus quad LDD 128 bit atomic
 | 
					
						
							|  |  |  |     case 0x2c: // Nucleus quad LDD 128 bit atomic LE
 | 
					
						
							|  |  |  |         helper_check_align(addr, 0xf); | 
					
						
							|  |  |  |         if (rd == 0) { | 
					
						
							|  |  |  |             env->gregs[1] = ldq_kernel(addr + 8); | 
					
						
							|  |  |  |             if (asi == 0x2c) | 
					
						
							|  |  |  |                 bswap64s(&env->gregs[1]); | 
					
						
							|  |  |  |         } else if (rd < 8) { | 
					
						
							|  |  |  |             env->gregs[rd] = ldq_kernel(addr); | 
					
						
							|  |  |  |             env->gregs[rd + 1] = ldq_kernel(addr + 8); | 
					
						
							|  |  |  |             if (asi == 0x2c) { | 
					
						
							|  |  |  |                 bswap64s(&env->gregs[rd]); | 
					
						
							|  |  |  |                 bswap64s(&env->gregs[rd + 1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             env->regwptr[rd] = ldq_kernel(addr); | 
					
						
							|  |  |  |             env->regwptr[rd + 1] = ldq_kernel(addr + 8); | 
					
						
							|  |  |  |             if (asi == 0x2c) { | 
					
						
							|  |  |  |                 bswap64s(&env->regwptr[rd]); | 
					
						
							|  |  |  |                 bswap64s(&env->regwptr[rd + 1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         helper_check_align(addr, 0x3); | 
					
						
							|  |  |  |         if (rd == 0) | 
					
						
							|  |  |  |             env->gregs[1] = helper_ld_asi(addr + 4, asi, 4, 0); | 
					
						
							|  |  |  |         else if (rd < 8) { | 
					
						
							|  |  |  |             env->gregs[rd] = helper_ld_asi(addr, asi, 4, 0); | 
					
						
							|  |  |  |             env->gregs[rd + 1] = helper_ld_asi(addr + 4, asi, 4, 0); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             env->regwptr[rd] = helper_ld_asi(addr, asi, 4, 0); | 
					
						
							|  |  |  |             env->regwptr[rd + 1] = helper_ld_asi(addr + 4, asi, 4, 0); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_ldf_asi(target_ulong addr, int asi, int size, int rd) | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned int i; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     target_ulong val; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, 3); | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |     switch (asi) { | 
					
						
							|  |  |  |     case 0xf0: // Block load primary
 | 
					
						
							|  |  |  |     case 0xf1: // Block load secondary
 | 
					
						
							|  |  |  |     case 0xf8: // Block load primary LE
 | 
					
						
							|  |  |  |     case 0xf9: // Block load secondary LE
 | 
					
						
							| 
									
										
										
										
											2007-10-01 17:07:58 +00:00
										 |  |  |         if (rd & 7) { | 
					
						
							|  |  |  |             raise_exception(TT_ILL_INSN); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         helper_check_align(addr, 0x3f); | 
					
						
							| 
									
										
										
										
											2007-10-01 17:07:58 +00:00
										 |  |  |         for (i = 0; i < 16; i++) { | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |             *(uint32_t *)&env->fpr[rd++] = helper_ld_asi(addr, asi & 0x8f, 4, | 
					
						
							|  |  |  |                                                          0); | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             addr += 4; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     val = helper_ld_asi(addr, asi, size, 0); | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |     switch(size) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case 4: | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |         *((uint32_t *)&env->fpr[rd]) = val; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 8: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         *((int64_t *)&DT0) = val; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-11-25 18:40:20 +00:00
										 |  |  |     case 16: | 
					
						
							|  |  |  |         // XXX
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_stf_asi(target_ulong addr, int asi, int size, int rd) | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned int i; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     target_ulong val = 0; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, 3); | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |     switch (asi) { | 
					
						
							| 
									
										
										
										
											2008-09-26 18:07:24 +00:00
										 |  |  |     case 0xe0: // UA2007 Block commit store primary (cache flush)
 | 
					
						
							|  |  |  |     case 0xe1: // UA2007 Block commit store secondary (cache flush)
 | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |     case 0xf0: // Block store primary
 | 
					
						
							|  |  |  |     case 0xf1: // Block store secondary
 | 
					
						
							|  |  |  |     case 0xf8: // Block store primary LE
 | 
					
						
							|  |  |  |     case 0xf9: // Block store secondary LE
 | 
					
						
							| 
									
										
										
										
											2007-10-01 17:07:58 +00:00
										 |  |  |         if (rd & 7) { | 
					
						
							|  |  |  |             raise_exception(TT_ILL_INSN); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         helper_check_align(addr, 0x3f); | 
					
						
							| 
									
										
										
										
											2007-10-01 17:07:58 +00:00
										 |  |  |         for (i = 0; i < 16; i++) { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |             val = *(uint32_t *)&env->fpr[rd++]; | 
					
						
							|  |  |  |             helper_st_asi(addr, val, asi & 0x8f, 4); | 
					
						
							|  |  |  |             addr += 4; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch(size) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case 4: | 
					
						
							| 
									
										
										
										
											2008-09-10 19:54:51 +00:00
										 |  |  |         val = *((uint32_t *)&env->fpr[rd]); | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 8: | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         val = *((int64_t *)&DT0); | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-11-25 18:40:20 +00:00
										 |  |  |     case 16: | 
					
						
							|  |  |  |         // XXX
 | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     helper_st_asi(addr, val, asi, size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | target_ulong helper_cas_asi(target_ulong addr, target_ulong val1, | 
					
						
							|  |  |  |                             target_ulong val2, uint32_t asi) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     target_ulong ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-22 16:52:28 +00:00
										 |  |  |     val2 &= 0xffffffffUL; | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     ret = helper_ld_asi(addr, asi, 4, 0); | 
					
						
							|  |  |  |     ret &= 0xffffffffUL; | 
					
						
							| 
									
										
										
										
											2008-09-22 16:52:28 +00:00
										 |  |  |     if (val2 == ret) | 
					
						
							|  |  |  |         helper_st_asi(addr, val1 & 0xffffffffUL, asi, 4); | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2007-09-30 19:38:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | target_ulong helper_casx_asi(target_ulong addr, target_ulong val1, | 
					
						
							|  |  |  |                              target_ulong val2, uint32_t asi) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     target_ulong ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = helper_ld_asi(addr, asi, 8, 0); | 
					
						
							| 
									
										
										
										
											2008-09-22 16:52:28 +00:00
										 |  |  |     if (val2 == ret) | 
					
						
							|  |  |  |         helper_st_asi(addr, val1, asi, 8); | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-09-21 19:10:53 +00:00
										 |  |  | #endif /* TARGET_SPARC64 */
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_rett(void) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-01-30 22:39:04 +00:00
										 |  |  |     unsigned int cwp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-01 15:15:36 +00:00
										 |  |  |     if (env->psret == 1) | 
					
						
							|  |  |  |         raise_exception(TT_ILL_INSN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     env->psret = 1; | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     cwp = cpu_cwp_inc(env, env->cwp + 1) ; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     if (env->wim & (1 << cwp)) { | 
					
						
							|  |  |  |         raise_exception(TT_WIN_UNF); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     set_cwp(cwp); | 
					
						
							|  |  |  |     env->psrs = env->psrps; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-18 18:10:42 +00:00
										 |  |  | target_ulong helper_udiv(target_ulong a, target_ulong b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t x0; | 
					
						
							|  |  |  |     uint32_t x1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-25 19:43:53 +00:00
										 |  |  |     x0 = (a & 0xffffffff) | ((int64_t) (env->y) << 32); | 
					
						
							| 
									
										
										
										
											2008-03-18 18:10:42 +00:00
										 |  |  |     x1 = b; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (x1 == 0) { | 
					
						
							|  |  |  |         raise_exception(TT_DIV_ZERO); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     x0 = x0 / x1; | 
					
						
							|  |  |  |     if (x0 > 0xffffffff) { | 
					
						
							|  |  |  |         env->cc_src2 = 1; | 
					
						
							|  |  |  |         return 0xffffffff; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         env->cc_src2 = 0; | 
					
						
							|  |  |  |         return x0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | target_ulong helper_sdiv(target_ulong a, target_ulong b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int64_t x0; | 
					
						
							|  |  |  |     int32_t x1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-25 19:43:53 +00:00
										 |  |  |     x0 = (a & 0xffffffff) | ((int64_t) (env->y) << 32); | 
					
						
							| 
									
										
										
										
											2008-03-18 18:10:42 +00:00
										 |  |  |     x1 = b; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (x1 == 0) { | 
					
						
							|  |  |  |         raise_exception(TT_DIV_ZERO); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     x0 = x0 / x1; | 
					
						
							|  |  |  |     if ((int32_t) x0 != x0) { | 
					
						
							|  |  |  |         env->cc_src2 = 1; | 
					
						
							|  |  |  |         return x0 < 0? 0x80000000: 0x7fffffff; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         env->cc_src2 = 0; | 
					
						
							|  |  |  |         return x0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | void helper_stdf(target_ulong addr, int mem_idx) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, 7); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     switch (mem_idx) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         stfq_user(addr, DT0); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         stfq_kernel(addr, DT0); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         stfq_hypv(addr, DT0); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  |     address_mask(env, &addr); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     stfq_raw(addr, DT0); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_lddf(target_ulong addr, int mem_idx) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, 7); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     switch (mem_idx) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         DT0 = ldfq_user(addr); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         DT0 = ldfq_kernel(addr); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         DT0 = ldfq_hypv(addr); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  |     address_mask(env, &addr); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     DT0 = ldfq_raw(addr); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | void helper_ldqf(target_ulong addr, int mem_idx) | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // XXX add 128 bit load
 | 
					
						
							|  |  |  |     CPU_QuadU u; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, 7); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     switch (mem_idx) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         u.ll.upper = ldq_user(addr); | 
					
						
							|  |  |  |         u.ll.lower = ldq_user(addr + 8); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  |         QT0 = u.q; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         u.ll.upper = ldq_kernel(addr); | 
					
						
							|  |  |  |         u.ll.lower = ldq_kernel(addr + 8); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  |         QT0 = u.q; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         u.ll.upper = ldq_hypv(addr); | 
					
						
							|  |  |  |         u.ll.lower = ldq_hypv(addr + 8); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  |         QT0 = u.q; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  |     address_mask(env, &addr); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     u.ll.upper = ldq_raw(addr); | 
					
						
							|  |  |  |     u.ll.lower = ldq_raw((addr + 8) & 0xffffffffULL); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |     QT0 = u.q; | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | void helper_stqf(target_ulong addr, int mem_idx) | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // XXX add 128 bit store
 | 
					
						
							|  |  |  |     CPU_QuadU u; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     helper_check_align(addr, 7); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     switch (mem_idx) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |         u.q = QT0; | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         stq_user(addr, u.ll.upper); | 
					
						
							|  |  |  |         stq_user(addr + 8, u.ll.lower); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         u.q = QT0; | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         stq_kernel(addr, u.ll.upper); | 
					
						
							|  |  |  |         stq_kernel(addr + 8, u.ll.lower); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         u.q = QT0; | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         stq_hypv(addr, u.ll.upper); | 
					
						
							|  |  |  |         stq_hypv(addr + 8, u.ll.lower); | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  |     u.q = QT0; | 
					
						
							| 
									
										
										
										
											2008-07-17 12:53:05 +00:00
										 |  |  |     address_mask(env, &addr); | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     stq_raw(addr, u.ll.upper); | 
					
						
							|  |  |  |     stq_raw((addr + 8) & 0xffffffffULL, u.ll.lower); | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-09 20:13:43 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-05-04 11:58:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 19:02:49 +00:00
										 |  |  | static inline void set_fsr(void) | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |     int rnd_mode; | 
					
						
							| 
									
										
										
										
											2008-03-15 18:11:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     switch (env->fsr & FSR_RD_MASK) { | 
					
						
							|  |  |  |     case FSR_RD_NEAREST: | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |         rnd_mode = float_round_nearest_even; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2005-04-06 20:44:48 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case FSR_RD_ZERO: | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |         rnd_mode = float_round_to_zero; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case FSR_RD_POS: | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |         rnd_mode = float_round_up; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     case FSR_RD_NEG: | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |         rnd_mode = float_round_down; | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-03-13 17:01:47 +00:00
										 |  |  |     set_float_rounding_mode(rnd_mode, &env->fp_status); | 
					
						
							| 
									
										
										
										
											2004-09-30 21:55:55 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 19:02:49 +00:00
										 |  |  | void helper_ldfsr(uint32_t new_fsr) | 
					
						
							| 
									
										
										
										
											2008-03-15 18:11:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-09 19:02:49 +00:00
										 |  |  |     env->fsr = (new_fsr & FSR_LDFSR_MASK) | (env->fsr & FSR_LDFSR_OLDMASK); | 
					
						
							|  |  |  |     set_fsr(); | 
					
						
							| 
									
										
										
										
											2008-03-15 18:11:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 19:02:49 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | void helper_ldxfsr(uint64_t new_fsr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     env->fsr = (new_fsr & FSR_LDXFSR_MASK) | (env->fsr & FSR_LDXFSR_OLDMASK); | 
					
						
							|  |  |  |     set_fsr(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-15 18:11:06 +00:00
										 |  |  | void helper_debug(void) | 
					
						
							| 
									
										
										
										
											2004-12-19 23:18:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     env->exception_index = EXCP_DEBUG; | 
					
						
							|  |  |  |     cpu_loop_exit(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-01-30 22:39:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #ifndef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  | /* XXX: use another pointer for %iN registers to avoid slow wrapping
 | 
					
						
							|  |  |  |    handling ? */ | 
					
						
							|  |  |  | void helper_save(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t cwp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     cwp = cpu_cwp_dec(env, env->cwp - 1); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  |     if (env->wim & (1 << cwp)) { | 
					
						
							|  |  |  |         raise_exception(TT_WIN_OVF); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     set_cwp(cwp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_restore(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t cwp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     cwp = cpu_cwp_inc(env, env->cwp + 1); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  |     if (env->wim & (1 << cwp)) { | 
					
						
							|  |  |  |         raise_exception(TT_WIN_UNF); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     set_cwp(cwp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_wrpsr(target_ulong new_psr) | 
					
						
							| 
									
										
										
										
											2005-01-30 22:39:04 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     if ((new_psr & PSR_CWP) >= env->nwindows) | 
					
						
							| 
									
										
										
										
											2007-04-01 15:15:36 +00:00
										 |  |  |         raise_exception(TT_ILL_INSN); | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |         PUT_PSR(env, new_psr); | 
					
						
							| 
									
										
										
										
											2005-01-30 22:39:04 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | target_ulong helper_rdpsr(void) | 
					
						
							| 
									
										
										
										
											2005-01-30 22:39:04 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     return GET_PSR(env); | 
					
						
							| 
									
										
										
										
											2005-01-30 22:39:04 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  | /* XXX: use another pointer for %iN registers to avoid slow wrapping
 | 
					
						
							|  |  |  |    handling ? */ | 
					
						
							|  |  |  | void helper_save(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t cwp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     cwp = cpu_cwp_dec(env, env->cwp - 1); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  |     if (env->cansave == 0) { | 
					
						
							|  |  |  |         raise_exception(TT_SPILL | (env->otherwin != 0 ? | 
					
						
							|  |  |  |                                     (TT_WOTHER | ((env->wstate & 0x38) >> 1)): | 
					
						
							|  |  |  |                                     ((env->wstate & 0x7) << 2))); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (env->cleanwin - env->canrestore == 0) { | 
					
						
							|  |  |  |             // XXX Clean windows without trap
 | 
					
						
							|  |  |  |             raise_exception(TT_CLRWIN); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             env->cansave--; | 
					
						
							|  |  |  |             env->canrestore++; | 
					
						
							|  |  |  |             set_cwp(cwp); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_restore(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t cwp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     cwp = cpu_cwp_inc(env, env->cwp + 1); | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  |     if (env->canrestore == 0) { | 
					
						
							|  |  |  |         raise_exception(TT_FILL | (env->otherwin != 0 ? | 
					
						
							|  |  |  |                                    (TT_WOTHER | ((env->wstate & 0x38) >> 1)): | 
					
						
							|  |  |  |                                    ((env->wstate & 0x7) << 2))); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         env->cansave++; | 
					
						
							|  |  |  |         env->canrestore--; | 
					
						
							|  |  |  |         set_cwp(cwp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_flushw(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     if (env->cansave != env->nwindows - 2) { | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  |         raise_exception(TT_SPILL | (env->otherwin != 0 ? | 
					
						
							|  |  |  |                                     (TT_WOTHER | ((env->wstate & 0x38) >> 1)): | 
					
						
							|  |  |  |                                     ((env->wstate & 0x7) << 2))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_saved(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     env->cansave++; | 
					
						
							|  |  |  |     if (env->otherwin == 0) | 
					
						
							|  |  |  |         env->canrestore--; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         env->otherwin--; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_restored(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     env->canrestore++; | 
					
						
							| 
									
										
										
										
											2008-06-07 08:07:37 +00:00
										 |  |  |     if (env->cleanwin < env->nwindows - 1) | 
					
						
							| 
									
										
										
										
											2008-03-21 17:57:29 +00:00
										 |  |  |         env->cleanwin++; | 
					
						
							|  |  |  |     if (env->otherwin == 0) | 
					
						
							|  |  |  |         env->cansave--; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         env->otherwin--; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-18 18:08:25 +00:00
										 |  |  | target_ulong helper_rdccr(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return GET_CCR(env); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_wrccr(target_ulong new_ccr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PUT_CCR(env, new_ccr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // CWP handling is reversed in V9, but we still use the V8 register
 | 
					
						
							|  |  |  | // order.
 | 
					
						
							|  |  |  | target_ulong helper_rdcwp(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return GET_CWP64(env); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_wrcwp(target_ulong new_cwp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PUT_CWP64(env, new_cwp); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-18 18:06:54 +00:00
										 |  |  | // This function uses non-native bit order
 | 
					
						
							|  |  |  | #define GET_FIELD(X, FROM, TO)                                  \
 | 
					
						
							|  |  |  |     ((X) >> (63 - (TO)) & ((1ULL << ((TO) - (FROM) + 1)) - 1)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This function uses the order in the manuals, i.e. bit 0 is 2^0
 | 
					
						
							|  |  |  | #define GET_FIELD_SP(X, FROM, TO)               \
 | 
					
						
							|  |  |  |     GET_FIELD(X, 63 - (TO), 63 - (FROM)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | target_ulong helper_array8(target_ulong pixel_addr, target_ulong cubesize) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (GET_FIELD_SP(pixel_addr, 60, 63) << (17 + 2 * cubesize)) | | 
					
						
							|  |  |  |         (GET_FIELD_SP(pixel_addr, 39, 39 + cubesize - 1) << (17 + cubesize)) | | 
					
						
							|  |  |  |         (GET_FIELD_SP(pixel_addr, 17 + cubesize - 1, 17) << 17) | | 
					
						
							|  |  |  |         (GET_FIELD_SP(pixel_addr, 56, 59) << 13) | | 
					
						
							|  |  |  |         (GET_FIELD_SP(pixel_addr, 35, 38) << 9) | | 
					
						
							|  |  |  |         (GET_FIELD_SP(pixel_addr, 13, 16) << 5) | | 
					
						
							|  |  |  |         (((pixel_addr >> 55) & 1) << 4) | | 
					
						
							|  |  |  |         (GET_FIELD_SP(pixel_addr, 33, 34) << 2) | | 
					
						
							|  |  |  |         GET_FIELD_SP(pixel_addr, 11, 12); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | target_ulong helper_alignaddr(target_ulong addr, target_ulong offset) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tmp = addr + offset; | 
					
						
							|  |  |  |     env->gsr &= ~7ULL; | 
					
						
							|  |  |  |     env->gsr |= tmp & 7ULL; | 
					
						
							|  |  |  |     return tmp & ~7ULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | target_ulong helper_popc(target_ulong val) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  |     return ctpop64(val); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline uint64_t *get_gregset(uint64_t pstate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (pstate) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         return env->bgregs; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case PS_AG: | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         return env->agregs; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case PS_MG: | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         return env->mgregs; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     case PS_IG: | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         return env->igregs; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | static inline void change_pstate(uint64_t new_pstate) | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-08 19:51:24 +00:00
										 |  |  |     uint64_t pstate_regs, new_pstate_regs; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     uint64_t *src, *dst; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-12 12:35:31 +04:00
										 |  |  |     if (env->def->features & CPU_FEATURE_GL) { | 
					
						
							|  |  |  |         // PS_AG is not implemented in this case
 | 
					
						
							|  |  |  |         new_pstate &= ~PS_AG; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     pstate_regs = env->pstate & 0xc01; | 
					
						
							|  |  |  |     new_pstate_regs = new_pstate & 0xc01; | 
					
						
							| 
									
										
										
										
											2009-07-12 12:35:31 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     if (new_pstate_regs != pstate_regs) { | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         // Switch global register bank
 | 
					
						
							|  |  |  |         src = get_gregset(new_pstate_regs); | 
					
						
							|  |  |  |         dst = get_gregset(pstate_regs); | 
					
						
							|  |  |  |         memcpy32(dst, env->gregs); | 
					
						
							|  |  |  |         memcpy32(env->gregs, src); | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     env->pstate = new_pstate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_wrpstate(target_ulong new_state) | 
					
						
							| 
									
										
										
										
											2007-07-08 19:51:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-12 12:35:31 +04:00
										 |  |  |     change_pstate(new_state & 0xf3f); | 
					
						
							| 
									
										
										
										
											2007-07-08 19:51:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_done(void) | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  |     trap_state* tsptr = cpu_tsptr(env); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-05 01:49:27 +04:00
										 |  |  |     env->pc = tsptr->tnpc; | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  |     env->npc = tsptr->tnpc + 4; | 
					
						
							|  |  |  |     PUT_CCR(env, tsptr->tstate >> 32); | 
					
						
							|  |  |  |     env->asi = (tsptr->tstate >> 24) & 0xff; | 
					
						
							|  |  |  |     change_pstate((tsptr->tstate >> 8) & 0xf3f); | 
					
						
							|  |  |  |     PUT_CWP64(env, tsptr->tstate & 0xff); | 
					
						
							| 
									
										
										
										
											2008-07-17 19:17:19 +00:00
										 |  |  |     env->tl--; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-24 14:10:06 +00:00
										 |  |  | void helper_retry(void) | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  |     trap_state* tsptr = cpu_tsptr(env); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     env->pc = tsptr->tpc; | 
					
						
							|  |  |  |     env->npc = tsptr->tnpc; | 
					
						
							|  |  |  |     PUT_CCR(env, tsptr->tstate >> 32); | 
					
						
							|  |  |  |     env->asi = (tsptr->tstate >> 24) & 0xff; | 
					
						
							|  |  |  |     change_pstate((tsptr->tstate >> 8) & 0xf3f); | 
					
						
							|  |  |  |     PUT_CWP64(env, tsptr->tstate & 0xff); | 
					
						
							| 
									
										
										
										
											2008-07-17 19:17:19 +00:00
										 |  |  |     env->tl--; | 
					
						
							| 
									
										
										
										
											2005-07-23 14:27:54 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-09-22 19:50:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void helper_set_softint(uint64_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     env->softint |= (uint32_t)value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_clear_softint(uint64_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     env->softint &= (uint32_t)~value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_write_softint(uint64_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     env->softint = (uint32_t)value; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:31:34 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | void helper_flush(target_ulong addr) | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |     addr &= ~7; | 
					
						
							|  |  |  |     tb_invalidate_page_range(addr, addr + 8); | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | #ifdef DEBUG_PCALL
 | 
					
						
							|  |  |  | static const char * const excp_names[0x80] = { | 
					
						
							|  |  |  |     [TT_TFAULT] = "Instruction Access Fault", | 
					
						
							|  |  |  |     [TT_TMISS] = "Instruction Access MMU Miss", | 
					
						
							|  |  |  |     [TT_CODE_ACCESS] = "Instruction Access Error", | 
					
						
							|  |  |  |     [TT_ILL_INSN] = "Illegal Instruction", | 
					
						
							|  |  |  |     [TT_PRIV_INSN] = "Privileged Instruction", | 
					
						
							|  |  |  |     [TT_NFPU_INSN] = "FPU Disabled", | 
					
						
							|  |  |  |     [TT_FP_EXCP] = "FPU Exception", | 
					
						
							|  |  |  |     [TT_TOVF] = "Tag Overflow", | 
					
						
							|  |  |  |     [TT_CLRWIN] = "Clean Windows", | 
					
						
							|  |  |  |     [TT_DIV_ZERO] = "Division By Zero", | 
					
						
							|  |  |  |     [TT_DFAULT] = "Data Access Fault", | 
					
						
							|  |  |  |     [TT_DMISS] = "Data Access MMU Miss", | 
					
						
							|  |  |  |     [TT_DATA_ACCESS] = "Data Access Error", | 
					
						
							|  |  |  |     [TT_DPROT] = "Data Protection Error", | 
					
						
							|  |  |  |     [TT_UNALIGNED] = "Unaligned Memory Access", | 
					
						
							|  |  |  |     [TT_PRIV_ACT] = "Privileged Action", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x1] = "External Interrupt 1", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x2] = "External Interrupt 2", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x3] = "External Interrupt 3", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x4] = "External Interrupt 4", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x5] = "External Interrupt 5", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x6] = "External Interrupt 6", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x7] = "External Interrupt 7", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x8] = "External Interrupt 8", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x9] = "External Interrupt 9", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xa] = "External Interrupt 10", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xb] = "External Interrupt 11", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xc] = "External Interrupt 12", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xd] = "External Interrupt 13", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xe] = "External Interrupt 14", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xf] = "External Interrupt 15", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  | trap_state* cpu_tsptr(CPUState* env) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return &env->ts[env->tl & MAXTL_MASK]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | void do_interrupt(CPUState *env) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int intno = env->exception_index; | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  |     trap_state* tsptr; | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_PCALL
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:36:53 +00:00
										 |  |  |     if (qemu_loglevel_mask(CPU_LOG_INT)) { | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |         static int count; | 
					
						
							|  |  |  |         const char *name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (intno < 0 || intno >= 0x180) | 
					
						
							|  |  |  |             name = "Unknown"; | 
					
						
							|  |  |  |         else if (intno >= 0x100) | 
					
						
							|  |  |  |             name = "Trap Instruction"; | 
					
						
							|  |  |  |         else if (intno >= 0xc0) | 
					
						
							|  |  |  |             name = "Window Fill"; | 
					
						
							|  |  |  |         else if (intno >= 0x80) | 
					
						
							|  |  |  |             name = "Window Spill"; | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             name = excp_names[intno]; | 
					
						
							|  |  |  |             if (!name) | 
					
						
							|  |  |  |                 name = "Unknown"; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |         qemu_log("%6d: %s (v=%04x) pc=%016" PRIx64 " npc=%016" PRIx64 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |                 " SP=%016" PRIx64 "\n", | 
					
						
							|  |  |  |                 count, name, intno, | 
					
						
							|  |  |  |                 env->pc, | 
					
						
							|  |  |  |                 env->npc, env->regwptr[6]); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |         log_cpu_state(env, 0); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int i; | 
					
						
							|  |  |  |             uint8_t *ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |             qemu_log("       code="); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |             ptr = (uint8_t *)env->pc; | 
					
						
							|  |  |  |             for(i = 0; i < 16; i++) { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |                 qemu_log(" %02x", ldub(ptr + i)); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |             qemu_log("\n"); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         count++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     if (env->tl >= env->maxtl) { | 
					
						
							|  |  |  |         cpu_abort(env, "Trap 0x%04x while trap level (%d) >= MAXTL (%d)," | 
					
						
							|  |  |  |                   " Error state", env->exception_index, env->tl, env->maxtl); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     if (env->tl < env->maxtl - 1) { | 
					
						
							|  |  |  |         env->tl++; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         env->pstate |= PS_RED; | 
					
						
							|  |  |  |         if (env->tl < env->maxtl) | 
					
						
							|  |  |  |             env->tl++; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  |     tsptr = cpu_tsptr(env); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tsptr->tstate = ((uint64_t)GET_CCR(env) << 32) | | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |         ((env->asi & 0xff) << 24) | ((env->pstate & 0xf3f) << 8) | | 
					
						
							|  |  |  |         GET_CWP64(env); | 
					
						
							| 
									
										
										
										
											2009-08-03 23:15:02 +04:00
										 |  |  |     tsptr->tpc = env->pc; | 
					
						
							|  |  |  |     tsptr->tnpc = env->npc; | 
					
						
							|  |  |  |     tsptr->tt = intno; | 
					
						
							| 
									
										
										
										
											2009-07-12 12:35:31 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (intno) { | 
					
						
							|  |  |  |     case TT_IVEC: | 
					
						
							|  |  |  |         change_pstate(PS_PEF | PS_PRIV | PS_IG); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case TT_TFAULT: | 
					
						
							|  |  |  |     case TT_TMISS: | 
					
						
							|  |  |  |     case TT_DFAULT: | 
					
						
							|  |  |  |     case TT_DMISS: | 
					
						
							|  |  |  |     case TT_DPROT: | 
					
						
							|  |  |  |         change_pstate(PS_PEF | PS_PRIV | PS_MG); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         change_pstate(PS_PEF | PS_PRIV | PS_AG); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-07-12 12:35:31 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |     if (intno == TT_CLRWIN) | 
					
						
							|  |  |  |         cpu_set_cwp(env, cpu_cwp_dec(env, env->cwp - 1)); | 
					
						
							|  |  |  |     else if ((intno & 0x1c0) == TT_SPILL) | 
					
						
							|  |  |  |         cpu_set_cwp(env, cpu_cwp_dec(env, env->cwp - env->cansave - 2)); | 
					
						
							|  |  |  |     else if ((intno & 0x1c0) == TT_FILL) | 
					
						
							|  |  |  |         cpu_set_cwp(env, cpu_cwp_inc(env, env->cwp + 1)); | 
					
						
							|  |  |  |     env->tbr &= ~0x7fffULL; | 
					
						
							|  |  |  |     env->tbr |= ((env->tl > 1) ? 1 << 14 : 0) | (intno << 5); | 
					
						
							|  |  |  |     env->pc = env->tbr; | 
					
						
							|  |  |  |     env->npc = env->pc + 4; | 
					
						
							|  |  |  |     env->exception_index = 0; | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #ifdef DEBUG_PCALL
 | 
					
						
							|  |  |  | static const char * const excp_names[0x80] = { | 
					
						
							|  |  |  |     [TT_TFAULT] = "Instruction Access Fault", | 
					
						
							|  |  |  |     [TT_ILL_INSN] = "Illegal Instruction", | 
					
						
							|  |  |  |     [TT_PRIV_INSN] = "Privileged Instruction", | 
					
						
							|  |  |  |     [TT_NFPU_INSN] = "FPU Disabled", | 
					
						
							|  |  |  |     [TT_WIN_OVF] = "Window Overflow", | 
					
						
							|  |  |  |     [TT_WIN_UNF] = "Window Underflow", | 
					
						
							|  |  |  |     [TT_UNALIGNED] = "Unaligned Memory Access", | 
					
						
							|  |  |  |     [TT_FP_EXCP] = "FPU Exception", | 
					
						
							|  |  |  |     [TT_DFAULT] = "Data Access Fault", | 
					
						
							|  |  |  |     [TT_TOVF] = "Tag Overflow", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x1] = "External Interrupt 1", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x2] = "External Interrupt 2", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x3] = "External Interrupt 3", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x4] = "External Interrupt 4", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x5] = "External Interrupt 5", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x6] = "External Interrupt 6", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x7] = "External Interrupt 7", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x8] = "External Interrupt 8", | 
					
						
							|  |  |  |     [TT_EXTINT | 0x9] = "External Interrupt 9", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xa] = "External Interrupt 10", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xb] = "External Interrupt 11", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xc] = "External Interrupt 12", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xd] = "External Interrupt 13", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xe] = "External Interrupt 14", | 
					
						
							|  |  |  |     [TT_EXTINT | 0xf] = "External Interrupt 15", | 
					
						
							|  |  |  |     [TT_TOVF] = "Tag Overflow", | 
					
						
							|  |  |  |     [TT_CODE_ACCESS] = "Instruction Access Error", | 
					
						
							|  |  |  |     [TT_DATA_ACCESS] = "Data Access Error", | 
					
						
							|  |  |  |     [TT_DIV_ZERO] = "Division By Zero", | 
					
						
							|  |  |  |     [TT_NCP_INSN] = "Coprocessor Disabled", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | void do_interrupt(CPUState *env) | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |     int cwp, intno = env->exception_index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_PCALL
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:36:53 +00:00
										 |  |  |     if (qemu_loglevel_mask(CPU_LOG_INT)) { | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |         static int count; | 
					
						
							|  |  |  |         const char *name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (intno < 0 || intno >= 0x100) | 
					
						
							|  |  |  |             name = "Unknown"; | 
					
						
							|  |  |  |         else if (intno >= 0x80) | 
					
						
							|  |  |  |             name = "Trap Instruction"; | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             name = excp_names[intno]; | 
					
						
							|  |  |  |             if (!name) | 
					
						
							|  |  |  |                 name = "Unknown"; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |         qemu_log("%6d: %s (v=%02x) pc=%08x npc=%08x SP=%08x\n", | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |                 count, name, intno, | 
					
						
							|  |  |  |                 env->pc, | 
					
						
							|  |  |  |                 env->npc, env->regwptr[6]); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |         log_cpu_state(env, 0); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int i; | 
					
						
							|  |  |  |             uint8_t *ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |             qemu_log("       code="); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |             ptr = (uint8_t *)env->pc; | 
					
						
							|  |  |  |             for(i = 0; i < 16; i++) { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |                 qemu_log(" %02x", ldub(ptr + i)); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |             qemu_log("\n"); | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         count++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     if (env->psret == 0) { | 
					
						
							|  |  |  |         cpu_abort(env, "Trap 0x%02x while interrupts disabled, Error state", | 
					
						
							|  |  |  |                   env->exception_index); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     env->psret = 0; | 
					
						
							|  |  |  |     cwp = cpu_cwp_dec(env, env->cwp - 1); | 
					
						
							|  |  |  |     cpu_set_cwp(env, cwp); | 
					
						
							|  |  |  |     env->regwptr[9] = env->pc; | 
					
						
							|  |  |  |     env->regwptr[10] = env->npc; | 
					
						
							|  |  |  |     env->psrps = env->psrs; | 
					
						
							|  |  |  |     env->psrs = 1; | 
					
						
							|  |  |  |     env->tbr = (env->tbr & TBR_BASE_MASK) | (intno << 4); | 
					
						
							|  |  |  |     env->pc = env->tbr; | 
					
						
							|  |  |  |     env->npc = env->pc + 4; | 
					
						
							|  |  |  |     env->exception_index = 0; | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-29 20:50:21 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-13 15:46:16 +00:00
										 |  |  | static void do_unaligned_access(target_ulong addr, int is_write, int is_user, | 
					
						
							|  |  |  |                                 void *retaddr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | #define MMUSUFFIX _mmu
 | 
					
						
							| 
									
										
										
										
											2007-04-13 15:46:16 +00:00
										 |  |  | #define ALIGNED_ONLY
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define SHIFT 0
 | 
					
						
							|  |  |  | #include "softmmu_template.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SHIFT 1
 | 
					
						
							|  |  |  | #include "softmmu_template.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SHIFT 2
 | 
					
						
							|  |  |  | #include "softmmu_template.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SHIFT 3
 | 
					
						
							|  |  |  | #include "softmmu_template.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  | /* XXX: make it generic ? */ | 
					
						
							|  |  |  | static void cpu_restore_state2(void *retaddr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     TranslationBlock *tb; | 
					
						
							|  |  |  |     unsigned long pc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (retaddr) { | 
					
						
							|  |  |  |         /* now we have a real cpu fault */ | 
					
						
							|  |  |  |         pc = (unsigned long)retaddr; | 
					
						
							|  |  |  |         tb = tb_find_pc(pc); | 
					
						
							|  |  |  |         if (tb) { | 
					
						
							|  |  |  |             /* the PC is inside the translated code. It means that we have
 | 
					
						
							|  |  |  |                a virtual CPU fault */ | 
					
						
							|  |  |  |             cpu_restore_state(tb, env, pc, (void *)(long)env->cond); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-13 15:46:16 +00:00
										 |  |  | static void do_unaligned_access(target_ulong addr, int is_write, int is_user, | 
					
						
							|  |  |  |                                 void *retaddr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-07 18:05:05 +00:00
										 |  |  | #ifdef DEBUG_UNALIGNED
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     printf("Unaligned access to 0x" TARGET_FMT_lx " from 0x" TARGET_FMT_lx | 
					
						
							|  |  |  |            "\n", addr, env->pc); | 
					
						
							| 
									
										
										
										
											2007-05-07 18:05:05 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |     cpu_restore_state2(retaddr); | 
					
						
							| 
									
										
										
										
											2007-05-07 18:05:05 +00:00
										 |  |  |     raise_exception(TT_UNALIGNED); | 
					
						
							| 
									
										
										
										
											2007-04-13 15:46:16 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* try to fill the TLB and return an exception if error. If retaddr is
 | 
					
						
							|  |  |  |    NULL, it means that the function was called in C code (i.e. not | 
					
						
							|  |  |  |    from generated code or from helper.c) */ | 
					
						
							|  |  |  | /* XXX: fix it to restore all registers */ | 
					
						
							| 
									
										
										
										
											2007-10-14 07:07:08 +00:00
										 |  |  | void tlb_fill(target_ulong addr, int is_write, int mmu_idx, void *retaddr) | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     CPUState *saved_env; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* XXX: hack to restore env in all cases, even if not called from
 | 
					
						
							|  |  |  |        generated code */ | 
					
						
							|  |  |  |     saved_env = env; | 
					
						
							|  |  |  |     env = cpu_single_env; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-14 07:07:08 +00:00
										 |  |  |     ret = cpu_sparc_handle_mmu_fault(env, addr, is_write, mmu_idx, 1); | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  |     if (ret) { | 
					
						
							| 
									
										
										
										
											2008-05-11 19:24:10 +00:00
										 |  |  |         cpu_restore_state2(retaddr); | 
					
						
							| 
									
										
										
										
											2005-07-04 22:18:23 +00:00
										 |  |  |         cpu_loop_exit(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     env = saved_env; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef TARGET_SPARC64
 | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |                           int is_asi, int size) | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     CPUState *saved_env; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* XXX: hack to restore env in all cases, even if not called from
 | 
					
						
							|  |  |  |        generated code */ | 
					
						
							|  |  |  |     saved_env = env; | 
					
						
							|  |  |  |     env = cpu_single_env; | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #ifdef DEBUG_UNASSIGNED
 | 
					
						
							|  |  |  |     if (is_asi) | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         printf("Unassigned mem %s access of %d byte%s to " TARGET_FMT_plx | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |                " asi 0x%02x from " TARGET_FMT_lx "\n", | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |                is_exec ? "exec" : is_write ? "write" : "read", size, | 
					
						
							|  |  |  |                size == 1 ? "" : "s", addr, is_asi, env->pc); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |         printf("Unassigned mem %s access of %d byte%s to " TARGET_FMT_plx | 
					
						
							|  |  |  |                " from " TARGET_FMT_lx "\n", | 
					
						
							|  |  |  |                is_exec ? "exec" : is_write ? "write" : "read", size, | 
					
						
							|  |  |  |                size == 1 ? "" : "s", addr, env->pc); | 
					
						
							| 
									
										
										
										
											2007-12-28 18:50:23 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     if (env->mmuregs[3]) /* Fault status register */ | 
					
						
							| 
									
										
										
										
											2007-09-20 14:54:22 +00:00
										 |  |  |         env->mmuregs[3] = 1; /* overflow (not read before another fault) */ | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     if (is_asi) | 
					
						
							|  |  |  |         env->mmuregs[3] |= 1 << 16; | 
					
						
							|  |  |  |     if (env->psrs) | 
					
						
							|  |  |  |         env->mmuregs[3] |= 1 << 5; | 
					
						
							|  |  |  |     if (is_exec) | 
					
						
							|  |  |  |         env->mmuregs[3] |= 1 << 6; | 
					
						
							|  |  |  |     if (is_write) | 
					
						
							|  |  |  |         env->mmuregs[3] |= 1 << 7; | 
					
						
							|  |  |  |     env->mmuregs[3] |= (5 << 2) | 2; | 
					
						
							|  |  |  |     env->mmuregs[4] = addr; /* Fault address register */ | 
					
						
							|  |  |  |     if ((env->mmuregs[0] & MMU_E) && !(env->mmuregs[0] & MMU_NF)) { | 
					
						
							| 
									
										
										
										
											2007-05-27 19:36:00 +00:00
										 |  |  |         if (is_exec) | 
					
						
							|  |  |  |             raise_exception(TT_CODE_ACCESS); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             raise_exception(TT_DATA_ACCESS); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     env = saved_env; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, | 
					
						
							| 
									
										
										
										
											2008-10-06 18:46:28 +00:00
										 |  |  |                           int is_asi, int size) | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #ifdef DEBUG_UNASSIGNED
 | 
					
						
							|  |  |  |     CPUState *saved_env; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* XXX: hack to restore env in all cases, even if not called from
 | 
					
						
							|  |  |  |        generated code */ | 
					
						
							|  |  |  |     saved_env = env; | 
					
						
							|  |  |  |     env = cpu_single_env; | 
					
						
							| 
									
										
										
										
											2008-05-12 16:13:33 +00:00
										 |  |  |     printf("Unassigned mem access to " TARGET_FMT_plx " from " TARGET_FMT_lx | 
					
						
							|  |  |  |            "\n", addr, env->pc); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  |     env = saved_env; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-27 19:36:00 +00:00
										 |  |  |     if (is_exec) | 
					
						
							|  |  |  |         raise_exception(TT_CODE_ACCESS); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         raise_exception(TT_DATA_ACCESS); | 
					
						
							| 
									
										
										
										
											2007-05-17 19:30:10 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-25 18:50:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-03 19:04:42 +00:00
										 |  |  | #ifdef TARGET_SPARC64
 | 
					
						
							|  |  |  | void helper_tick_set_count(void *opaque, uint64_t count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     cpu_tick_set_count(opaque, count); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint64_t helper_tick_get_count(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     return cpu_tick_get_count(opaque); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void helper_tick_set_limit(void *opaque, uint64_t limit) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     cpu_tick_set_limit(opaque, limit); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 |