blob: 55cfd80002bc955ecb2de36b78f872893073c2de [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//
Evan Cheng5b1b44892011-07-01 21:01:15 +000010// This file declares the SystemZ specific subclass of TargetSubtargetInfo.
Anton Korobeynikov4403b932009-07-16 13:27:25 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_TARGET_SystemZ_SUBTARGET_H
15#define LLVM_TARGET_SystemZ_SUBTARGET_H
16
Evan Cheng5b1b44892011-07-01 21:01:15 +000017#include "llvm/Target/TargetSubtargetInfo.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000018#include <string>
19
Evan Cheng94214702011-07-01 20:45:01 +000020#define GET_SUBTARGETINFO_HEADER
Evan Cheng385e9302011-07-01 22:36:09 +000021#include "SystemZGenSubtargetInfo.inc"
Evan Cheng94214702011-07-01 20:45:01 +000022
Anton Korobeynikov4403b932009-07-16 13:27:25 +000023namespace llvm {
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +000024class GlobalValue;
Evan Cheng0ddff1b2011-07-07 07:07:08 +000025class StringRef;
Daniel Dunbar3be03402009-08-02 22:11:08 +000026class TargetMachine;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000027
Evan Cheng94214702011-07-01 20:45:01 +000028class SystemZSubtarget : public SystemZGenSubtargetInfo {
Anton Korobeynikov747052c2009-07-16 14:05:00 +000029 bool HasZ10Insts;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000030public:
31 /// This constructor initializes the data members to match that
Daniel Dunbar3be03402009-08-02 22:11:08 +000032 /// of the specified triple.
Anton Korobeynikov4403b932009-07-16 13:27:25 +000033 ///
Evan Cheng276365d2011-06-30 01:53:36 +000034 SystemZSubtarget(const std::string &TT, const std::string &CPU,
35 const std::string &FS);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000036
37 /// ParseSubtargetFeatures - Parses features string setting specified
38 /// subtarget options. Definition of function is auto generated by tblgen.
Evan Cheng0ddff1b2011-07-07 07:07:08 +000039 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
Anton Korobeynikov747052c2009-07-16 14:05:00 +000040
41 bool isZ10() const { return HasZ10Insts; }
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +000042
43 bool GVRequiresExtraLoad(const GlobalValue* GV, const TargetMachine& TM,
44 bool isDirectCall) const;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000045};
46} // End llvm namespace
47
48#endif // LLVM_TARGET_SystemZ_SUBTARGET_H