Skip to content

Commit f2a32d9

Browse files
jdksjolencoleenp
authored andcommittedOct 3, 2022
8293691: converting a defined BasicType value to a string should not crash the VM
Reviewed-by: shade, coleenp, dlong
1 parent ccc1d31 commit f2a32d9

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed
 

‎src/hotspot/share/utilities/globalDefinitions.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,17 @@ const char* type2name_tab[T_CONFLICT+1] = {
236236
"*narrowklass*",
237237
"*conflict*"
238238
};
239+
const char* type2name(BasicType t) {
240+
if (t < ARRAY_SIZE(type2name_tab)) {
241+
return type2name_tab[t];
242+
} else if (t == T_ILLEGAL) {
243+
return "*illegal*";
244+
} else {
245+
fatal("invalid type %d", t);
246+
return "invalid type";
247+
}
248+
}
249+
239250

240251

241252
BasicType name2type(const char* name) {

‎src/hotspot/share/utilities/globalDefinitions.hpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -786,10 +786,7 @@ extern int type2size[T_CONFLICT+1]; // Map BasicType to result stack ele
786786
extern const char* type2name_tab[T_CONFLICT+1]; // Map a BasicType to a char*
787787
extern BasicType name2type(const char* name);
788788

789-
inline const char* type2name(BasicType t) {
790-
assert((uint)t < T_CONFLICT + 1, "invalid type");
791-
return type2name_tab[t];
792-
}
789+
const char* type2name(BasicType t);
793790

794791
inline jlong max_signed_integer(BasicType bt) {
795792
if (bt == T_INT) {

0 commit comments

Comments
 (0)
Please sign in to comment.