2 * include/asm-xtensa/asmmacro.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2005 Tensilica Inc.
11 #ifndef _XTENSA_ASMMACRO_H
12 #define _XTENSA_ASMMACRO_H
14 #include <asm/variant/core.h>
17 * Some little helpers for loops. Use zero-overhead-loops
18 * where applicable and if supported by the processor.
20 * __loopi ar, at, size, inc
21 * ar register initialized with the start address
22 * at scratch register used by macro
23 * size size immediate value
26 * __loops ar, as, at, inc_log2[, mask_log2][, cond][, ncond]
27 * ar register initialized with the start address
28 * as register initialized with the size
29 * at scratch register use by macro
30 * inc_log2 increment [in log2]
31 * mask_log2 mask [in log2]
32 * cond true condition (used in loop'cond')
33 * ncond false condition (used in b'ncond')
36 * restart loop. 'as' register must not have been modified!
38 * __endla ar, at, incr
39 * ar start address (modified)
40 * as scratch register used by macro
45 * loop for given size as immediate
48 .macro __loopi ar, at, size, incr
51 movi \at, ((\size + \incr - 1) / (\incr))
61 * loop for given size in register
64 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond
68 addi \at, \as, (1 << \incr_log2) - 1
70 extui \at, \at, \incr_log2, \mask_log2
72 srli \at, \at, \incr_log2
78 extui \at, \as, \incr_log2, \mask_log2
81 srli \at, \as, \incr_log2
89 slli \at, \at, \incr_log2
103 .macro __loopt ar, as, at, incr_log2
108 addi \at, \at, (1 << \incr_log2) - 1
109 srli \at, \at, \incr_log2
119 * restart loop. registers must be unchanged
133 * end of loop with no increment of the address.
137 #if !XCHAL_HAVE_LOOPS
144 * end of loop with increment of the address.
147 .macro __endla ar, as, incr
153 #endif /* _XTENSA_ASMMACRO_H */