[PM] Switch the TargetMachine interface from accepting a pass manager
[oota-llvm.git] / lib / Target / XCore / XCoreTargetTransformInfo.h
1 //===-- XCoreTargetTransformInfo.h - XCore specific TTI ---------*- 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 /// \file
10 /// This file a TargetTransformInfo::Concept conforming object specific to the
11 /// XCore target machine. It uses the target's detailed information to
12 /// provide more precise answers to certain TTI queries, while letting the
13 /// target independent and default TTI implementations handle the rest.
14 ///
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_LIB_TARGET_XCORE_XCORETARGETTRANSFORMINFO_H
18 #define LLVM_LIB_TARGET_XCORE_XCORETARGETTRANSFORMINFO_H
19
20 #include "XCore.h"
21 #include "XCoreTargetMachine.h"
22 #include "llvm/Analysis/TargetTransformInfo.h"
23 #include "llvm/CodeGen/BasicTTIImpl.h"
24 #include "llvm/Target/TargetLowering.h"
25
26 namespace llvm {
27
28 class XCoreTTIImpl : public BasicTTIImplBase<XCoreTTIImpl> {
29   typedef BasicTTIImplBase<XCoreTTIImpl> BaseT;
30   typedef TargetTransformInfo TTI;
31
32 public:
33   explicit XCoreTTIImpl(const XCoreTargetMachine *TM = nullptr) : BaseT(TM) {}
34
35   // Provide value semantics. MSVC requires that we spell all of these out.
36   XCoreTTIImpl(const XCoreTTIImpl &Arg)
37       : BaseT(static_cast<const BaseT &>(Arg)) {}
38   XCoreTTIImpl(XCoreTTIImpl &&Arg)
39       : BaseT(std::move(static_cast<BaseT &>(Arg))) {}
40   XCoreTTIImpl &operator=(const XCoreTTIImpl &RHS) {
41     BaseT::operator=(static_cast<const BaseT &>(RHS));
42     return *this;
43   }
44   XCoreTTIImpl &operator=(XCoreTTIImpl &&RHS) {
45     BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
46     return *this;
47   }
48
49   unsigned getNumberOfRegisters(bool Vector) {
50     if (Vector) {
51       return 0;
52     }
53     return 12;
54   }
55 };
56
57 } // end namespace llvm
58
59 #endif