Searched refs:def (Results 101 - 125 of 170) sorted by relevance

1234567

/openjdk9/hotspot/src/share/vm/opto/
H A Difg.cpp358 // to the instruction and kills the src-def'd register.
582 Node* def = n->in(0); local
584 (_lrg_map.live_range_id(def) && !liveout->member(_lrg_map.live_range_id(def)))) {
593 if (def->has_out_with(Op_SCMemProj)) {
732 * SCMemProj use) they also def flags; if that flag def is unused the allocator
742 Node* def = n->in(k); local
743 uint lid = _lrg_map.live_range_id(def);
753 lrg._cost += (def
[all...]
H A Dlive.cpp100 IndexSet* def = &_defs[block->_pre_order-1]; local
111 def->insert( r );
131 def->insert(r);
H A Dlcm.cpp436 // Since schedule-local needs precise def-use info, we need to correct
1208 Node* PhaseCFG::catch_cleanup_find_cloned_def(Block *use_blk, Node *def, Block *def_blk, int n_clone_idx) { argument
1211 // The use is some block below the Catch. Find and return the clone of the def
1213 // create a phi for the def in a dominating block.
1231 // PhiNode, the PhiNode uses from the def and IT's uses need fixup.
1235 inputs.map(k, catch_cleanup_find_cloned_def(block, def, def_blk, n_clone_idx));
1240 // def are processed together.
1255 Node *new_phi = PhiNode::make(use_blk->head(), def);
1273 // Fix all input edges in use that reference "def". The use is in the same
1274 // block as the def an
1275 catch_cleanup_intra_block(Node *use, Node *def, Block *blk, int beg, int n_clone_idx) argument
1297 catch_cleanup_inter_block(Node *use, Block *use_blk, Node *def, Block *def_blk, int n_clone_idx) argument
[all...]
H A Dcoalesce.cpp85 // Combine the live ranges def'd by these 2 Nodes. N2 is an input to N1.
138 // to carry values instead of the explicit use-def chains. Suppose I need to
142 // direct use-def chains get me the right value. It DOES happen in the named
249 Node *def = copy->in(cidx); local
250 if (_phc._lrg_map.find(copy) == _phc._lrg_map.find(def)) {
251 n->set_req(k, def);
259 Node *def = n->in(cidx); local
260 if (_phc._lrg_map.find(n) == _phc._lrg_map.find(def)) {
261 n->replace_by(def);
307 // Insert the copy in the use-def chai
[all...]
H A Dblock.cpp969 // there are now explicitly visible def-use chains and the Projs are
1219 Node *def = n->in(k);
1220 if (def && def != n) {
1221 assert(get_block_for_node(def) || def->is_Con(), "must have block; constants for debug info ok");
1226 if (get_block_for_node(def) == block && !(block->head()->is_Loop() && n->is_Phi()) &&
1231 for (uint l = 1; l < def->req(); l++) {
1232 if (n == def->in(l)) {
1238 assert(is_loop || block->find_node(def) <
[all...]
H A Dloopopts.cpp1673 // Copy uses to a worklist, so I can munge the def-use info
1745 // Copy uses to a worklist, so I can munge the def-use info
1867 // from the IF up to where the original BOOL def exists the loop.
2239 Node* def = elt->in(j); local
2240 if (def && member.test(def->_idx) && def != elt) {
2352 // If these def-uses occur in separate blocks, the code generator
2428 Node *def = loop->_body.at(i); local
2429 uint di = def
2475 Node *def = peel_list.at(i); local
2965 Node *def = peel_list.at(i); local
[all...]
/openjdk9/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp639 void ArchDesc::set_preproc_def(const char* flag, const char* def) { argument
646 deff->_code = (char*) def;
1121 char* def = get_preproc_def(flag); local
1123 if (def)
1124 fprintf(fp, "-D%s=%s\n", flag, def);
1127 def ? "ifndef" : "ifdef", flag);
1129 flag, def ? "must" : "must not");
H A Dformsopt.cpp270 const RegDef* def = NULL; local
273 while ((def = RegDef_iter()) != NULL) {
274 if (first == NULL || def->register_num() < first->register_num()) {
275 first = def;
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/
H A DRMIGenerator.java621 ClassDefinition def = enumeration.nextElement();
622 p.pOlnI("} catch (" + def.getName() + " e) {");
685 ClassDefinition def = uniqueList.elementAt(j);
686 if (def.superClassOf(env, decl)) {
692 } else if (def.subClassOf(env, decl)) {
995 MemberDefinition def = method.getMemberDefinition();
1000 p.p(def.getClassDefinition().getName() + ".class.getMethod(\"" +
/openjdk9/jdk/src/java.base/share/native/libjli/
H A Djava.c947 char *def; local
961 def = JLI_MemAlloc(sizeof(format)
964 sprintf(def, format, s);
965 AddOption(def, NULL);
975 char *def; local
979 def = JLI_MemAlloc(def_len);
980 JLI_Snprintf(def, def_len, format, option, arg);
981 AddOption(def, NULL);
990 char *def; local
1001 def
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DJavadocTool.java298 for (JCTree def : t.defs) {
299 if (def.hasTag(JCTree.Tag.CLASSDEF))
300 result.append((JCClassDecl)def);
/openjdk9/jdk/make/lib/
H A DLib-jdk.accessibility.gmk84 -def:$(ROOT_SRCDIR)/libwindowsaccessbridge/WinAccessBridge.DEF, \
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DLIRVerifier.java119 def(value, mode, flags);
198 private void def(Value value, OperandMode mode, EnumSet<OperandFlag> flags) { method in class:LIRVerifier
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java118 // if (def instanceof JCExpressionStatement)
119 // def = ((JCExpressionStatement)def).expr;
120 for (JCTree def : udefs) {
121 defs.append(def);
/openjdk9/langtools/test/tools/javadoc/lib/
H A DOldToolTester.java220 String def = (e.defaultValue() == null)
224 e.flatSignature() + def);
/openjdk9/langtools/test/tools/javac/parser/extend/
H A DTrialParser.java120 for (JCTree def : udefs) {
121 defs.append(def);
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DGeneratorAdapter.java1267 Label def = newLabel();
1276 Arrays.fill(labels, def);
1280 mv.visitTableSwitchInsn(min, max, def, labels);
1283 if (label != def) {
1293 mv.visitLookupSwitchInsn(def, keys, labels);
1300 mark(def);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java564 BIProperty def = getDefault();
565 if(def!=null) def.markAsAcknowledged();
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DHTML.java1243 * @param def the default value to use if the attribute isn't
1248 Attribute key, int def) {
1249 int value = def;
1255 value = def;
1247 getIntegerAttributeValue(AttributeSet attr, Attribute key, int def) argument
/openjdk9/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipFileSystem.java281 for (Deflater def : deflaters)
282 def.end();
1608 e.size = def.getBytesRead();
1609 e.csize = def.getBytesWritten();
1625 releaseDeflater(def);
1629 releaseDeflater(def);
1678 Deflater def = deflaters.remove(size - 1);
1679 return def;
1687 private void releaseDeflater(Deflater def) { argument
1690 def
[all...]
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/jimage/
H A DBasicImageReader.java52 private static boolean isSystemProperty(String key, String value, String def) { argument
58 return value.equals(System.getProperty(key, def));
/openjdk9/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp347 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap);
348 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code);
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/
H A DTCPEndpoint.java82 private static int getInt(String name, int def) { argument
84 (PrivilegedAction<Integer>) () -> Integer.getInteger(name, def));
/openjdk9/langtools/test/tools/javac/warnings/
H A DRemoval.java128 RefKind(String template, String def, String dep, String rem) { argument
129 fragments.put(DeprKind.NONE, String.format(template, def));
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/generator/bean/
H A DBeanGenerator.java469 ElementOutlineImpl def = elements.get(ei);
470 if (def == null && ei.hasClass()) {
472 def = new ElementOutlineImpl(this, ei);
474 return def;

Completed in 148 milliseconds

1234567