change backends to produce 1 big array with all registers
[libfirm] / ir / be / ia32 / ia32_map_regs.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Register param constraints and some other register handling tools.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include <stdlib.h>
29
30 #include "pmap.h"
31 #include "error.h"
32
33 #include "ia32_map_regs.h"
34 #include "ia32_new_nodes.h"
35 #include "ia32_architecture.h"
36 #include "gen_ia32_regalloc_if.h"
37 #include "bearch_ia32_t.h"
38
39 /* this is the order of the assigned registers used for parameter passing */
40
41
42 void ia32_build_16bit_reg_map(pmap *reg_map)
43 {
44         pmap_insert(reg_map, &ia32_registers[REG_EAX], "ax");
45         pmap_insert(reg_map, &ia32_registers[REG_EBX], "bx");
46         pmap_insert(reg_map, &ia32_registers[REG_ECX], "cx");
47         pmap_insert(reg_map, &ia32_registers[REG_EDX], "dx");
48         pmap_insert(reg_map, &ia32_registers[REG_ESI], "si");
49         pmap_insert(reg_map, &ia32_registers[REG_EDI], "di");
50         pmap_insert(reg_map, &ia32_registers[REG_EBP], "bp");
51         pmap_insert(reg_map, &ia32_registers[REG_ESP], "sp");
52 }
53
54 void ia32_build_8bit_reg_map(pmap *reg_map)
55 {
56         pmap_insert(reg_map, &ia32_registers[REG_EAX], "al");
57         pmap_insert(reg_map, &ia32_registers[REG_EBX], "bl");
58         pmap_insert(reg_map, &ia32_registers[REG_ECX], "cl");
59         pmap_insert(reg_map, &ia32_registers[REG_EDX], "dl");
60 }
61
62 void ia32_build_8bit_reg_map_high(pmap *reg_map)
63 {
64         pmap_insert(reg_map, &ia32_registers[REG_EAX], "ah");
65         pmap_insert(reg_map, &ia32_registers[REG_EBX], "bh");
66         pmap_insert(reg_map, &ia32_registers[REG_ECX], "ch");
67         pmap_insert(reg_map, &ia32_registers[REG_EDX], "dh");
68 }
69
70 const char *ia32_get_mapped_reg_name(pmap *reg_map, const arch_register_t *reg)
71 {
72         pmap_entry *e = pmap_find(reg_map, (void *)reg);
73
74         //assert(e && "missing map init?");
75         if (! e) {
76                 printf("FIXME: ia32map_regs.c:122: returning fake register name for ia32 with 32 register\n");
77                 return reg->name;
78         }
79
80         return e->value;
81 }