Searched defs:ft (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestC1.java39 public T ft; field in class:C1
245 Field ft = cls. getField("ft");
249 Type gt_ft = ft.getGenericType();
252 "The generic type of C1.ft is a type variable";
256 "The name of the type of ft is T, not " + tv.getName();
260 "The type of ft should have one bound";
263 "The bound of the type of ft should be Object";
H A DTestC2.java39 public T ft; field in class:C0
78 public T1 ft; field in class:C2
477 Field ft = cls. getField("ft");
482 Type gt_ft = ft.getGenericType();
485 "The generic type of C0.ft is a type variable";
489 "The name of the type of ft is T1, not " + tv.getName();
493 "The type of ft should have one bound";
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp127 BasicType ft = field_type(); local
129 switch (ft) {
181 if (ft == T_LONG || ft == T_DOUBLE LP64_ONLY(|| !is_java_primitive(ft)) ) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DContext.java127 checkState(ft);
128 ft.put(key, fac); // cannot be duplicate if unique in ht
166 private Map<Key<?>,Factory<?>> ft = new HashMap<Key<?>,Factory<?>>(); field in class:Context
170 ft.putAll(prev.ft); // retain all factory objects
171 ht.putAll(prev.ft); // init main table with factories
217 ft = null;
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.cpp102 BasicType ft = type2field[vt]; local
119 assert(vt == ft, "");
123 assert(vt != ft, "");
124 assert(ft == type2field[ft], "");
127 assert(type2size[vt] == type2size[ft], "");
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp400 const Type* ft = phase->type(in(1))->filter(_type); local
409 if( t1 == Type::TOP ) assert(ft == Type::TOP, "special case #1");
411 if (rt->empty()) assert(ft == Type::TOP, "special case #2");
417 assert(ft == Type::TOP, "special case #3");
422 return ft;
H A Dcfgnode.cpp971 const Type* ft = t->filter(_type); // Worst case type local
988 { assert(ft == _type, ""); } // Uplift to interface
990 { assert(ft == _type, ""); } // Uplift to interface
994 { assert(ft == Type::TOP, ""); } // Canonical empty value
1011 assert(ft == ttip->cast_to_ptr_type(jtip->ptr()) ||
1012 ft->isa_narrowoop() && ft->make_ptr() == ttip->cast_to_ptr_type(jtip->ptr()), "");
1013 jt = ft;
1020 assert(ft == ttkp->cast_to_ptr_type(jtkp->ptr()) ||
1021 ft
[all...]
H A Descape.cpp1450 BasicType ft = UseCompressedOops ? T_NARROWOOP : T_ADDRESS; local
1451 Node* store = ini->find_captured_store(offset, type2aelembytes(ft, true), phase);
1456 store->as_Store()->memory_type() == ft) {
H A Dmacro.cpp384 Node *PhaseMacroExpand::value_from_mem_phi(Node *mem, BasicType ft, const Type *phi_type, const TypeOopPtr *adr_t, Node *alloc, Node_Stack *value_phis, int level) { argument
426 values.at_put(j, _igvn.zerocon(ft));
430 val = val->as_Initialize()->find_captured_store(offset, type2aelembytes(ft), &_igvn);
440 values.at_put(j, _igvn.zerocon(ft));
442 val = value_from_mem_phi(val, ft, phi_type, adr_t, alloc, value_phis, level-1);
472 Node *PhaseMacroExpand::value_from_mem(Node *sfpt_mem, BasicType ft, const Type *ftype, const TypeOopPtr *adr_t, Node *alloc) { argument
496 mem = mem->as_Initialize()->find_captured_store(offset, type2aelembytes(ft), &_igvn);
538 return _igvn.zerocon(ft);
544 Node * phi = value_from_mem_phi(mem, ft, ftype, adr_t, alloc, &value_phis, ValueSearchLimit);
H A Dtype.cpp674 const Type* ft = join(kills); local
675 if (ft->empty())
677 return ft;
1254 const TypeInt* ft = join(kills)->isa_int(); local
1255 if (ft == NULL || ft->empty())
1257 if (ft->_widen < this->_widen) {
1260 ft = TypeInt::make(ft->_lo, ft
1513 const TypeLong* ft = join(kills)->isa_long(); local
2701 const Type* ft = join(kills); local
3802 const Type* ft =_ptrtype->filter(kills->is_narrowoop()->_ptrtype); local
3810 const Type* ft = _ptrtype->join(kills); local
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/generator/
H A DWrapperGenerator.java931 public void writeFunctionCallWrapper(String outputDir, FunctionType ft) { argument
933 FileOutputStream fs = new FileOutputStream(outputDir + "/" + ft.getName()+".java");
939 pw.println("class " + ft.getName() + " {");
943 Iterator iter = ft.getArguments().iterator();
952 pw.println("\tpublic " + ft.getName() + "(");
953 iter = ft.getArguments().iterator();
967 iter = ft.getArguments().iterator();
976 pw.println("\tpublic " + ft.getReturnType() + " execute() {");
977 if (ft.isVoid()) {
984 pw.println("\tpublic " + ft
[all...]
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c1773 unsigned ft; /* frame_type */ local
1777 ft = readU1(ci);
1778 if ( ft <= 63 ) {
1782 delta = (delta_adj + ft);
1794 } else if ( ft >= 64 && ft <= 127 ) {
1798 delta = (delta_adj + ft - 64);
1811 } else if ( ft >= 128 && ft <= 246 ) {
1814 } else if ( ft
[all...]

Completed in 143 milliseconds