Use BranchProbability instead of floating points in IfConverter.
[llvm/stm8.git] / lib / Target / ARM / Thumb1InstrInfo.h
blob17ef2f758ef4bc77385de193fa7a2bfcbadeb1f5
1 //===- Thumb1InstrInfo.h - Thumb-1 Instruction Information ------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the Thumb-1 implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef THUMB1INSTRUCTIONINFO_H
15 #define THUMB1INSTRUCTIONINFO_H
17 #include "llvm/Target/TargetInstrInfo.h"
18 #include "ARM.h"
19 #include "ARMInstrInfo.h"
20 #include "Thumb1RegisterInfo.h"
22 namespace llvm {
23 class ARMSubtarget;
25 class Thumb1InstrInfo : public ARMBaseInstrInfo {
26 Thumb1RegisterInfo RI;
27 public:
28 explicit Thumb1InstrInfo(const ARMSubtarget &STI);
30 // Return the non-pre/post incrementing version of 'Opc'. Return 0
31 // if there is not such an opcode.
32 unsigned getUnindexedOpcode(unsigned Opc) const;
34 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
35 /// such, whenever a client has an instance of instruction info, it should
36 /// always be able to get register info as well (through this method).
37 ///
38 const Thumb1RegisterInfo &getRegisterInfo() const { return RI; }
40 void copyPhysReg(MachineBasicBlock &MBB,
41 MachineBasicBlock::iterator I, DebugLoc DL,
42 unsigned DestReg, unsigned SrcReg,
43 bool KillSrc) const;
44 void storeRegToStackSlot(MachineBasicBlock &MBB,
45 MachineBasicBlock::iterator MBBI,
46 unsigned SrcReg, bool isKill, int FrameIndex,
47 const TargetRegisterClass *RC,
48 const TargetRegisterInfo *TRI) const;
50 void loadRegFromStackSlot(MachineBasicBlock &MBB,
51 MachineBasicBlock::iterator MBBI,
52 unsigned DestReg, int FrameIndex,
53 const TargetRegisterClass *RC,
54 const TargetRegisterInfo *TRI) const;
59 #endif // THUMB1INSTRUCTIONINFO_H