Searched defs:t1 (Results 101 - 116 of 116) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/opto/
H A Descape.cpp1792 const Type* t1 = jobj1->ideal_node()->get_ptr_type(); local
1794 if (t1->make_ptr() == t2->make_ptr()) {
H A Dloopnode.cpp1009 Node *t1 = NULL;
1020 t1 = n1;
1021 n1 = t1->in(1);
1032 t1 = n1;
1033 t2 = t1->in(1);
1046 *trunc1 = t1;
3136 Node *t1 = idom(n1); local
3137 while (dom_depth(t1) == d1) {
3138 if (t1 == n2) return n2;
3139 t1
3320 Node *t1 = idom(n1); local
[all...]
H A Dsuperword.cpp792 Node* t1 = s1->in(j); local
794 if (!in_bb(t1) || !in_bb(t2))
796 if (stmts_can_pack(t1, t2, align)) {
797 if (est_savings(t1, t2) >= 0) {
799 pair->push(t1);
802 set_alignment(t1, t2, align);
827 Node* t1 = s1->fast_out(i); local
828 if (!in_bb(t1)) continue;
832 if (!opnd_positions_match(s1, t1, s2, t2))
834 if (stmts_can_pack(t1, t
[all...]
H A Dtype.cpp193 int Type::cmp( const Type *const t1, const Type *const t2 ) { argument
194 if( t1->_base != t2->_base )
196 assert(t1 != t2 || t1->eq(t2), "eq must be reflexive");
197 return !t1->eq(t2); // Return ZERO if equal
H A Dmemnode.cpp1541 const Type *t1 = phase->type(mem); local
1542 if (t1 == Type::TOP) return Type::TOP;
1936 const Type *t1 = phase->type( in(MemNode::Memory) ); local
1937 if (t1 == Type::TOP) return Type::TOP;
2154 const Type *t1 = phase->type( in(MemNode::Memory) ); local
2155 if( t1 == Type::TOP ) return Type::TOP;
2355 const Type *t1 = phase->type( in(MemNode::Memory) ); local
2356 if( t1 == Type::TOP ) return Type::TOP;
2527 const Type *t1 = phase->type( my_store->in(MemNode::ValueIn) ); local
2528 if( t1
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1021 Register t1 = rbx; local
1023 assert_different_registers(klass, obj, obj_size, t1, t2);
1061 __ tlab_allocate(obj, obj_size, 0, t1, t2, slow_path);
1063 __ initialize_object(obj, klass, obj_size, 0, t1, t2);
1073 __ eden_allocate(obj, obj_size, 0, t1, slow_path);
1076 __ initialize_object(obj, klass, obj_size, 0, t1, t2);
1153 Register t1 = rcx; // must be rcx for use as shift count local
1156 assert_different_registers(length, klass, obj, arr_size, t1, t2);
1172 __ movl(t1, Address(klass, Klass::layout_helper_offset()));
1175 assert(t1
[all...]
H A Dassembler_x86.cpp7451 Register t1,
7454 assert_different_registers(obj, var_size_in_bytes, t1);
7458 Register end = t1;
8886 Register t1,
8889 assert_different_registers(obj, t1, t2);
8890 assert_different_registers(obj, var_size_in_bytes, t1);
8892 Register thread = NOT_LP64(t1) LP64_ONLY(r15_thread);
8922 Register t1 = rcx; local
8925 assert_different_registers(top, thread_reg, t1, t2, /* preserve: */ rbx, rdx);
8936 movptr(t1, Addres
7448 eden_allocate(Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Label& slow_case) argument
8883 tlab_allocate(Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case) argument
8962 addl(Address(thread_reg, in_bytes(JavaThread::tlab_fast_refill_waste_offset())), t1); local
8976 movl(Address(top, arrayOopDesc::length_offset_in_bytes()), t1); local
9024 incr_allocated_bytes(Register thread, Register var_size_in_bytes, int con_size_in_bytes, Register t1) argument
9784 Register t1 = rsi; local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp1335 void LIR_List::allocate_object(LIR_Opr dst, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, argument
1340 t1,
1350 void LIR_List::allocate_array(LIR_Opr dst, LIR_Opr len, LIR_Opr t1,LIR_Opr t2, LIR_Opr t3,LIR_Opr t4, BasicType type, LIR_Opr klass, CodeStub* stub) { argument
1355 t1,
1466 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) {
1467 append(new LIR_OpCompareAndSwap(lir_cas_long, addr, cmp_value, new_value, t1, t2, result));
1471 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) {
1472 append(new LIR_OpCompareAndSwap(lir_cas_obj, addr, cmp_value, new_value, t1, t2, result));
1476 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) {
1477 append(new LIR_OpCompareAndSwap(lir_cas_int, addr, cmp_value, new_value, t1, t
1465 cas_long(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, LIR_Opr t1, LIR_Opr t2, LIR_Opr result) argument
1470 cas_obj(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, LIR_Opr t1, LIR_Opr t2, LIR_Opr result) argument
1475 cas_int(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, LIR_Opr t1, LIR_Opr t2, LIR_Opr result) argument
[all...]
H A Dc1_LIR.hpp93 void type_check(BasicType t1, BasicType t2) const { assert(type() == t1 || type() == t2, "type check"); } argument
94 void type_check(BasicType t1, BasicType t2, BasicType t3) const { assert(type() == t1 || type() == t2 || type() == t3, "type check"); } argument
1463 LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4,
1466 , _tmp1(t1)
1682 LIR_OpAllocArray(LIR_Opr klass, LIR_Opr len, LIR_Opr result, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, BasicType type, CodeStub* stub) argument
1686 , _tmp1(t1)
1805 LIR_Opr t1, LIR_Opr t2, LIR_Opr result)
1810 , _tmp1(t1)
1462 LIR_OpAllocObj(LIR_Opr klass, LIR_Opr result, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, int hdr_size, int obj_size, bool init_check, CodeStub* stub) argument
1804 LIR_OpCompareAndSwap(LIR_Code code, LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, LIR_Opr t1, LIR_Opr t2, LIR_Opr result) argument
1839 LIR_OpProfileCall(LIR_Code code, ciMethod* profiled_method, int profiled_bci, ciMethod* profiled_callee, LIR_Opr mdo, LIR_Opr recv, LIR_Opr t1, ciKlass* known_holder) argument
2155 profile_call(ciMethod* method, int bci, ciMethod* callee, LIR_Opr mdo, LIR_Opr recv, LIR_Opr t1, ciKlass* cha_klass) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp785 jbyte t1 = cp1->tag_at(index1).value(); local
786 if (t1 != JVM_CONSTANT_Class && t1 != JVM_CONSTANT_UnresolvedClass) {
795 if (t1 == t2) {
814 jbyte t1 = cp1->tag_at(index1).value(); local
815 if (t1 != JVM_CONSTANT_String && t1 != JVM_CONSTANT_UnresolvedString) {
824 if (t1 == t2) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2745 final Type t1; field in class:Types.TypePair
2747 TypePair(Type t1, Type t2) { argument
2748 this.t1 = t1;
2753 return 127 * Types.hashCode(t1) + Types.hashCode(t2);
2760 return isSameType(t1, typePair.t1)
2844 public Type lub(Type t1, Type t2) { argument
2845 return lub(List.of(t1, t2));
2975 Type t1
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java1536 for (Type t1 = sup;
1537 t1.tsym.type.isParameterized();
1538 t1 = types.supertype(t1)) {
1539 for (Scope.Entry e1 = t1.tsym.members().elems;
1550 Type st1 = types.memberType(t1, s1);
1573 s1, t1, s2, t2, sup);
1583 * @param t1 The first argument type.
1587 Type t1,
1589 return checkCompatibleAbstracts(pos, t1, t
1586 checkCompatibleAbstracts(DiagnosticPosition pos, Type t1, Type t2) argument
1593 checkCompatibleAbstracts(DiagnosticPosition pos, Type t1, Type t2, Type site) argument
1608 firstIncompatibility(DiagnosticPosition pos, Type t1, Type t2, Type site) argument
1648 firstDirectIncompatibility(DiagnosticPosition pos, Type t1, Type t2, Type site) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp178 static ciType* type_meet_internal(ciType* t1, ciType* t2, ciTypeFlow* analyzer);
204 ciType* type_meet(ciType* t1, ciType* t2) { argument
205 return type_meet_internal(t1, t2, outer());
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2825 Register t1 = op->tmp1()->as_register(); local
2828 __ mov(cmp_value_lo, t1);
2831 __ casx(addr, t1, t2);
2833 // overwritten with the original value in "addr" and will be equal to t1.
2834 __ cmp(t1, t2);
2837 __ sllx(cmp_value_hi, 32, t1); // shift high half into temp reg
2839 __ or3(t1, cmp_value_lo, t1); // t1 holds 64-bit compare value
2844 __ casx(addr, t1, t
2856 Register t1 = op->tmp1()->as_register(); local
[all...]
H A Dassembler_sparc.cpp3913 Register t1 = L0; local
3918 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
3920 or3(t1, t2, t3);
3921 cmp_and_br_short(t1, t2, Assembler::greaterEqual, Assembler::pn, next);
3926 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
3929 cmp_and_br_short(t1, t2, Assembler::lessEqual, Assembler::pn, next2);
3950 Register t1, // temp register
3955 assert_different_registers(obj, var_size_in_bytes, t1, t2);
3966 const Register top_addr = t1;
4015 const Register top_addr = t1;
3946 eden_allocate( Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case ) argument
4030 tlab_allocate( Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Label& slow_case ) argument
4088 Register t1 = G1; local
4186 incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register t1, Register t2) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2286 mp_int t0, t1, val, tmp, two2k; local
2301 MP_DIGITS(&t1) = 0;
2308 MP_CHECKOK( mp_init_copy(&t1, &t0) );
2313 MP_CHECKOK( mp_mul(&val, &t1, &tmp) );
2315 MP_CHECKOK( mp_mul(&t1, &tmp, &t1) );
2316 s_mp_mod_2d(&t1, k);
2317 while (MP_SIGN(&t1) != MP_ZPOS) {
2318 MP_CHECKOK( mp_add(&t1, &two2k, &t1) );
[all...]

Completed in 403 milliseconds

12345