diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-24 01:00:08 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-24 01:00:08 +0000 | 
| commit | c7dac04c3480f3c20487f912f77343139fce2d99 (patch) | |
| tree | 21a09bce0171e27bd1e92649db9df797fa097cea /include/llvm/CodeGen/MachineOperand.h | |
| parent | 044eb2f6afba375a914ac9d8024f8f5142bb912e (diff) | |
Diffstat (limited to 'include/llvm/CodeGen/MachineOperand.h')
| -rw-r--r-- | include/llvm/CodeGen/MachineOperand.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h index ccf0917ed0851..4be7942c2c64b 100644 --- a/include/llvm/CodeGen/MachineOperand.h +++ b/include/llvm/CodeGen/MachineOperand.h @@ -29,6 +29,7 @@ class GlobalValue;  class MachineBasicBlock;  class MachineInstr;  class MachineRegisterInfo; +class MCCFIInstruction;  class MDNode;  class ModuleSlotTracker;  class TargetMachine; @@ -250,6 +251,12 @@ public:    static void printStackObjectReference(raw_ostream &OS, unsigned FrameIndex,                                          bool IsFixed, StringRef Name); +  /// Print the offset with explicit +/- signs. +  static void printOperandOffset(raw_ostream &OS, int64_t Offset); + +  /// Print an IRSlotNumber. +  static void printIRSlotNumber(raw_ostream &OS, int Slot); +    /// Print the MachineOperand to \p os.    /// Providing a valid \p TRI and \p IntrinsicInfo results in a more    /// target-specific printing. If \p TRI and \p IntrinsicInfo are null, the | 
