Revert r227728 due to bad line endings.
[oota-llvm.git] / lib / Target / X86 / X86FrameLowering.h
index d93c9467182d303da713e398fe881bc85112906e..dd8fc3240c2305ccb5078bf3990d5236fa756344 100644 (file)
@@ -1,97 +1,95 @@
-//===-- X86TargetFrameLowering.h - Define frame lowering for X86 -*- C++ -*-==//\r
-//\r
-//                     The LLVM Compiler Infrastructure\r
-//\r
-// This file is distributed under the University of Illinois Open Source\r
-// License. See LICENSE.TXT for details.\r
-//\r
-//===----------------------------------------------------------------------===//\r
-//\r
-// This class implements X86-specific bits of TargetFrameLowering class.\r
-//\r
-//===----------------------------------------------------------------------===//\r
-\r
-#ifndef LLVM_LIB_TARGET_X86_X86FRAMELOWERING_H\r
-#define LLVM_LIB_TARGET_X86_X86FRAMELOWERING_H\r
-\r
-#include "llvm/Target/TargetFrameLowering.h"\r
-\r
-namespace llvm {\r
-\r
-class MCSymbol;\r
-class X86TargetMachine;\r
-class X86Subtarget;\r
-\r
-class X86FrameLowering : public TargetFrameLowering {\r
-public:\r
-  explicit X86FrameLowering(StackDirection D, unsigned StackAl, int LAO)\r
-    : TargetFrameLowering(StackGrowsDown, StackAl, LAO) {}\r
-\r
-  /// Emit a call to the target's stack probe function. This is required for all\r
-  /// large stack allocations on Windows. The caller is required to materialize\r
-  /// the number of bytes to probe in RAX/EAX.\r
-  static void emitStackProbeCall(MachineFunction &MF, MachineBasicBlock &MBB,\r
-                                 MachineBasicBlock::iterator MBBI, DebugLoc DL);\r
-\r
-  void emitCalleeSavedFrameMoves(MachineBasicBlock &MBB,\r
-                                 MachineBasicBlock::iterator MBBI,\r
-                                 DebugLoc DL) const;\r
-\r
-  /// emitProlog/emitEpilog - These methods insert prolog and epilog code into\r
-  /// the function.\r
-  void emitPrologue(MachineFunction &MF) const override;\r
-  void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;\r
-\r
-  void adjustForSegmentedStacks(MachineFunction &MF) const override;\r
-\r
-  void adjustForHiPEPrologue(MachineFunction &MF) const override;\r
-\r
-  void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,\r
-                                     RegScavenger *RS = nullptr) const override;\r
-\r
-  bool\r
-  assignCalleeSavedSpillSlots(MachineFunction &MF,\r
-                              const TargetRegisterInfo *TRI,\r
-                              std::vector<CalleeSavedInfo> &CSI) const override;\r
-\r
-  bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,\r
-                                 MachineBasicBlock::iterator MI,\r
-                                 const std::vector<CalleeSavedInfo> &CSI,\r
-                                 const TargetRegisterInfo *TRI) const override;\r
-\r
-  bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,\r
-                                  MachineBasicBlock::iterator MI,\r
-                                  const std::vector<CalleeSavedInfo> &CSI,\r
-                                  const TargetRegisterInfo *TRI) const override;\r
-\r
-  bool hasFP(const MachineFunction &MF) const override;\r
-  bool hasReservedCallFrame(const MachineFunction &MF) const override;\r
-  bool canSimplifyCallFramePseudos(const MachineFunction &MF) const override;\r
-  bool needsFrameIndexResolution(const MachineFunction &MF) const override;\r
-\r
-  int getFrameIndexOffset(const MachineFunction &MF, int FI) const override;\r
-  int getFrameIndexReference(const MachineFunction &MF, int FI,\r
-                             unsigned &FrameReg) const override;\r
-\r
-  int getFrameIndexOffsetFromSP(const MachineFunction &MF, int FI) const;\r
-  int getFrameIndexReferenceFromSP(const MachineFunction &MF, int FI,\r
-                                   unsigned &FrameReg) const override;\r
-\r
-  void eliminateCallFramePseudoInstr(MachineFunction &MF,\r
-                                 MachineBasicBlock &MBB,\r
-                                 MachineBasicBlock::iterator MI) const override;\r
-\r
-private:\r
-  /// convertArgMovsToPushes - This method tries to convert a call sequence\r
-  /// that uses sub and mov instructions to put the argument onto the stack\r
-  /// into a series of pushes.\r
-  /// Returns true if the transformation succeeded, false if not.\r
-  bool convertArgMovsToPushes(MachineFunction &MF, \r
-                              MachineBasicBlock &MBB,\r
-                              MachineBasicBlock::iterator I, \r
-                              uint64_t Amount) const;\r
-};\r
-\r
-} // End llvm namespace\r
-\r
-#endif\r
+//===-- X86TargetFrameLowering.h - Define frame lowering for X86 -*- C++ -*-==//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This class implements X86-specific bits of TargetFrameLowering class.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIB_TARGET_X86_X86FRAMELOWERING_H
+#define LLVM_LIB_TARGET_X86_X86FRAMELOWERING_H
+
+#include "llvm/Target/TargetFrameLowering.h"
+
+namespace llvm {
+
+class MCSymbol;
+class X86TargetMachine;
+class X86Subtarget;
+
+class X86FrameLowering : public TargetFrameLowering {
+public:
+  explicit X86FrameLowering(StackDirection D, unsigned StackAl, int LAO)
+    : TargetFrameLowering(StackGrowsDown, StackAl, LAO) {}
+
+  /// Emit a call to the target's stack probe function. This is required for all
+  /// large stack allocations on Windows. The caller is required to materialize
+  /// the number of bytes to probe in RAX/EAX.
+  static void emitStackProbeCall(MachineFunction &MF, MachineBasicBlock &MBB,
+                                 MachineBasicBlock::iterator MBBI, DebugLoc DL);
+
+  void emitCalleeSavedFrameMoves(MachineBasicBlock &MBB,
+                                 MachineBasicBlock::iterator MBBI,
+                                 DebugLoc DL) const;
+
+  /// emitProlog/emitEpilog - These methods insert prolog and epilog code into
+  /// the function.
+  void emitPrologue(MachineFunction &MF) const override;
+  void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
+
+  void adjustForSegmentedStacks(MachineFunction &MF) const override;
+
+  void adjustForHiPEPrologue(MachineFunction &MF) const override;
+
+  void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
+                                     RegScavenger *RS = nullptr) const override;
+
+  bool
+  assignCalleeSavedSpillSlots(MachineFunction &MF,
+                              const TargetRegisterInfo *TRI,
+                              std::vector<CalleeSavedInfo> &CSI) const override;
+
+  bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
+                                 MachineBasicBlock::iterator MI,
+                                 const std::vector<CalleeSavedInfo> &CSI,
+                                 const TargetRegisterInfo *TRI) const override;
+
+  bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
+                                  MachineBasicBlock::iterator MI,
+                                  const std::vector<CalleeSavedInfo> &CSI,
+                                  const TargetRegisterInfo *TRI) const override;
+
+  bool hasFP(const MachineFunction &MF) const override;
+  bool hasReservedCallFrame(const MachineFunction &MF) const override;
+
+  int getFrameIndexOffset(const MachineFunction &MF, int FI) const override;
+  int getFrameIndexReference(const MachineFunction &MF, int FI,
+                             unsigned &FrameReg) const override;
+
+  int getFrameIndexOffsetFromSP(const MachineFunction &MF, int FI) const;
+  int getFrameIndexReferenceFromSP(const MachineFunction &MF, int FI,
+                                   unsigned &FrameReg) const override;
+
+  void eliminateCallFramePseudoInstr(MachineFunction &MF,
+                                 MachineBasicBlock &MBB,
+                                 MachineBasicBlock::iterator MI) const override;
+
+private:
+  /// convertArgMovsToPushes - This method tries to convert a call sequence
+  /// that uses sub and mov instructions to put the argument onto the stack
+  /// into a series of pushes.
+  /// Returns true if the transformation succeeded, false if not.
+  bool convertArgMovsToPushes(MachineFunction &MF, 
+                              MachineBasicBlock &MBB,
+                              MachineBasicBlock::iterator I, 
+                              uint64_t Amount) const;
+};
+
+} // End llvm namespace
+
+#endif