Searched defs:atype (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFieldGen.java192 private void checkType(Type atype) { argument
199 if(!type.equals(atype))
200 throw new ClassGenException("Types are not compatible: " + type + " vs. " + atype);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp431 BasicType atype = (BasicType)get_index_u1(); local
432 const char* str = type2name(atype);
433 if (str == NULL || atype == T_OBJECT || atype == T_ARRAY) {
H A DbytecodeInterpreter.cpp2417 BasicType atype = (BasicType) *(pc+1); local
2419 CALL_VM(InterpreterRuntime::newarray(THREAD, atype, size),
/openjdk7/jdk/test/java/lang/invoke/
H A DInvokeGenericTest.java260 static <T, E extends T> T[] array(Class<T[]> atype, E... a) { argument
261 return Arrays.copyOf(a, a.length, atype);
H A DMethodHandlesTest.java258 static <T, E extends T> T[] array(Class<T[]> atype, E... a) { argument
259 return Arrays.copyOf(a, a.length, atype);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp988 BasicType atype = unbox_for_primitive(arg, &value, CHECK_NULL); local
989 if (ptype != atype) {
990 widen(&value, atype, ptype, CHECK_NULL);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp1144 AllocateNode::AllocateNode(Compile* C, const TypeFunc *atype, argument
1147 : CallNode(atype, NULL, TypeRawPtr::BOTTOM)
H A Dcallnode.hpp772 AllocateNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio,
832 AllocateArrayNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio, argument
836 : AllocateNode(C, atype, ctrl, mem, abio, size, klass_node,
H A Descape.cpp2277 const TypeOopPtr *atype = igvn->type(adr)->isa_oopptr(); local
2278 assert(adr->is_AddP() && atype != NULL &&
2279 atype->instance_id() == inst_id, "array's element offset should be processed first");
2332 const TypePtr *atype = C->get_adr_type(alias_idx); local
2333 result = PhiNode::make(orig_phi->in(0), NULL, Type::MEMORY, atype);
H A Dmacro.cpp334 const TypePtr* atype = mem->as_Store()->adr_type(); local
335 int adr_idx = Compile::current()->get_alias_index(atype);
337 assert(atype->isa_oopptr(), "address type must be oopptr");
338 int adr_offset = atype->offset();
339 uint adr_iid = atype->is_oopptr()->instance_id();
365 const TypePtr* atype = mem->in(0)->in(MemNode::Address)->bottom_type()->is_ptr(); local
366 int adr_idx = Compile::current()->get_alias_index(atype);
500 const TypePtr* atype = mem->as_Store()->adr_type(); local
501 assert(C->get_alias_index(atype) == Compile::AliasIdxRaw, "store is correct memory slice");
505 const TypeOopPtr* atype local
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp2069 Symbol* atype = ss.as_symbol(CHECK_NULL); local
2070 const char* at = atype->as_C_string();
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp1602 Symbol* atype = ss.as_symbol(CHECK_NULL); local
1603 const char* at = atype->as_C_string();
H A DsharedRuntime_x86_64.cpp1835 Symbol* atype = ss.as_symbol(CHECK_NULL); local
1836 const char* at = atype->as_C_string();
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1069 FieldAllocationType atype = basic_type_to_atype(is_static, type); local
1071 assert(count[atype] < 0xFFFF, "More than 65535 fields");
1072 count[atype]++;
1073 return atype;
1190 FieldAllocationType atype = fac->update(is_static, type); local
1194 field->set_offset(atype);
1231 FieldAllocationType atype = fac->update(false, type); local
1235 field->set_offset(atype);
1649 // annotation := atype:u2 do(nmem:u2) {member:u2 value}
1651 index += 2; // skip atype
1727 int atype = Bytes::get_Java_u2(abase + atype_off); local
3486 FieldAllocationType atype = (FieldAllocationType) fs.offset(); local
[all...]

Completed in 140 milliseconds