| D | sbi.h | 21 #define SBI_CALL(which, arg0, arg1, arg2, arg3) ({		\  argument 26 	register uintptr_t a7 asm ("a7") = (uintptr_t)(which);	\ 35 #define SBI_CALL_0(which) SBI_CALL(which, 0, 0, 0, 0)  argument 36 #define SBI_CALL_1(which, arg0) SBI_CALL(which, arg0, 0, 0, 0)  argument 37 #define SBI_CALL_2(which, arg0, arg1) SBI_CALL(which, arg0, arg1, 0, 0)  argument 38 #define SBI_CALL_3(which, arg0, arg1, arg2) \  argument 39 		SBI_CALL(which, arg0, arg1, arg2, 0) 40 #define SBI_CALL_4(which, arg0, arg1, arg2, arg3) \  argument 41 		SBI_CALL(which, arg0, arg1, arg2, arg3)
  |