Lines Matching refs:_op
109 #define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
110 static inline void tlbi##_op(void) \
116 #define _DEFINE_BPIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
117 static inline void bpi##_op(void) \
123 #define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
124 static inline void tlbi##_op(u_register_t v) \
130 #define DEFINE_TLBIOP_FUNC(_op, ...) \ argument
131 _DEFINE_TLBIOP_FUNC(_op, __VA_ARGS__)
134 #define DEFINE_TLBIOP_PARAM_FUNC(_op, ...) \ argument
135 _DEFINE_TLBIOP_PARAM_FUNC(_op, __VA_ARGS__)
138 #define DEFINE_BPIOP_FUNC(_op, ...) \ argument
139 _DEFINE_BPIOP_FUNC(_op, __VA_ARGS__)
144 #define _DEFINE_DCOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
145 static inline void dc##_op(u_register_t v) \
151 #define DEFINE_DCOP_PARAM_FUNC(_op, ...) \ argument
152 _DEFINE_DCOP_PARAM_FUNC(_op, __VA_ARGS__)
158 #define DEFINE_SYSOP_FUNC(_op) \ argument
159 static inline void _op(void) \
161 __asm__ (#_op); \
166 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ argument
167 static inline void _op ## _type(void) \
169 __asm__ (#_op " " #_type : : : "memory"); \
173 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ argument
174 static inline void _op ## _type(u_register_t v) \
176 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \