fpu: Replace uint32 typedef with uint32_t
Replace the uint32 softfloat-specific typedef with uint32_t. This change was made with find include hw fpu target-* -name '*.[ch]' | xargs sed -i -e 's/\buint32\b/uint32_t/g' together with manual removal of the typedef definition, manual undoing of various mis-hits, and another couple of fixes found via test compilation. All the uses in hw/ were using the wrong type by mistake. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Acked-by: Leon Alrae <leon.alrae@imgtec.com> Acked-by: James Hogan <james.hogan@imgtec.com> Message-id: 1452603315-27030-5-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
f4014512cd
commit
3a87d00910
@ -1296,7 +1296,7 @@ float32 int32_to_float32(int32_t a, float_status *status)
|
||||
float64 int32_to_float64(int32_t a, float_status *status)
|
||||
{
|
||||
flag zSign;
|
||||
uint32 absA;
|
||||
uint32_t absA;
|
||||
int8 shiftCount;
|
||||
uint64_t zSig;
|
||||
|
||||
@ -1319,7 +1319,7 @@ float64 int32_to_float64(int32_t a, float_status *status)
|
||||
floatx80 int32_to_floatx80(int32_t a, float_status *status)
|
||||
{
|
||||
flag zSign;
|
||||
uint32 absA;
|
||||
uint32_t absA;
|
||||
int8 shiftCount;
|
||||
uint64_t zSig;
|
||||
|
||||
@ -1341,7 +1341,7 @@ floatx80 int32_to_floatx80(int32_t a, float_status *status)
|
||||
float128 int32_to_float128(int32_t a, float_status *status)
|
||||
{
|
||||
flag zSign;
|
||||
uint32 absA;
|
||||
uint32_t absA;
|
||||
int8 shiftCount;
|
||||
uint64_t zSig0;
|
||||
|
||||
@ -7080,10 +7080,10 @@ float64 uint32_to_float64(uint32_t a, float_status *status)
|
||||
return int64_to_float64(a, status);
|
||||
}
|
||||
|
||||
uint32 float32_to_uint32(float32 a, float_status *status)
|
||||
uint32_t float32_to_uint32(float32 a, float_status *status)
|
||||
{
|
||||
int64_t v;
|
||||
uint32 res;
|
||||
uint32_t res;
|
||||
int old_exc_flags = get_float_exception_flags(status);
|
||||
|
||||
v = float32_to_int64(a, status);
|
||||
@ -7099,10 +7099,10 @@ uint32 float32_to_uint32(float32 a, float_status *status)
|
||||
return res;
|
||||
}
|
||||
|
||||
uint32 float32_to_uint32_round_to_zero(float32 a, float_status *status)
|
||||
uint32_t float32_to_uint32_round_to_zero(float32 a, float_status *status)
|
||||
{
|
||||
int64_t v;
|
||||
uint32 res;
|
||||
uint32_t res;
|
||||
int old_exc_flags = get_float_exception_flags(status);
|
||||
|
||||
v = float32_to_int64_round_to_zero(a, status);
|
||||
@ -7177,10 +7177,10 @@ uint_fast16_t float32_to_uint16_round_to_zero(float32 a, float_status *status)
|
||||
return res;
|
||||
}
|
||||
|
||||
uint32 float64_to_uint32(float64 a, float_status *status)
|
||||
uint32_t float64_to_uint32(float64 a, float_status *status)
|
||||
{
|
||||
uint64_t v;
|
||||
uint32 res;
|
||||
uint32_t res;
|
||||
int old_exc_flags = get_float_exception_flags(status);
|
||||
|
||||
v = float64_to_uint64(a, status);
|
||||
@ -7194,10 +7194,10 @@ uint32 float64_to_uint32(float64 a, float_status *status)
|
||||
return res;
|
||||
}
|
||||
|
||||
uint32 float64_to_uint32_round_to_zero(float64 a, float_status *status)
|
||||
uint32_t float64_to_uint32_round_to_zero(float64 a, float_status *status)
|
||||
{
|
||||
uint64_t v;
|
||||
uint32 res;
|
||||
uint32_t res;
|
||||
int old_exc_flags = get_float_exception_flags(status);
|
||||
|
||||
v = float64_to_uint64_round_to_zero(a, status);
|
||||
|
@ -1454,7 +1454,7 @@ void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
|
||||
ISADevice **rtc_state,
|
||||
bool create_fdctrl,
|
||||
bool no_vmport,
|
||||
uint32 hpet_irqs)
|
||||
uint32_t hpet_irqs)
|
||||
{
|
||||
int i;
|
||||
DriveInfo *fd[MAX_FD];
|
||||
|
@ -249,7 +249,7 @@ static void imx25_ccm_reset(DeviceState *dev)
|
||||
|
||||
static uint64_t imx25_ccm_read(void *opaque, hwaddr offset, unsigned size)
|
||||
{
|
||||
uint32 value = 0;
|
||||
uint32_t value = 0;
|
||||
IMX25CCMState *s = (IMX25CCMState *)opaque;
|
||||
|
||||
if (offset < 0x70) {
|
||||
|
@ -261,7 +261,7 @@ static void imx31_ccm_reset(DeviceState *dev)
|
||||
|
||||
static uint64_t imx31_ccm_read(void *opaque, hwaddr offset, unsigned size)
|
||||
{
|
||||
uint32 value = 0;
|
||||
uint32_t value = 0;
|
||||
IMX31CCMState *s = (IMX31CCMState *)opaque;
|
||||
|
||||
if ((offset >> 2) < IMX31_CCM_MAX_REG) {
|
||||
|
@ -522,7 +522,7 @@ vmxnet3_dec_rx_completion_counter(VMXNET3State *s, int qidx)
|
||||
vmxnet3_ring_dec(&s->rxq_descr[qidx].comp_ring);
|
||||
}
|
||||
|
||||
static void vmxnet3_complete_packet(VMXNET3State *s, int qidx, uint32 tx_ridx)
|
||||
static void vmxnet3_complete_packet(VMXNET3State *s, int qidx, uint32_t tx_ridx)
|
||||
{
|
||||
struct Vmxnet3_TxCompDesc txcq_descr;
|
||||
|
||||
|
@ -459,7 +459,7 @@ void spapr_hotplug_req_add_by_index(sPAPRDRConnector *drc)
|
||||
{
|
||||
sPAPRDRConnectorClass *drck = SPAPR_DR_CONNECTOR_GET_CLASS(drc);
|
||||
sPAPRDRConnectorType drc_type = drck->get_type(drc);
|
||||
uint32 index = drck->get_index(drc);
|
||||
uint32_t index = drck->get_index(drc);
|
||||
|
||||
spapr_hotplug_req_event(RTAS_LOG_V6_HP_ID_DRC_INDEX,
|
||||
RTAS_LOG_V6_HP_ACTION_ADD, drc_type, index);
|
||||
@ -469,7 +469,7 @@ void spapr_hotplug_req_remove_by_index(sPAPRDRConnector *drc)
|
||||
{
|
||||
sPAPRDRConnectorClass *drck = SPAPR_DR_CONNECTOR_GET_CLASS(drc);
|
||||
sPAPRDRConnectorType drc_type = drck->get_type(drc);
|
||||
uint32 index = drck->get_index(drc);
|
||||
uint32_t index = drck->get_index(drc);
|
||||
|
||||
spapr_hotplug_req_event(RTAS_LOG_V6_HP_ID_DRC_INDEX,
|
||||
RTAS_LOG_V6_HP_ACTION_REMOVE, drc_type, index);
|
||||
|
@ -101,8 +101,6 @@ this code that are retained.
|
||||
typedef uint8_t flag;
|
||||
typedef uint8_t uint8;
|
||||
typedef int8_t int8;
|
||||
typedef unsigned int uint32;
|
||||
typedef signed int int32_t;
|
||||
|
||||
#define LIT64( a ) a##LL
|
||||
|
||||
@ -376,8 +374,8 @@ int_fast16_t float32_to_int16_round_to_zero(float32, float_status *status);
|
||||
uint_fast16_t float32_to_uint16_round_to_zero(float32, float_status *status);
|
||||
int32_t float32_to_int32(float32, float_status *status);
|
||||
int32_t float32_to_int32_round_to_zero(float32, float_status *status);
|
||||
uint32 float32_to_uint32(float32, float_status *status);
|
||||
uint32 float32_to_uint32_round_to_zero(float32, float_status *status);
|
||||
uint32_t float32_to_uint32(float32, float_status *status);
|
||||
uint32_t float32_to_uint32_round_to_zero(float32, float_status *status);
|
||||
int64_t float32_to_int64(float32, float_status *status);
|
||||
uint64_t float32_to_uint64(float32, float_status *status);
|
||||
uint64_t float32_to_uint64_round_to_zero(float32, float_status *status);
|
||||
@ -488,8 +486,8 @@ int_fast16_t float64_to_int16_round_to_zero(float64, float_status *status);
|
||||
uint_fast16_t float64_to_uint16_round_to_zero(float64, float_status *status);
|
||||
int32_t float64_to_int32(float64, float_status *status);
|
||||
int32_t float64_to_int32_round_to_zero(float64, float_status *status);
|
||||
uint32 float64_to_uint32(float64, float_status *status);
|
||||
uint32 float64_to_uint32_round_to_zero(float64, float_status *status);
|
||||
uint32_t float64_to_uint32(float64, float_status *status);
|
||||
uint32_t float64_to_uint32_round_to_zero(float64, float_status *status);
|
||||
int64_t float64_to_int64(float64, float_status *status);
|
||||
int64_t float64_to_int64_round_to_zero(float64, float_status *status);
|
||||
uint64_t float64_to_uint64(float64 a, float_status *status);
|
||||
|
@ -258,7 +258,7 @@ void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
|
||||
ISADevice **rtc_state,
|
||||
bool create_fdctrl,
|
||||
bool no_vmport,
|
||||
uint32 hpet_irqs);
|
||||
uint32_t hpet_irqs);
|
||||
void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
|
||||
void pc_cmos_init(PCMachineState *pcms,
|
||||
BusState *ide0, BusState *ide1,
|
||||
|
@ -439,7 +439,7 @@ static void wait_for_log_fd(TestServer *s)
|
||||
g_mutex_unlock(&s->data_mutex);
|
||||
}
|
||||
|
||||
static void write_guest_mem(TestServer *s, uint32 seed)
|
||||
static void write_guest_mem(TestServer *s, uint32_t seed)
|
||||
{
|
||||
uint32_t *guest_mem;
|
||||
int i, j;
|
||||
|
Loading…
Reference in New Issue
Block a user