Searched defs:expected_type (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp781 ciArrayKlass* expected_type; local
782 arraycopy_helper(x, &flags, &expected_type);
786 expected_type, flags, info);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantPool.java266 private CPInfo get(int index, int expected_type) throws InvalidIndex, UnexpectedEntry { argument
268 if (info.getTag() != expected_type)
269 throw new UnexpectedEntry(index, expected_type, info.getTag());
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp931 ciArrayKlass* expected_type; local
932 arraycopy_helper(x, &flags, &expected_type);
934 __ arraycopy(src.result(), src_pos.result(), dst.result(), dst_pos.result(), length.result(), tmp, expected_type, flags, info); // does add_safepoint
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp410 LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info)
418 , _expected_type(expected_type)
409 LIR_OpArrayCopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info) argument
H A Dc1_LIRGenerator.cpp749 ciArrayKlass* expected_type = NULL; local
767 expected_type = src_exact_type;
779 expected_type = dst_type;
784 if (expected_type == NULL) expected_type = dst_exact_type;
785 if (expected_type == NULL) expected_type = src_declared_type;
786 if (expected_type == NULL) expected_type = dst_declared_type;
807 if (expected_type !
[all...]
H A Dc1_LIR.hpp1236 ciArrayKlass* expected_type, int flags, CodeEmitInfo* info);
1245 ciArrayKlass* expected_type() const { return _expected_type; } function in class:LIR_OpArrayCopy
2143 void arraycopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info) { append(new LIR_OpArrayCopy(src, src_pos, dst, dst_pos, length, tmp, expected_type, flags, info)); } argument

Completed in 471 milliseconds