Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define correctly variables for windows.
[simgrid.git] / src / gras / DataDesc / ddt_convert.c
1 /* ddt_remote - Stuff needed to get datadescs about remote hosts            */
2
3 /* Copyright (c) 2004, 2005, 2006, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 /************************************************************************/
10 /* C combines the power of assembler with the portability of assembler. */
11 /************************************************************************/
12
13 #include "gras/DataDesc/datadesc_private.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_ddt_convert, gras_ddt,
16                                 "Inter-architecture convertions");
17
18 /***
19  *** Table of all known architectures:
20  ***
21   l_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/8:) gras_arch=0; gras_arch_name=little32;;
22   l_C:1/1:_I:2/2:4/4:4/4:8/4:_P:4/4:4/4:_D:4/4:8/4:) gras_arch=1; gras_arch_name=little32_4;;
23
24   l_C:1/1:_I:2/2:4/4:8/8:8/8:_P:8/8:8/8:_D:4/4:8/8:) gras_arch=2; gras_arch_name=little64;;
25
26   B_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/8:) gras_arch=3; gras_arch_name=big32;;
27   B_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/4:) gras_arch=4; gras_arch_name=big32_8_4;;
28   B_C:1/1:_I:2/2:4/4:4/4:8/4:_P:4/4:4/4:_D:4/4:8/4:) gras_arch=5; gras_arch_name=big32_4;;
29   B_C:1/1:_I:2/2:4/2:4/2:8/2:_P:4/2:4/2:_D:4/2:8/2:) gras_arch=6; gras_arch_name=big32_2;;
30
31   B_C:1/1:_I:2/2:4/4:8/8:8/8:_P:8/8:8/8:_D:4/4:8/8:) gras_arch=7; gras_arch_name=big64;;
32
33  ***/
34
35 const gras_arch_desc_t gras_arches[gras_arch_count] = {
36
37   {"little32_1", 0, {1, 2, 4, 4, 8, 4, 4, 4, 8},        /* little endian, 1 byte alignement (win32) */
38    {1, 1, 1, 1, 1, 1, 1, 1, 1}},
39
40   {"little32_2", 0, {1, 2, 4, 4, 8, 4, 4, 4, 8},        /* little endian, 2 bytes alignements (win32) */
41    {1, 2, 2, 2, 2, 2, 2, 2, 2}},
42
43   {"little32_4", 0, {1, 2, 4, 4, 8, 4, 4, 4, 8},        /* little endian, 4 bytes alignements (win32 and linux x86) */
44    {1, 2, 4, 4, 4, 4, 4, 4, 4}},
45
46   {"little32_8", 0, {1, 2, 4, 4, 8, 4, 4, 4, 8},        /* little endian, 8 bytes alignement (win32) */
47    {1, 2, 4, 4, 8, 4, 4, 4, 8}},
48
49   {"little64", 0, {1, 2, 4, 8, 8, 8, 8, 4, 8},  /* alpha, ia64 */
50    {1, 2, 4, 8, 8, 8, 8, 4, 8}},
51
52   {"big32_8", 1, {1, 2, 4, 4, 8, 4, 4, 4, 8},
53    {1, 2, 4, 4, 8, 4, 4, 4, 8}},
54
55   {"big32_8_4", 1, {1, 2, 4, 4, 8, 4, 4, 4, 8}, /* AIX */
56    {1, 2, 4, 4, 8, 4, 4, 4, 4}},
57
58   {"big32_4", 1, {1, 2, 4, 4, 8, 4, 4, 4, 8},   /* G5 */
59    {1, 2, 4, 4, 4, 4, 4, 4, 4}},
60
61   {"big32_2", 1, {1, 2, 4, 4, 8, 4, 4, 4, 8},   /* ARM */
62    {1, 2, 2, 2, 2, 2, 2, 2, 2}},
63
64   {"big64", 1, {1, 2, 4, 8, 8, 8, 8, 4, 8},     /* sparc */
65    {1, 2, 4, 8, 8, 8, 8, 4, 8}},
66
67   {"big64_8_4", 1, {1, 2, 4, 8, 8, 8, 8, 4, 8}, /* aix with -maix64 */
68    {1, 2, 4, 8, 8, 8, 8, 4, 4}}
69 };
70
71 const char *gras_datadesc_arch_name(int code)
72 {
73   if (code < 0 || code >= gras_arch_count)
74     return "[unknown arch]";
75   return gras_arches[code].name;
76 }
77
78
79 /**
80  * Local function doing the grunt work
81  */
82 static void gras_dd_reverse_bytes(void *to, const void *from, size_t length);
83
84 /**
85  * gras_dd_convert_elm:
86  *
87  * Convert the element described by @type comming from architecture @r_arch.
88  * The data to be converted is stored in @src, and is to be stored in @dst.
89  * Both pointers may be the same location if no resizing is needed.
90  */
91 void
92 gras_dd_convert_elm(gras_datadesc_type_t type, int count,
93                     int r_arch, void *src, void *dst)
94 {
95   gras_dd_cat_scalar_t scal = type->category.scalar_data;
96   int cpt;
97   const void *r_data;
98   void *l_data;
99   unsigned long r_size, l_size;
100   /* Hexadecimal displayer
101      union {
102      char c[sizeof(int)];
103      int i;
104      } tester;
105    */
106
107   xbt_assert(type->category_code == e_gras_datadesc_type_cat_scalar);
108   xbt_assert(r_arch != GRAS_THISARCH);
109
110   r_size = type->size[r_arch];
111   l_size = type->size[GRAS_THISARCH];
112   DEBUG4("r_size=%lu l_size=%lu,    src=%p dst=%p", r_size, l_size, src, dst);
113
114   DEBUG2("remote=%c local=%c", gras_arches[r_arch].endian ? 'B' : 'l',
115          gras_arches[GRAS_THISARCH].endian ? 'B' : 'l');
116
117   if (r_size != l_size) {
118     for (cpt = 0, r_data = src, l_data = dst;
119          cpt < count;
120          cpt++,
121          r_data = (char *) r_data + r_size,
122          l_data = (char *) l_data + l_size) {
123
124       /*
125          fprintf(stderr,"r_data=");
126          for (cpt=0; cpt<r_size; cpt++) {
127          tester.i=0;
128          tester.c[0]= ((char*)r_data)[cpt];
129          fprintf(stderr,"\\%02x", tester.i);
130          }
131          fprintf(stderr,"\n");
132        */
133
134       /* Resize that damn integer, pal */
135
136       unsigned char *l_sign, *r_sign;
137       int padding;
138       int sizeChange = l_size - r_size;
139       int lowOrderFirst = !gras_arches[r_arch].endian ||
140         gras_arches[r_arch].endian == gras_arches[GRAS_THISARCH].endian;
141
142       DEBUG5("Resize integer %d from %lu @%p to %lu @%p",
143              cpt, r_size, r_data, l_size, l_data);
144       xbt_assert0(r_data != l_data, "Impossible to resize in place");
145
146       if (sizeChange < 0) {
147         DEBUG3("Truncate %d bytes (%s,%s)", -sizeChange,
148                lowOrderFirst ? "lowOrderFirst" : "bigOrderFirst",
149                scal.encoding ==
150                e_gras_dd_scalar_encoding_sint ? "signed" : "unsigned");
151         /* Truncate high-order bytes. */
152         memcpy(l_data,
153                gras_arches[r_arch].endian ? ((char *) r_data - sizeChange)
154                : r_data, l_size);
155
156         if (scal.encoding == e_gras_dd_scalar_encoding_sint) {
157           DEBUG0("This is signed");
158           /* Make sure the high order bit of r_data and l_data are the same */
159           l_sign = gras_arches[GRAS_THISARCH].endian
160             ? ((unsigned char *) l_data + l_size - 1)
161             : (unsigned char *) l_data;
162           r_sign = gras_arches[r_arch].endian
163             ? ((unsigned char *) r_data + r_size - 1)
164             : (unsigned char *) r_data;
165           DEBUG2("This is signed (r_sign=%c l_sign=%c", *r_sign, *l_sign);
166
167           if ((*r_sign > 127) != (*l_sign > 127)) {
168             if (*r_sign > 127)
169               *l_sign += 128;
170             else
171               *l_sign -= 128;
172           }
173         }
174       } else {
175         DEBUG1("Extend %d bytes", sizeChange);
176         if (scal.encoding != e_gras_dd_scalar_encoding_sint) {
177           DEBUG0("This is signed");
178           padding = 0;          /* pad unsigned with 0 */
179         } else {
180           /* extend sign */
181           r_sign =
182             gras_arches[r_arch].endian ? ((unsigned char *) r_data + r_size -
183                                           1)
184             : (unsigned char *) r_data;
185           padding = (*r_sign > 127) ? 0xff : 0;
186         }
187
188         memset(l_data, padding, l_size);
189         memcpy(!gras_arches[r_arch].endian ? l_data
190                : ((char *) l_data + sizeChange), r_data, r_size);
191
192         /*
193            fprintf(stderr,"r_data=");
194            for (cpt=0; cpt<r_size; cpt++) {
195            tester.i=0;
196            tester.c[0] = ((char*)r_data)[cpt];
197            fprintf(stderr,"\\%02x", tester.i);
198            }
199            fprintf(stderr,"\n");
200
201            fprintf(stderr,"l_data=");
202            for (cpt=0; cpt<l_size; cpt++) {
203            tester.i=0;
204            tester.c[0]= ((char*)l_data)[cpt];
205            fprintf(stderr,"\\%02x", tester.i);
206            } fprintf(stderr,"\n");
207          */
208       }
209     }
210   }
211
212   /* flip bytes if needed */
213   if (gras_arches[r_arch].endian != gras_arches[GRAS_THISARCH].endian &&
214       (l_size * count) > 1) {
215
216     for (cpt = 0, r_data = dst, l_data = dst; cpt < count; cpt++, r_data = (char *) r_data + l_size,    /* resizing already done */
217          l_data = (char *) l_data + l_size) {
218
219       DEBUG1("Flip elm %d", cpt);
220       gras_dd_reverse_bytes(l_data, r_data, l_size);
221     }
222   }
223
224 }
225
226 static void gras_dd_reverse_bytes(void *to, const void *from, size_t length)
227 {
228
229   char charBegin;
230   const char *fromBegin;
231   const char *fromEnd;
232   char *toBegin;
233   char *toEnd;
234
235   for (fromBegin = (const char *) from,
236        fromEnd = fromBegin + length - 1,
237        toBegin = (char *) to,
238        toEnd = toBegin + length - 1;
239        fromBegin <= fromEnd; fromBegin++, fromEnd--, toBegin++, toEnd--) {
240
241     charBegin = *fromBegin;
242     *toBegin = *fromEnd;
243     *toEnd = charBegin;
244   }
245 }
246
247
248 /**
249  * gras_arch_selfid:
250  *
251  * returns the ID of the architecture the process is running on
252  */
253 int gras_arch_selfid(void)
254 {
255   return GRAS_THISARCH;
256 }