Chris Lattner | c16257f | 2006-01-18 19:37:44 +0000 | [diff] [blame] | 1 | //===- PPCInstrInfo.h - PowerPC Instruction Information ---------*- C++ -*-===// |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 2 | // |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 7 | // |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the PowerPC implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef POWERPC32_INSTRUCTIONINFO_H |
| 15 | #define POWERPC32_INSTRUCTIONINFO_H |
| 16 | |
Chris Lattner | 2668959 | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 17 | #include "PPC.h" |
Chris Lattner | 617742b | 2005-10-14 22:44:13 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | 16e71f2 | 2005-10-14 23:59:06 +0000 | [diff] [blame] | 19 | #include "PPCRegisterInfo.h" |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 20 | |
| 21 | namespace llvm { |
Chris Lattner | 88d211f | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 22 | |
| 23 | /// PPCII - This namespace holds all of the PowerPC target-specific |
| 24 | /// per-instruction flags. These must match the corresponding definitions in |
| 25 | /// PPC.td and PPCInstrFormats.td. |
| 26 | namespace PPCII { |
| 27 | enum { |
| 28 | // PPC970 Instruction Flags. These flags describe the characteristics of the |
| 29 | // PowerPC 970 (aka G5) dispatch groups and how they are formed out of |
| 30 | // raw machine instructions. |
| 31 | |
| 32 | /// PPC970_First - This instruction starts a new dispatch group, so it will |
| 33 | /// always be the first one in the group. |
| 34 | PPC970_First = 0x1, |
| 35 | |
| 36 | /// PPC970_Single - This instruction starts a new dispatch group and |
| 37 | /// terminates it, so it will be the sole instruction in the group. |
| 38 | PPC970_Single = 0x2, |
| 39 | |
Chris Lattner | fd97734 | 2006-03-13 05:15:10 +0000 | [diff] [blame] | 40 | /// PPC970_Cracked - This instruction is cracked into two pieces, requiring |
| 41 | /// two dispatch pipes to be available to issue. |
| 42 | PPC970_Cracked = 0x4, |
| 43 | |
Chris Lattner | 88d211f | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 44 | /// PPC970_Mask/Shift - This is a bitmask that selects the pipeline type that |
| 45 | /// an instruction is issued to. |
Chris Lattner | fd97734 | 2006-03-13 05:15:10 +0000 | [diff] [blame] | 46 | PPC970_Shift = 3, |
Chris Lattner | d74ea2b | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 47 | PPC970_Mask = 0x07 << PPC970_Shift |
Chris Lattner | 88d211f | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 48 | }; |
| 49 | enum PPC970_Unit { |
| 50 | /// These are the various PPC970 execution unit pipelines. Each instruction |
| 51 | /// is one of these. |
| 52 | PPC970_Pseudo = 0 << PPC970_Shift, // Pseudo instruction |
| 53 | PPC970_FXU = 1 << PPC970_Shift, // Fixed Point (aka Integer/ALU) Unit |
| 54 | PPC970_LSU = 2 << PPC970_Shift, // Load Store Unit |
| 55 | PPC970_FPU = 3 << PPC970_Shift, // Floating Point Unit |
| 56 | PPC970_CRU = 4 << PPC970_Shift, // Control Register Unit |
| 57 | PPC970_VALU = 5 << PPC970_Shift, // Vector ALU |
| 58 | PPC970_VPERM = 6 << PPC970_Shift, // Vector Permute Unit |
Chris Lattner | d74ea2b | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 59 | PPC970_BRU = 7 << PPC970_Shift // Branch Unit |
Chris Lattner | 88d211f | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 60 | }; |
| 61 | } |
| 62 | |
Chris Lattner | 617742b | 2005-10-14 22:44:13 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 6410552 | 2008-01-01 01:03:04 +0000 | [diff] [blame] | 64 | class PPCInstrInfo : public TargetInstrInfoImpl { |
Chris Lattner | b1d26f6 | 2006-06-17 00:01:04 +0000 | [diff] [blame] | 65 | PPCTargetMachine &TM; |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 66 | const PPCRegisterInfo RI; |
Bill Wendling | 4a66e9a | 2008-03-10 22:49:16 +0000 | [diff] [blame] | 67 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 68 | bool StoreRegToStackSlot(MachineFunction &MF, |
| 69 | unsigned SrcReg, bool isKill, int FrameIdx, |
Bill Wendling | 4a66e9a | 2008-03-10 22:49:16 +0000 | [diff] [blame] | 70 | const TargetRegisterClass *RC, |
| 71 | SmallVectorImpl<MachineInstr*> &NewMIs) const; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 72 | void LoadRegFromStackSlot(MachineFunction &MF, |
| 73 | unsigned DestReg, int FrameIdx, |
Bill Wendling | 4a66e9a | 2008-03-10 22:49:16 +0000 | [diff] [blame] | 74 | const TargetRegisterClass *RC, |
| 75 | SmallVectorImpl<MachineInstr*> &NewMIs) const; |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 76 | public: |
Dan Gohman | 950a4c4 | 2008-03-25 22:06:05 +0000 | [diff] [blame] | 77 | explicit PPCInstrInfo(PPCTargetMachine &TM); |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 78 | |
| 79 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 80 | /// such, whenever a client has an instance of instruction info, it should |
| 81 | /// always be able to get register info as well (through this method). |
| 82 | /// |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 83 | virtual const PPCRegisterInfo &getRegisterInfo() const { return RI; } |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 84 | |
Chris Lattner | b1d26f6 | 2006-06-17 00:01:04 +0000 | [diff] [blame] | 85 | /// getPointerRegClass - Return the register class to use to hold pointers. |
| 86 | /// This is used for addressing modes. |
| 87 | virtual const TargetRegisterClass *getPointerRegClass() const; |
| 88 | |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 89 | // Return true if the instruction is a register to register move and |
| 90 | // leave the source and dest operands in the passed parameters. |
| 91 | // |
| 92 | virtual bool isMoveInstr(const MachineInstr& MI, |
| 93 | unsigned& sourceReg, |
| 94 | unsigned& destReg) const; |
| 95 | |
Chris Lattner | 4083960 | 2006-02-02 20:12:32 +0000 | [diff] [blame] | 96 | unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const; |
Chris Lattner | 6524287 | 2006-02-02 20:16:12 +0000 | [diff] [blame] | 97 | unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const; |
Chris Lattner | 4083960 | 2006-02-02 20:12:32 +0000 | [diff] [blame] | 98 | |
Chris Lattner | 043870d | 2005-09-09 18:17:41 +0000 | [diff] [blame] | 99 | // commuteInstruction - We can commute rlwimi instructions, but only if the |
| 100 | // rotate amt is zero. We also have to munge the immediates a bit. |
Evan Cheng | 58dcb0e | 2008-06-16 07:33:11 +0000 | [diff] [blame] | 101 | virtual MachineInstr *commuteInstruction(MachineInstr *MI, bool NewMI) const; |
Chris Lattner | 043870d | 2005-09-09 18:17:41 +0000 | [diff] [blame] | 102 | |
Chris Lattner | bbf1c72 | 2006-03-05 23:49:55 +0000 | [diff] [blame] | 103 | virtual void insertNoop(MachineBasicBlock &MBB, |
| 104 | MachineBasicBlock::iterator MI) const; |
| 105 | |
Chris Lattner | c50e2bc | 2006-10-13 21:21:17 +0000 | [diff] [blame] | 106 | |
| 107 | // Branch analysis. |
| 108 | virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 109 | MachineBasicBlock *&FBB, |
Owen Anderson | 44eb65c | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 110 | SmallVectorImpl<MachineOperand> &Cond) const; |
Evan Cheng | b5cdaa2 | 2007-05-18 00:05:48 +0000 | [diff] [blame] | 111 | virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const; |
| 112 | virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
| 113 | MachineBasicBlock *FBB, |
Owen Anderson | 44eb65c | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 114 | const SmallVectorImpl<MachineOperand> &Cond) const; |
Owen Anderson | 940f83e | 2008-08-26 18:03:31 +0000 | [diff] [blame] | 115 | virtual bool copyRegToReg(MachineBasicBlock &MBB, |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 116 | MachineBasicBlock::iterator MI, |
| 117 | unsigned DestReg, unsigned SrcReg, |
| 118 | const TargetRegisterClass *DestRC, |
| 119 | const TargetRegisterClass *SrcRC) const; |
| 120 | |
| 121 | virtual void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 122 | MachineBasicBlock::iterator MBBI, |
| 123 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 124 | const TargetRegisterClass *RC) const; |
| 125 | |
| 126 | virtual void storeRegToAddr(MachineFunction &MF, unsigned SrcReg, bool isKill, |
| 127 | SmallVectorImpl<MachineOperand> &Addr, |
| 128 | const TargetRegisterClass *RC, |
| 129 | SmallVectorImpl<MachineInstr*> &NewMIs) const; |
| 130 | |
| 131 | virtual void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 132 | MachineBasicBlock::iterator MBBI, |
| 133 | unsigned DestReg, int FrameIndex, |
| 134 | const TargetRegisterClass *RC) const; |
| 135 | |
| 136 | virtual void loadRegFromAddr(MachineFunction &MF, unsigned DestReg, |
| 137 | SmallVectorImpl<MachineOperand> &Addr, |
| 138 | const TargetRegisterClass *RC, |
| 139 | SmallVectorImpl<MachineInstr*> &NewMIs) const; |
| 140 | |
Owen Anderson | 43dbe05 | 2008-01-07 01:35:02 +0000 | [diff] [blame] | 141 | /// foldMemoryOperand - PowerPC (like most RISC's) can only fold spills into |
| 142 | /// copy instructions, turning them into load/store instructions. |
Evan Cheng | 5fd79d0 | 2008-02-08 21:20:40 +0000 | [diff] [blame] | 143 | virtual MachineInstr* foldMemoryOperand(MachineFunction &MF, |
| 144 | MachineInstr* MI, |
Dan Gohman | 8e8b8a2 | 2008-10-16 01:49:15 +0000 | [diff] [blame] | 145 | const SmallVectorImpl<unsigned> &Ops, |
Owen Anderson | 43dbe05 | 2008-01-07 01:35:02 +0000 | [diff] [blame] | 146 | int FrameIndex) const; |
| 147 | |
Evan Cheng | 5fd79d0 | 2008-02-08 21:20:40 +0000 | [diff] [blame] | 148 | virtual MachineInstr* foldMemoryOperand(MachineFunction &MF, |
| 149 | MachineInstr* MI, |
Dan Gohman | 8e8b8a2 | 2008-10-16 01:49:15 +0000 | [diff] [blame] | 150 | const SmallVectorImpl<unsigned> &Ops, |
Owen Anderson | 43dbe05 | 2008-01-07 01:35:02 +0000 | [diff] [blame] | 151 | MachineInstr* LoadMI) const { |
| 152 | return 0; |
| 153 | } |
| 154 | |
Dan Gohman | 8e8b8a2 | 2008-10-16 01:49:15 +0000 | [diff] [blame] | 155 | virtual bool canFoldMemoryOperand(const MachineInstr *MI, |
| 156 | const SmallVectorImpl<unsigned> &Ops) const; |
Owen Anderson | 43dbe05 | 2008-01-07 01:35:02 +0000 | [diff] [blame] | 157 | |
Dan Gohman | 8e8b8a2 | 2008-10-16 01:49:15 +0000 | [diff] [blame] | 158 | virtual bool BlockHasNoFallThrough(const MachineBasicBlock &MBB) const; |
Owen Anderson | 44eb65c | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 159 | virtual |
| 160 | bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const; |
Nicolas Geoffray | 52e724a | 2008-04-16 20:10:13 +0000 | [diff] [blame] | 161 | |
| 162 | /// GetInstSize - Return the number of bytes of code the specified |
| 163 | /// instruction may be. This returns the maximum number of bytes. |
| 164 | /// |
| 165 | virtual unsigned GetInstSizeInBytes(const MachineInstr *MI) const; |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 166 | }; |
| 167 | |
| 168 | } |
| 169 | |
| 170 | #endif |