16#define DEBUG_TYPE "mir-vregnamer-utils"
21 cl::desc(
"Use Stable Hashing for MIR VReg Renaming"));
28 for (
const auto &
E : VRM) {
30 MRI.replaceRegWith(
E.first,
E.second);
37VRegRenamer::getVRegRenameMap(
const std::vector<NamedVReg> &VRegs) {
39 StringMap<unsigned> VRegNameCollisionMap;
41 auto GetUniqueVRegName = [&VRegNameCollisionMap](
const NamedVReg &
Reg) {
42 const unsigned Counter = ++VRegNameCollisionMap[
Reg.getName()];
43 return Reg.getName() +
"__" + std::to_string(Counter);
47 for (
const auto &VReg : VRegs) {
49 VRM[
Reg] = createVirtualRegisterWithLowerName(
Reg, GetUniqueVRegName(VReg));
54std::string VRegRenamer::getInstructionOpcodeHash(
MachineInstr &
MI) {
56 raw_string_ostream OS(S);
62 assert(Hash &&
"Expected non-zero Hash");
68 auto GetHashableMO = [
this](
const MachineOperand &MO) ->
unsigned {
69 switch (MO.getType()) {
72 MO.getCImm()->getZExtValue());
75 MO.getType(), MO.getTargetFlags(),
76 MO.getFPImm()->getValueAPF().bitcastToAPInt().getZExtValue());
78 if (MO.getReg().isVirtual())
79 return MRI.getVRegDef(MO.getReg())->getOpcode();
80 return MO.getReg().id();
84 return MO.getOffset() | (MO.getTargetFlags() << 16);
120 SmallVector<unsigned, 16> MIOperands = {
MI.getOpcode(),
MI.getFlags()};
123 for (
const auto *
Op :
MI.memoperands()) {
124 MIOperands.
push_back((
unsigned)
Op->getSize().getValue());
127 MIOperands.
push_back((
unsigned)
Op->getSuccessOrdering());
128 MIOperands.
push_back((
unsigned)
Op->getAddrSpace());
129 MIOperands.
push_back((
unsigned)
Op->getSyncScopeID());
130 MIOperands.
push_back((
unsigned)
Op->getBaseAlign().value());
131 MIOperands.
push_back((
unsigned)
Op->getFailureOrdering());
141 std::string
Name = getInstructionOpcodeHash(*MRI.getVRegDef(VReg));
142 return createVirtualRegisterWithLowerName(VReg, Name);
146 std::vector<NamedVReg> VRegs;
147 std::string
Prefix =
"bb" + std::to_string(CurrentBBNumber) +
"_";
148 for (MachineInstr &Candidate : *
MBB) {
150 if (Candidate.mayStore() || Candidate.isBranch())
152 if (!Candidate.getNumOperands())
155 MachineOperand &MO = Candidate.getOperand(0);
160 NamedVReg(MO.
getReg(), Prefix + getInstructionOpcodeHash(Candidate)));
163 return !VRegs.empty() ? doVRegRenaming(getVRegRenameMap(VRegs)) :
false;
168 std::string LowerName =
Name.lower();
169 const TargetRegisterClass *RC = MRI.getRegClassOrNull(VReg);
170 return RC ? MRI.createVirtualRegister(RC, LowerName)
171 : MRI.createGenericVirtualRegister(MRI.getType(VReg), LowerName);
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Function Alias Analysis false
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static cl::opt< bool > UseStableNamerHash("mir-vreg-namer-use-stable-hash", cl::init(false), cl::Hidden, cl::desc("Use Stable Hashing for MIR VReg Renaming"))
std::map< Register, Register > VRegRenameMap
Promote Memory to Register
Representation of each machine instruction.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
Register getReg() const
getReg - Returns the register number.
@ MO_CFIIndex
MCCFIInstruction index.
@ MO_Immediate
Immediate operand.
@ MO_ConstantPoolIndex
Address of indexed Constant in Constant Pool.
@ MO_MCSymbol
MCSymbol reference (for debug/eh info)
@ MO_Predicate
Generic predicate for ISel.
@ MO_GlobalAddress
Address of a global value.
@ MO_RegisterMask
Mask of preserved registers.
@ MO_ShuffleMask
Other IR Constant for ISel (shuffle masks)
@ MO_CImmediate
Immediate >64bit operand.
@ MO_BlockAddress
Address of a basic block.
@ MO_DbgInstrRef
Integer indices referring to an instruction+operand.
@ MO_MachineBasicBlock
MachineBasicBlock reference.
@ MO_FrameIndex
Abstract Stack Frame Index.
@ MO_Register
Register operand.
@ MO_ExternalSymbol
Name of external global symbol.
@ MO_IntrinsicID
Intrinsic ID for ISel.
@ MO_JumpTableIndex
Address of indexed Jump Table for switch.
@ MO_TargetIndex
Target-dependent index+offset operand.
@ MO_Metadata
Metadata reference (for debug info)
@ MO_FPImmediate
Floating-point immediate operand.
@ MO_RegisterLiveOut
Mask of live-out registers.
Wrapper class representing virtual and physical registers.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
void push_back(const T &Elt)
StringRef - Represent a constant reference to a string, i.e.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
hash_code hash_value(const FixedPointSemantics &Val)
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
LLVM_ABI stable_hash stableHashValue(const MachineOperand &MO)
FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, bool Upper=false)
format_hex_no_prefix - Output N as a fixed width hexadecimal.
DWARFExpression::Operation Op
hash_code hash_combine(const Ts &...args)
Combine values into a single hash_code.
hash_code hash_combine_range(InputIteratorT first, InputIteratorT last)
Compute a hash_code for a sequence of values.