summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineOperand.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-08-28 18:34:41 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-08-28 18:34:41 +0000
commit4ba6916a98fffd9dedac5945ac51d40c8948069e (patch)
tree555c8ea4c58cd03471b85111b618de529b9c0e1c /include/llvm/CodeGen/MachineOperand.h
parent190e342cbcb1456ebb21b53a35cfefa99435bd65 (diff)
downloadllvm-4ba6916a98fffd9dedac5945ac51d40c8948069e.tar.gz
llvm-4ba6916a98fffd9dedac5945ac51d40c8948069e.tar.bz2
llvm-4ba6916a98fffd9dedac5945ac51d40c8948069e.tar.xz
Add a MachineOperand::isTied() flag.
While in SSA form, a MachineInstr can have pairs of tied defs and uses. The tied operands are used to represent read-modify-write operands that must be assigned the same physical register. Previously, tied operand pairs were computed from fixed MCInstrDesc fields, or by using black magic on inline assembly instructions. The isTied flag makes it possible to add tied operands to any instruction while getting rid of (some of) the inlineasm magic. Tied operands on normal instructions are needed to represent predicated individual instructions in SSA form. An extra <tied,imp-use> operand is required to represent the output value when the instruction predicate is false. Adding a predicate to: %vreg0<def> = ADD %vreg1, %vreg2 Will look like: %vreg0<tied,def> = ADD %vreg1, %vreg2, pred:3, %vreg7<tied,imp-use> The virtual register %vreg7 is the value given to %vreg0 when the predicate is false. It will be assigned the same physreg as %vreg0. This commit adds the isTied flag and sets it based on MCInstrDesc when building an instruction. The flag is not used for anything yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineOperand.h')
-rw-r--r--include/llvm/CodeGen/MachineOperand.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h
index 1d3d60bdb2..594dc276b0 100644
--- a/include/llvm/CodeGen/MachineOperand.h
+++ b/include/llvm/CodeGen/MachineOperand.h
@@ -124,6 +124,14 @@ private:
/// model the GCC inline asm '&' constraint modifier.
bool IsEarlyClobber : 1;
+ /// IsTied - True if this MO_Register operand is tied to another operand on
+ /// the instruction. Tied operands form def-use pairs that must be assigned
+ /// the same physical register by the register allocator, but they will have
+ /// different virtual registers while the code is in SSA form.
+ ///
+ /// See MachineInstr::isRegTiedToUseOperand() and isRegTiedToDefOperand().
+ bool IsTied : 1;
+
/// IsDebug - True if this MO_Register 'use' operand is in a debug pseudo,
/// not a real instruction. Such uses should be ignored during codegen.
bool IsDebug : 1;
@@ -299,6 +307,11 @@ public:
return IsEarlyClobber;
}
+ bool isTied() const {
+ assert(isReg() && "Wrong MachineOperand accessor");
+ return IsTied;
+ }
+
bool isDebug() const {
assert(isReg() && "Wrong MachineOperand accessor");
return IsDebug;
@@ -377,6 +390,11 @@ public:
IsEarlyClobber = Val;
}
+ void setIsTied(bool Val = true) {
+ assert(isReg() && "Wrong MachineOperand accessor");
+ IsTied = Val;
+ }
+
void setIsDebug(bool Val = true) {
assert(isReg() && IsDef && "Wrong MachineOperand accessor");
IsDebug = Val;
@@ -559,6 +577,7 @@ public:
Op.IsUndef = isUndef;
Op.IsInternalRead = isInternalRead;
Op.IsEarlyClobber = isEarlyClobber;
+ Op.IsTied = false;
Op.IsDebug = isDebug;
Op.SmallContents.RegNo = Reg;
Op.Contents.Reg.Prev = 0;