diff options
Diffstat (limited to 'src/arch/operand-int.h')
-rw-r--r-- | src/arch/operand-int.h | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h index 4a515c3..8048548 100644 --- a/src/arch/operand-int.h +++ b/src/arch/operand-int.h @@ -25,68 +25,10 @@ #define _ARCH_OPERAND_INT_H -#include <stdint.h> - - #include "operand.h" -/* Types d'opérandes rencontrables */ -typedef enum _AsmOperandType -{ - AOT_NONE, /* Type d'opérande inconnu ! */ - AOT_IMM, /* Valeur immédiate */ - AOT_REG, /* Registre quelconque */ - AOT_MEM, /* Accès à la mémoire */ - - /* X86 */ - - AOT_MOFFS /* Emplacement mémoire */ - -} AsmOperandType; - -/* Définition générique d'une opérande */ -struct _asm_operand -{ - AsmOperandType type; /* Type d'opérande */ - AsmOperandSize size; /* Taille de l'opérande */ - - /** - * Note : dans le cas d'une valeur signée, - * signed_imm contient la valeur lue/donnée, et - * unsigned_imm la valeur humainement lisible (ie. positive). - */ - - union - { - uint8_t val8; /* Valeur sur 8 bits */ - uint16_t val16; /* Valeur sur 16 bits */ - uint32_t val32; /* Valeur sur 32 bits */ - uint64_t val64; /* Valeur sur 64 bits */ - - } unsigned_imm; - - union - { - uint8_t val8; /* Valeur sur 8 bits */ - uint16_t val16; /* Valeur sur 16 bits */ - uint32_t val32; /* Valeur sur 32 bits */ - uint64_t val64; /* Valeur sur 64 bits */ - - } signed_imm; - -}; - - -#define ASM_OPERAND(o) ((asm_operand *)o) - - - - - - - /* Traduit un opérande en version humainement lisible. */ typedef char * (* get_operand_text_fc) (const GArchOperand *, const exe_format *, AsmSyntax); @@ -101,11 +43,6 @@ struct _GArchOperand }; - - - - - /* Définition générique d'un opérande d'architecture (classe) */ struct _GArchOperandClass { @@ -115,11 +52,4 @@ struct _GArchOperandClass - - - - - - - #endif /* _ARCH_OPERAND_INT_H */ |