Home
last modified time | relevance | path

Searched refs:WSBITS (Results 1 – 5 of 5) sorted by relevance

/linux-4.1.27/arch/xtensa/kernel/
Dptrace.c106 rotws = (((ws | (ws << WSBITS)) >> wb) & in ptrace_setregs()
107 ((1 << WSBITS) - 1)) & ~1; in ptrace_setregs()
108 wmask = ((rotws ? WSBITS + 1 - ffs(rotws) : 0) << 4) | in ptrace_setregs()
120 (WSBITS - wb) * 16)) in ptrace_setregs()
213 tmp = ((ws>>wb) | (ws<<(WSBITS-wb))) & ((1<<WSBITS)-1); in ptrace_peekusr()
Dentry.S51 nsau \bit, \mask # 32-WSBITS ... 31 (32 iff 0)
52 addi \bit, \bit, WSBITS - 32 + 1 # uppest bit set -> return 1
54 movi \bit, WSBITS
55 #if WSBITS > 16
60 #if WSBITS > 8
143 slli a2, a3, 32-WSBITS
145 srli a2, a2, 32-WSBITS
1119 slli a0, a3, WSBITS
1125 extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww
1126 movi a0, (1 << (WSBITS-1))
[all …]
Dprocess.c329 ws = ((ws >> wb) | (ws << (WSBITS - wb))) & ((1 << WSBITS) - 1); in xtensa_elf_core_copy_regs()
/linux-4.1.27/arch/xtensa/oprofile/
Dbacktrace.c56 windowstart = (windowstart << WSBITS | windowstart) >> windowbase; in xtensa_backtrace_user()
61 for (index = WSBITS - 1; (index > 0) && depth; depth--, index--) in xtensa_backtrace_user()
/linux-4.1.27/arch/xtensa/include/asm/
Dprocessor.h76 #define WSBITS (XCHAL_NUM_AREGS / 4) /* width of WINDOWSTART in bits */ macro