summaryrefslogtreecommitdiff
path: root/src/format/mangling/itanium/context.h
blob: 13ec1f4e4521ee2337da080e8704e3bc12351cb8 (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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * context.h - prototypes pour le contexte de décodage à la sauce ABI C++ Itanium
 *
 * Copyright (C) 2013-2017 Cyrille Bagard
 *
 *  This file is part of Chrysalide.
 *
 *  Chrysalide is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  Chrysalide is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
 */


#ifndef _FORMAT_MANGLING_ITANIUM_CONTEXT_H
#define _FORMAT_MANGLING_ITANIUM_CONTEXT_H


#include <glib-object.h>
#include <stdbool.h>

#include "../context.h"



#define G_TYPE_ITANIUM_DCONTEXT               g_itanium_dcontext_get_type()
#define G_ITANIUM_DCONTEXT(obj)               (G_TYPE_CHECK_INSTANCE_CAST((obj), g_itanium_dcontext_get_type(), GItaniumDContext))
#define G_IS_ITANIUM_DCONTEXT(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_itanium_dcontext_get_type()))
#define G_ITANIUM_DCONTEXT_GET_IFACE(inst)    (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_itanium_dcontext_get_type(), GItaniumDContextIface))
#define G_ITANIUM_DCONTEXT_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_ITANIUM_DCONTEXT, GItaniumDContextClass))


/* Contexte de décodage Itanium (instance) */
typedef struct _GItaniumDContext GItaniumDContext;

/* Contexte de décodage Itanium (classe) */
typedef struct _GItaniumDContextClass GItaniumDContextClass;


/* Indique le type défini pour un contexte de décodage. */
GType g_itanium_dcontext_get_type(void);

/* Prépare de quoi effectuer un décodage Itanium. */
GDemanglingContext *g_itanium_dcontext_new(void);

/* Tente de décoder une chaîne de caractères donnée. */
void /*GBinRoutine **/g_itanium_dcontext_demangle_routine(GItaniumDContext *, const char *);

/* Sauvegarde d'un état courant */
typedef struct _itd_state
{
    size_t pos;                             /* Position courante           */
    size_t subst_count;                     /* Nombre de substitutions     */

} itd_state;

/* Fournit l'état courant à une fin de retour en arrière. */
void g_itanium_dcontext_push_state(const GItaniumDContext *, itd_state *);

/* Définit l'état courant suite à un retour en arrière. */
void g_itanium_dcontext_pop_state(GItaniumDContext *, const itd_state *);

/* Fournit la valeur du caractère courant. */
char g_itanium_dcontext_peek_char(const GItaniumDContext *);

/* Avance la tête de lecture courante. */
void g_itanium_dcontext_advance(GItaniumDContext *, size_t);

/* Fournit et avance la tête de lecture courante. */
char g_itanium_dcontext_next_char(GItaniumDContext *);

/* Vérifie la nature du caractère courant. */
bool g_itanium_dcontext_check_char(GItaniumDContext *, char);

/* Fournit la chaîne de caractère restant à traiter. */
const char *g_itanium_dcontext_get_string(const GItaniumDContext *, size_t *);




/* Composant extrait de l'encodage */
typedef struct _itanium_component itanium_component;


/* Fournit un nouveau composant vierge. */
itanium_component *g_itanium_dcontext_get_empty_component(GItaniumDContext *);

/* Marque un composant comme étant disponible pour un usage. */
void g_itanium_dcontext_mark_component_as_free(GItaniumDContext *, itanium_component *);

/* Indexe un composant comme future substitution potentielle. */
void g_itanium_dcontext_add_substitution(GItaniumDContext *, itanium_component *);

/* Fournit un composant en place pour une substitution. */
itanium_component *g_itanium_dcontext_get_substitution(GItaniumDContext *, size_t);






void test_itanium(void);





#endif  /* _FORMAT_MANGLING_ITANIUM_CONTEXT_H */