Skip to content

Commit a19b28a

Browse files
afshin-zafariDavid Holmes
authored and
David Holmes
committedApr 1, 2023
8297539: Use PrimitiveConversions::cast for local uses of the int<->float union conversion trick
Reviewed-by: coleenp, kbarrett, dholmes
1 parent 8eb4e7e commit a19b28a

File tree

5 files changed

+33
-48
lines changed

5 files changed

+33
-48
lines changed
 

‎src/hotspot/cpu/aarch64/assembler_aarch64.cpp

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2020 Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -29,6 +29,7 @@
2929
#include "compiler/disassembler.hpp"
3030
#include "immediate_aarch64.hpp"
3131
#include "memory/resourceArea.hpp"
32+
#include "metaprogramming/primitiveConversions.hpp"
3233

3334
#ifndef PRODUCT
3435
const uintptr_t Assembler::asm_bp = 0x0000ffffac221240;
@@ -499,12 +500,8 @@ unsigned Assembler::pack(double value) {
499500
// Packed operands for Floating-point Move (immediate)
500501

501502
static float unpack(unsigned value) {
502-
union {
503-
unsigned ival;
504-
float val;
505-
};
506-
ival = fp_immediate_for_encoding(value, 0);
507-
return val;
503+
unsigned ival = fp_immediate_for_encoding(value, 0);
504+
return PrimitiveConversions::cast<float>(ival);
508505
}
509506

510507
address Assembler::locate_next_instruction(address inst) {

‎src/hotspot/cpu/aarch64/immediate_aarch64.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/*
2+
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
23
* Copyright (c) 2014, 2020, Red Hat Inc. All rights reserved.
34
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
45
*
@@ -26,8 +27,9 @@
2627
#include <stdint.h>
2728

2829
#include "precompiled.hpp"
29-
#include "utilities/globalDefinitions.hpp"
3030
#include "immediate_aarch64.hpp"
31+
#include "metaprogramming/primitiveConversions.hpp"
32+
#include "utilities/globalDefinitions.hpp"
3133

3234
// there are at most 2^13 possible logical immediate encodings
3335
// however, some combinations of immr and imms are invalid
@@ -431,11 +433,7 @@ uint32_t encoding_for_fp_immediate(float immediate)
431433
// return the imm8 result [s:r:f]
432434
//
433435

434-
union {
435-
float fpval;
436-
uint32_t val;
437-
};
438-
fpval = immediate;
436+
uint32_t val = PrimitiveConversions::cast<uint32_t>(immediate);
439437
uint32_t s, r, f, res;
440438
// sign bit is 31
441439
s = (val >> 31) & 0x1;

‎src/hotspot/cpu/arm/assembler_arm.hpp

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -279,37 +279,31 @@ class VFP {
279279
class float_num : public fpnum {
280280
public:
281281
float_num(float v) {
282-
_num.val = v;
282+
_bits = PrimitiveConversions::cast<unsigned int>(v);
283283
}
284284

285-
virtual unsigned int f_hi4() const { return (_num.bits << 9) >> (19+9); }
286-
virtual bool f_lo_is_null() const { return (_num.bits & ((1 << 19) - 1)) == 0; }
287-
virtual int e() const { return ((_num.bits << 1) >> (23+1)) - 127; }
288-
virtual unsigned int s() const { return _num.bits >> 31; }
285+
unsigned int f_hi4() const override { return (_bits << 9) >> (19+9); }
286+
bool f_lo_is_null() const override { return (_bits & ((1 << 19) - 1)) == 0; }
287+
int e() const override { return ((_bits << 1) >> (23+1)) - 127; }
288+
unsigned int s() const override { return _bits >> 31; }
289289

290290
private:
291-
union {
292-
float val;
293-
unsigned int bits;
294-
} _num;
291+
unsigned int _bits;
295292
};
296293

297294
class double_num : public fpnum {
298295
public:
299296
double_num(double v) {
300-
_num.val = v;
297+
_bits = PrimitiveConversions::cast<uint64_t>(v);
301298
}
302299

303-
virtual unsigned int f_hi4() const { return (_num.bits << 12) >> (48+12); }
304-
virtual bool f_lo_is_null() const { return (_num.bits & ((1LL << 48) - 1)) == 0; }
305-
virtual int e() const { return ((_num.bits << 1) >> (52+1)) - 1023; }
306-
virtual unsigned int s() const { return _num.bits >> 63; }
300+
unsigned int f_hi4() const override { return (_bits << 12) >> (48+12); }
301+
bool f_lo_is_null() const override { return (_bits & ((1LL << 48) - 1)) == 0; }
302+
int e() const override { return ((_bits << 1) >> (52+1)) - 1023; }
303+
unsigned int s() const override { return _bits >> 63; }
307304

308305
private:
309-
union {
310-
double val;
311-
unsigned long long bits;
312-
} _num;
306+
uint64_t _bits;
313307
};
314308
};
315309
#endif

‎src/hotspot/cpu/arm/macroAssembler_arm.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "interpreter/bytecodeHistogram.hpp"
3838
#include "interpreter/interpreter.hpp"
3939
#include "memory/resourceArea.hpp"
40+
#include "metaprogramming/primitiveConversions.hpp"
4041
#include "oops/accessDecorators.hpp"
4142
#include "oops/klass.inline.hpp"
4243
#include "prims/methodHandles.hpp"
@@ -673,15 +674,11 @@ void MacroAssembler::mov_metadata(Register rd, Metadata* o, int metadata_index)
673674

674675
void MacroAssembler::mov_float(FloatRegister fd, jfloat c, AsmCondition cond) {
675676
Label skip_constant;
676-
union {
677-
jfloat f;
678-
jint i;
679-
} accessor;
680-
accessor.f = c;
677+
jint float_bits = PrimitiveConversions::cast<jint>(c);
681678

682679
flds(fd, Address(PC), cond);
683680
b(skip_constant);
684-
emit_int32(accessor.i);
681+
emit_int32(float_bits);
685682
bind(skip_constant);
686683
}
687684

‎src/hotspot/share/runtime/sharedRuntime.cpp

+9-10
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
#include "logging/log.hpp"
4747
#include "memory/resourceArea.hpp"
4848
#include "memory/universe.hpp"
49+
#include "metaprogramming/primitiveConversions.hpp"
4950
#include "oops/compiledICHolder.inline.hpp"
5051
#include "oops/klass.hpp"
5152
#include "oops/method.inline.hpp"
@@ -242,12 +243,11 @@ JRT_LEAF(jfloat, SharedRuntime::frem(jfloat x, jfloat y))
242243
#ifdef _WIN64
243244
// 64-bit Windows on amd64 returns the wrong values for
244245
// infinity operands.
245-
union { jfloat f; juint i; } xbits, ybits;
246-
xbits.f = x;
247-
ybits.f = y;
246+
juint xbits = PrimitiveConversions::cast<juint>(x);
247+
juint ybits = PrimitiveConversions::cast<juint>(y);
248248
// x Mod Infinity == x unless x is infinity
249-
if (((xbits.i & float_sign_mask) != float_infinity) &&
250-
((ybits.i & float_sign_mask) == float_infinity) ) {
249+
if (((xbits & float_sign_mask) != float_infinity) &&
250+
((ybits & float_sign_mask) == float_infinity) ) {
251251
return x;
252252
}
253253
return ((jfloat)fmod_winx64((double)x, (double)y));
@@ -258,12 +258,11 @@ JRT_END
258258

259259
JRT_LEAF(jdouble, SharedRuntime::drem(jdouble x, jdouble y))
260260
#ifdef _WIN64
261-
union { jdouble d; julong l; } xbits, ybits;
262-
xbits.d = x;
263-
ybits.d = y;
261+
julong xbits = PrimitiveConversions::cast<julong>(x);
262+
julong ybits = PrimitiveConversions::cast<julong>(y);
264263
// x Mod Infinity == x unless x is infinity
265-
if (((xbits.l & double_sign_mask) != double_infinity) &&
266-
((ybits.l & double_sign_mask) == double_infinity) ) {
264+
if (((xbits & double_sign_mask) != double_infinity) &&
265+
((ybits & double_sign_mask) == double_infinity) ) {
267266
return x;
268267
}
269268
return ((jdouble)fmod_winx64((double)x, (double)y));

0 commit comments

Comments
 (0)
Please sign in to comment.