summaryrefslogtreecommitdiff
path: root/src/arch/operands
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2025-03-28 04:50:02 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2025-03-28 04:50:02 (GMT)
commit70ed4dc99c75c13797b41164959c753ffbc4572b (patch)
tree8bec4c31b19e732ec20d778434404ad96a059a67 /src/arch/operands
parent41f0c0f9089ec941ceb70e2a6ad1b958483eb2ae (diff)
Perform small code updates for operands.
Diffstat (limited to 'src/arch/operands')
-rw-r--r--src/arch/operands/Makefile.am4
-rw-r--r--src/arch/operands/immediate.c6
-rw-r--r--src/arch/operands/known.c6
-rw-r--r--src/arch/operands/register-ui.h2
-rw-r--r--src/arch/operands/register.c6
5 files changed, 12 insertions, 12 deletions
diff --git a/src/arch/operands/Makefile.am b/src/arch/operands/Makefile.am
index 9dc3b2f..3d9cbde 100644
--- a/src/arch/operands/Makefile.am
+++ b/src/arch/operands/Makefile.am
@@ -21,14 +21,14 @@ libarchoperands_la_SOURCES = \
register-int.h \
register.h register.c
-libarchoperands_la_CFLAGS = $(TOOLKIT_CFLAGS)
+libarchoperands_la_CFLAGS = $(LIBGOBJ_CFLAGS)
libarchoperandsui_la_SOURCES = \
immediate-ui.h immediate-ui.c \
known-ui.h known-ui.c \
register-ui.h register-ui.c
-libarchoperandsui_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBGTK4_CFLAGS)
+libarchoperandsui_la_CFLAGS = $(LIBGTK4_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
diff --git a/src/arch/operands/immediate.c b/src/arch/operands/immediate.c
index 7ec5ebd..f99b421 100644
--- a/src/arch/operands/immediate.c
+++ b/src/arch/operands/immediate.c
@@ -67,7 +67,7 @@ static void g_immediate_operand_comparable_object_iface_init(GComparableObjectIn
static void g_immediate_operand_hashable_object_iface_init(GHashableObjectInterface *);
/* Procède à l'initialisation de l'interface de sérialisation. */
-static void g_immediate_operand_serializable_iface_init(GSerializableObjectInterface *);
+static void g_immediate_operand_serializable_object_iface_init(GSerializableObjectInterface *);
/* Procède à l'initialisation de l'interface d'exportation. */
static void g_immediate_operand_string_builder_iface_init(GStringBuilderInterface *, gpointer);
@@ -139,7 +139,7 @@ static bool g_immediate_operand_to_string(const GStringBuilder *, unsigned int,
G_DEFINE_TYPE_WITH_CODE(GImmediateOperand, g_immediate_operand, G_TYPE_ARCH_OPERAND,
G_IMPLEMENT_INTERFACE(G_TYPE_COMPARABLE_OBJECT, g_immediate_operand_comparable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_HASHABLE_OBJECT, g_immediate_operand_hashable_object_iface_init)
- G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_immediate_operand_serializable_iface_init)
+ G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_immediate_operand_serializable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_STRING_BUILDER, g_immediate_operand_string_builder_iface_init)
G_IMPLEMENT_INTERFACE_IF_SYM(g_arch_operand_ui_get_type, g_immediate_operand_ui_arch_operand_ui_iface_init));
@@ -218,7 +218,7 @@ static void g_immediate_operand_hashable_object_iface_init(GHashableObjectInterf
* *
******************************************************************************/
-static void g_immediate_operand_serializable_iface_init(GSerializableObjectInterface *iface)
+static void g_immediate_operand_serializable_object_iface_init(GSerializableObjectInterface *iface)
{
iface->load = g_immediate_operand_load;
iface->store = g_immediate_operand_store;
diff --git a/src/arch/operands/known.c b/src/arch/operands/known.c
index adb700d..c9e177f 100644
--- a/src/arch/operands/known.c
+++ b/src/arch/operands/known.c
@@ -50,7 +50,7 @@ static void g_known_immediate_operand_comparable_object_iface_init(GComparableOb
static void g_known_immediate_operand_hashable_object_iface_init(GHashableObjectInterface *);
/* Procède à l'initialisation de l'interface de sérialisation. */
-static void g_known_immediate_operand_serializable_iface_init(GSerializableObjectInterface *);
+static void g_known_immediate_operand_serializable_object_iface_init(GSerializableObjectInterface *);
/* Procède à l'initialisation de l'interface d'exportation. */
static void g_known_immediate_operand_string_builder_iface_init(GStringBuilderInterface *);
@@ -110,7 +110,7 @@ static bool g_known_immediate_operand_to_string(const GStringBuilder *, unsigned
G_DEFINE_TYPE_WITH_CODE(GKnownImmediateOperand, g_known_immediate_operand, G_TYPE_IMMEDIATE_OPERAND,
G_IMPLEMENT_INTERFACE(G_TYPE_COMPARABLE_OBJECT, g_known_immediate_operand_comparable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_HASHABLE_OBJECT, g_known_immediate_operand_hashable_object_iface_init)
- G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_known_immediate_operand_serializable_iface_init)
+ G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_known_immediate_operand_serializable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_STRING_BUILDER, g_known_immediate_operand_string_builder_iface_init)
G_IMPLEMENT_INTERFACE_IF_SYM(g_arch_operand_ui_get_type, g_known_immediate_operand_ui_arch_operand_ui_iface_init));
@@ -189,7 +189,7 @@ static void g_known_immediate_operand_hashable_object_iface_init(GHashableObject
* *
******************************************************************************/
-static void g_known_immediate_operand_serializable_iface_init(GSerializableObjectInterface *iface)
+static void g_known_immediate_operand_serializable_object_iface_init(GSerializableObjectInterface *iface)
{
iface->load = g_known_immediate_operand_load;
iface->store = g_known_immediate_operand_store;
diff --git a/src/arch/operands/register-ui.h b/src/arch/operands/register-ui.h
index 711f450..16be67b 100644
--- a/src/arch/operands/register-ui.h
+++ b/src/arch/operands/register-ui.h
@@ -25,7 +25,7 @@
#define _ARCH_OPERANDS_REGISTER_UI_H
-#include "../operand-ui-int.h"
+#include "../operand-ui-int.h" // FIXME ??
diff --git a/src/arch/operands/register.c b/src/arch/operands/register.c
index 07e35c4..cad2c4e 100644
--- a/src/arch/operands/register.c
+++ b/src/arch/operands/register.c
@@ -48,7 +48,7 @@ static void g_register_operand_comparable_object_iface_init(GComparableObjectInt
static void g_register_operand_hashable_object_iface_init(GHashableObjectInterface *);
/* Procède à l'initialisation de l'interface de sérialisation. */
-static void g_register_operand_serializable_iface_init(GSerializableObjectInterface *);
+static void g_register_operand_serializable_object_iface_init(GSerializableObjectInterface *);
/* Procède à l'initialisation de l'interface d'exportation. */
static void g_register_operand_string_builder_iface_init(GStringBuilderInterface *);
@@ -108,7 +108,7 @@ static bool g_register_operand_to_string(const GStringBuilder *, unsigned int, s
G_DEFINE_TYPE_WITH_CODE(GRegisterOperand, g_register_operand, G_TYPE_ARCH_OPERAND,
G_IMPLEMENT_INTERFACE(G_TYPE_COMPARABLE_OBJECT, g_register_operand_comparable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_HASHABLE_OBJECT, g_register_operand_hashable_object_iface_init)
- G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_register_operand_serializable_iface_init)
+ G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_register_operand_serializable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_STRING_BUILDER, g_register_operand_string_builder_iface_init)
G_IMPLEMENT_INTERFACE_IF_SYM(g_arch_operand_ui_get_type, g_register_operand_ui_arch_operand_ui_iface_init));
@@ -187,7 +187,7 @@ static void g_register_operand_hashable_object_iface_init(GHashableObjectInterfa
* *
******************************************************************************/
-static void g_register_operand_serializable_iface_init(GSerializableObjectInterface *iface)
+static void g_register_operand_serializable_object_iface_init(GSerializableObjectInterface *iface)
{
iface->load = g_register_operand_load;
iface->store = g_register_operand_store;