Lines Matching refs:feature
124 #define ALTINSTR_ENTRY(feature, num) \ argument
127 " .word " __stringify(feature) "\n" /* feature bit */ \
132 #define ALTINSTR_REPLACEMENT(newinstr, feature, num) /* replacement */ \ argument
136 #define ALTERNATIVE(oldinstr, newinstr, feature) \ argument
139 ALTINSTR_ENTRY(feature, 1) \
142 ALTINSTR_REPLACEMENT(newinstr, feature, 1) \
168 #define alternative(oldinstr, newinstr, feature) \ argument
169 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory")
185 #define alternative_input(oldinstr, newinstr, feature, input...) \ argument
186 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
204 #define alternative_io(oldinstr, newinstr, feature, output, input...) \ argument
205 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
209 #define alternative_call(oldfunc, newfunc, feature, output, input...) \ argument
210 asm volatile (ALTERNATIVE("call %P[old]", "call %P[new]", feature) \