We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fced0f0 commit 943503eCopy full SHA for 943503e
src/hotspot/share/code/icBuffer.cpp
@@ -157,17 +157,8 @@ void InlineCacheBuffer::refill_ic_stubs() {
157
#endif
158
// we ran out of inline cache buffer space; must enter safepoint.
159
// We do this by forcing a safepoint
160
- EXCEPTION_MARK;
161
-
162
VM_ICBufferFull ibf;
163
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
- }
171
}
172
173
void InlineCacheBuffer::update_inline_caches() {
0 commit comments