Lines Matching refs:more
26 #define REG(opc, more...) \ argument
27 { { (opc) | 0 }, more }, /* %?ax */ \
28 { { (opc) | 1 }, more }, /* %?cx */ \
29 { { (opc) | 2 }, more }, /* %?dx */ \
30 { { (opc) | 3 }, more }, /* %?bx */ \
31 { { (opc) | 4 }, more }, /* %?sp */ \
32 { { (opc) | 5 }, more }, /* %?bp */ \
33 { { (opc) | 6 }, more }, /* %?si */ \
34 { { (opc) | 7 }, more } /* %?di */
35 #define CND(opc, more...) \ argument
36 { { (opc) | 0x0 }, more }, /* ..o */ \
37 { { (opc) | 0x1 }, more }, /* ..no */ \
38 { { (opc) | 0x2 }, more }, /* ..c / ..b */ \
39 { { (opc) | 0x3 }, more }, /* ..nc / ..nb */ \
40 { { (opc) | 0x4 }, more }, /* ..z / ..e */ \
41 { { (opc) | 0x5 }, more }, /* ..nz / ..ne */ \
42 { { (opc) | 0x6 }, more }, /* ..be / ..na */ \
43 { { (opc) | 0x7 }, more }, /* ..a / ..nbe */ \
44 { { (opc) | 0x8 }, more }, /* ..s */ \
45 { { (opc) | 0x9 }, more }, /* ..ns */ \
46 { { (opc) | 0xa }, more }, /* ..pe / ..p */ \
47 { { (opc) | 0xb }, more }, /* ..po / ..np */ \
48 { { (opc) | 0xc }, more }, /* ..l / ..nge */ \
49 { { (opc) | 0xd }, more }, /* ..ge / ..nl */ \
50 { { (opc) | 0xe }, more }, /* ..le / ..ng */ \
51 { { (opc) | 0xf }, more } /* ..g / .. nle */