diff options
author | Adam Nemet <anemet@apple.com> | 2016-05-16 16:57:42 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2016-05-16 16:57:42 +0000 |
commit | 9b5852aeb215e96fc73455f8556e52567dccf002 (patch) | |
tree | 201207694f3f7185813b1a9e59ad9e4b43345859 /llvm/lib/Analysis/LoopAccessAnalysis.cpp | |
parent | 779ddd134d50a0096444d14dd220a6ac73726c79 (diff) | |
download | bcm5719-llvm-9b5852aeb215e96fc73455f8556e52567dccf002.tar.gz bcm5719-llvm-9b5852aeb215e96fc73455f8556e52567dccf002.zip |
[LAA] clang-format the function couldPreventStoreLoadForward. NFC
llvm-svn: 269666
Diffstat (limited to 'llvm/lib/Analysis/LoopAccessAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopAccessAnalysis.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp index 6eaf0ff84a9..eff8b2a613c 100644 --- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp +++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp @@ -1081,28 +1081,28 @@ bool MemoryDepChecker::couldPreventStoreLoadForward(unsigned Distance, // hence on your typical architecture store-load forwarding does not take // place. Vectorizing in such cases does not make sense. // Store-load forwarding distance. - const unsigned NumCyclesForStoreLoadThroughMemory = 8*TypeByteSize; + const unsigned NumCyclesForStoreLoadThroughMemory = 8 * TypeByteSize; // Maximum vector factor. unsigned MaxVFWithoutSLForwardIssues = std::min( VectorizerParams::MaxVectorWidth * TypeByteSize, MaxSafeDepDistBytes); - for (unsigned vf = 2*TypeByteSize; vf <= MaxVFWithoutSLForwardIssues; - vf *= 2) { - if (Distance % vf && Distance / vf < NumCyclesForStoreLoadThroughMemory) { - MaxVFWithoutSLForwardIssues = (vf >>=1); + for (unsigned VF = 2 * TypeByteSize; VF <= MaxVFWithoutSLForwardIssues; + VF *= 2) { + if (Distance % VF && Distance / VF < NumCyclesForStoreLoadThroughMemory) { + MaxVFWithoutSLForwardIssues = (VF >>= 1); break; } } - if (MaxVFWithoutSLForwardIssues< 2*TypeByteSize) { - DEBUG(dbgs() << "LAA: Distance " << Distance << - " that could cause a store-load forwarding conflict\n"); + if (MaxVFWithoutSLForwardIssues < 2 * TypeByteSize) { + DEBUG(dbgs() << "LAA: Distance " << Distance + << " that could cause a store-load forwarding conflict\n"); return true; } if (MaxVFWithoutSLForwardIssues < MaxSafeDepDistBytes && MaxVFWithoutSLForwardIssues != - VectorizerParams::MaxVectorWidth * TypeByteSize) + VectorizerParams::MaxVectorWidth * TypeByteSize) MaxSafeDepDistBytes = MaxVFWithoutSLForwardIssues; return false; } |