Searched defs:t2 (Results 76 - 100 of 100) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp426 IntConstant* t2 = v->type()->as_IntConstant(); local
427 return (t1 != NULL && t2 != NULL &&
428 t1->value() == t2->value());
433 LongConstant* t2 = v->type()->as_LongConstant(); local
434 return (t1 != NULL && t2 != NULL &&
435 t1->value() == t2->value());
440 FloatConstant* t2 = v->type()->as_FloatConstant(); local
441 return (t1 != NULL && t2 != NULL &&
442 jint_cast(t1->value()) == jint_cast(t2->value()));
447 DoubleConstant* t2 local
454 ObjectType* t2 = v->type()->as_ObjectType(); local
[all...]
H A Dc1_Canonicalizer.cpp296 ValueType* t2 = x->y()->type(); local
303 if (t2->is_constant()) {
306 int shift = t2->as_IntConstant()->value() & 31;
316 int shift = t2->as_IntConstant()->value() & 63;
327 if (t2->is_constant()) {
328 switch (t2->tag()) {
329 case intTag : if (t2->as_IntConstant()->value() == 0) set_canonical(x->x()); return;
330 case longTag : if (t2->as_IntConstant()->value() == 0) set_canonical(x->x()); return;
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
1341 t2,
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
1356 t2,
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, t2, resul
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"); }
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,
1467 , _tmp2(t2)
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
1687 , _tmp2(t2)
1805 LIR_Opr t1, LIR_Opr t2, LIR_Opr result)
1811 , _tmp2(t2) { }
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
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp180 double hfsq,f,s,z,R,w,t1,t2,dk; local
218 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
220 R = t2+t1;
511 double y1,t1,t2,r,s,t,u,v,w; local
619 t2 = v-(t1-u);
667 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
670 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
673 p_l = (y-y1)*t1+y*t2;
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_lgamma_r.c123 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable
279 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14)));
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandles.java2184 static RuntimeException misMatchedTypes(String what, MethodType t1, MethodType t2) { argument
2185 return newIllegalArgumentException(what + " must match: " + t1 + " != " + t2);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp656 LIR_Opr t2 = FrameMap::G3_opr; local
673 __ cas_obj(addr, cmp.result(), val.result(), t1, t2);
675 __ cas_int(addr, cmp.result(), val.result(), t1, t2);
677 __ cas_long(addr, cmp.result(), val.result(), t1, t2);
H A Dc1_LIRAssembler_sparc.cpp2826 Register t2 = op->tmp2()->as_register(); local
2829 __ mov(new_value_lo, t2);
2831 __ casx(addr, t1, t2);
2832 // generate condition code - if the swap succeeded, t2 ("new value" reg) was
2834 __ cmp(t1, t2);
2840 __ sllx(new_value_hi, 32, t2);
2842 __ or3(t2, new_value_lo, t2); // t2 holds 64-bit value to swap
2844 __ casx(addr, t1, t2);
2857 Register t2 = op->tmp2()->as_register(); local
[all...]
H A Dassembler_sparc.cpp3914 Register t2 = L1; local
3919 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_start_offset()), t2);
3920 or3(t1, t2, t3);
3921 cmp_and_br_short(t1, t2, Assembler::greaterEqual, Assembler::pn, next);
3927 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t2);
3928 or3(t3, t2, t3);
3929 cmp_and_br_short(t1, t2, Assembler::lessEqual, Assembler::pn, next2);
3951 Register t2, // temp register
3955 assert_different_registers(obj, var_size_in_bytes, t1, t2);
3967 const Register end = t2;
3946 eden_allocate( Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case ) argument
4089 Register t2 = G3; local
4186 incr_allocated_bytes(RegisterOrConstant size_in_bytes, Register t1, Register t2) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassWriter.java1374 static boolean isSameType(Type t1, Type t2, Types types) { argument
1375 if (t1 == null) { return t2 == null; }
1376 if (t2 == null) { return false; }
1378 if (isInt(t1) && isInt(t2)) { return true; }
1381 return t2.tag == UNINITIALIZED_THIS;
1383 if (t2.tag == UNINITIALIZED_OBJECT) {
1384 return ((UninitializedType)t1).offset == ((UninitializedType)t2).offset;
1388 } else if (t2.tag == UNINITIALIZED_THIS || t2.tag == UNINITIALIZED_OBJECT) {
1392 return types.isSameType(t1, t2);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java995 Token t2 = (Token)Token.categories2.get(name);
998 Token.categories2.put(newName, t2);
1001 Token.categories.put(newName, t2);
1114 ConcatToken(Token t1, Token t2) { argument
1117 this.child2 = t2;
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java3632 public int compare(T t1, T t2) { argument
3633 return cmp.compare(t2, t1);
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp268 ciType* ciTypeFlow::StateVector::type_meet_internal(ciType* t1, ciType* t2, ciTypeFlow* analyzer) { argument
269 assert(t1 != t2, "checked in caller");
271 return t2;
272 } else if (t2->equals(top_type())) {
274 } else if (t1->is_primitive_type() || t2->is_primitive_type()) {
278 if (!t2->is_primitive_type() || t2->equals(null_type())) {
279 return t2;
281 } else if (t2->equals(null_type())) {
295 ciKlass* k2 = t2
470 ciType* t2 = incoming->type_at(c); local
507 ciType* t2 = incoming->type_at(c); local
[all...]
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/share/vm/oops/
H A DconstantPoolOop.cpp865 jbyte t2 = cp2->tag_at(index2).value(); local
873 if (t2 == JVM_CONSTANT_UnresolvedClassInError) {
874 t2 = JVM_CONSTANT_UnresolvedClass;
877 if (t1 != t2) {
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.cpp80 Compile::TracePhase t2("escapeAnalysis", &Phase::_t_escapeAnalysis, true);
1793 const Type* t2 = jobj2->ideal_node()->get_ptr_type(); local
1794 if (t1->make_ptr() == t2->make_ptr()) {
H A Dloopnode.cpp1010 Node *t2 = NULL; local
1033 t2 = t1->in(1);
1034 n1 = t2->in(1);
1047 *trunc2 = t2;
3142 Node *t2 = idom(n2); local
3143 while (dom_depth(t2) == d2) {
3144 if (t2 == n1) return n1;
3145 t2 = idom(t2);
3149 n2 = t2;
3328 Node *t2 = idom(n2); local
[all...]
H A Dsuperword.cpp793 Node* t2 = s2->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) {
800 pair->push(t2);
802 set_alignment(t1, t2, align);
830 Node* t2 = s2->fast_out(j); local
831 if (!in_bb(t2)) continue;
832 if (!opnd_positions_match(s1, t1, s2, t2))
834 if (stmts_can_pack(t1, t2, alig
[all...]
H A Dmemnode.cpp1939 const Type *t2 = phase->type( adr ); local
1940 if (t2 == Type::TOP) return Type::TOP;
1941 const TypePtr *tp = t2->is_ptr();
2157 const Type *t2 = phase->type( adr ); local
2158 if( t2 == Type::TOP ) return Type::TOP;
2159 const TypePtr *tp = t2->is_ptr();
2357 const Type *t2 = phase->type( in(MemNode::Address) ); local
2358 if( t2 == Type::TOP ) return Type::TOP;
2457 const TypeInt *t2 = phase->type( shl->in(2) )->isa_int(); local
2458 if( t2
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1022 Register t2 = rsi; 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);
1076 __ initialize_object(obj, klass, obj_size, 0, t1, t2);
1154 Register t2 = rdi; local
1156 assert_different_registers(length, klass, obj, arr_size, t1, t2);
1183 __ tlab_allocate(obj, arr_size, 0, t1, t2, slow_path); // preserves arr_size
1185 __ initialize_header(obj, klass, length, t1, t2);
1192 __ initialize_body(t1, arr_size, 0, t2);
[all...]
H A Dassembler_x86.cpp8882 // Defines obj, preserves var_size_in_bytes, okay for t2 == var_size_in_bytes.
8887 Register t2,
8889 assert_different_registers(obj, t1, t2);
8891 Register end = t2;
8923 Register t2 = rsi; local
8925 assert_different_registers(top, thread_reg, t1, t2, /* preserve: */ rbx, rdx);
8949 movptr(t2, (int32_t) ThreadLocalAllocBuffer::refill_waste_limit_increment());
8950 addptr(Address(thread_reg, in_bytes(JavaThread::tlab_refill_waste_limit_offset())), t2); local
8993 eden_allocate(top, t1, 0, t2, slow_case);
8883 tlab_allocate(Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp790 jbyte t2 = cp2->tag_at(index2).value(); local
791 if (t2 != JVM_CONSTANT_Class && t2 != JVM_CONSTANT_UnresolvedClass) {
795 if (t1 == t2) {
819 jbyte t2 = cp2->tag_at(index2).value(); local
820 if (t2 != JVM_CONSTANT_String && t2 != JVM_CONSTANT_UnresolvedString) {
824 if (t1 == t2) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java335 Type t2 = asSuper(t, s.tsym);
336 if (t2 != null && t2.isRaw()) {
779 for (Type t2 : undetvar.lobounds) {
780 if (!isSubtype(t2, bound))
790 for (Type t2 : undetvar.hibounds) {
791 if (!isSubtype(bound, t2))
2746 final Type t2; field in class:Types.TypePair
2747 TypePair(Type t1, Type t2) { argument
2749 this.t2
2844 lub(Type t1, Type t2) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java1554 for (Type t2 = sup;
1555 t2.tag == CLASS;
1556 t2 = types.supertype(t2)) {
1557 for (Scope.Entry e2 = t2.tsym.members().lookup(s1.name);
1570 Type st2 = types.memberType(t2, s2);
1573 s1, t1, s2, t2, sup);
1584 * @param t2 The second argument type.
1588 Type t2) {
1589 return checkCompatibleAbstracts(pos, t1, t2,
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...]

Completed in 270 milliseconds

1234