Commit 83a36e8e authored by Sigurd Schneider's avatar Sigurd Schneider Committed by Commit Bot

[deoptimizer] Remove unused struct

Bug: v8:8834
Change-Id: Ifd5384fab1a1450275b0e8f193498b43dcbc3a5e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1532334Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
Cr-Commit-Position: refs/heads/master@{#60406}
parent bfbf8ccc
......@@ -429,27 +429,6 @@ class Deoptimizer : public Malloced {
static int ComputeSourcePositionFromBytecodeArray(SharedFunctionInfo shared,
BailoutId node_id);
struct JumpTableEntry : public ZoneObject {
inline JumpTableEntry(Address entry, const DeoptInfo& deopt_info,
DeoptimizeKind kind, bool frame)
: label(),
address(entry),
deopt_info(deopt_info),
deopt_kind(kind),
needs_frame(frame) {}
bool IsEquivalentTo(const JumpTableEntry& other) const {
return address == other.address && deopt_kind == other.deopt_kind &&
needs_frame == other.needs_frame;
}
Label label;
Address address;
DeoptInfo deopt_info;
DeoptimizeKind deopt_kind;
bool needs_frame;
};
static const char* MessageFor(DeoptimizeKind kind);
int output_count() const { return output_count_; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment