diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2016-11-28 14:01:51 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2016-11-28 14:01:51 +0000 |
commit | 84404f30b311e7943ff4997a11fb0602207392fc (patch) | |
tree | 9db0ac9265ebefea23d0709e5ba0a5d48e7a4821 /llvm/lib/Target/SystemZ/SystemZSubtarget.cpp | |
parent | 2d9e3d9d3bb8a6414fc9469f9525084a5d4b3195 (diff) | |
download | bcm5719-llvm-84404f30b311e7943ff4997a11fb0602207392fc.tar.gz bcm5719-llvm-84404f30b311e7943ff4997a11fb0602207392fc.zip |
[SystemZ] Support execution hint instructions
This adds assembler support for the instructions provided by the
execution-hint facility (NIAI and BP(R)P). This required adding
support for the new relocation types for 12-bit and 24-bit PC-
relative offsets used by the BP(R)P instructions.
llvm-svn: 288031
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZSubtarget.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZSubtarget.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp b/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp index bf7277a6ef1..ce07ea3318a 100644 --- a/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp +++ b/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp @@ -39,8 +39,9 @@ SystemZSubtarget::SystemZSubtarget(const Triple &TT, const std::string &CPU, HasLoadStoreOnCond(false), HasHighWord(false), HasFPExtension(false), HasPopulationCount(false), HasFastSerialization(false), HasInterlockedAccess1(false), HasMiscellaneousExtensions(false), - HasLoadAndTrap(false), HasTransactionalExecution(false), - HasProcessorAssist(false), HasVector(false), HasLoadStoreOnCond2(false), + HasExecutionHint(false), HasLoadAndTrap(false), + HasTransactionalExecution(false), HasProcessorAssist(false), + HasVector(false), HasLoadStoreOnCond2(false), HasLoadAndZeroRightmostByte(false), TargetTriple(TT), InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this), TSInfo(), FrameLowering() {} |