Searched refs:inlined (Results 1 - 10 of 10) sorted by relevance

/openjdk9/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputBytecode.java36 private InputMethod inlined; field in class:InputBytecode
46 return inlined;
49 public void setInlined(InputMethod inlined) { argument
50 this.inlined = inlined;
H A DInputMethod.java41 private List<InputMethod> inlined; field in class:InputMethod
51 result = result * 31 + inlined.hashCode();
64 inlined.equals(im.inlined) && bytecodes.equals(im.bytecodes);
75 inlined = new ArrayList<>();
84 return Collections.unmodifiableList(inlined);
90 for (InputMethod m2 : inlined) {
94 inlined.add(m);
142 for (InputMethod m : inlined) {
/openjdk9/hotspot/test/compiler/c2/
H A DTestDominatingDeadCheckCast.java50 static void inlined(A param) { method in class:TestDominatingDeadCheckCast
59 // Speculation adds a CheckCast on entry of this inlined
61 inlined(field);
63 // above unreachable from the last inlined call
68 // inlined method for the parameter. This
70 // first inlined method call but the replaced
72 inlined(field);
77 // of this inlined method for the
80 // inlined() call.
81 inlined(fiel
[all...]
/openjdk9/langtools/test/tools/javac/T8022053/
H A DUnverifiableInitForNestedLocalClassTest.java38 final String inlined = " inlined ";
41 return "LocalClass " + arg + inlined;
47 return "SubClass " + arg + inlined;
54 return "SubSubClass " + arg + inlined;
62 return "AnotherSub " + arg + inlined;
/openjdk9/hotspot/test/compiler/c1/
H A DNullCheckTest.java31 * -XX:CompileCommand=compileonly,compiler.c1.NullCheckTest::inlined
41 public final void inlined(A a) { method in class:NullCheckTest.A
55 // exception in the inlined method is thrown before the null check
57 a1.inlined(a2);
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DExpression.java372 Expression inlined = inlineValue(env, ctx);
373 Object val = inlined.getValue();
375 if (val == null && !inlined.isNull()){
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp41 // inlined methods. Currently in order to generate good code in the
93 // have to perform an optimization for single-block inlined
95 // allows us to perform CSE across inlined scopes and to avoid
386 void profile_call(ciMethod* callee, Value recv, ciKlass* predicted_holder, Values* obj_args, bool inlined);
H A Dc1_Instruction.hpp2466 bool _inlined; // Are we profiling a call that is inlined
2469 ProfileCall(ciMethod* method, int bci, ciMethod* callee, Value recv, ciKlass* known_holder, Values* obj_args, bool inlined)
2477 , _inlined(inlined)
2493 bool inlined() const { return _inlined; }
2572 // Use to trip invocation counter of an inlined method
H A Dc1_LIRGenerator.cpp1157 // Code for a constant is generated lazily unless the constant is frequently used and can't be inlined.
3307 (x->inlined() && ((code == Bytecodes::_invokedynamic && n <= 1) || (code == Bytecodes::_invokehandle && n <= 2)))),
3315 // profile parameters on entry to an inlined method
3317 if (compilation()->profile_parameters() && x->inlined()) {
3383 // profile parameters on inlined method entry including receiver
H A Dc1_GraphBuilder.cpp1520 // If the inlined method is synchronized, the monitor must be
1531 // State at end of inlined method is the state of the caller
1533 // return value, if any, of the inlined method on operand stack.
1545 // May not be true in case of an inlined call through a method handle intrinsic.
1990 // If we inlined because CHA revealed only a single target method,
3222 // code for the inlined version will be different than the root
3446 // negative filter: should callee NOT be inlined? returns NULL, ok to inline, or rejection msg
3669 // If an exception is thrown and not handled within an inlined
3860 // inlining, to detect if inlined method has edges to its
3955 // generated exactly one, and if the inlined metho
4343 profile_call(ciMethod* callee, Value recv, ciKlass* known_holder, Values* obj_args, bool inlined) argument
[all...]

Completed in 183 milliseconds