Now that RegistersDefinedFromSameValue handles one instruction being an
[oota-llvm.git] / lib / CodeGen / RegisterCoalescer.h
1 //===-- RegisterCoalescer.h - Register Coalescing Interface -----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the abstract interface for register coalescers,
11 // allowing them to interact with and query register allocators.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CODEGEN_REGISTER_COALESCER_H
16 #define LLVM_CODEGEN_REGISTER_COALESCER_H
17
18 namespace llvm {
19
20   class MachineInstr;
21   class TargetRegisterInfo;
22   class TargetRegisterClass;
23   class TargetInstrInfo;
24
25   /// CoalescerPair - A helper class for register coalescers. When deciding if
26   /// two registers can be coalesced, CoalescerPair can determine if a copy
27   /// instruction would become an identity copy after coalescing.
28   class CoalescerPair {
29     const TargetRegisterInfo &TRI;
30
31     /// DstReg - The register that will be left after coalescing. It can be a
32     /// virtual or physical register.
33     unsigned DstReg;
34
35     /// SrcReg - the virtual register that will be coalesced into dstReg.
36     unsigned SrcReg;
37
38     /// DstIdx - The sub-register index of the old DstReg in the new coalesced
39     /// register.
40     unsigned DstIdx;
41
42     /// SrcIdx - The sub-register index of the old SrcReg in the new coalesced
43     /// register.
44     unsigned SrcIdx;
45
46     /// Partial - True when the original copy was a partial subregister copy.
47     bool Partial;
48
49     /// CrossClass - True when both regs are virtual, and newRC is constrained.
50     bool CrossClass;
51
52     /// Flipped - True when DstReg and SrcReg are reversed from the original
53     /// copy instruction.
54     bool Flipped;
55
56     /// NewRC - The register class of the coalesced register, or NULL if DstReg
57     /// is a physreg. This register class may be a super-register of both
58     /// SrcReg and DstReg.
59     const TargetRegisterClass *NewRC;
60
61   public:
62     CoalescerPair(const TargetRegisterInfo &tri)
63       : TRI(tri), DstReg(0), SrcReg(0), DstIdx(0), SrcIdx(0),
64         Partial(false), CrossClass(false), Flipped(false), NewRC(0) {}
65
66     /// setRegisters - set registers to match the copy instruction MI. Return
67     /// false if MI is not a coalescable copy instruction.
68     bool setRegisters(const MachineInstr*);
69
70     /// flip - Swap SrcReg and DstReg. Return false if swapping is impossible
71     /// because DstReg is a physical register, or SubIdx is set.
72     bool flip();
73
74     /// isCoalescable - Return true if MI is a copy instruction that will become
75     /// an identity copy after coalescing.
76     bool isCoalescable(const MachineInstr*) const;
77
78     /// isPhys - Return true if DstReg is a physical register.
79     bool isPhys() const { return !NewRC; }
80
81     /// isPartial - Return true if the original copy instruction did not copy
82     /// the full register, but was a subreg operation.
83     bool isPartial() const { return Partial; }
84
85     /// isCrossClass - Return true if DstReg is virtual and NewRC is a smaller
86     /// register class than DstReg's.
87     bool isCrossClass() const { return CrossClass; }
88
89     /// isFlipped - Return true when getSrcReg is the register being defined by
90     /// the original copy instruction.
91     bool isFlipped() const { return Flipped; }
92
93     /// getDstReg - Return the register (virtual or physical) that will remain
94     /// after coalescing.
95     unsigned getDstReg() const { return DstReg; }
96
97     /// getSrcReg - Return the virtual register that will be coalesced away.
98     unsigned getSrcReg() const { return SrcReg; }
99
100     /// getDstIdx - Return the subregister index that DstReg will be coalesced
101     /// into, or 0.
102     unsigned getDstIdx() const { return DstIdx; }
103
104     /// getSrcIdx - Return the subregister index that SrcReg will be coalesced
105     /// into, or 0.
106     unsigned getSrcIdx() const { return SrcIdx; }
107
108     /// getNewRC - Return the register class of the coalesced register.
109     const TargetRegisterClass *getNewRC() const { return NewRC; }
110   };
111 } // End llvm namespace
112
113 #endif