File tree 2 files changed +12
-4
lines changed
src/hotspot/share/utilities
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,17 @@ const char* type2name_tab[T_CONFLICT+1] = {
236
236
" *narrowklass*" ,
237
237
" *conflict*"
238
238
};
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
+
239
250
240
251
241
252
BasicType name2type (const char * name) {
Original file line number Diff line number Diff line change @@ -786,10 +786,7 @@ extern int type2size[T_CONFLICT+1]; // Map BasicType to result stack ele
786
786
extern const char * type2name_tab[T_CONFLICT+1 ]; // Map a BasicType to a char*
787
787
extern BasicType name2type (const char * name);
788
788
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);
793
790
794
791
inline jlong max_signed_integer (BasicType bt) {
795
792
if (bt == T_INT) {
You can’t perform that action at this time.
0 commit comments