mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
The Iop_CmpORD class of iops support the POWER specific comparison instructions. The instructions take two 32-bit or 64-bit operands and produce a result of the same size. However, only the lower bits of the result are set by the instruction. The bits are set by the instruction to indicate if the comparison is "less then", "greater then", or "equal". This patch adds support to the V-bit tester to verify the propagation of the undefined bits in the inputs to the output for the Iop_CmpORd iops. The output bits are always set to undefined if any of the input bits are not defined. This patch is for bugzilla 310169 git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13123
59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
/* -*- mode: C; c-basic-offset: 3; -*- */
|
|
|
|
#ifndef VBITS_H
|
|
#define VBITS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
typedef uint64_t uint128_t[2];
|
|
typedef uint64_t uint256_t[4];
|
|
|
|
/* A type to represent V-bits */
|
|
typedef struct {
|
|
unsigned num_bits;
|
|
union {
|
|
uint8_t u8;
|
|
uint16_t u16;
|
|
uint32_t u32;
|
|
uint64_t u64;
|
|
uint128_t u128;
|
|
uint256_t u256;
|
|
} bits;
|
|
} vbits_t;
|
|
|
|
|
|
/* A type large enough to hold any IRtype'd value. At this point
|
|
we do not expect to test with specific floating point values.
|
|
So we don't need to represent them. */
|
|
typedef union {
|
|
uint8_t u8;
|
|
uint16_t u16;
|
|
uint32_t u32;
|
|
uint64_t u64;
|
|
uint128_t u128;
|
|
uint256_t u256;
|
|
} value_t;
|
|
|
|
|
|
void print_vbits(FILE *, vbits_t);
|
|
vbits_t undefined_vbits(unsigned num_bits);
|
|
vbits_t defined_vbits(unsigned num_bits);
|
|
int equal_vbits(vbits_t, vbits_t);
|
|
vbits_t truncate_vbits(vbits_t, unsigned num_bits);
|
|
vbits_t left_vbits(vbits_t, unsigned num_bits);
|
|
vbits_t or_vbits(vbits_t, vbits_t);
|
|
vbits_t and_vbits(vbits_t, vbits_t);
|
|
vbits_t concat_vbits(vbits_t, vbits_t);
|
|
vbits_t upper_vbits(vbits_t);
|
|
vbits_t sextend_vbits(vbits_t, unsigned num_bits);
|
|
vbits_t zextend_vbits(vbits_t, unsigned num_bits);
|
|
vbits_t onehot_vbits(unsigned bitno, unsigned num_bits);
|
|
vbits_t shl_vbits(vbits_t, unsigned amount);
|
|
vbits_t shr_vbits(vbits_t, unsigned amount);
|
|
vbits_t sar_vbits(vbits_t, unsigned amount);
|
|
int completely_defined_vbits(vbits_t);
|
|
vbits_t cmpord_vbits(unsigned v1_num_bits, unsigned v2_num_bits);
|
|
|
|
#endif // VBITS_H
|