diff options
Diffstat (limited to 'src/arch/immediate.c')
| -rw-r--r-- | src/arch/immediate.c | 64 | 
1 files changed, 64 insertions, 0 deletions
| diff --git a/src/arch/immediate.c b/src/arch/immediate.c index 73a7648..56a6bfc 100644 --- a/src/arch/immediate.c +++ b/src/arch/immediate.c @@ -623,3 +623,67 @@ bool g_imm_operand_to_size_t(const GImmOperand *operand, size_t *value, bool *ne      return result;  } + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : operand  = opérande à traiter.                               * +*                value    = valeur résultante. [OUT]                          * +*                negative = indique si la valeur était négative à l'origine.  * +*                                                                             * +*  Description : Convertit une valeur immédiate en valeur de type off_t.      * +*                                                                             * +*  Retour      : Bilan de l'opération.                                        * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +bool g_imm_operand_to_off_t(const GImmOperand *operand, off_t *value, bool *negative) +{ +    bool result;                            /* Bilan à renvoyer            */ + +    *negative = g_imm_operand_is_negative(operand); + +    switch (operand->size) +    { +        case AOS_8_BITS_UNSIGNED: +            result = (sizeof(off_t) >= 1); +            if (result) *value = operand->unsigned_imm.val8; +            break; +        case AOS_16_BITS_UNSIGNED: +            result = (sizeof(off_t) >= 2); +            if (result) *value = operand->unsigned_imm.val16; +            break; +        case AOS_32_BITS_UNSIGNED: +            result = (sizeof(off_t) >= 4); +            if (result) *value = operand->unsigned_imm.val32; +            break; +        case AOS_64_BITS_UNSIGNED: +            result = (sizeof(off_t) >= 8); +            if (result) *value = operand->unsigned_imm.val64; +            break; +        case AOS_8_BITS_SIGNED: +            result = (sizeof(off_t) >= 1); +            if (result) *value = (*negative ? -1 : 1 ) * operand->signed_imm.val8; +            break; +        case AOS_16_BITS_SIGNED: +            result = (sizeof(off_t) >= 2); +            if (result) *value = (*negative ? -1 : 1 ) * operand->signed_imm.val16; +            break; +        case AOS_32_BITS_SIGNED: +            result = (sizeof(off_t) >= 4); +            if (result) *value = (*negative ? -1 : 1 ) * operand->signed_imm.val32; +            break; +        case AOS_64_BITS_SIGNED: +            result = (sizeof(off_t) >= 8); +            if (result) *value = (*negative ? -1 : 1 ) * operand->signed_imm.val64; +            break; +        default: +            result = false; +            break; +    } + +    return result; + +} | 
