From 2260a3a0468c9d1749b33a6207007ddf33464731 Mon Sep 17 00:00:00 2001 From: Ashutosh Nema Date: Thu, 11 Feb 2016 09:23:53 +0000 Subject: [PATCH] Fixed typo in comment & coding style for LoopVersioningLICM. llvm-svn: 260504 --- .../lib/Transforms/IPO/PassManagerBuilder.cpp | 2 +- .../Transforms/Scalar/LoopVersioningLICM.cpp | 23 +++++++++---------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp b/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp index 18d321b31068..c9fb8541f89f 100644 --- a/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp +++ b/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp @@ -379,7 +379,7 @@ void PassManagerBuilder::populateModulePassManager( // we must insert a no-op module pass to reset the pass manager. MPM.add(createBarrierNoopPass()); - // Scheduling LoopVersioningLICM when inining is over, because after that + // Scheduling LoopVersioningLICM when inlining is over, because after that // we may see more accurate aliasing. Reason to run this late is that too // early versioning may prevent further inlining due to increase of code // size. By placing it just after inlining other optimizations which runs diff --git a/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp b/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp index 259069c21c52..788de61b403f 100644 --- a/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp +++ b/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp @@ -49,7 +49,7 @@ // +--------------------+ +----------------------+ // | | // +--------------------+ +----------------------+ -// |Orig Loop|Exit Block| |Cloned Loop Exit Block| +// |Orig Loop Exit Block| |Cloned Loop Exit Block| // +--------------------+ +-----------+----------+ // | | // +----------+--------------+-----------+ @@ -92,21 +92,22 @@ #include "llvm/Transforms/Utils/ValueMapper.h" #define DEBUG_TYPE "loop-versioning-licm" -#define LOOP_VERSIONING_LICM_METADATA "llvm.loop.licm_versioning.disable" +static constexpr char LICMVersioningMetaData[] = + "llvm.loop.licm_versioning.disable"; using namespace llvm; /// Threshold minimum allowed percentage for possible /// invariant instructions in a loop. static cl::opt - LVInvarThreshold("-licm-versioning-invariant-threshold", + LVInvarThreshold("licm-versioning-invariant-threshold", cl::desc("LoopVersioningLICM's minimum allowed percentage" "of possible invariant instructions per loop"), cl::init(25), cl::Hidden); /// Threshold for maximum allowed loop nest/depth static cl::opt LVLoopDepthThreshold( - "-licm-versioning-max-depth-threshold", + "licm-versioning-max-depth-threshold", cl::desc( "LoopVersioningLICM's threshold for maximum allowed loop nest/depth"), cl::init(2), cl::Hidden); @@ -372,7 +373,7 @@ bool LoopVersioningLICM::legalLoopMemoryAccesses() { bool LoopVersioningLICM::instructionSafeForVersioning(Instruction *I) { assert(I != nullptr && "Null instruction found!"); // Check function call safety - if (dyn_cast(I) && !AA->doesNotAccessMemory(CallSite(I))) { + if (isa(I) && !AA->doesNotAccessMemory(CallSite(I))) { DEBUG(dbgs() << " Unsafe call site found.\n"); return false; } @@ -427,7 +428,7 @@ bool LoopVersioningLICM::legalLoopInstructions() { // instruction safety. for (auto *Block : CurLoop->getBlocks()) for (auto &Inst : *Block) { - // If instruction in unsafe just return false. + // If instruction is unsafe just return false. if (!instructionSafeForVersioning(&Inst)) return false; } @@ -469,11 +470,11 @@ bool LoopVersioningLICM::legalLoopInstructions() { } /// \brief It checks loop is already visited or not. -/// check loop meta data, If loop revisited return true +/// check loop meta data, if loop revisited return true /// else false. bool LoopVersioningLICM::isLoopAlreadyVisited() { // Check LoopVersioningLICM metadata into loop - if (checkStringMetadataIntoLoop(CurLoop, LOOP_VERSIONING_LICM_METADATA)) { + if (checkStringMetadataIntoLoop(CurLoop, LICMVersioningMetaData)) { return true; } return false; @@ -585,11 +586,9 @@ bool LoopVersioningLICM::runOnLoop(Loop *L, LPPassManager &LPM) { LoopVersioning LVer(*LAI, CurLoop, LI, DT, SE, true); LVer.versionLoop(); // Set Loop Versioning metaData for original loop. - addStringMetadataToLoop(LVer.getNonVersionedLoop(), - LOOP_VERSIONING_LICM_METADATA); + addStringMetadataToLoop(LVer.getNonVersionedLoop(), LICMVersioningMetaData); // Set Loop Versioning metaData for version loop. - addStringMetadataToLoop(LVer.getVersionedLoop(), - LOOP_VERSIONING_LICM_METADATA); + addStringMetadataToLoop(LVer.getVersionedLoop(), LICMVersioningMetaData); // Set "llvm.mem.parallel_loop_access" metaData to versioned loop. addStringMetadataToLoop(LVer.getVersionedLoop(), "llvm.mem.parallel_loop_access");