summaryrefslogtreecommitdiff
path: root/chromium/v8/src/compiler/greedy-allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/compiler/greedy-allocator.h')
-rw-r--r--chromium/v8/src/compiler/greedy-allocator.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/chromium/v8/src/compiler/greedy-allocator.h b/chromium/v8/src/compiler/greedy-allocator.h
index 45bbd87da89..b61ba4242f3 100644
--- a/chromium/v8/src/compiler/greedy-allocator.h
+++ b/chromium/v8/src/compiler/greedy-allocator.h
@@ -128,18 +128,10 @@ class GreedyAllocator final : public RegisterAllocator {
// Evict and reschedule conflicts of a given range, at a given register.
void EvictAndRescheduleConflicts(unsigned reg_id, const LiveRange* range);
- // Find the optimal split for ranges defined by a memory operand, e.g.
- // constants or function parameters passed on the stack.
- void SplitAndSpillRangesDefinedByMemoryOperand();
-
void TryAllocateCandidate(const AllocationCandidate& candidate);
void TryAllocateLiveRange(LiveRange* range);
void TryAllocateGroup(LiveRangeGroup* group);
- bool CanProcessRange(LiveRange* range) const {
- return range != nullptr && !range->IsEmpty() && range->kind() == mode();
- }
-
// Calculate the weight of a candidate for allocation.
void EnsureValidRangeWeight(LiveRange* range);