Turn while loop into do-while, we know it will be executed at least once.
[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(const char *reg_map[])
43 {
44         memset(reg_map, 0, sizeof(reg_map[0]) * N_ia32_gp_REGS);
45         reg_map[REG_GP_EAX] = "ax";
46         reg_map[REG_GP_EBX] = "bx";
47         reg_map[REG_GP_ECX] = "cx";
48         reg_map[REG_GP_EDX] = "dx";
49         reg_map[REG_GP_ESI] = "si";
50         reg_map[REG_GP_EDI] = "di";
51         reg_map[REG_GP_EBP] = "bp";
52         reg_map[REG_GP_ESP] = "sp";
53 }
54
55 void ia32_build_8bit_reg_map(const char *reg_map[])
56 {
57         memset(reg_map, 0, sizeof(reg_map[0]) * N_ia32_gp_REGS);
58         reg_map[REG_GP_EAX] = "al";
59         reg_map[REG_GP_EBX] = "bl";
60         reg_map[REG_GP_ECX] = "cl";
61         reg_map[REG_GP_EDX] = "dl";
62 }
63
64 void ia32_build_8bit_reg_map_high(const char *reg_map[])
65 {
66         memset(reg_map, 0, sizeof(reg_map[0]) * N_ia32_gp_REGS);
67         reg_map[REG_GP_EAX], "ah";
68         reg_map[REG_GP_EBX], "bh";
69         reg_map[REG_GP_ECX], "ch";
70         reg_map[REG_GP_EDX], "dh";
71 }
72
73 const char *ia32_get_mapped_reg_name(const char *reg_map[], const arch_register_t *reg)
74 {
75         const char *name = reg_map[reg->index];
76         assert(reg->reg_class->index == CLASS_ia32_gp);
77
78         //assert(name && "missing map init?");
79         if (! name) {
80                 printf("FIXME: ia32map_regs.c:122: returning fake register name for ia32 with 32 register\n");
81                 return reg->name;
82         }
83
84         return name;
85 }