Searched defs:tmp (Results 101 - 125 of 141) sorted by relevance

123456

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1626 const Register tmp = rdx; local
1645 __ movslq(tmp, queue_index);
1646 __ cmpq(tmp, 0);
1652 __ subq(tmp, wordSize);
1653 __ movl(queue_index, tmp);
1654 __ addq(tmp, buffer);
1657 __ movl(tmp, buffer);
1658 __ addl(tmp, queue_index);
1663 __ movptr(Address(tmp, 0), pre_val);
1731 const Register tmp local
[all...]
H A Dinterp_masm_x86_32.cpp183 Register tmp = java_thread; local
184 movptr(tmp, Address(tmp, JavaThread::jvmti_thread_state_offset()));
185 testptr(tmp, tmp);
191 movl(tmp, Address(tmp, JvmtiThreadState::earlyret_state_offset()));
192 cmpl(tmp, JvmtiThreadState::earlyret_pending);
198 movptr(tmp, Address(java_thread, JavaThread::jvmti_thread_state_offset()));
199 pushl(Address(tmp, JvmtiThreadStat
265 get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size) argument
[all...]
H A Dinterp_masm_x86_64.cpp269 Register tmp,
272 assert(cache != tmp, "must use different register");
273 get_cache_index_at_bcp(tmp, bcp_offset, index_size);
277 shll(tmp, 2 + LogBytesPerWord);
281 addptr(cache, tmp); // construct pointer to cache entry
268 get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size) argument
H A Dc1_LIRAssembler_x86.cpp230 Address LIR_Assembler::as_Address(LIR_Address* addr, Register tmp) { argument
235 __ movptr(tmp, laddr.addr());
236 Address res(tmp, 0);
607 int LIR_Assembler::safepoint_poll(LIR_Opr tmp, CodeEmitInfo* info) { argument
2598 assert(temp->as_register() == rdx, "tmp register must be rdx");
2624 assert(temp->as_register() == rdx, "tmp register must be rdx");
2948 void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp) { argument
2953 // * tmp must be unused
2956 assert(tmp->is_illegal(), "wasting a register if tmp i
3063 Register tmp = op->tmp()->as_register(); local
3656 rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info) argument
3772 atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp) argument
[all...]
H A DsharedRuntime_x86_64.cpp1441 VMRegPair tmp; local
1442 tmp.set_ptr(tmp_reg->as_VMReg());
1445 move_ptr(masm, reg, tmp);
1446 reg = tmp;
1451 move_ptr(masm, tmp, body_arg);
1455 move32_64(masm, tmp, length_arg);
1460 move_ptr(masm, tmp, body_arg);
1461 move32_64(masm, tmp, length_arg);
3109 // Save the ptr to utf string in the origina src loc or the tmp
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c1901 void * tmp; local
1902 pthread_join(tid, &tmp);
1903 rslt = (int)(intptr_t)tmp;
1919 void * tmp; local
1920 thr_join(tid, NULL, &tmp);
1921 rslt = (int)(intptr_t)tmp;
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c859 JavaVMOption *tmp; local
861 tmp = JLI_MemAlloc(maxOptions * sizeof(JavaVMOption));
862 memcpy(tmp, options, numOptions * sizeof(JavaVMOption));
864 options = tmp;
871 jlong tmp; local
872 if (parse_stack_size(str + 4, &tmp)) {
873 threadStackSize = tmp;
1211 char *tmp = JLI_MemAlloc(strlen(arg) + 50); local
1213 sprintf(tmp, "-Xrunhprof:cpu=old,file=%s", p + 1);
1215 sprintf(tmp, "
1222 char *tmp = JLI_MemAlloc(strlen(arg) + 6); local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp410 LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info)
412 , _tmp(tmp)
728 // log/log10 need one so handle opr2 and tmp as temp inputs.
1272 void LIR_List::idiv(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1277 tmp,
1283 void LIR_List::idiv(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1288 tmp,
1294 void LIR_List::irem(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1299 tmp,
1305 void LIR_List::irem(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInf argument
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
1363 shift_left(LIR_Opr value, LIR_Opr count, LIR_Opr dst, LIR_Opr tmp) argument
1372 shift_right(LIR_Opr value, LIR_Opr count, LIR_Opr dst, LIR_Opr tmp) argument
1382 unsigned_shift_right(LIR_Opr value, LIR_Opr count, LIR_Opr dst, LIR_Opr tmp) argument
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c657 JavaVMOption *tmp; local
659 tmp = JLI_MemAlloc(maxOptions * sizeof(JavaVMOption));
660 memcpy(tmp, options, numOptions * sizeof(JavaVMOption));
662 options = tmp;
669 jlong tmp; local
670 if (parse_size(str + 4, &tmp)) {
671 threadStackSize = tmp;
676 jlong tmp; local
677 if (parse_size(str + 4, &tmp)) {
678 maxHeapSize = tmp;
683 jlong tmp; local
1031 char *tmp = JLI_MemAlloc(JLI_StrLen(arg) + 50); local
1042 char *tmp = JLI_MemAlloc(JLI_StrLen(arg) + 6); local
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A DNetworkInterface.c603 jobject tmp; local
728 tmp = createNetworkInterface(env, childP);
729 if (tmp == NULL) {
732 (*env)->SetObjectField(env, tmp, ni_parentID, netifObj);
733 (*env)->SetObjectArrayElement(env, childArr, child_index++, tmp);
/openjdk7/jdk/src/windows/native/sun/security/mscapi/
H A Dsecurity.cpp1414 BYTE tmp; local
1434 tmp = pData[i];
1436 pData[dwBufLen - i - 1] = tmp;
1441 tmp = pData[i];
1443 pData[dwBufLen - i - 1] = tmp;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.cpp543 FORMATETC tmp = *pFormatEtcIn; local
558 tmp.tymed = supportedTymeds[i];
559 pFormat = (const FORMATETC *)bsearch((const void *)&tmp,
1330 unsigned int tmp = m_idx + celt; local
1332 if (tmp < len) {
1333 m_idx = tmp;
H A Dawt_DnDDT.cpp1015 FORMATETC tmp; local
1018 res = pEnumFormatEtc->Next((ULONG)1, &tmp, &actual);
1022 if (!(tmp.cfFormat >= 1 &&
1023 tmp.ptd == NULL &&
1024 (tmp.lindex == -1 || CF_FILECONTENTS==tmp.cfFormat) &&
1025 tmp.dwAspect == DVASPECT_CONTENT &&
1026 ( tmp.tymed == TYMED_HGLOBAL ||
1027 tmp.tymed == TYMED_FILE ||
1028 tmp
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1491 unsigned int tmp = num/10; local
1492 num -= tmp*10;
1499 num = tmp;
H A Dpngrtran.c2582 png_int_32 tmp = *sp++; /* must be signed! */ local
2583 tmp += (((int)*sp++ - tmp + 128) * 65535) >> 24;
2584 *dp++ = (png_byte)tmp;
H A Dpngwutil.c627 int tmp; local
630 tmp = comp->output_ptr[0][1] & 0xe0;
631 tmp += 0x1f - ((z_cmf << 8) + tmp) % 0x1f;
632 comp->output_ptr[0][1] = (png_byte)tmp;
637 int tmp; local
640 tmp = png_ptr->zbuf[1] & 0xe0;
641 tmp += 0x1f - ((z_cmf << 8) + tmp) % 0x1f;
642 png_ptr->zbuf[1] = (png_byte)tmp;
1030 int tmp; local
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicReordering.cpp1207 FeatureMask tmp = output.getFeatures(i-1+inv_count); local
1208 tmp ^= halfFeatureMask;
1209 output.setFeatures(i-1+inv_count,tmp);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmslut.c1714 cmsVEC3 tmp, tmp2; local
1790 if (!_cmsMAT3solve(&tmp, &Jacobian, &tmp2))
1794 x[0] -= (cmsFloat32Number) tmp.n[0];
1795 x[1] -= (cmsFloat32Number) tmp.n[1];
1796 x[2] -= (cmsFloat32Number) tmp.n[2];
H A Dcmspack.c156 cmsUInt16Number tmp = wIn[0]; local
159 wIn[nChan-1] = tmp;
521 cmsUInt16Number tmp = wIn[0]; local
524 wIn[nChan-1] = tmp;
935 cmsUInt16Number tmp = wIn[0]; local
938 wIn[nChan-1] = tmp;
991 cmsUInt16Number tmp = wIn[0]; local
994 wIn[nChan-1] = tmp;
1064 cmsFloat32Number tmp = wIn[0]; local
1067 wIn[nChan-1] = tmp;
1116 cmsFloat32Number tmp = wIn[0]; local
2696 cmsUInt16Number tmp = wIn[0]; local
2748 cmsFloat32Number tmp = wIn[0]; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.cpp320 Node *tmp = incr; // Then reverse order into the CmpI local
322 limit = tmp;
355 Node *tmp = xphi; // 'incr' is commutative, so ok to swap
357 stride = tmp;
1496 Node *tmp = _head->in(1); local
1498 _head->set_req( fall_in_cnt, tmp );
1504 tmp = phi->in(1);
1506 phi->set_req( fall_in_cnt, tmp );
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp1065 Register tmp = O7; local
1068 tmp = G0;
1072 __ stw(tmp, addr.base(), addr.disp() + lo_word_offset_in_bytes);
1075 tmp = G0;
1079 __ stw(tmp, addr.base(), addr.disp() + hi_word_offset_in_bytes);
1098 LIR_Opr tmp = FrameMap::O7_opr; local
1101 tmp = FrameMap::G0_opr;
1107 offset = store(tmp, base, addr->index()->as_pointer_register(), type, wide);
1110 offset = store(tmp, base, addr->disp(), type, wide, false);
1120 LIR_Opr tmp local
1139 LIR_Opr tmp; local
1301 Register tmp = O7; local
1309 Register tmp = O7; local
1318 Register tmp = O7; local
1577 safepoint_poll(LIR_Opr tmp, CodeEmitInfo* info) argument
2067 Register tmp = op->tmp()->as_register(); local
2393 shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp) argument
3140 rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info) argument
3415 atomic_op(LIR_Code code, LIR_Opr src, LIR_Opr data, LIR_Opr dest, LIR_Opr tmp) argument
[all...]
H A Dinterp_masm_sparc.cpp729 void InterpreterMacroAssembler::get_cache_index_at_bcp(Register cache, Register tmp, argument
733 get_2_byte_integer_at_bcp(bcp_offset, cache, tmp, Unsigned);
736 get_4_byte_integer_at_bcp(bcp_offset, cache, tmp);
738 xor3(tmp, -1, tmp); // convert to plain index
741 ldub(Lbcp, bcp_offset, tmp);
748 void InterpreterMacroAssembler::get_cache_and_index_at_bcp(Register cache, Register tmp, argument
751 assert_different_registers(cache, tmp);
753 get_cache_index_at_bcp(cache, tmp, bcp_offset, index_size);
756 sll(tmp, exact_log
779 get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size) argument
900 index_check_without_pop(Register array, Register index, int index_shift, Register tmp, Register res) argument
930 index_check(Register array, Register index, int index_shift, Register tmp, Register res) argument
[all...]
H A DsharedRuntime_sparc.cpp1781 VMRegPair tmp = reg64_to_VMRegPair(L2); local
1783 move_ptr(masm, reg, tmp);
1784 reg = tmp;
2985 Register tmp = L2; local
2996 tmp = dst.first()->as_Register();
3002 __ mov(G0, tmp->successor());
3005 __ delayed()->mov(G0, tmp);
3011 __ ldub(in_reg, box_offset, tmp); break;
3013 __ lduh(in_reg, box_offset, tmp); break;
3015 __ ld(in_reg, box_offset, tmp); brea
3161 Register tmp = L2; local
[all...]
H A DstubGenerator_sparc.cpp202 const Register tmp = G3_scratch; local
216 __ ld_ptr(src, 0, tmp);
218 __ st_ptr(tmp, dst, 0);
1024 // tmp - scratch register
1070 // tmp - scratch register
1075 Register tmp) {
1095 assert_different_registers(addr, count, tmp);
1107 __ set(rs, tmp);
1109 __ stb(G0, tmp, addr);
1074 gen_write_ref_array_post_barrier(Register addr, Register count, Register tmp) argument
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp4517 char tmp = *_ptr; local
4520 *_ptr = tmp; // restore buffer

Completed in 378 milliseconds

123456