Pacify virtual dtor warnings and cmake buildbots.
[oota-llvm.git] / include / llvm / MC / MCInstrAnalysis.h
1 //===-- llvm/MC/MCInstrAnalysis.h - InstrDesc target hooks ------*- 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 defines the MCInstrAnalysis class which the MCTargetDescs can
11 // derive from to give additional information to MC.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/MC/MCInst.h"
16 #include "llvm/MC/MCInstrDesc.h"
17 #include "llvm/MC/MCInstrInfo.h"
18
19 namespace llvm {
20
21 class MCInstrAnalysis {
22 protected:
23   friend class Target;
24   const MCInstrInfo *Info;
25
26   MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {}
27 public:
28   virtual ~MCInstrAnalysis() {}
29
30   virtual bool isBranch(const MCInst &Inst) const {
31     return Info->get(Inst.getOpcode()).isBranch();
32   }
33
34   virtual bool isConditionalBranch(const MCInst &Inst) const {
35     return Info->get(Inst.getOpcode()).isBranch();
36   }
37
38   virtual bool isUnconditionalBranch(const MCInst &Inst) const {
39     return Info->get(Inst.getOpcode()).isUnconditionalBranch();
40   }
41
42   virtual bool isIndirectBranch(const MCInst &Inst) const {
43     return Info->get(Inst.getOpcode()).isIndirectBranch();
44   }
45
46   virtual bool isReturn(const MCInst &Inst) const {
47     return Info->get(Inst.getOpcode()).isReturn();
48   }
49
50   /// evaluateBranch - Given a branch instruction try to get the address the
51   /// branch targets. Otherwise return -1.
52   virtual uint64_t
53   evaluateBranch(const MCInst &Inst, uint64_t Addr, uint64_t Size) const;
54 };
55
56 }