2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the Open Source and Linux Lab nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include "exec/cpu-defs.h"
33 #include "xtensa-isa.h"
35 /* Xtensa processors have a weak memory model */
36 #define TCG_GUEST_DEFAULT_MO (0)
39 /* Additional instructions */
40 XTENSA_OPTION_CODE_DENSITY
,
42 XTENSA_OPTION_EXTENDED_L32R
,
43 XTENSA_OPTION_16_BIT_IMUL
,
44 XTENSA_OPTION_32_BIT_IMUL
,
45 XTENSA_OPTION_32_BIT_IMUL_HIGH
,
46 XTENSA_OPTION_32_BIT_IDIV
,
48 XTENSA_OPTION_MISC_OP_NSA
,
49 XTENSA_OPTION_MISC_OP_MINMAX
,
50 XTENSA_OPTION_MISC_OP_SEXT
,
51 XTENSA_OPTION_MISC_OP_CLAMPS
,
52 XTENSA_OPTION_COPROCESSOR
,
53 XTENSA_OPTION_BOOLEAN
,
54 XTENSA_OPTION_FP_COPROCESSOR
,
55 XTENSA_OPTION_MP_SYNCHRO
,
56 XTENSA_OPTION_CONDITIONAL_STORE
,
57 XTENSA_OPTION_ATOMCTL
,
58 XTENSA_OPTION_DEPBITS
,
60 /* Interrupts and exceptions */
61 XTENSA_OPTION_EXCEPTION
,
62 XTENSA_OPTION_RELOCATABLE_VECTOR
,
63 XTENSA_OPTION_UNALIGNED_EXCEPTION
,
64 XTENSA_OPTION_INTERRUPT
,
65 XTENSA_OPTION_HIGH_PRIORITY_INTERRUPT
,
66 XTENSA_OPTION_TIMER_INTERRUPT
,
70 XTENSA_OPTION_ICACHE_TEST
,
71 XTENSA_OPTION_ICACHE_INDEX_LOCK
,
73 XTENSA_OPTION_DCACHE_TEST
,
74 XTENSA_OPTION_DCACHE_INDEX_LOCK
,
80 XTENSA_OPTION_HW_ALIGNMENT
,
81 XTENSA_OPTION_MEMORY_ECC_PARITY
,
83 /* Memory protection and translation */
84 XTENSA_OPTION_REGION_PROTECTION
,
85 XTENSA_OPTION_REGION_TRANSLATION
,
88 XTENSA_OPTION_CACHEATTR
,
91 XTENSA_OPTION_WINDOWED_REGISTER
,
92 XTENSA_OPTION_PROCESSOR_INTERFACE
,
93 XTENSA_OPTION_MISC_SR
,
94 XTENSA_OPTION_THREAD_POINTER
,
95 XTENSA_OPTION_PROCESSOR_ID
,
97 XTENSA_OPTION_TRACE_PORT
,
98 XTENSA_OPTION_EXTERN_REGS
,
168 #define PS_INTLEVEL 0xf
169 #define PS_INTLEVEL_SHIFT 0
175 #define PS_RING_SHIFT 6
178 #define PS_OWB_SHIFT 8
181 #define PS_CALLINC 0x30000
182 #define PS_CALLINC_SHIFT 16
183 #define PS_CALLINC_LEN 2
185 #define PS_WOE 0x40000
187 #define DEBUGCAUSE_IC 0x1
188 #define DEBUGCAUSE_IB 0x2
189 #define DEBUGCAUSE_DB 0x4
190 #define DEBUGCAUSE_BI 0x8
191 #define DEBUGCAUSE_BN 0x10
192 #define DEBUGCAUSE_DI 0x20
193 #define DEBUGCAUSE_DBNUM 0xf00
194 #define DEBUGCAUSE_DBNUM_SHIFT 8
196 #define DBREAKC_SB 0x80000000
197 #define DBREAKC_LB 0x40000000
198 #define DBREAKC_SB_LB (DBREAKC_SB | DBREAKC_LB)
199 #define DBREAKC_MASK 0x3f
201 #define MEMCTL_INIT 0x00800000
202 #define MEMCTL_IUSEWAYS_SHIFT 18
203 #define MEMCTL_IUSEWAYS_LEN 5
204 #define MEMCTL_IUSEWAYS_MASK 0x007c0000
205 #define MEMCTL_DALLOCWAYS_SHIFT 13
206 #define MEMCTL_DALLOCWAYS_LEN 5
207 #define MEMCTL_DALLOCWAYS_MASK 0x0003e000
208 #define MEMCTL_DUSEWAYS_SHIFT 8
209 #define MEMCTL_DUSEWAYS_LEN 5
210 #define MEMCTL_DUSEWAYS_MASK 0x00001f00
211 #define MEMCTL_ISNP 0x4
212 #define MEMCTL_DSNP 0x2
213 #define MEMCTL_IL0EN 0x1
215 #define MAX_INSN_LENGTH 64
216 #define MAX_INSNBUF_LENGTH \
217 ((MAX_INSN_LENGTH + sizeof(xtensa_insnbuf_word) - 1) / \
218 sizeof(xtensa_insnbuf_word))
219 #define MAX_INSN_SLOTS 32
220 #define MAX_OPCODE_ARGS 16
222 #define MAX_NINTERRUPT 32
225 #define MAX_NCCOMPARE 3
226 #define MAX_TLB_WAY_SIZE 8
227 #define MAX_NDBREAK 2
228 #define MAX_NMEMORY 4
229 #define MAX_MPU_FOREGROUND_SEGMENTS 32
231 #define REGION_PAGE_MASK 0xe0000000
233 #define PAGE_CACHE_MASK 0x700
234 #define PAGE_CACHE_SHIFT 8
235 #define PAGE_CACHE_INVALID 0x000
236 #define PAGE_CACHE_BYPASS 0x100
237 #define PAGE_CACHE_WT 0x200
238 #define PAGE_CACHE_WB 0x400
239 #define PAGE_CACHE_ISOLATE 0x600
247 /* Dynamic vectors */
248 EXC_WINDOW_OVERFLOW4
,
249 EXC_WINDOW_UNDERFLOW4
,
250 EXC_WINDOW_OVERFLOW8
,
251 EXC_WINDOW_UNDERFLOW8
,
252 EXC_WINDOW_OVERFLOW12
,
253 EXC_WINDOW_UNDERFLOW12
,
263 ILLEGAL_INSTRUCTION_CAUSE
= 0,
265 INSTRUCTION_FETCH_ERROR_CAUSE
,
266 LOAD_STORE_ERROR_CAUSE
,
267 LEVEL1_INTERRUPT_CAUSE
,
269 INTEGER_DIVIDE_BY_ZERO_CAUSE
,
270 PC_VALUE_ERROR_CAUSE
,
272 LOAD_STORE_ALIGNMENT_CAUSE
,
273 EXTERNAL_REG_PRIVILEGE_CAUSE
,
274 EXCLUSIVE_ERROR_CAUSE
,
275 INSTR_PIF_DATA_ERROR_CAUSE
,
276 LOAD_STORE_PIF_DATA_ERROR_CAUSE
,
277 INSTR_PIF_ADDR_ERROR_CAUSE
,
278 LOAD_STORE_PIF_ADDR_ERROR_CAUSE
,
280 INST_TLB_MULTI_HIT_CAUSE
,
281 INST_FETCH_PRIVILEGE_CAUSE
,
282 INST_FETCH_PROHIBITED_CAUSE
= 20,
283 LOAD_STORE_TLB_MISS_CAUSE
= 24,
284 LOAD_STORE_TLB_MULTI_HIT_CAUSE
,
285 LOAD_STORE_PRIVILEGE_CAUSE
,
286 LOAD_PROHIBITED_CAUSE
= 28,
287 STORE_PROHIBITED_CAUSE
,
289 COPROCESSOR0_DISABLED
= 32,
307 struct CPUXtensaState
;
309 typedef struct xtensa_tlb_entry
{
317 typedef struct xtensa_tlb
{
319 const unsigned way_size
[10];
321 unsigned nrefillentries
;
324 typedef struct xtensa_mpu_entry
{
329 typedef struct XtensaGdbReg
{
337 typedef struct XtensaGdbRegmap
{
340 /* PC + a + ar + sr + ur */
341 XtensaGdbReg reg
[1 + 16 + 64 + 256 + 256];
344 typedef struct XtensaCcompareTimer
{
345 struct CPUXtensaState
*env
;
347 } XtensaCcompareTimer
;
349 typedef struct XtensaMemory
{
351 struct XtensaMemoryRegion
{
354 } location
[MAX_NMEMORY
];
357 typedef struct opcode_arg
{
364 typedef struct DisasContext DisasContext
;
365 typedef void (*XtensaOpcodeOp
)(DisasContext
*dc
, const OpcodeArg arg
[],
366 const uint32_t par
[]);
367 typedef bool (*XtensaOpcodeBoolTest
)(DisasContext
*dc
,
368 const OpcodeArg arg
[],
369 const uint32_t par
[]);
370 typedef uint32_t (*XtensaOpcodeUintTest
)(DisasContext
*dc
,
371 const OpcodeArg arg
[],
372 const uint32_t par
[]);
376 XTENSA_OP_PRIVILEGED
= 0x2,
377 XTENSA_OP_SYSCALL
= 0x4,
378 XTENSA_OP_DEBUG_BREAK
= 0x8,
380 XTENSA_OP_OVERFLOW
= 0x10,
381 XTENSA_OP_UNDERFLOW
= 0x20,
382 XTENSA_OP_ALLOCA
= 0x40,
383 XTENSA_OP_COPROCESSOR
= 0x80,
385 XTENSA_OP_DIVIDE_BY_ZERO
= 0x100,
387 /* Postprocessing flags */
388 XTENSA_OP_CHECK_INTERRUPTS
= 0x200,
389 XTENSA_OP_EXIT_TB_M1
= 0x400,
390 XTENSA_OP_EXIT_TB_0
= 0x800,
391 XTENSA_OP_SYNC_REGISTER_WINDOW
= 0x1000,
393 XTENSA_OP_POSTPROCESS
=
394 XTENSA_OP_CHECK_INTERRUPTS
|
395 XTENSA_OP_EXIT_TB_M1
|
396 XTENSA_OP_EXIT_TB_0
|
397 XTENSA_OP_SYNC_REGISTER_WINDOW
,
399 XTENSA_OP_NAME_ARRAY
= 0x8000,
401 XTENSA_OP_CONTROL_FLOW
= 0x10000,
402 XTENSA_OP_STORE
= 0x20000,
403 XTENSA_OP_LOAD
= 0x40000,
404 XTENSA_OP_LOAD_STORE
=
405 XTENSA_OP_LOAD
| XTENSA_OP_STORE
,
408 typedef struct XtensaOpcodeOps
{
410 XtensaOpcodeOp translate
;
411 XtensaOpcodeBoolTest test_ill
;
412 XtensaOpcodeUintTest test_overflow
;
415 uint32_t coprocessor
;
418 typedef struct XtensaOpcodeTranslators
{
419 unsigned num_opcodes
;
420 const XtensaOpcodeOps
*opcode
;
421 } XtensaOpcodeTranslators
;
423 extern const XtensaOpcodeTranslators xtensa_core_opcodes
;
424 extern const XtensaOpcodeTranslators xtensa_fpu2000_opcodes
;
426 struct XtensaConfig
{
429 XtensaGdbRegmap gdb_regmap
;
433 unsigned inst_fetch_width
;
434 unsigned max_insn_size
;
436 uint32_t exception_vector
[EXC_MAX
];
439 uint32_t interrupt_vector
[MAX_NLEVEL
+ MAX_NNMI
+ 1];
440 uint32_t level_mask
[MAX_NLEVEL
+ MAX_NNMI
+ 1];
441 uint32_t inttype_mask
[INTTYPE_MAX
];
444 interrupt_type inttype
;
445 } interrupt
[MAX_NINTERRUPT
];
447 uint32_t timerint
[MAX_NCCOMPARE
];
449 unsigned extint
[MAX_NINTERRUPT
];
451 unsigned debug_level
;
455 unsigned icache_ways
;
456 unsigned dcache_ways
;
457 unsigned dcache_line_bytes
;
458 uint32_t memctl_mask
;
460 XtensaMemory instrom
;
461 XtensaMemory instram
;
462 XtensaMemory datarom
;
463 XtensaMemory dataram
;
468 uint32_t configid
[2];
472 XtensaOpcodeOps
**opcode_ops
;
473 const XtensaOpcodeTranslators
**opcode_translators
;
474 xtensa_regfile a_regfile
;
477 uint32_t clock_freq_khz
;
483 unsigned n_mpu_fg_segments
;
484 unsigned n_mpu_bg_segments
;
485 const xtensa_mpu_entry
*mpu_bg
;
488 typedef struct XtensaConfigList
{
489 const XtensaConfig
*config
;
490 struct XtensaConfigList
*next
;
493 #ifdef HOST_WORDS_BIGENDIAN
505 typedef struct CPUXtensaState
{
506 const XtensaConfig
*config
;
511 uint32_t phys_regs
[MAX_NAREG
];
516 float_status fp_status
;
517 uint32_t windowbase_next
;
518 uint32_t exclusive_addr
;
519 uint32_t exclusive_val
;
521 #ifndef CONFIG_USER_ONLY
522 xtensa_tlb_entry itlb
[7][MAX_TLB_WAY_SIZE
];
523 xtensa_tlb_entry dtlb
[10][MAX_TLB_WAY_SIZE
];
524 xtensa_mpu_entry mpu_fg
[MAX_MPU_FOREGROUND_SEGMENTS
];
525 unsigned autorefill_idx
;
527 AddressSpace
*address_space_er
;
528 MemoryRegion
*system_er
;
529 int pending_irq_level
; /* level of last raised IRQ */
530 qemu_irq
*irq_inputs
;
531 qemu_irq ext_irq_inputs
[MAX_NINTERRUPT
];
532 qemu_irq runstall_irq
;
533 XtensaCcompareTimer ccompare
[MAX_NCCOMPARE
];
535 uint64_t ccount_time
;
536 uint32_t ccount_base
;
541 unsigned static_vectors
;
543 /* Watchpoints for DBREAK registers */
544 struct CPUWatchpoint
*cpu_watchpoint
[MAX_NDBREAK
];
549 * @env: #CPUXtensaState
558 CPUNegativeOffsetState neg
;
563 bool xtensa_cpu_tlb_fill(CPUState
*cs
, vaddr address
, int size
,
564 MMUAccessType access_type
, int mmu_idx
,
565 bool probe
, uintptr_t retaddr
);
566 void xtensa_cpu_do_interrupt(CPUState
*cpu
);
567 bool xtensa_cpu_exec_interrupt(CPUState
*cpu
, int interrupt_request
);
568 void xtensa_cpu_do_transaction_failed(CPUState
*cs
, hwaddr physaddr
, vaddr addr
,
569 unsigned size
, MMUAccessType access_type
,
570 int mmu_idx
, MemTxAttrs attrs
,
571 MemTxResult response
, uintptr_t retaddr
);
572 void xtensa_cpu_dump_state(CPUState
*cpu
, FILE *f
, int flags
);
573 hwaddr
xtensa_cpu_get_phys_page_debug(CPUState
*cpu
, vaddr addr
);
574 void xtensa_count_regs(const XtensaConfig
*config
,
575 unsigned *n_regs
, unsigned *n_core_regs
);
576 int xtensa_cpu_gdb_read_register(CPUState
*cpu
, GByteArray
*buf
, int reg
);
577 int xtensa_cpu_gdb_write_register(CPUState
*cpu
, uint8_t *buf
, int reg
);
578 void xtensa_cpu_do_unaligned_access(CPUState
*cpu
, vaddr addr
,
579 MMUAccessType access_type
,
580 int mmu_idx
, uintptr_t retaddr
);
582 #define cpu_signal_handler cpu_xtensa_signal_handler
583 #define cpu_list xtensa_cpu_list
585 #define XTENSA_CPU_TYPE_SUFFIX "-" TYPE_XTENSA_CPU
586 #define XTENSA_CPU_TYPE_NAME(model) model XTENSA_CPU_TYPE_SUFFIX
587 #define CPU_RESOLVING_TYPE TYPE_XTENSA_CPU
589 #ifdef TARGET_WORDS_BIGENDIAN
590 #define XTENSA_DEFAULT_CPU_MODEL "fsf"
591 #define XTENSA_DEFAULT_CPU_NOMMU_MODEL "fsf"
593 #define XTENSA_DEFAULT_CPU_MODEL "dc232b"
594 #define XTENSA_DEFAULT_CPU_NOMMU_MODEL "de212"
596 #define XTENSA_DEFAULT_CPU_TYPE \
597 XTENSA_CPU_TYPE_NAME(XTENSA_DEFAULT_CPU_MODEL)
598 #define XTENSA_DEFAULT_CPU_NOMMU_TYPE \
599 XTENSA_CPU_TYPE_NAME(XTENSA_DEFAULT_CPU_NOMMU_MODEL)
601 void xtensa_collect_sr_names(const XtensaConfig
*config
);
602 void xtensa_translate_init(void);
603 void **xtensa_get_regfile_by_name(const char *name
);
604 void xtensa_breakpoint_handler(CPUState
*cs
);
605 void xtensa_register_core(XtensaConfigList
*node
);
606 void xtensa_sim_open_console(Chardev
*chr
);
607 void check_interrupts(CPUXtensaState
*s
);
608 void xtensa_irq_init(CPUXtensaState
*env
);
609 qemu_irq
*xtensa_get_extints(CPUXtensaState
*env
);
610 qemu_irq
xtensa_get_runstall(CPUXtensaState
*env
);
611 int cpu_xtensa_signal_handler(int host_signum
, void *pinfo
, void *puc
);
612 void xtensa_cpu_list(void);
613 void xtensa_sync_window_from_phys(CPUXtensaState
*env
);
614 void xtensa_sync_phys_from_window(CPUXtensaState
*env
);
615 void xtensa_rotate_window(CPUXtensaState
*env
, uint32_t delta
);
616 void xtensa_restore_owb(CPUXtensaState
*env
);
617 void debug_exception_env(CPUXtensaState
*new_env
, uint32_t cause
);
619 static inline void xtensa_select_static_vectors(CPUXtensaState
*env
,
623 env
->static_vectors
= n
;
625 void xtensa_runstall(CPUXtensaState
*env
, bool runstall
);
627 #define XTENSA_OPTION_BIT(opt) (((uint64_t)1) << (opt))
628 #define XTENSA_OPTION_ALL (~(uint64_t)0)
630 static inline bool xtensa_option_bits_enabled(const XtensaConfig
*config
,
633 return (config
->options
& opt
) != 0;
636 static inline bool xtensa_option_enabled(const XtensaConfig
*config
, int opt
)
638 return xtensa_option_bits_enabled(config
, XTENSA_OPTION_BIT(opt
));
641 static inline int xtensa_get_cintlevel(const CPUXtensaState
*env
)
643 int level
= (env
->sregs
[PS
] & PS_INTLEVEL
) >> PS_INTLEVEL_SHIFT
;
644 if ((env
->sregs
[PS
] & PS_EXCM
) && env
->config
->excm_level
> level
) {
645 level
= env
->config
->excm_level
;
650 static inline int xtensa_get_ring(const CPUXtensaState
*env
)
652 if (xtensa_option_bits_enabled(env
->config
,
653 XTENSA_OPTION_BIT(XTENSA_OPTION_MMU
) |
654 XTENSA_OPTION_BIT(XTENSA_OPTION_MPU
))) {
655 return (env
->sregs
[PS
] & PS_RING
) >> PS_RING_SHIFT
;
661 static inline int xtensa_get_cring(const CPUXtensaState
*env
)
663 if (xtensa_option_bits_enabled(env
->config
,
664 XTENSA_OPTION_BIT(XTENSA_OPTION_MMU
) |
665 XTENSA_OPTION_BIT(XTENSA_OPTION_MPU
)) &&
666 (env
->sregs
[PS
] & PS_EXCM
) == 0) {
667 return (env
->sregs
[PS
] & PS_RING
) >> PS_RING_SHIFT
;
673 #ifndef CONFIG_USER_ONLY
674 int xtensa_get_physical_addr(CPUXtensaState
*env
, bool update_tlb
,
675 uint32_t vaddr
, int is_write
, int mmu_idx
,
676 uint32_t *paddr
, uint32_t *page_size
, unsigned *access
);
677 void reset_mmu(CPUXtensaState
*env
);
678 void dump_mmu(CPUXtensaState
*env
);
680 static inline MemoryRegion
*xtensa_get_er_region(CPUXtensaState
*env
)
682 return env
->system_er
;
685 void xtensa_set_abi_call0(void);
686 bool xtensa_abi_call0(void);
689 static inline uint32_t xtensa_replicate_windowstart(CPUXtensaState
*env
)
691 return env
->sregs
[WINDOW_START
] |
692 (env
->sregs
[WINDOW_START
] << env
->config
->nareg
/ 4);
695 /* MMU modes definitions */
696 #define MMU_USER_IDX 3
698 static inline int cpu_mmu_index(CPUXtensaState
*env
, bool ifetch
)
700 return xtensa_get_cring(env
);
703 #define XTENSA_TBFLAG_RING_MASK 0x3
704 #define XTENSA_TBFLAG_EXCM 0x4
705 #define XTENSA_TBFLAG_LITBASE 0x8
706 #define XTENSA_TBFLAG_DEBUG 0x10
707 #define XTENSA_TBFLAG_ICOUNT 0x20
708 #define XTENSA_TBFLAG_CPENABLE_MASK 0x3fc0
709 #define XTENSA_TBFLAG_CPENABLE_SHIFT 6
710 #define XTENSA_TBFLAG_EXCEPTION 0x4000
711 #define XTENSA_TBFLAG_WINDOW_MASK 0x18000
712 #define XTENSA_TBFLAG_WINDOW_SHIFT 15
713 #define XTENSA_TBFLAG_YIELD 0x20000
714 #define XTENSA_TBFLAG_CWOE 0x40000
715 #define XTENSA_TBFLAG_CALLINC_MASK 0x180000
716 #define XTENSA_TBFLAG_CALLINC_SHIFT 19
718 #define XTENSA_CSBASE_LEND_MASK 0x0000ffff
719 #define XTENSA_CSBASE_LEND_SHIFT 0
720 #define XTENSA_CSBASE_LBEG_OFF_MASK 0x00ff0000
721 #define XTENSA_CSBASE_LBEG_OFF_SHIFT 16
723 typedef CPUXtensaState CPUArchState
;
724 typedef XtensaCPU ArchCPU
;
726 #include "exec/cpu-all.h"
728 static inline void cpu_get_tb_cpu_state(CPUXtensaState
*env
, target_ulong
*pc
,
729 target_ulong
*cs_base
, uint32_t *flags
)
731 CPUState
*cs
= env_cpu(env
);
736 *flags
|= xtensa_get_ring(env
);
737 if (env
->sregs
[PS
] & PS_EXCM
) {
738 *flags
|= XTENSA_TBFLAG_EXCM
;
739 } else if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_LOOP
)) {
740 target_ulong lend_dist
=
741 env
->sregs
[LEND
] - (env
->pc
& -(1u << TARGET_PAGE_BITS
));
744 * 0 in the csbase_lend field means that there may not be a loopback
745 * for any instruction that starts inside this page. Any other value
746 * means that an instruction that ends at this offset from the page
747 * start may loop back and will need loopback code to be generated.
749 * lend_dist is 0 when LEND points to the start of the page, but
750 * no instruction that starts inside this page may end at offset 0,
751 * so it's still correct.
753 * When an instruction ends at a page boundary it may only start in
754 * the previous page. lend_dist will be encoded as TARGET_PAGE_SIZE
755 * for the TB that contains this instruction.
757 if (lend_dist
< (1u << TARGET_PAGE_BITS
) + env
->config
->max_insn_size
) {
758 target_ulong lbeg_off
= env
->sregs
[LEND
] - env
->sregs
[LBEG
];
760 *cs_base
= lend_dist
;
761 if (lbeg_off
< 256) {
762 *cs_base
|= lbeg_off
<< XTENSA_CSBASE_LBEG_OFF_SHIFT
;
766 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_EXTENDED_L32R
) &&
767 (env
->sregs
[LITBASE
] & 1)) {
768 *flags
|= XTENSA_TBFLAG_LITBASE
;
770 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_DEBUG
)) {
771 if (xtensa_get_cintlevel(env
) < env
->config
->debug_level
) {
772 *flags
|= XTENSA_TBFLAG_DEBUG
;
774 if (xtensa_get_cintlevel(env
) < env
->sregs
[ICOUNTLEVEL
]) {
775 *flags
|= XTENSA_TBFLAG_ICOUNT
;
778 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_COPROCESSOR
)) {
779 *flags
|= env
->sregs
[CPENABLE
] << XTENSA_TBFLAG_CPENABLE_SHIFT
;
781 if (cs
->singlestep_enabled
&& env
->exception_taken
) {
782 *flags
|= XTENSA_TBFLAG_EXCEPTION
;
784 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_WINDOWED_REGISTER
) &&
785 (env
->sregs
[PS
] & (PS_WOE
| PS_EXCM
)) == PS_WOE
) {
786 uint32_t windowstart
= xtensa_replicate_windowstart(env
) >>
787 (env
->sregs
[WINDOW_BASE
] + 1);
788 uint32_t w
= ctz32(windowstart
| 0x8);
790 *flags
|= (w
<< XTENSA_TBFLAG_WINDOW_SHIFT
) | XTENSA_TBFLAG_CWOE
;
791 *flags
|= extract32(env
->sregs
[PS
], PS_CALLINC_SHIFT
,
792 PS_CALLINC_LEN
) << XTENSA_TBFLAG_CALLINC_SHIFT
;
794 *flags
|= 3 << XTENSA_TBFLAG_WINDOW_SHIFT
;
796 if (env
->yield_needed
) {
797 *flags
|= XTENSA_TBFLAG_YIELD
;