Skip to content

Commit 1e8a4c9

Browse files
committedJan 20, 2022
Fix copyrights
1 parent 6869036 commit 1e8a4c9

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed
 

‎src/hotspot/share/oops/instanceStackChunkKlass.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -755,7 +755,7 @@ class StackChunkVerifyBitmapClosure : public BitMapClosure {
755755
_count++;
756756

757757
log_develop_trace(jvmcont)("debug_verify_stack_chunk bitmap p: " INTPTR_FORMAT " i: " SIZE_FORMAT, p2i(p), index);
758-
758+
759759
if (!SafepointSynchronize::is_at_safepoint()) {
760760
oop obj = safe_load(p);
761761
assert (obj == nullptr || is_good_oop(obj),
@@ -941,7 +941,7 @@ bool InstanceStackChunkKlass::verify(oop obj, size_t* out_size, int* out_oops, i
941941
if (closure._cb != nullptr && closure._cb->is_compiled()) {
942942
assert (chunk->argsize() == (closure._cb->as_compiled_method()->method()->num_stack_arg_slots() * VMRegImpl::stack_slot_size) >> LogBytesPerWord,
943943
"chunk argsize: %d bottom frame argsize: %d", chunk->argsize(), (closure._cb->as_compiled_method()->method()->num_stack_arg_slots() * VMRegImpl::stack_slot_size) >> LogBytesPerWord);
944-
}
944+
}
945945

946946
assert (closure._num_interpreted_frames == 0 || chunk->has_mixed_frames(), "");
947947

‎src/hotspot/share/oops/instanceStackChunkKlass.inline.hpp

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved.
1+
/* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
*
44
* This code is free software; you can redistribute it and/or modify it
@@ -129,7 +129,7 @@ StackChunkFrameStream<mixed>::StackChunkFrameStream(stackChunkOop chunk, bool gc
129129
// }
130130
}
131131
DEBUG_ONLY(else _unextended_sp = nullptr;)
132-
132+
133133
if (is_stub()) {
134134
get_oopmap(pc(), 0);
135135
DEBUG_ONLY(_has_stub = true);
@@ -142,7 +142,7 @@ StackChunkFrameStream<mixed>::StackChunkFrameStream(stackChunkOop chunk, const f
142142
assert (mixed || !chunk->has_mixed_frames(), "");
143143

144144
DEBUG_ONLY(_index = 0;)
145-
145+
146146
_end = chunk->bottom_address();
147147

148148
assert (chunk->is_in_chunk(f.sp()), "");
@@ -178,13 +178,13 @@ inline bool StackChunkFrameStream<mixed>::is_compiled() const {
178178
}
179179

180180
template <bool mixed>
181-
inline bool StackChunkFrameStream<mixed>::is_interpreted() const {
182-
return mixed ? (!is_done() && Interpreter::contains(pc())) : false;
181+
inline bool StackChunkFrameStream<mixed>::is_interpreted() const {
182+
return mixed ? (!is_done() && Interpreter::contains(pc())) : false;
183183
}
184184

185185
template <bool mixed>
186186
inline int StackChunkFrameStream<mixed>::frame_size() const {
187-
return is_interpreted() ? interpreter_frame_size()
187+
return is_interpreted() ? interpreter_frame_size()
188188
: cb()->frame_size() + stack_argsize();
189189
}
190190

@@ -247,26 +247,26 @@ inline void StackChunkFrameStream<mixed>::get_cb() {
247247
return;
248248
}
249249

250-
assert (pc() != nullptr && dbg_is_safe(pc(), -1),
251-
"index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d",
250+
assert (pc() != nullptr && dbg_is_safe(pc(), -1),
251+
"index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d",
252252
_index, p2i(sp()), _chunk->to_offset(sp()), _chunk->to_offset(_chunk->bottom_address()), _chunk->stack_size(), _chunk->sp());
253253

254254
_cb = CodeCache::find_blob_fast(pc());
255255

256256
// if (_cb == nullptr) { tty->print_cr("OOPS"); os::print_location(tty, (intptr_t)pc()); }
257-
assert (_cb != nullptr,
258-
"index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d gc_flag: %d",
257+
assert (_cb != nullptr,
258+
"index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d gc_flag: %d",
259259
_index, p2i(sp()), _chunk->to_offset(sp()), _chunk->to_offset(_chunk->bottom_address()), _chunk->stack_size(), _chunk->sp(), _chunk->is_gc_mode());
260-
assert (is_interpreted() || ((is_stub() || is_compiled()) && _cb->frame_size() > 0),
261-
"index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d is_stub: %d is_compiled: %d frame_size: %d mixed: %d",
260+
assert (is_interpreted() || ((is_stub() || is_compiled()) && _cb->frame_size() > 0),
261+
"index: %d sp: " INTPTR_FORMAT " sp offset: %d end offset: %d size: %d chunk sp: %d is_stub: %d is_compiled: %d frame_size: %d mixed: %d",
262262
_index, p2i(sp()), _chunk->to_offset(sp()), _chunk->to_offset(_chunk->bottom_address()), _chunk->stack_size(), _chunk->sp(), is_stub(), is_compiled(), _cb->frame_size(), mixed);
263263
}
264264

265265
template <bool mixed>
266266
inline void StackChunkFrameStream<mixed>::get_oopmap() const {
267267
if (is_interpreted()) return;
268268
assert (is_compiled(), "");
269-
get_oopmap(pc(), CodeCache::find_oopmap_slot_fast(pc()));
269+
get_oopmap(pc(), CodeCache::find_oopmap_slot_fast(pc()));
270270
}
271271

272272
template <bool mixed>
@@ -416,12 +416,12 @@ template<bool mixed>
416416
template <class DerivedOopClosureType, class RegisterMapT>
417417
inline void StackChunkFrameStream<mixed>::iterate_derived_pointers(DerivedOopClosureType* closure, const RegisterMapT* map) const {
418418
if (is_interpreted()) return;
419-
419+
420420
for (OopMapStream oms(oopmap()); !oms.is_done(); oms.next()) {
421421
OopMapValue omv = oms.current();
422422
if (omv.type() != OopMapValue::derived_oop_value)
423423
continue;
424-
424+
425425
intptr_t* derived_loc = (intptr_t*)reg_to_loc(omv.reg(), map);
426426
intptr_t* base_loc = (intptr_t*)reg_to_loc(omv.content_reg(), map); // see OopMapDo<OopMapFnT, DerivedOopFnT, ValueFilterT>::walk_derived_pointers1
427427

@@ -430,7 +430,7 @@ inline void StackChunkFrameStream<mixed>::iterate_derived_pointers(DerivedOopClo
430430
assert (derived_loc != base_loc, "Base and derived in same location");
431431
assert (is_in_oops(base_loc, map), "not found: " INTPTR_FORMAT, p2i(base_loc));
432432
assert (!is_in_oops(derived_loc, map), "found: " INTPTR_FORMAT, p2i(derived_loc));
433-
433+
434434
Devirtualizer::do_derived_oop(closure, (oop*)base_loc, (derived_pointer*)derived_loc);
435435
}
436436
OrderAccess::storestore(); // to preserve that we set the offset *before* fixing the base oop
@@ -610,7 +610,7 @@ inline void InstanceStackChunkKlass::iterate_stack(stackChunkOop obj, StackChunk
610610

611611
RegisterMap full_map((JavaThread*)nullptr, true, false, true);
612612
full_map.set_include_argument_oops(false);
613-
613+
614614
f.next(&full_map);
615615

616616
// log_develop_trace(jvmcont)("stackChunkOopDesc::iterate_stack this: " INTPTR_FORMAT " safepoint yield caller frame: %d", p2i(this), f.index());

0 commit comments

Comments
 (0)
Please sign in to comment.