summaryrefslogtreecommitdiff
path: root/src/format/mangling/itanium_gram.y
blob: 4fa7bcbbb5fef52d36b85c5d47fc6b8222b26fe5 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518

%{


#include <malloc.h>
#include <stdio.h>
#include <string.h>


#include "demangler-int.h"
#include "itanium.h"
#include "../../common/extstr.h"



/**
 * cf. http://www.codesourcery.com/cxx-abi/abi.html#mangling
 */


/* Taille du bond pour les allocations */
#define ITANIUM_ALLOC_CLUSTER   10



/* Décodeur de nom d'éléments selon la définition Intel */
typedef struct _itanium_demangler
{
    name_demangler common;                  /* A laisser en premier        */

    char *identifier;                       /* Identifiant en construction */
    size_t id_allocated;                    /* Taille allouée en mémoire   */
    size_t id_used;                         /* Longueur de la chaîne       */

} itanium_demangler;


/* Indique si une chaîne peut être traitée par le décodeur. */
bool can_be_itanium_demangled(itanium_demangler *, const char *);

/* Procède au décodage d'une chaîne de caractères. */
GBinRoutine *demangle_itanium_routine(itanium_demangler *, const char *);



/* Réinitialise le constructeur d'identifiants. */
void reset_itanium_identifier_building(itanium_demangler *);

/* Construit à la volée un identifiant. */
void build_itanium_identifier(itanium_demangler *, char);




/* Borne la longueur d'une chaîne à lire. */
extern void set_itanium_text_length(unsigned int);





char *strmerge(char *str1, const char *sep, char *str2);
 char *strmerge(char *str1, const char *sep, char *str2)
{
    char *result;

    if (str1 == NULL) result = str2;
    else if (str2 == NULL) result = str1;
    else
    {
        result = (char *)calloc(strlen(str1) + strlen(sep) + strlen(str2) + 1, sizeof(char));

        strcpy(result, str1);
        strcat(result, sep);
        strcat(result, str2);

        free(str1);
        free(str2);

    }

    return result;

}



%}


%union {

    char car;
	char *text;
    unsigned int val;
	short/*s16_t*/ s16_val;

    void/*simple_variable*/ *simple;
    void/*complex_variable*/ *complex;
    void/*variable*/ *var;

    int/*VariableQualifier*/ qual;

}

%parse-param { itanium_demangler *demangler }
%parse-param { GBinRoutine *routine }


%token ITANIUM_SIGNATURE

%token EE NN II

%token C1 C2 C3 D1 D2 D3

%token V W B C A H S T I J L M X Y N O F D E G Z DD DE DF DH DI DS U

%token TP TR TO TC TG

%token QR QV QK

%token ST SA SB SS SI SO SD


%token NUMBER CHAR









%token LPART MPART RPART


%token POSITION POSITION_ABS IMAGE

%token RECT

%token O_BRACKET C_BRACKET

%token PATH
%token DEC_16

%token TEXT


%type <text> TEXT PATH

%type <s16_val> DEC_16




%type <text> name unscoped_name unscoped_template_name nested_name
%type <text> unqualified_name
%type <text> prefix source_name


%type <var> type

%type <qual> qualifiers

%type <simple> builtin_type

%type <complex> class_enum_type


%type <text> template_args template_arg_list template_arg
%type <text> substitution


%type <car> CHAR
%type <val> NUMBER


%{

/* De lexi.c... */
/*int yylex(YYSTYPE *, YYLTYPE *);*/
void yyrestart(FILE *);
typedef struct yy_buffer_state *YY_BUFFER_STATE;
extern YY_BUFFER_STATE yy_scan_string(const char *);
extern void yy_delete_buffer(YY_BUFFER_STATE);


/* Affiche un message d'erreur concernant l'analyse. */
/*int yyerror(const YYLTYPE *, bool, char **, unsigned char *, char *);*/

%}


%%


input:
	ITANIUM_SIGNATURE encoding
	;

encoding:
    name bare_function_type
    ;




name:
    nested_name                     { $$ = $1; g_binary_routine_set_name(routine, $1); }
    | unscoped_name                 { $$ = $1; /*g_binary_routine_set_name(routine, $1);*/ }
    | unscoped_template_name template_args  { $$ = stradd($1, $2); /* TODO : merge -> free */ }
    ;

unscoped_name:
    unqualified_name                { $$ = $1; }
    | ST unqualified_name           { $$ = strprep($2, "std::"); }
    ;

unscoped_template_name:
    unscoped_name                   { $$ = $1; }
    | substitution                  { $$ = $1; }
    ;



