Searched defs:def (Results 51 - 55 of 55) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/opto/
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 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...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp4306 const char* def = _AD.get_preproc_def(start); local
4307 if (def != NULL && strcmp(def, start)) {
4308 const char* def1 = def;
4312 def = def2;
4319 start = strdup(def);
4703 char* def = get_ident_no_preproc(); local
4704 _AD.set_preproc_def(flag, def);
/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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java1354 public JCClassDecl def; field in class:JCTree.JCNewClass
1362 JCClassDecl def)
1369 this.def = def;
1385 public JCClassDecl getClassBody() { return def; }
2158 JCClassDecl def);
1358 JCNewClass(JCExpression encl, List<JCExpression> typeargs, JCExpression clazz, List<JCExpression> args, JCClassDecl def) argument
2154 NewClass(JCExpression encl, List<JCExpression> typeargs, JCExpression clazz, List<JCExpression> args, JCClassDecl def) argument

Completed in 75 milliseconds

123