Lines Matching refs:feature
122 #define ALTINSTR_ENTRY(feature, num) \ argument
125 " .word " __stringify(feature) "\n" /* feature bit */ \
130 #define ALTINSTR_REPLACEMENT(newinstr, feature, num) /* replacement */ \ argument
134 #define ALTERNATIVE(oldinstr, newinstr, feature) \ argument
137 ALTINSTR_ENTRY(feature, 1) \
140 ALTINSTR_REPLACEMENT(newinstr, feature, 1) \
172 #define alternative(oldinstr, newinstr, feature) \ argument
173 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory")
189 #define alternative_input(oldinstr, newinstr, feature, input...) \ argument
190 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
208 #define alternative_io(oldinstr, newinstr, feature, output, input...) \ argument
209 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
213 #define alternative_call(oldfunc, newfunc, feature, output, input...) \ argument
214 asm volatile (ALTERNATIVE("call %P[old]", "call %P[new]", feature) \