Home
last modified time | relevance | path

Searched refs:stringify_in_c (Results 1 – 17 of 17) sorted by relevance

/Linux-v4.19/tools/testing/selftests/powerpc/primitives/asm/
Dasm-compat.h11 #define PPC_LL stringify_in_c(ld)
12 #define PPC_STL stringify_in_c(std)
13 #define PPC_STLU stringify_in_c(stdu)
14 #define PPC_LCMPI stringify_in_c(cmpdi)
15 #define PPC_LCMPLI stringify_in_c(cmpldi)
16 #define PPC_LCMP stringify_in_c(cmpd)
17 #define PPC_LONG stringify_in_c(.8byte)
18 #define PPC_LONG_ALIGN stringify_in_c(.balign 8)
19 #define PPC_TLNEI stringify_in_c(tdnei)
21 #define PPC_STLCX stringify_in_c(stdcx.)
[all …]
Dfeature-fixups.h155 stringify_in_c(BEGIN_FTR_SECTION) \
157 stringify_in_c(FTR_SECTION_ELSE) \
159 stringify_in_c(ALT_FTR_SECTION_END((msk), (val)))
168 stringify_in_c(BEGIN_MMU_FTR_SECTION) \
170 stringify_in_c(MMU_FTR_SECTION_ELSE) \
172 stringify_in_c(ALT_MMU_FTR_SECTION_END((msk), (val)))
Dasm-const.h5 # define stringify_in_c(...) __VA_ARGS__ macro
10 # define stringify_in_c(...) __stringify_in_c(__VA_ARGS__) " " macro
Dppc_asm.h818 stringify_in_c(.section __ex_table,"a";)\
819 stringify_in_c(.balign 4;) \
820 stringify_in_c(.long (_fault) - . ;) \
821 stringify_in_c(.long (_target) - . ;) \
822 stringify_in_c(.previous)
/Linux-v4.19/arch/powerpc/include/asm/
Dasm-compat.h11 #define PPC_LL stringify_in_c(ld)
12 #define PPC_STL stringify_in_c(std)
13 #define PPC_STLU stringify_in_c(stdu)
14 #define PPC_LCMPI stringify_in_c(cmpdi)
15 #define PPC_LCMPLI stringify_in_c(cmpldi)
16 #define PPC_LCMP stringify_in_c(cmpd)
17 #define PPC_LONG stringify_in_c(.8byte)
18 #define PPC_LONG_ALIGN stringify_in_c(.balign 8)
19 #define PPC_TLNEI stringify_in_c(tdnei)
21 #define PPC_STLCX stringify_in_c(stdcx.)
[all …]
Dppc-opcode.h414 #define PPC_CP_ABORT stringify_in_c(.long PPC_INST_CP_ABORT)
415 #define PPC_COPY(a, b) stringify_in_c(.long PPC_INST_COPY | \
417 #define PPC_DARN(t, l) stringify_in_c(.long PPC_INST_DARN | \
420 #define PPC_DCBAL(a, b) stringify_in_c(.long PPC_INST_DCBAL | \
422 #define PPC_DCBZL(a, b) stringify_in_c(.long PPC_INST_DCBZL | \
424 #define PPC_LQARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LQARX | \
427 #define PPC_LDARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LDARX | \
430 #define PPC_LWARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LWARX | \
433 #define PPC_STQCX(t, a, b) stringify_in_c(.long PPC_INST_STQCX | \
436 #define PPC_MSGSND(b) stringify_in_c(.long PPC_INST_MSGSND | \
[all …]
Dsynch.h41 #define PPC_ACQUIRE_BARRIER "\n" stringify_in_c(__PPC_ACQUIRE_BARRIER)
42 #define PPC_RELEASE_BARRIER stringify_in_c(LWSYNC) "\n"
43 #define PPC_ATOMIC_ENTRY_BARRIER "\n" stringify_in_c(sync) "\n"
44 #define PPC_ATOMIC_EXIT_BARRIER "\n" stringify_in_c(sync) "\n"
Dbarrier.h47 #define __lwsync() __asm__ __volatile__ (stringify_in_c(LWSYNC) : : :"memory")
49 #define dma_wmb() __asm__ __volatile__ (stringify_in_c(SMPWMB) : : :"memory")
55 #define __smp_wmb() __asm__ __volatile__ (stringify_in_c(SMPWMB) : : :"memory")
95 #define barrier_nospec() asm (stringify_in_c(barrier_nospec_asm) ::: "memory")
Dfeature-fixups.h155 stringify_in_c(BEGIN_FTR_SECTION) \
157 stringify_in_c(FTR_SECTION_ELSE) \
159 stringify_in_c(ALT_FTR_SECTION_END((msk), (val)))
168 stringify_in_c(BEGIN_MMU_FTR_SECTION) \
170 stringify_in_c(MMU_FTR_SECTION_ELSE) \
172 stringify_in_c(ALT_MMU_FTR_SECTION_END((msk), (val)))
Dasm-405.h11 #define PPC405_ERR77(ra,rb) stringify_in_c(dcbt ra, rb;)
12 #define PPC405_ERR77_SYNC stringify_in_c(sync;)
Dasm-const.h5 # define stringify_in_c(...) __VA_ARGS__ macro
10 # define stringify_in_c(...) __stringify_in_c(__VA_ARGS__) " " macro
Dthread_info.h21 #define CURRENT_THREAD_INFO(dest, sp) stringify_in_c(clrrdi dest, sp, THREAD_SHIFT)
23 #define CURRENT_THREAD_INFO(dest, sp) stringify_in_c(rlwinm dest, sp, 0, 0, 31-THREAD_SHIFT)
Dbitops.h79 stringify_in_c(op) "%0,%0,%2\n" \
125 stringify_in_c(op) "%1,%0,%2\n" \
Djump_label.h19 #define JUMP_ENTRY_TYPE stringify_in_c(FTR_ENTRY_LONG)
Dppc_asm.h818 stringify_in_c(.section __ex_table,"a";)\
819 stringify_in_c(.balign 4;) \
820 stringify_in_c(.long (_fault) - . ;) \
821 stringify_in_c(.long (_target) - . ;) \
822 stringify_in_c(.previous)
/Linux-v4.19/tools/testing/selftests/powerpc/stringloops/asm/
Dppc-opcode.h16 # define stringify_in_c(...) __VA_ARGS__ macro
31 #define VCMPEQUD_RC(vrt, vra, vrb) stringify_in_c(.long PPC_INST_VCMPEQUD_RC | \
35 #define VCMPEQUB_RC(vrt, vra, vrb) stringify_in_c(.long PPC_INST_VCMPEQUB_RC | \
/Linux-v4.19/arch/microblaze/include/asm/
Dasm-compat.h8 # define stringify_in_c(...) __VA_ARGS__ macro
13 # define stringify_in_c(...) __stringify_in_c(__VA_ARGS__) " " macro