1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  | /* SPDX-License-Identifier: GPL-2.0 */ 
 |  /* 
 |   * These are in machine order; things rely on that. 
 |   */ 
 |  #ifdef CONFIG_64BIT 
 |  GEN(rax) 
 |  GEN(rcx) 
 |  GEN(rdx) 
 |  GEN(rbx) 
 |  GEN(rsp) 
 |  GEN(rbp) 
 |  GEN(rsi) 
 |  GEN(rdi) 
 |  GEN(r8) 
 |  GEN(r9) 
 |  GEN(r10) 
 |  GEN(r11) 
 |  GEN(r12) 
 |  GEN(r13) 
 |  GEN(r14) 
 |  GEN(r15) 
 |  #else 
 |  GEN(eax) 
 |  GEN(ecx) 
 |  GEN(edx) 
 |  GEN(ebx) 
 |  GEN(esp) 
 |  GEN(ebp) 
 |  GEN(esi) 
 |  GEN(edi) 
 |  #endif 
 |  
  |