1 //===- SystemZSubtarget.cpp - SystemZ Subtarget Information -------*- C++ -*-=//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the SystemZ specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #include "SystemZSubtarget.h"
16 #include "SystemZGenSubtarget.inc"
17 #include "llvm/GlobalValue.h"
18 #include "llvm/Target/TargetMachine.h"
22 SystemZSubtarget::SystemZSubtarget(const std::string
&TT
,
23 const std::string
&FS
):
25 std::string CPU
= "z9";
27 // Parse features string.
28 ParseSubtargetFeatures(FS
, CPU
);
31 /// True if accessing the GV requires an extra load.
32 bool SystemZSubtarget::GVRequiresExtraLoad(const GlobalValue
* GV
,
33 const TargetMachine
& TM
,
34 bool isDirectCall
) const {
35 if (TM
.getRelocationModel() == Reloc::PIC_
) {
36 // Extra load is needed for all externally visible.
40 if (GV
->hasLocalLinkage() || GV
->hasHiddenVisibility())