nested_name:
    NN prefix unqualified_name EE   { $$ = ($3 != NULL ? strmerge($2, "::", $3) : $2); }
    ;



prefix:
    /* vide */                      { $$ = NULL; }
    | prefix unqualified_name       { $$ = ($2 != NULL ? strmerge($1, "::", $2) : $1); }
    ;




unqualified_name:
    ctor_dtor_name                  { $$ = NULL; }
    | source_name                   { $$ = $1; }
    ;



source_name:
    NUMBER                          { set_itanium_text_length($1); reset_itanium_identifier_building(demangler); } 
        identifier                  { $$ = strdup(demangler->identifier); }
    ;

identifier:
    identifier CHAR                 { build_itanium_identifier(demangler, $2); }
    | CHAR                          { build_itanium_identifier(demangler, $1); }
    ;

ctor_dtor_name:
    C1                              { g_binary_routine_set_type(routine, RTT_CONSTRUCTOR); }
    | C2                            { g_binary_routine_set_type(routine, RTT_CONSTRUCTOR); }
    | C3                            { g_binary_routine_set_type(routine, RTT_CONSTRUCTOR); }
    | D1                            { g_binary_routine_set_type(routine, RTT_DESTRUCTOR); }
    | D2                            { g_binary_routine_set_type(routine, RTT_DESTRUCTOR); }
    | D3                            { g_binary_routine_set_type(routine, RTT_DESTRUCTOR); }
    ;


type:
    builtin_type                    { $$ = create_var_from_simple_one($1); }
    | class_enum_type               { $$ = create_var_from_complex_one($1); }
    | substitution                  { $$ = create_var_from_complex_one(create_class_enum_var($1)); }
    | qualifiers type               { $$ = $2; add_qualifier_to_var($2, $1); }
    | TP type                       { $$ = create_var_from_complex_one(create_encapsulated_var(ECT_POINTER, $2)); }
    | TR type                       { $$ = create_var_from_complex_one(create_encapsulated_var(ECT_REFERENCE, $2)); }
    | TO type                       { $$ = create_var_from_complex_one(create_encapsulated_var(ECT_RVALUE_REF, $2)); }
    | TC type                       { $$ = create_var_from_complex_one(create_encapsulated_var(ECT_COMPLEX, $2)); }
    | TG type                       { $$ = create_var_from_complex_one(create_encapsulated_var(ECT_IMAGINARY, $2)); }
    ;

qualifiers:
    QR                              { $$ = VQF_RESTRICT; }
    | QV                            { $$ = VQF_VOLATILE; }
    | QK                            { $$ = VQF_CONST; }
    ;



builtin_type:
    V                               { $$ = create_typed_simple_var(BTP_VOID); }
    | W                             { $$ = create_typed_simple_var(BTP_WCHAR_T); }
    | B                             { $$ = create_typed_simple_var(BTP_BOOL); }
    | C                             { $$ = create_typed_simple_var(BTP_CHAR); }
    | A                             { $$ = create_typed_simple_var(BTP_SCHAR); }
    | H                             { $$ = create_typed_simple_var(BTP_UCHAR); }
    | S                             { $$ = create_typed_simple_var(BTP_SHORT); }
    | T                             { $$ = create_typed_simple_var(BTP_USHORT); }
    | I                             { $$ = create_typed_simple_var(BTP_INT); }
    | J                             { $$ = create_typed_simple_var(BTP_UINT); }
    | L                             { $$ = create_typed_simple_var(BTP_LONG); }
    | M                             { $$ = create_typed_simple_var(BTP_ULONG); }
    | X                             { $$ = create_typed_simple_var(BTP_LONG_LONG); }
    | Y                             { $$ = create_typed_simple_var(BTP_ULONG_LONG); }
    | N                             { $$ = create_typed_simple_var(BTP_INT128); }
    | O                             { $$ = create_typed_simple_var(BTP_UINT128); }
    | F                             { $$ = create_typed_simple_var(BTP_FLOAT); }
    | D                             { $$ = create_typed_simple_var(BTP_DOUBLE); }
    | E                             { $$ = create_typed_simple_var(BTP_LONG_DOUBLE); }
    | G                             { $$ = create_typed_simple_var(BTP_FLOAT128); }
    | Z                             { $$ = create_typed_simple_var(BTP_ELLIPSIS); }
    | DD                            { $$ = create_typed_simple_var(BTP_754R_64); }
    | DE                            { $$ = create_typed_simple_var(BTP_754R_128); }
    | DF                            { $$ = create_typed_simple_var(BTP_754R_32); }
    | DH                            { $$ = create_typed_simple_var(BTP_754R_16); }
    | DI                            { $$ = create_typed_simple_var(BTP_CHAR32_T); }
    | DS                            { $$ = create_typed_simple_var(BTP_CHAR16_T); }
    | U source_name                 { $$ = create_typed_simple_var(BTP_OTHER); /* TODO */ ; free($2); }
    ;



