Skip to content

Commit 943503e

Browse files
committedApr 13, 2021
8265035: Remove unneeded exception check from refill_ic_stubs()
Reviewed-by: hseigel, dholmes
1 parent fced0f0 commit 943503e

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed
 

‎src/hotspot/share/code/icBuffer.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -157,17 +157,8 @@ void InlineCacheBuffer::refill_ic_stubs() {
157157
#endif
158158
// we ran out of inline cache buffer space; must enter safepoint.
159159
// We do this by forcing a safepoint
160-
EXCEPTION_MARK;
161-
162160
VM_ICBufferFull ibf;
163161
VMThread::execute(&ibf);
164-
// We could potential get an async. exception at this point.
165-
// In that case we will rethrow it to ourselvs.
166-
if (HAS_PENDING_EXCEPTION) {
167-
oop exception = PENDING_EXCEPTION;
168-
CLEAR_PENDING_EXCEPTION;
169-
JavaThread::current()->set_pending_async_exception(exception);
170-
}
171162
}
172163

173164
void InlineCacheBuffer::update_inline_caches() {

0 commit comments

Comments
 (0)
Please sign in to comment.