Lines Matching refs:feature
116 #define ALTINSTR_ENTRY(feature, num) \ argument
119 " .word " __stringify(feature) "\n" /* feature bit */ \
124 #define ALTINSTR_REPLACEMENT(newinstr, feature, num) /* replacement */ \ argument
128 #define ALTERNATIVE(oldinstr, newinstr, feature) \ argument
131 ALTINSTR_ENTRY(feature, 1) \
134 ALTINSTR_REPLACEMENT(newinstr, feature, 1) \
166 #define alternative(oldinstr, newinstr, feature) \ argument
167 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory")
183 #define alternative_input(oldinstr, newinstr, feature, input...) \ argument
184 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
202 #define alternative_io(oldinstr, newinstr, feature, output, input...) \ argument
203 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
207 #define alternative_call(oldfunc, newfunc, feature, output, input...) \ argument
208 asm volatile (ALTERNATIVE("call %P[old]", "call %P[new]", feature) \