Skip to content

Commit 28f0b82

Browse files
committedJul 28, 2020
Merge branch 'fibers' of https://github.com/openjdk/loom into fibers
2 parents 457195f + ae2732e commit 28f0b82

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed
 

‎src/hotspot/cpu/x86/hframe_x86.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ class hframe : public HFrameBase<hframe> {
4141

4242
hframe(bool dummy) : HFrameBase(dummy) {}
4343

44-
hframe(const hframe& hf) : HFrameBase(hf), _fp(hf._fp) {}
45-
4644
hframe(int sp, int ref_sp, intptr_t fp, address pc, const ContMirror& cont) // called by ContMirror::last_frame
4745
: HFrameBase(sp, ref_sp, pc, cont), _fp(fp) {}
4846

‎src/hotspot/share/compiler/oopMap.hpp

-6
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,6 @@ class OopMapValue {
8383
set_content_reg(reg2);
8484
}
8585

86-
OopMapValue (const OopMapValue& o) : _value(o._value), _content_reg(o._content_reg) {}
87-
88-
bool equals(const OopMapValue& o) {
89-
return _value == o._value && _content_reg == o._content_reg;
90-
}
91-
9286
private:
9387
void set_reg_type(VMReg p, oop_types t) {
9488
set_value((p->value() << register_shift) | t);

‎src/hotspot/share/runtime/continuation.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,6 @@ class HFrameBase {
420420

421421
HFrameBase() : _sp(-1), _ref_sp(-1), _pc(NULL), _is_interpreted(true), _cb_imd(NULL), _oop_map(NULL) {}
422422

423-
HFrameBase(const HFrameBase& hf) : _sp(hf._sp),_ref_sp(hf._ref_sp), _pc(hf._pc),
424-
_is_interpreted(hf._is_interpreted), _cb_imd(hf._cb_imd), _oop_map(hf._oop_map) {}
425-
426423
HFrameBase(int sp, int ref_sp, address pc, void* cb_md, bool is_interpreted)
427424
: _sp(sp), _ref_sp(ref_sp), _pc(pc),
428425
_is_interpreted(is_interpreted), _cb_imd((intptr_t*)cb_md), _oop_map(NULL) {}

0 commit comments

Comments
 (0)
Please sign in to comment.