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 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source 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 | 617742b | 2005-10-14 22:44:13 +0000 | [diff] [blame] | 22 | |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 23 | class PPCInstrInfo : public TargetInstrInfo { |
| 24 | const PPCRegisterInfo RI; |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 25 | public: |
Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 26 | PPCInstrInfo(); |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 27 | |
| 28 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 29 | /// such, whenever a client has an instance of instruction info, it should |
| 30 | /// always be able to get register info as well (through this method). |
| 31 | /// |
| 32 | virtual const MRegisterInfo &getRegisterInfo() const { return RI; } |
| 33 | |
| 34 | // |
| 35 | // Return true if the instruction is a register to register move and |
| 36 | // leave the source and dest operands in the passed parameters. |
| 37 | // |
| 38 | virtual bool isMoveInstr(const MachineInstr& MI, |
| 39 | unsigned& sourceReg, |
| 40 | unsigned& destReg) const; |
| 41 | |
Chris Lattner | 4083960 | 2006-02-02 20:12:32 +0000 | [diff] [blame] | 42 | unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const; |
Chris Lattner | 6524287 | 2006-02-02 20:16:12 +0000 | [diff] [blame^] | 43 | unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const; |
Chris Lattner | 4083960 | 2006-02-02 20:12:32 +0000 | [diff] [blame] | 44 | |
Chris Lattner | 043870d | 2005-09-09 18:17:41 +0000 | [diff] [blame] | 45 | // commuteInstruction - We can commute rlwimi instructions, but only if the |
| 46 | // rotate amt is zero. We also have to munge the immediates a bit. |
| 47 | virtual MachineInstr *commuteInstruction(MachineInstr *MI) const; |
| 48 | |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 49 | static unsigned invertPPCBranchOpcode(unsigned Opcode) { |
| 50 | switch (Opcode) { |
| 51 | default: assert(0 && "Unknown PPC branch opcode!"); |
| 52 | case PPC::BEQ: return PPC::BNE; |
| 53 | case PPC::BNE: return PPC::BEQ; |
| 54 | case PPC::BLT: return PPC::BGE; |
| 55 | case PPC::BGE: return PPC::BLT; |
| 56 | case PPC::BGT: return PPC::BLE; |
| 57 | case PPC::BLE: return PPC::BGT; |
Chris Lattner | e44b2d1 | 2006-01-18 19:35:21 +0000 | [diff] [blame] | 58 | case PPC::BNU: return PPC::BUN; |
| 59 | case PPC::BUN: return PPC::BNU; |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 60 | } |
Misha Brukman | f2ccb77 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 61 | } |
| 62 | }; |
| 63 | |
| 64 | } |
| 65 | |
| 66 | #endif |