Searched refs:T_CONFLICT (Results 1 - 23 of 23) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.cpp100 for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
116 case T_CONFLICT: // might as well support a bottom type
181 char type2char_tab[T_CONFLICT+1]={ 0, 0, 0, 0, 'Z', 'C', 'F', 'D', 'B', 'S', 'I', 'J', 'L', '[', 'V', 0, 0, 0};
184 const char* type2name_tab[T_CONFLICT+1] = {
214 int type2size[T_CONFLICT+1]={ -1, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 0, 1, 1, -1};
216 BasicType type2field[T_CONFLICT+1] = {
234 T_CONFLICT // T_CONFLICT = 17,
238 BasicType type2wfield[T_CONFLICT+1] = {
256 T_CONFLICT // T_CONFLIC
[all...]
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
/openjdk7/hotspot/src/share/vm/ci/
H A DciType.cpp31 ciType* ciType::_basic_types[T_CONFLICT+1];
42 assert(basic_type >= T_BOOLEAN && basic_type <= T_CONFLICT, "range check");
130 assert((uint)t < T_CONFLICT+1, "range check");
H A DciType.hpp52 static ciType* _basic_types[T_CONFLICT+1];
H A DciObjectFactory.cpp151 for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
H A DciTypeFlow.hpp184 T_BOTTOM = T_CONFLICT,
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkContext.hpp166 const llvm::Type* _to_stackType[T_CONFLICT];
167 const llvm::Type* _to_arrayType[T_CONFLICT];
172 assert(type >= 0 && type < T_CONFLICT, "unhandled type");
H A DsharkContext.cpp93 for (int i = 0; i < T_CONFLICT; i++) {
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayOop.hpp110 assert(type >= 0 && type < T_CONFLICT, "wrong type");
/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/runtime/
H A DstackValue.hpp52 _type = T_CONFLICT;
H A DstackValue.cpp202 case T_CONFLICT:
H A DvframeArray.cpp116 case T_CONFLICT:
141 case T_CONFLICT:
329 case T_CONFLICT:
350 case T_CONFLICT:
H A Dvframe.cpp590 if ( is_compiled_frame() && locs->at(i)->type() == T_CONFLICT) continue;
591 if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue;
H A DsharedRuntime.cpp2085 return T_CONFLICT;
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp303 assert((uint)type <= T_CONFLICT && _const_basic_type[type] != NULL, "bad type");
315 assert((uint)type <= T_CONFLICT && _zero_type[type] != NULL, "bad type");
322 if (type == T_VOID || type >= T_CONFLICT)
349 static const Type* _zero_type[T_CONFLICT+1];
350 static const Type* _const_basic_type[T_CONFLICT+1];
983 assert((uint)elem <= T_CONFLICT && _array_body_type[elem] != NULL, "bad elem type");
986 static const TypeAryPtr *_array_body_type[T_CONFLICT+1];
H A DphaseX.hpp172 _zcon_max = (uint)T_CONFLICT
H A Dtype.cpp92 const Type* Type:: _const_basic_type[T_CONFLICT+1];
95 const Type* Type:: _zero_type[T_CONFLICT+1];
98 const TypeAryPtr* TypeAryPtr::_array_body_type[T_CONFLICT+1];
402 _const_basic_type[T_CONFLICT]= Type::BOTTOM; // why not?
418 // get_zero_type() should not happen for T_CONFLICT
419 _zero_type[T_CONFLICT]= NULL;
3386 static jint max_array_length_cache[T_CONFLICT+1];
3395 case T_CONFLICT:
H A Dlibrary_call.cpp4456 generate_arraycopy(TypeRawPtr::BOTTOM, T_CONFLICT,
4601 && basic_elem_type != T_CONFLICT // avoid corner case
4654 if (basic_elem_type == T_CONFLICT) {
H A DgraphKit.cpp999 if (rtype < T_CONFLICT)
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp796 if (locals->at(_index)->type() == T_CONFLICT) {
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1012 static FieldAllocationType _basic_type_to_atype[2 * (T_CONFLICT + 1)] = {
1030 BAD_ALLOCATION_TYPE, // T_CONFLICT = 17,
1048 BAD_ALLOCATION_TYPE, // T_CONFLICT = 17,
1053 FieldAllocationType result = _basic_type_to_atype[type + (is_static ? (T_CONFLICT + 1) : 0)];
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp78 static int type2spill_size[T_CONFLICT+1]={ -1, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 0, 1, -1};
80 static int type2spill_size[T_CONFLICT+1]={ -1, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 0, 1, -1};

Completed in 166 milliseconds