blob: 405d6e91b7ee5cea11b1796b153d039164a3f26a [file] [log] [blame]
Anton Korobeynikov4403b932009-07-16 13:27:25 +00001//==-- SystemZSubtarget.h - Define Subtarget for the SystemZ ---*- 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 declares the SystemZ specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_TARGET_SystemZ_SUBTARGET_H
15#define LLVM_TARGET_SystemZ_SUBTARGET_H
16
17#include "llvm/Target/TargetSubtarget.h"
18
19#include <string>
20
21namespace llvm {
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +000022class GlobalValue;
Daniel Dunbar3be03402009-08-02 22:11:08 +000023class TargetMachine;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000024
25class SystemZSubtarget : public TargetSubtarget {
Anton Korobeynikov747052c2009-07-16 14:05:00 +000026 bool HasZ10Insts;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000027public:
28 /// This constructor initializes the data members to match that
Daniel Dunbar3be03402009-08-02 22:11:08 +000029 /// of the specified triple.
Anton Korobeynikov4403b932009-07-16 13:27:25 +000030 ///
Daniel Dunbar3be03402009-08-02 22:11:08 +000031 SystemZSubtarget(const std::string &TT, const std::string &FS);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000032
33 /// ParseSubtargetFeatures - Parses features string setting specified
34 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov747052c2009-07-16 14:05:00 +000035 std::string ParseSubtargetFeatures(const std::string &FS,
36 const std::string &CPU);
37
38 bool isZ10() const { return HasZ10Insts; }
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +000039
40 bool GVRequiresExtraLoad(const GlobalValue* GV, const TargetMachine& TM,
41 bool isDirectCall) const;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000042};
43} // End llvm namespace
44
45#endif // LLVM_TARGET_SystemZ_SUBTARGET_H