Files
swift-mirror/include/swift/SIL/BasicBlockDatastructures.h
Nate Chandler 990f0eeb83 [NFC] BasicBlockWorklist: add ::empty.
Enable clients to check whether the worklist has anything in it without
popping a block to find out.
2024-12-18 11:25:42 -08:00

195 lines
6.0 KiB
C++

//===--- BasicBlockDatastructures.h -----------------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines efficient data structures for working with BasicBlocks.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SIL_BASICBLOCKDATASTRUCTURES_H
#define SWIFT_SIL_BASICBLOCKDATASTRUCTURES_H
#include "swift/SIL/StackList.h"
#include "swift/SIL/BasicBlockBits.h"
#include <deque>
namespace swift {
/// An implementation of `llvm::SetVector<SILBasicBlock *,
/// StackList<SILBasicBlock *>,
/// BasicBlockSet>`.
///
/// Unfortunately it's not possible to use `llvm::SetVector` directly because
/// the BasicBlockSet and StackList constructors needs a `SILFunction` argument.
///
/// Note: This class does not provide a `remove` method intentionally, because
/// it would have a O(n) complexity.
class BasicBlockSetVector {
StackList<SILBasicBlock *> vector;
BasicBlockSet set;
public:
using iterator = typename StackList<SILBasicBlock *>::iterator;
BasicBlockSetVector(SILFunction *function) : vector(function), set(function) {}
iterator begin() const { return vector.begin(); }
iterator end() const { return vector.end(); }
llvm::iterator_range<iterator> getRange() const {
return llvm::make_range(begin(), end());
}
bool empty() const { return vector.empty(); }
bool contains(SILBasicBlock *block) const { return set.contains(block); }
/// Returns true if \p block was not contained in the set before inserting.
bool insert(SILBasicBlock *block) {
if (set.insert(block)) {
vector.push_back(block);
return true;
}
return false;
}
};
/// A utility for processing basic blocks in a worklist that uses
/// last-in-first-out order.
///
/// It is basically a combination of a stack list and a block set. It can be
/// used for typical worklist-processing algorithms and is recommended in
/// nearly all situations as its implementation is well-optimized.
class BasicBlockWorklist {
StackList<SILBasicBlock *> worklist;
BasicBlockSet visited;
public:
/// Construct an empty worklist.
BasicBlockWorklist(SILFunction *function)
: worklist(function), visited(function) {}
/// Initialize the worklist with \p initialBlock.
BasicBlockWorklist(SILBasicBlock *initialBlock)
: BasicBlockWorklist(initialBlock->getParent()) {
push(initialBlock);
}
/// Whether there are any remaining blocks to process.
bool empty() { return worklist.empty(); }
/// Pops the last added element from the worklist or returns null, if the
/// worklist is empty.
SILBasicBlock *pop() {
if (worklist.empty())
return nullptr;
return worklist.pop_back_val();
}
/// Pushes \p block onto the worklist if \p block has never been push before.
bool pushIfNotVisited(SILBasicBlock *block) {
if (visited.insert(block)) {
worklist.push_back(block);
return true;
}
return false;
}
/// Like `pushIfNotVisited`, but requires that \p block has never been on the
/// worklist before.
void push(SILBasicBlock *block) {
assert(!visited.contains(block));
visited.insert(block);
worklist.push_back(block);
}
/// Like `pop`, but marks the returned block as "unvisited". This means, that
/// the block can be pushed onto the worklist again.
SILBasicBlock *popAndForget() {
if (worklist.empty())
return nullptr;
SILBasicBlock *block = worklist.pop_back_val();
visited.erase(block);
return block;
}
/// Returns true if \p block was visited, i.e. has been added to the worklist.
bool isVisited(SILBasicBlock *block) const { return visited.contains(block); }
};
/// A utility for processing basic blocks in a work-queue that uses
/// first-in-first-out order.
///
/// It is basically a combination of a std::deque and a block set. It can be
/// used for certain kinds of worklist-processing algorithms.
///
/// When in doubt, you should reach for a BasicBlockWorklist instead.
class BasicBlockWorkqueue {
std::deque<SILBasicBlock*> workqueue;
BasicBlockSet visited;
public:
/// Construct an empty workqueue.
BasicBlockWorkqueue(SILFunction *function)
: workqueue(), visited(function) {}
/// Initialize the workqueue with \p initialBlock.
BasicBlockWorkqueue(SILBasicBlock *initialBlock)
: BasicBlockWorkqueue(initialBlock->getParent()) {
push(initialBlock);
}
/// Pops the next element from the front of the workqueue or returns null,
/// if the workqueue is empty.
SILBasicBlock *pop() {
if (workqueue.empty())
return nullptr;
SILBasicBlock *block = workqueue.front();
workqueue.pop_front();
return block;
}
/// Pushes \p block onto the end of the workqueue if \p block has never been
/// pushed before.
bool pushIfNotVisited(SILBasicBlock *block) {
if (visited.insert(block)) {
workqueue.push_back(block);
return true;
}
return false;
}
/// Like `pushIfNotVisited`, but requires that \p block has never been on the
/// workqueue before.
void push(SILBasicBlock *block) {
assert(!visited.contains(block));
visited.insert(block);
workqueue.push_back(block);
}
/// Like `pop`, but marks the returned block as "unvisited". This means, that
/// the block can be pushed onto the queue again.
SILBasicBlock *popAndForget() {
SILBasicBlock *block = pop();
if (block)
visited.erase(block);
return block;
}
/// Returns true if \p block was visited, i.e. has been added to the workqueue
bool isVisited(SILBasicBlock *block) const { return visited.contains(block); }
};
} // namespace swift
#endif