Skip to content

Commit 5e9dc46

Browse files
author
Vladimir Ivanov
committedFeb 11, 2020
8238683: C2: Remove Use24BitFP and Use24BitFPMode flags
Reviewed-by: thartmann, neliasso
1 parent 74e68b4 commit 5e9dc46

File tree

4 files changed

+26
-29
lines changed

4 files changed

+26
-29
lines changed
 

‎src/hotspot/share/adlc/dfa.cpp

+5-10
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ void ArchDesc::buildDFA(FILE* fp) {
471471

472472

473473
class dfa_shared_preds {
474-
enum { count = 4 };
474+
enum { count = 3 IA32_ONLY( + 1 ) };
475475

476476
static bool _found[count];
477477
static const char* _type [count];
@@ -582,15 +582,10 @@ class dfa_shared_preds {
582582
}
583583
};
584584
// shared predicates, _var and _pred entry should be the same length
585-
bool dfa_shared_preds::_found[dfa_shared_preds::count]
586-
= { false, false, false, false };
587-
const char* dfa_shared_preds::_type[dfa_shared_preds::count]
588-
= { "int", "jlong", "intptr_t", "bool" };
589-
const char* dfa_shared_preds::_var [dfa_shared_preds::count]
590-
= { "_n_get_int__", "_n_get_long__", "_n_get_intptr_t__", "Compile__current____select_24_bit_instr__" };
591-
const char* dfa_shared_preds::_pred[dfa_shared_preds::count]
592-
= { "n->get_int()", "n->get_long()", "n->get_intptr_t()", "Compile::current()->select_24_bit_instr()" };
593-
585+
bool dfa_shared_preds::_found[dfa_shared_preds::count] = { false, false, false IA32_ONLY(COMMA false) };
586+
const char* dfa_shared_preds::_type [dfa_shared_preds::count] = { "int", "jlong", "intptr_t" IA32_ONLY(COMMA "bool") };
587+
const char* dfa_shared_preds::_var [dfa_shared_preds::count] = { "_n_get_int__", "_n_get_long__", "_n_get_intptr_t__" IA32_ONLY(COMMA "Compile__current____select_24_bit_instr__") };
588+
const char* dfa_shared_preds::_pred [dfa_shared_preds::count] = { "n->get_int()", "n->get_long()", "n->get_intptr_t()" IA32_ONLY(COMMA "Compile::current()->select_24_bit_instr()") };
594589

595590
void ArchDesc::gen_dfa_state_body(FILE* fp, Dict &minimize, ProductionState &status, Dict &operands_chained_from, int i) {
596591
// Start the body of each Op_XXX sub-dfa with a clean state.

‎src/hotspot/share/opto/c2_globals.hpp

-6
Original file line numberDiff line numberDiff line change
@@ -611,12 +611,6 @@
611611
develop(bool, ConvertFloat2IntClipping, true, \
612612
"Convert float2int clipping idiom to integer clipping") \
613613
\
614-
develop(bool, Use24BitFPMode, true, \
615-
"Set 24-bit FPU mode on a per-compile basis ") \
616-
\
617-
develop(bool, Use24BitFP, true, \
618-
"use FP instructions that produce 24-bit precise results") \
619-
\
620614
develop(bool, MonomorphicArrayCheck, true, \
621615
"Uncommon-trap array store checks that require full type check") \
622616
\

‎src/hotspot/share/opto/compile.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ void Compile::Init(int aliaslevel) {
10941094
_matcher = NULL; // filled in later
10951095
_cfg = NULL; // filled in later
10961096

1097-
set_24_bit_selection_and_mode(Use24BitFP, false);
1097+
IA32_ONLY( set_24_bit_selection_and_mode(true, false); )
10981098

10991099
_node_note_array = NULL;
11001100
_default_node_notes = NULL;
@@ -3713,14 +3713,16 @@ bool Compile::final_graph_reshaping() {
37133713
}
37143714
}
37153715

3716+
#ifdef IA32
37163717
// If original bytecodes contained a mixture of floats and doubles
37173718
// check if the optimizer has made it homogenous, item (3).
3718-
if( Use24BitFPMode && Use24BitFP && UseSSE == 0 &&
3719+
if (UseSSE == 0 &&
37193720
frc.get_float_count() > 32 &&
37203721
frc.get_double_count() == 0 &&
37213722
(10 * frc.get_call_count() < frc.get_float_count()) ) {
3722-
set_24_bit_selection_and_mode( false, true );
3723+
set_24_bit_selection_and_mode(false, true);
37233724
}
3725+
#endif // IA32
37243726

37253727
set_java_calls(frc.get_java_call_count());
37263728
set_inner_loops(frc.get_inner_loop_count());

‎src/hotspot/share/opto/compile.hpp

+16-10
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,6 @@ class Compile : public Phase {
582582
private:
583583
// Matching, CFG layout, allocation, code generation
584584
PhaseCFG* _cfg; // Results of CFG finding
585-
bool _select_24_bit_instr; // We selected an instruction with a 24-bit result
586-
bool _in_24_bit_fp_mode; // We are emitting instructions with 24-bit results
587585
int _java_calls; // Number of java calls in the method
588586
int _inner_loops; // Number of inner loops in the method
589587
Matcher* _matcher; // Engine to map ideal to machine instructions
@@ -1122,8 +1120,6 @@ class Compile : public Phase {
11221120

11231121
// Matching, CFG layout, allocation, code generation
11241122
PhaseCFG* cfg() { return _cfg; }
1125-
bool select_24_bit_instr() const { return _select_24_bit_instr; }
1126-
bool in_24_bit_fp_mode() const { return _in_24_bit_fp_mode; }
11271123
bool has_java_calls() const { return _java_calls > 0; }
11281124
int java_calls() const { return _java_calls; }
11291125
int inner_loops() const { return _inner_loops; }
@@ -1155,12 +1151,6 @@ class Compile : public Phase {
11551151
void set_indexSet_arena(Arena* a) { _indexSet_arena = a; }
11561152
void set_indexSet_free_block_list(void* p) { _indexSet_free_block_list = p; }
11571153

1158-
// Remember if this compilation changes hardware mode to 24-bit precision
1159-
void set_24_bit_selection_and_mode(bool selection, bool mode) {
1160-
_select_24_bit_instr = selection;
1161-
_in_24_bit_fp_mode = mode;
1162-
}
1163-
11641154
void set_java_calls(int z) { _java_calls = z; }
11651155
void set_inner_loops(int z) { _inner_loops = z; }
11661156

@@ -1413,6 +1403,22 @@ class Compile : public Phase {
14131403
bool needs_clinit_barrier(ciField* ik, ciMethod* accessing_method);
14141404
bool needs_clinit_barrier(ciMethod* ik, ciMethod* accessing_method);
14151405
bool needs_clinit_barrier(ciInstanceKlass* ik, ciMethod* accessing_method);
1406+
1407+
#ifdef IA32
1408+
private:
1409+
bool _select_24_bit_instr; // We selected an instruction with a 24-bit result
1410+
bool _in_24_bit_fp_mode; // We are emitting instructions with 24-bit results
1411+
1412+
// Remember if this compilation changes hardware mode to 24-bit precision.
1413+
void set_24_bit_selection_and_mode(bool selection, bool mode) {
1414+
_select_24_bit_instr = selection;
1415+
_in_24_bit_fp_mode = mode;
1416+
}
1417+
1418+
public:
1419+
bool select_24_bit_instr() const { return _select_24_bit_instr; }
1420+
bool in_24_bit_fp_mode() const { return _in_24_bit_fp_mode; }
1421+
#endif // IA32
14161422
};
14171423

14181424
#endif // SHARE_OPTO_COMPILE_HPP

0 commit comments

Comments
 (0)
Please sign in to comment.