bare_function_type:
    bare_function_type type         { g_binary_routine_add_arg(routine, $2); }
    | type                          { g_binary_routine_add_arg(routine, $1); }
    ;

class_enum_type:
    name                            { $$ = create_class_enum_var($1); }
    ;




template_args:
    II template_arg_list EE         { $$ = stradd(strprep($2, "<"), ">"); }
    ;

template_arg_list:
    template_arg_list template_arg  { $$ = strmerge($1, ", ", $2); }
    | template_arg                  { $$ = $1; }
    ;

template_arg:
    type                            { $$ = var_to_string($1); delete_var($1); }
    ;

substitution:
    ST                              { $$ = strdup("std::"); }
    | SA                            { $$ = strdup("std::allocator"); }
    | SB                            { $$ = strdup("std::basic_string"); }
    | SS                            { $$ = strdup("std::string"); }
    | SI                            { $$ = strdup("std::istream"); }
    | SO                            { $$ = strdup("std::ostream"); }
    | SD                            { $$ = strdup("std::iostream"); }
    ;







%%


/**
 * Affiche un message d'erreur concernant l'analyse.
 * @param yyloc informations concernant les coordonnées du soucis.
 * @param hunt indique le type de passe réalisée.
 * @param ucode code résultant compilé.
 * @param index indice de commande à mettre à jour.
 * @param msg indications humaines sur l'événement.
 * @return 0.
 */
int yyerror(/*const YYLTYPE *yyloc, bool hunt, char **ucode, unsigned char *index, */char *msg)
{



	fprintf(stderr, "ERREUR !\n");
	fprintf(stderr, "%s\n", msg);

	return -1;

}







/******************************************************************************
*                                                                             *
*  Paramètres  : -                                                            *
*                                                                             *
*  Description : Définit un décodeur répondant à la norme d'Intel.            *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

name_demangler *create_itanium_demangler(void)
{
    itanium_demangler *result;              /* Structure à retourner       */

    result = (itanium_demangler *)calloc(1, sizeof(itanium_demangler));

    NAME_DEMANGLER(result)->can_be_demangled = (can_be_demangled_fc)can_be_itanium_demangled;
    NAME_DEMANGLER(result)->demangle_routine = (demangle_routine_fc)demangle_itanium_routine;

    return NAME_DEMANGLER(result);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : demangler = décodeur à utiliser.                             *
*                name      = chaîne de caractères à analyser.                 *
*                                                                             *
*  Description : Indique si une chaîne peut être traitée par le décodeur.     *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool can_be_itanium_demangled(itanium_demangler *itanium, const char *name)
{
    return (strncmp(name, "_Z", 2) == 0);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : demangler = décodeur à utiliser.                             *
*                name      = chaîne de caractères à décoder.                  *
*                                                                             *
*  Description : Procède au décodage d'une chaîne de caractères.              *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GBinRoutine *demangle_itanium_routine(itanium_demangler *demangler, const char *name)
{
    GBinRoutine *result;                    /* Construction à retourner    */
	YY_BUFFER_STATE buffer;                 /* Tampon pour bison           */
	int ret;                                /* Bilan de l'appel            */

    result = g_binary_routine_new();

	buffer = yy_scan_string(name);
	ret = yyparse(demangler, result);
	yy_delete_buffer(buffer);

    if (ret != 0)
    {
        /*delete_binary_routine(result); FIXME */
        result = NULL;
    }

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : demangler = décodeur à mettre à jour.                        *
*                                                                             *
*  Description : Réinitialise le constructeur d'identifiants.                 *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void reset_itanium_identifier_building(itanium_demangler *demangler)
{
    demangler->id_used = 0;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : demangler = décodeur à mettre à jour.                        *
*                value     = caractère d'identifiant à mémoriser.             *
*                                                                             *
*  Description : Construit à la volée un identifiant.                         *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void build_itanium_identifier(itanium_demangler *demangler, char value)
{
    if ((demangler->id_used + 2) > demangler->id_allocated)
    {
        demangler->id_allocated += ITANIUM_ALLOC_CLUSTER;
        demangler->identifier = (char *)realloc(demangler->identifier,
                                                demangler->id_allocated * sizeof(char));
    }

    demangler->identifier[demangler->id_used++] = value;
    demangler->identifier[demangler->id_used] = 0;

}