< prev index next >

src/share/vm/utilities/globalDefinitions.hpp

Print this page

        

*** 619,629 **** case 'S': return T_SHORT; case 'Z': return T_BOOLEAN; case 'V': return T_VOID; case 'L': return T_OBJECT; case '[': return T_ARRAY; ! case 'Q':return T_VALUETYPE; } return T_ILLEGAL; } extern char type2char_tab[T_CONFLICT+1]; // Map a BasicType to a jchar --- 619,629 ---- case 'S': return T_SHORT; case 'Z': return T_BOOLEAN; case 'V': return T_VOID; case 'L': return T_OBJECT; case '[': return T_ARRAY; ! case 'Q': return T_VALUETYPE; } return T_ILLEGAL; } extern char type2char_tab[T_CONFLICT+1]; // Map a BasicType to a jchar
*** 684,696 **** #endif T_NARROWOOP_aelem_bytes = 4, T_NARROWKLASS_aelem_bytes = 4, T_VOID_aelem_bytes = 0, #ifdef _LP64 - T_VALUETYPEPTR_aelem_bytes= 4 - #else T_VALUETYPEPTR_aelem_bytes= 8 #endif }; extern int _type2aelembytes[T_CONFLICT+1]; // maps a BasicType to nof bytes used by its array element #ifdef ASSERT --- 684,696 ---- #endif T_NARROWOOP_aelem_bytes = 4, T_NARROWKLASS_aelem_bytes = 4, T_VOID_aelem_bytes = 0, #ifdef _LP64 T_VALUETYPEPTR_aelem_bytes= 8 + #else + T_VALUETYPEPTR_aelem_bytes= 4 #endif }; extern int _type2aelembytes[T_CONFLICT+1]; // maps a BasicType to nof bytes used by its array element #ifdef ASSERT
< prev index next >