Searched refs:def (Results 51 - 75 of 129) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java1902 Attribute.Layout def = attrDefs.get(ctype).get(ai);
1903 if (def == null) continue; // unused flag bit
1905 res.add(def);
1914 // If the bit is set, it was explicitly def'd.
2019 Attribute.Layout def = Attribute.find(ctype, name, layout).layout();
2020 //def.predef = true;
2022 setAttributeLayoutIndex(def, index);
2027 assert(attrBandTable.get(def) == null); // no redef
2028 attrBandTable.put(def, ab);
2029 assert(def
2119 makeNewAttributeBands(String pfx, Attribute.Layout def, MultiBand addHere) argument
2214 setAttributeLayoutIndex(Attribute.Layout def, int index) argument
[all...]
H A DPackageReader.java832 : new PrintStream(getDumpStream(attr_definition_headers, ".def")))
840 Attribute.Layout def = new Attribute.Layout(ctype,
844 String pvLayout = def.layoutForPackageMajver(getPackageMajver());
845 if (!pvLayout.equals(def.layout())) {
846 throw new IOException("Bad attribute layout in version 150 archive: "+def.layout());
848 this.setAttributeLayoutIndex(def, index);
849 if (dump != null) dump.println(index+" "+def);
1503 Attribute.Layout def = defs[ai];
1504 if (def == null) continue; // unused index
1510 Attribute.Layout.Element[] cbles = def
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DEnvironment.java234 ClassDefinition def;
240 def = getQualifiedClassDefinition(where, nm, c, false);
241 if (!c.canAccess(this, def.getClassDeclaration())) {
244 error(where, "cant.access.class", def);
247 def.noteUsedBy(c, where, env);
300 ClassDefinition def;
305 def = getQualifiedClassDefinition(where, nm, c, isExtends);
306 ClassDeclaration decl = def.getClassDeclaration();
310 error(where, "cant.access.class", def);
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.hpp60 double _maxfreq; // Maximum frequency of any def or use
62 Node *_def; // Check for multi-def live ranges
162 _was_spilled1:1, // True if prior spilling on def
163 _was_spilled2:1, // True if twice prior spilling on def
166 _direct_conflict:1, // True if def and use registers in conflict
348 uint split_DEF( Node *def, Block *b, int loc, uint max, Node **Reachblock, Node **debug_defs, GrowableArray<uint> splits, int slidx );
349 uint split_USE( Node *def, Block *b, Node *use, uint useidx, uint max, bool def_down, bool cisc_sp, GrowableArray<uint> splits, int slidx );
351 Node *split_Rematerialize(Node *def, Block *b, uint insidx, uint &maxlrg, GrowableArray<uint> splits,
353 // True if lidx is used before any real register is def'd in the block
355 Node *get_spillcopy_wide( Node *def, Nod
[all...]
H A Doutput.cpp1905 Node *def = use->in(k); local
1906 if (!def)
1909 uint l = _node_latency[def->_idx] + use->latency(k);
2101 Node *def = n->in(i); local
2102 if (!def) continue;
2103 if( def->is_Proj() ) // If this is a machine projection, then
2104 def = def->in(0); // propagate usage thru to the base instruction
2106 if( _bbs[def->_idx] != bb ) // Ignore if not block-local
2111 if (_current_latency[def
2582 verify_do_def( Node *n, OptoReg::Name def, const char *msg ) argument
2625 Node *def = n->in(i); local
2658 anti_do_def( Block *b, Node *def, OptoReg::Name def_reg, int is_def ) argument
2835 Node *def = n->in(j); local
[all...]
H A Dgcm.cpp312 // We are placing a definition, and have been given a def->use edge.
315 // the LCA only with the phi input paths which actually use this def.
316 static Block* raise_LCA_above_use(Block* LCA, Node* use, Node* def, Block_Array &bbs) { argument
322 // the Phi? Well...it's like this. I do not have true def-use/use-def
323 // chains. Means I cannot distinguish, from the def-use direction, which
324 // of many use-defs lead from the same use to the same def. That is, this
325 // Phi might have several uses of the same def. Each use appears in a
327 // which use-def edge I should find the predecessor block for. So I find
331 if (use->in(j) == def) { // Foun
889 Node *def = n->in(j); local
932 latency_from_use(Node *n, const Node *def, Node *use) argument
999 const Node *def = n->is_Proj() ? n->in(0): n; local
1159 Node *def = self->in(1); local
[all...]
H A Dmultnode.cpp72 Node *def = in(0); local
73 return (_con == TypeFunc::Control && def->is_CFG());
H A Dsuperword.cpp132 // 7) The set of pack pairs is extended by following use->def and def->use links.
175 // following use->def and def->use links. The align positions are
756 // Extend packset by following use->def and def->use links from pack members.
1116 Node* def = p->at(i); local
1117 for (DUIterator_Fast jmax, j = def->fast_outs(jmax); j < jmax; j++) {
1118 Node* use = def->fast_out(j);
1121 if (def
1520 Node* def = p->at(i); local
1538 Node* def = use->in(idx); local
1611 Node* def = n->in(j); local
[all...]
H A Dlcm.cpp380 // Since schedule-local needs precise def-use info, we need to correct
910 static Node *catch_cleanup_find_cloned_def(Block *use_blk, Node *def, Block *def_blk, Block_Array &bbs, int n_clone_idx) { argument
913 // The use is some block below the Catch. Find and return the clone of the def
915 // create a phi for the def in a dominating block.
933 // PhiNode, the PhiNode uses from the def and IT's uses need fixup.
936 inputs.map(k, catch_cleanup_find_cloned_def(bbs[use_blk->pred(k)->_idx], def, def_blk, bbs, n_clone_idx));
941 // def are processed together.
956 Node *new_phi = PhiNode::make(use_blk->head(), def);
974 // Fix all input edges in use that reference "def". The use is in the same
975 // block as the def an
976 catch_cleanup_intra_block(Node *use, Node *def, Block *blk, int beg, int n_clone_idx) argument
998 catch_cleanup_inter_block(Node *use, Block *use_blk, Node *def, Block *def_blk, Block_Array &bbs, int n_clone_idx) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DTemperatureTableTest.java199 String def = targetClass.defaultStratum();
200 if (def.equals("JSP")) {
201 println("defaultStratum: " + def);
203 failure("FAIL: unexpected defaultStratum - " + def);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DValueType.java101 ClassDefinition def = null;
104 def = decl.getClassDefinition(env);
110 classDef = def;
H A DCompoundType.java1400 protected boolean inheritsFrom(ClassDefinition def, ClassDefinition otherDef) { argument
1401 if (def == otherDef)
1405 if (def.getSuperClass() != null) {
1406 superDef = def.getSuperClass().getClassDefinition();
1411 ClassDeclaration[] interfaces = def.getInterfaces();
1437 ClassDefinition def = interfaces[i].getClassDefinition(env);
1441 InterfaceType it = SpecialInterfaceType.forSpecial(def,stack);;
1451 it = RemoteType.forRemote(def,stack,false);
1457 it = AbstractType.forAbstract(def,stack,true);
1463 it = NCInterfaceType.forNCInterface(def,stac
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpMibTree.java55 public void setDefaultAgent(SnmpMibAgent def) { argument
56 defaultAgent= def;
57 root.agent= def;
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DRootDocImpl.java113 for (JCClassDecl def : classes) {
115 if (env.shouldDocument(def.sym)) {
116 ClassDocImpl cd = env.getClassDoc(def.sym);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFinallyStatement.java186 Object def = e.nextElement();
187 exp.put(def, newexp.get(def));
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationProxyMaker.java122 Attribute def = m.defaultValue;
123 if (def != null) {
124 res.put(m, def);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DAnnotationProxyMaker.java125 Attribute def = m.getDefaultValue();
126 if (def != null)
127 res.put(m, def);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp125 static void def(State state, int init, Action action);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java162 Deflater def = new Deflater(Deflater.BEST_COMPRESSION); field in class:IDATOutputStream
212 if (!def.finished()) {
213 def.setInput(b, off, len);
214 while (!def.needsInput()) {
221 int len = def.deflate(buf, 0, buf.length);
248 if (!def.finished()) {
249 def.finish();
250 while (!def.finished()) {
256 def.end();
/openjdk7/jdk/make/bridge/JavaAccessBridge/
H A DMakefile63 /def:$(CLOSED_PLATFORM_SRC)/native/sun/bridge/JavaAccessBridge.DEF /libpath:"$(LIBDIR)"
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java485 ClassDefinition def = this;
486 while (def.isInnerClass()) {
487 def = def.getOuterClass();
489 if (def.isPublic()) {
495 if (def.getSource().equals(ref.getSource())) {
498 ((SourceClass)def).checkSourceFile(env, where);
712 ClassDefinition def =
715 def.resolveTypeStructure(env);
724 } else if (def
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DSecuritySupport.java110 public static String getSystemProperty(final String propName, final String def) { argument
113 return System.getProperty(propName, def);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DPretty.java495 if (init.def != null && init.def.defs != null) {
497 printBlock(init.def.defs);
865 if (tree.def != null) {
868 tree.def.name != null ? tree.def.name :
871 if ((tree.def.mods.flags & Flags.ENUM) != 0) print("/*enum*/");
872 printBlock(tree.def.defs);
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DChannelImpl.java127 private static boolean getBooleanProperty(String name, boolean def) { argument
130 return def;
/openjdk7/hotspot/src/share/vm/adlc/
H A Dmain.cpp121 char* def = strchr(flag, '='); local
122 if (def == NULL) def = (char*)"1";
123 else *def++ = '\0';
124 AD.set_preproc_def(flag, def);

Completed in 119 milliseconds

123456