Skip to content

Commit e477d84

Browse files
committed
8361180: Disable CompiledDirectCall verification with -VerifyInlineCaches
Backport-of: 1ac74898745ce9b109db5571d9dcbd907dd05831
1 parent cea147b commit e477d84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/share/code/compiledIC.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ class CompiledDirectCall : public ResourceObj {
192192

193193
static inline CompiledDirectCall* before(address return_addr) {
194194
CompiledDirectCall* st = new CompiledDirectCall(nativeCall_before(return_addr));
195-
st->verify();
195+
if (VerifyInlineCaches) st->verify();
196196
return st;
197197
}
198198

199199
static inline CompiledDirectCall* at(address native_call) {
200200
CompiledDirectCall* st = new CompiledDirectCall(nativeCall_at(native_call));
201-
st->verify();
201+
if (VerifyInlineCaches) st->verify();
202202
return st;
203203
}
204204

0 commit comments

Comments
 (0)