-
Notifications
You must be signed in to change notification settings - Fork 14.7k
[NFC][RA] Refactor RABasic into a Separate Header #149555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,107 @@ | ||||||||||
//===-- RegAllocBasic.h - Basic Register Allocator Header -----------------===// | ||||||||||
// | ||||||||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||||||||
// See https://llvm.org/LICENSE.txt for license information. | ||||||||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||||||||
// | ||||||||||
//===----------------------------------------------------------------------===// | ||||||||||
// | ||||||||||
// This file declares the RABasic class, which provides a minimal | ||||||||||
// implementation of the basic register allocator. | ||||||||||
// | ||||||||||
//===----------------------------------------------------------------------===// | ||||||||||
|
||||||||||
#ifndef LLVM_CODEGEN_REGALLOCBAISC_H_ | ||||||||||
#define LLVM_CODEGEN_REGALLOCBAISC_H_ | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. most files tend to use |
||||||||||
|
||||||||||
#include "AllocationOrder.h" | ||||||||||
#include "RegAllocBase.h" | ||||||||||
#include "llvm/CodeGen/LiveIntervals.h" | ||||||||||
#include "llvm/CodeGen/LiveRangeEdit.h" | ||||||||||
#include "llvm/CodeGen/LiveRegMatrix.h" | ||||||||||
#include "llvm/CodeGen/MachineFunctionPass.h" | ||||||||||
#include "llvm/CodeGen/Spiller.h" | ||||||||||
#include "llvm/CodeGen/VirtRegMap.h" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please check which include files are actually needed, and which ones can be replaced with |
||||||||||
#include <queue> | ||||||||||
|
||||||||||
namespace llvm { | ||||||||||
|
||||||||||
struct CompSpillWeight { | ||||||||||
bool operator()(const LiveInterval *A, const LiveInterval *B) const { | ||||||||||
return A->weight() < B->weight(); | ||||||||||
} | ||||||||||
}; | ||||||||||
|
||||||||||
/// RABasic provides a minimal implementation of the basic register allocation | ||||||||||
/// algorithm. It prioritizes live virtual registers by spill weight and spills | ||||||||||
/// whenever a register is unavailable. This is not practical in production but | ||||||||||
/// provides a useful baseline both for measuring other allocators and comparing | ||||||||||
/// the speed of the basic algorithm against other styles of allocators. | ||||||||||
class LLVM_LIBRARY_VISIBILITY RABasic : public MachineFunctionPass, | ||||||||||
public RegAllocBase, | ||||||||||
private LiveRangeEdit::Delegate { | ||||||||||
// context | ||||||||||
MachineFunction *MF = nullptr; | ||||||||||
|
||||||||||
// state | ||||||||||
std::unique_ptr<Spiller> SpillerInstance; | ||||||||||
std::priority_queue<const LiveInterval *, std::vector<const LiveInterval *>, | ||||||||||
CompSpillWeight> | ||||||||||
Queue; | ||||||||||
|
||||||||||
// Scratch space. Allocated here to avoid repeated malloc calls in | ||||||||||
// selectOrSplit(). | ||||||||||
BitVector UsableRegs; | ||||||||||
|
||||||||||
bool LRE_CanEraseVirtReg(Register) override; | ||||||||||
void LRE_WillShrinkVirtReg(Register) override; | ||||||||||
|
||||||||||
public: | ||||||||||
RABasic(const RegAllocFilterFunc F = nullptr); | ||||||||||
|
||||||||||
/// Return the pass name. | ||||||||||
StringRef getPassName() const override { return "Basic Register Allocator"; } | ||||||||||
|
||||||||||
/// RABasic analysis usage. | ||||||||||
void getAnalysisUsage(AnalysisUsage &AU) const override; | ||||||||||
|
||||||||||
void releaseMemory() override; | ||||||||||
|
||||||||||
Spiller &spiller() override { return *SpillerInstance; } | ||||||||||
|
||||||||||
void enqueueImpl(const LiveInterval *LI) override { Queue.push(LI); } | ||||||||||
|
||||||||||
const LiveInterval *dequeue() override { | ||||||||||
if (Queue.empty()) | ||||||||||
return nullptr; | ||||||||||
const LiveInterval *LI = Queue.top(); | ||||||||||
Queue.pop(); | ||||||||||
return LI; | ||||||||||
} | ||||||||||
|
||||||||||
MCRegister selectOrSplit(const LiveInterval &VirtReg, | ||||||||||
SmallVectorImpl<Register> &SplitVRegs) override; | ||||||||||
|
||||||||||
/// Perform register allocation. | ||||||||||
bool runOnMachineFunction(MachineFunction &mf) override; | ||||||||||
|
||||||||||
MachineFunctionProperties getRequiredProperties() const override { | ||||||||||
return MachineFunctionProperties().set( | ||||||||||
MachineFunctionProperties::Property::NoPHIs); | ||||||||||
} | ||||||||||
|
||||||||||
MachineFunctionProperties getClearedProperties() const override { | ||||||||||
return MachineFunctionProperties().set( | ||||||||||
MachineFunctionProperties::Property::IsSSA); | ||||||||||
} | ||||||||||
|
||||||||||
// Helper for spilling all live virtual registers currently unified under preg | ||||||||||
// that interfere with the most recently queried lvr. Return true if spilling | ||||||||||
// was successful, and append any new spilled/split intervals to splitLVRs. | ||||||||||
bool spillInterferences(const LiveInterval &VirtReg, MCRegister PhysReg, | ||||||||||
SmallVectorImpl<Register> &SplitVRegs); | ||||||||||
|
||||||||||
static char ID; | ||||||||||
}; | ||||||||||
} // namespace llvm | ||||||||||
#endif // #ifndef LLVM_CODEGEN_REGALLOCBAISC_H_ | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use syntax recognized by doxygen (and possibly fix the pre-existing problem in RegAllocBasic.cpp)