Searched refs:T_ARRAY (Results 1 - 25 of 86) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/ci/
H A DciType.cpp35 // This class represents either a class (T_OBJECT), array (T_ARRAY),
43 assert(basic_type != T_OBJECT && basic_type != T_ARRAY, "not a reference type");
48 _basic_type = Klass::cast(k())->oop_is_array() ? T_ARRAY : T_OBJECT;
52 _basic_type = klass->is_array_klass_klass() ? T_ARRAY : T_OBJECT;
126 // Does not work on T_ARRAY.
H A DciConstant.cpp60 case T_ARRAY:
H A DciType.hpp33 // This class represents either a class (T_OBJECT), array (T_ARRAY),
72 bool is_primitive_type() const { return basic_type() != T_OBJECT && basic_type() != T_ARRAY; }
H A DciInstance.cpp100 case T_ARRAY:
H A DciConstant.hpp110 assert(basic_type() == T_OBJECT || basic_type() == T_ARRAY, "wrong type");
H A DciField.cpp94 if (field_type == T_OBJECT || field_type == T_ARRAY) {
160 if (field_type == T_OBJECT || field_type == T_ARRAY) {
257 case T_ARRAY:
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DArrayType.java95 super(Constants.T_ARRAY, "<dummy>");
101 case Constants.T_ARRAY:
H A DInstructionFactory.java232 case Constants.T_ARRAY:
275 case Constants.T_ARRAY:
411 case Constants.T_ARRAY:
430 case Constants.T_ARRAY:
449 case Constants.T_ARRAY:
468 case Constants.T_ARRAY:
575 case Constants.T_ARRAY:
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayOop.cpp52 assert(check_max_length_overflow(T_ARRAY), "size_t overflow for array array");
H A DarrayKlass.cpp154 if (length > arrayOopDesc::max_array_length(T_ARRAY)) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBasicType.java55 public static final BasicType T_ARRAY = new BasicType(tArray); field in class:BasicType
130 case '[': return T_ARRAY;
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldType.cpp77 assert(basic_type(signature) == T_ARRAY, "must be array");
H A Dsignature.cpp114 if (_parameter_index < 0 ) _return_type = T_ARRAY;
281 _type = T_ARRAY;
314 || _type == T_ARRAY;
318 return _type == T_ARRAY;
H A DfieldDescriptor.cpp165 case T_ARRAY:
H A DjavaCalls.cpp172 case T_ARRAY : // fall through
180 case T_ARRAY : // fall through
376 bool oop_result_flag = (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY);
552 // Treat T_OBJECT and T_ARRAY as the same
553 if (return_type == T_ARRAY) return_type = T_OBJECT;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.cpp133 case T_ARRAY : return arrayType;
153 case T_ARRAY : // fall through (ciConstant doesn't have an array accessor)
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkConstant.cpp81 case T_ARRAY:
H A DsharkState.cpp216 case T_ARRAY:
260 case T_ARRAY:
297 type = ciType::make(T_OBJECT); // XXX what about T_ARRAY?
307 case T_ARRAY:
335 type = ciType::make(T_OBJECT); // XXX what about T_ARRAY?
345 case T_ARRAY:
H A DsharkBlock.hpp154 case T_ARRAY:
H A DsharkContext.cpp136 case T_ARRAY:
H A DsharkValue.cpp134 return basic_type() == T_ARRAY;
/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.cpp104 case T_ARRAY:
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DArrayReferenceImpl.java136 } else if (variableType == BasicType.T_ARRAY) {
H A DStackFrameImpl.java262 } else if (variableType == BasicType.T_ARRAY) {
292 } else if (variableType == BasicType.T_ARRAY) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp416 case T_ARRAY:
948 case T_ARRAY:
1293 (in_sig_bt[i] == T_LONG || in_sig_bt[i] == T_ARRAY)) {
1297 if (in_sig_bt[i] == T_ARRAY) {
1327 case T_ARRAY:
1346 if (in_sig_bt[i] == T_ARRAY && map != NULL) {
1553 if (in_sig_bt[i] == T_ARRAY) {
1650 sig_bt[i] == T_ARRAY) {
1806 if (in_sig_bt[i] == T_ARRAY) {
1831 if (in_sig_bt[i] == T_ARRAY) {
[all...]

Completed in 83 milliseconds

1234