Searched refs:rethrowException (Results 1 - 13 of 13) sorted by relevance

/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/
H A DBytecodeFrame.java103 public final boolean rethrowException; field in class:BytecodeFrame
183 * @param rethrowException specifies if the VM should re-throw the pending exception when
193 public BytecodeFrame(BytecodeFrame caller, ResolvedJavaMethod method, int bci, boolean rethrowException, boolean duringCall, JavaValue[] values, JavaKind[] slotKinds, int numLocals, int numStack, argument
197 this.rethrowException = rethrowException;
204 assert !rethrowException || numStack == 1 : "must have exception on top of the stack";
321 this.rethrowException == that.rethrowException &&
H A DCodeUtil.java304 sb.append(", duringCall: ").append(frame.duringCall).append(", rethrow: ").append(frame.rethrowException).append(']');
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DFrameState.java95 * @see BytecodeFrame#rethrowException
97 protected boolean rethrowException; field in class:FrameState
122 public FrameState(FrameState outerFrameState, Bytecode code, int bci, int localsSize, int stackSize, int lockSize, boolean rethrowException, boolean duringCall, argument
152 this.rethrowException = rethrowException;
154 assert !this.rethrowException || this.stackSize == 1 : "must have exception on top of the stack";
159 public FrameState(FrameState outerFrameState, Bytecode code, int bci, List<ValueNode> values, int localsSize, int stackSize, boolean rethrowException, boolean duringCall, argument
161 this(outerFrameState, code, bci, localsSize, stackSize, values.size() - localsSize - stackSize, rethrowException, duringCall, monitorIds, virtualObjectMappings);
196 boolean rethrowException, boolean duringCall) {
197 this(outerFrameState, code, bci, locals.length, stackSize, locks.length, rethrowException, duringCal
195 FrameState(FrameState outerFrameState, Bytecode code, int bci, ValueNode[] locals, ValueNode[] stack, int stackSize, ValueNode[] locks, List<MonitorIdNode> monitorIds, boolean rethrowException, boolean duringCall) argument
252 public boolean rethrowException() { method in class:FrameState
[all...]
H A DGraphDecoder.java675 frameState.stackSize(), frameState.rethrowException(), frameState.duringCall(), frameState.monitorIds(), frameState.virtualObjectMappings()));
1640 FrameState newState = new FrameState(oldState.outerFrameState(), oldState.getCode(), oldState.bci, newValues, oldState.localsSize(), oldState.stackSize(), oldState.rethrowException(),
1735 oldFrameState.stackSize(), oldFrameState.rethrowException(), oldFrameState.duringCall(), oldFrameState.monitorIds(),
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/
H A DFrameStateBuilder.java96 * @see BytecodeFrame#rethrowException
98 private boolean rethrowException; field in class:FrameStateBuilder
258 this.rethrowException = other.rethrowException;
297 if (rethrowException) {
298 sb.append(" rethrowException");
336 FrameState res = graph.add(new FrameState(outerFrameState, code, bci, locals, stack, stackSize, lockedObjects, Arrays.asList(monitorIds), rethrowException, duringCall));
344 return graph.add(new FrameState(outerFrameState, code, bci, locals, stack, stackSize, lockedObjects, Arrays.asList(monitorIds), rethrowException, duringCall));
657 * @see BytecodeFrame#rethrowException
659 public boolean rethrowException() { method in class:FrameStateBuilder
[all...]
H A DBytecodeParser.java2490 assert !frameState.rethrowException();
/openjdk9/jdk/test/sun/management/jmxremote/bootstrap/
H A DJMXAgentInterfaceBinding.java94 mainThread.rethrowException();
292 private void rethrowException() throws RuntimeException { method in class:JMXAgentInterfaceBinding.MainThread
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/instrumentation/
H A DExtractInstrumentationPhase.java77 0, currentState.rethrowException(), currentState.duringCall(), null,
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/
H A DDebugInfoBuilder.java237 return new BytecodeFrame(caller, state.getMethod(), state.bci, state.rethrowException(), state.duringCall(), values, slotKinds, numLocals, numStack, numLocks);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DJVMCIInfopointErrorTest.java182 top = new BytecodeFrame(top.caller(), top.getMethod(), top.getBCI(), top.rethrowException, top.duringCall, values, slotKinds, locals, stack, locks);
/openjdk9/hotspot/src/share/vm/jvmci/
H A DjvmciJavaClasses.hpp210 boolean_field(BytecodeFrame, rethrowException) \
H A DjvmciCodeInstaller.cpp1083 throw_exception = BytecodeFrame::rethrowException(frame) == JNI_TRUE;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/
H A DPEGraphDecoder.java818 FrameState outerState = stateAtReturn.duplicateModified(methodScope.graph, methodScope.invokeData.invoke.bci(), stateAtReturn.rethrowException(), true, invokeReturnKind, null, null);

Completed in 319 milliseconds