diff options
| author | Justin Holewinski <jholewinski@nvidia.com> | 2014-06-27 19:36:25 +0000 |
|---|---|---|
| committer | Justin Holewinski <jholewinski@nvidia.com> | 2014-06-27 19:36:25 +0000 |
| commit | 9982f06aa3d712a2921cc6d6a6db9813fb9d4bac (patch) | |
| tree | b0c2649c5f078a8ffaa4d3fbc9869eab5a9b0fb5 /llvm/lib | |
| parent | 07d2c313a971a8ad854bda0462c9ef14bf849a4c (diff) | |
| download | bcm5719-llvm-9982f06aa3d712a2921cc6d6a6db9813fb9d4bac.tar.gz bcm5719-llvm-9982f06aa3d712a2921cc6d6a6db9813fb9d4bac.zip | |
[NVPTX] Use GreatestCommonDivisor64 from MathExtras instead of using our own. Thanks Hal!
llvm-svn: 211952
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp b/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp index 9160015009d..82c6a77a891 100644 --- a/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp +++ b/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp @@ -33,6 +33,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" #include <sstream> @@ -67,17 +68,6 @@ static bool IsPTXVectorType(MVT VT) { } } -static uint64_t GCD( int a, int b) -{ - if (a < b) std::swap(a,b); - while (b > 0) { - uint64_t c = b; - b = a % b; - a = c; - } - return a; -} - /// ComputePTXValueVTs - For the given Type \p Ty, returns the set of primitive /// EVTs that compose it. Unlike ComputeValueVTs, this will break apart vectors /// into their primitive components. @@ -718,7 +708,7 @@ SDValue NVPTXTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, InFlag = Chain.getValue(1); for (unsigned j = 0, je = vtparts.size(); j != je; ++j) { EVT elemtype = vtparts[j]; - unsigned ArgAlign = GCD(align, Offsets[j]); + unsigned ArgAlign = GreatestCommonDivisor64(align, Offsets[j]); if (elemtype.isInteger() && (sz < 8)) sz = 8; SDValue StVal = OutVals[OIdx]; @@ -943,7 +933,7 @@ SDValue NVPTXTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, for (unsigned j = 0, je = vtparts.size(); j != je; ++j) { EVT elemtype = vtparts[j]; int curOffset = Offsets[j]; - unsigned PartAlign = GCD(ArgAlign, curOffset); + unsigned PartAlign = GreatestCommonDivisor64(ArgAlign, curOffset); SDValue srcAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), OutVals[OIdx], DAG.getConstant(curOffset, getPointerTy())); @@ -1204,7 +1194,7 @@ SDValue NVPTXTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, unsigned RetAlign = getArgumentAlignment(Callee, CS, retTy, 0); for (unsigned i = 0, e = Ins.size(); i != e; ++i) { unsigned sz = VTs[i].getSizeInBits(); - unsigned AlignI = GCD(RetAlign, Offsets[i]); + unsigned AlignI = GreatestCommonDivisor64(RetAlign, Offsets[i]); bool needTruncate = sz < 8 ? true : false; if (VTs[i].isInteger() && (sz < 8)) sz = 8; |

