Searched defs:T_CONFLICT (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBasicType.java58 public static final BasicType T_CONFLICT = new BasicType(tConflict); field in class:BasicType
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp485 T_CONFLICT = 17, // for stack value type with conflicting contents enumerator in enum:BasicType
520 extern char type2char_tab[T_CONFLICT+1]; // Map a BasicType to a jchar
521 inline char type2char(BasicType t) { return (uint)t < T_CONFLICT+1 ? type2char_tab[t] : 0; }
522 extern int type2size[T_CONFLICT+1]; // Map BasicType to result stack elements
523 extern const char* type2name_tab[T_CONFLICT+1]; // Map a BasicType to a jchar
524 inline const char* type2name(BasicType t) { return (uint)t < T_CONFLICT+1 ? type2name_tab[t] : NULL; }
551 extern BasicType type2field[T_CONFLICT+1];
552 extern BasicType type2wfield[T_CONFLICT+1];
576 extern int _type2aelembytes[T_CONFLICT+1]; // maps a BasicType to nof bytes used by its array element

Completed in 35 milliseconds