[PATCH] D29068: AMDGPU/SI: Move some ISel helpers into utils so they can be shared with GISel
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 23 19:13:32 PST 2017
arsenm accepted this revision.
arsenm added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: lib/Target/AMDGPU/SIInstrInfo.cpp:2536-2550
+int64_t SIInstrInfo::getSMRDEncodedOffset(const AMDGPUSubtarget &ST,
+ int64_t ByteOffset) {
+ if (ST.getGeneration() < AMDGPUSubtarget::VOLCANIC_ISLANDS)
+ return ByteOffset >> 2;
+
+ return ByteOffset;
+}
----------------
These are trivial enough to go in the header
https://reviews.llvm.org/D29068
More information about the llvm-commits
mailing list