2013-05-07 00:15:19 +08:00
|
|
|
//===-- SystemZSubtarget.cpp - SystemZ subtarget information --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SystemZSubtarget.h"
|
2014-01-07 19:48:04 +08:00
|
|
|
#include "MCTargetDesc/SystemZMCTargetDesc.h"
|
2013-05-07 00:15:19 +08:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
|
|
|
|
2014-04-22 10:03:14 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "systemz-subtarget"
|
|
|
|
|
2013-05-07 00:15:19 +08:00
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "SystemZGenSubtargetInfo.inc"
|
|
|
|
|
2014-07-03 06:05:40 +08:00
|
|
|
// Pin the vtable to this file.
|
2013-11-19 08:57:56 +08:00
|
|
|
void SystemZSubtarget::anchor() {}
|
|
|
|
|
2014-07-02 04:19:02 +08:00
|
|
|
SystemZSubtarget &
|
|
|
|
SystemZSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) {
|
2013-05-07 00:15:19 +08:00
|
|
|
std::string CPUName = CPU;
|
|
|
|
if (CPUName.empty())
|
2013-10-31 20:14:17 +08:00
|
|
|
CPUName = "generic";
|
2013-05-07 00:15:19 +08:00
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(CPUName, FS);
|
2014-07-02 04:19:02 +08:00
|
|
|
return *this;
|
2013-05-07 00:15:19 +08:00
|
|
|
}
|
|
|
|
|
2015-06-10 20:11:26 +08:00
|
|
|
SystemZSubtarget::SystemZSubtarget(const Triple &TT, const std::string &CPU,
|
2014-07-02 04:19:02 +08:00
|
|
|
const std::string &FS,
|
|
|
|
const TargetMachine &TM)
|
2015-09-16 00:17:27 +08:00
|
|
|
: SystemZGenSubtargetInfo(TT, CPU, FS), HasDistinctOps(false),
|
2014-07-02 04:19:02 +08:00
|
|
|
HasLoadStoreOnCond(false), HasHighWord(false), HasFPExtension(false),
|
2015-03-31 20:56:33 +08:00
|
|
|
HasPopulationCount(false), HasFastSerialization(false),
|
2015-03-31 20:58:17 +08:00
|
|
|
HasInterlockedAccess1(false), HasMiscellaneousExtensions(false),
|
2016-11-28 21:59:22 +08:00
|
|
|
HasLoadAndTrap(false), HasTransactionalExecution(false),
|
|
|
|
HasProcessorAssist(false), HasVector(false), HasLoadStoreOnCond2(false),
|
2016-11-11 20:46:28 +08:00
|
|
|
HasLoadAndZeroRightmostByte(false),
|
|
|
|
TargetTriple(TT), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
|
|
|
|
TLInfo(TM, *this), TSInfo(), FrameLowering() {}
|
2014-07-02 04:19:02 +08:00
|
|
|
|
2013-05-07 00:15:19 +08:00
|
|
|
bool SystemZSubtarget::isPC32DBLSymbol(const GlobalValue *GV,
|
|
|
|
CodeModel::Model CM) const {
|
|
|
|
// PC32DBL accesses require the low bit to be clear. Note that a zero
|
|
|
|
// value selects the default alignment and is therefore OK.
|
|
|
|
if (GV->getAlignment() == 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// For the small model, all locally-binding symbols are in range.
|
|
|
|
if (CM == CodeModel::Small)
|
2016-06-28 07:15:57 +08:00
|
|
|
return TLInfo.getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV);
|
2013-05-07 00:15:19 +08:00
|
|
|
|
|
|
|
// For Medium and above, assume that the symbol is not within the 4GB range.
|
|
|
|
// Taking the address of locally-defined text would be OK, but that
|
|
|
|
// case isn't easy to detect.
|
|
|
|
return false;
|
|
|
|
}
|