[llvm] r262242 - Minor code cleanup. NFC
Rong Xu via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 29 11:16:04 PST 2016
Author: xur
Date: Mon Feb 29 13:16:04 2016
New Revision: 262242
URL: http://llvm.org/viewvc/llvm-project?rev=262242&view=rev
Log:
Minor code cleanup. NFC
Modified:
llvm/trunk/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
Modified: llvm/trunk/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/PGOInstrumentation.cpp?rev=262242&r1=262241&r2=262242&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/PGOInstrumentation.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/PGOInstrumentation.cpp Mon Feb 29 13:16:04 2016
@@ -99,10 +99,9 @@ static cl::opt<std::string>
// Command line options to disable value profiling. The default is false:
// i.e. value profiling is enabled by default. This is for debug purpose.
-static cl::opt<bool>
-DisableValueProfiling("disable-vp", cl::init(false),
- cl::Hidden,
- cl::desc("Disable Value Profiling"));
+static cl::opt<bool> DisableValueProfiling("disable-vp", cl::init(false),
+ cl::Hidden,
+ cl::desc("Disable Value Profiling"));
namespace {
class PGOInstrumentationGen : public ModulePass {
@@ -404,7 +403,8 @@ struct PGOUseEdge : public PGOEdge {
const std::string infoString() const {
if (!CountValid)
return PGOEdge::infoString();
- return (Twine(PGOEdge::infoString()) + " Count=" + Twine(CountValue)).str();
+ return (Twine(PGOEdge::infoString()) + " Count=" + Twine(CountValue))
+ .str();
}
};
@@ -731,12 +731,12 @@ void PGOUseFunc::annotateIndirectCallSit
unsigned IndirectCallSiteIndex = 0;
PGOIndirectCallSiteVisitor ICV;
ICV.visit(F);
- unsigned NumValueSites=
+ unsigned NumValueSites =
ProfileRecord.getNumValueSites(IPVK_IndirectCallTarget);
if (NumValueSites != ICV.IndirectCallInsts.size()) {
std::string Msg =
std::string("Inconsistent number of indirect call sites: ") +
- F.getName().str();
+ F.getName().str();
auto &Ctx = M->getContext();
Ctx.diagnose(
DiagnosticInfoPGOProfile(M->getName().data(), Msg, DS_Warning));
@@ -745,8 +745,8 @@ void PGOUseFunc::annotateIndirectCallSit
for (auto &I : ICV.IndirectCallInsts) {
DEBUG(dbgs() << "Read one indirect call instrumentation: Index="
- << IndirectCallSiteIndex << " out of "
- << NumValueSites<< "\n");
+ << IndirectCallSiteIndex << " out of " << NumValueSites
+ << "\n");
annotateValueSite(*M, *I, ProfileRecord, IPVK_IndirectCallTarget,
IndirectCallSiteIndex);
IndirectCallSiteIndex++;
@@ -759,17 +759,17 @@ void PGOUseFunc::annotateIndirectCallSit
static void createIRLevelProfileFlagVariable(Module &M) {
Type *IntTy64 = Type::getInt64Ty(M.getContext());
uint64_t ProfileVersion = (INSTR_PROF_RAW_VERSION | VARIANT_MASK_IR_PROF);
- auto IRLevelVersionVariable =
- new GlobalVariable(M, IntTy64, true, GlobalVariable::ExternalLinkage,
- Constant::getIntegerValue(IntTy64, APInt(64, ProfileVersion)),
- INSTR_PROF_QUOTE(IR_LEVEL_PROF_VERSION_VAR));
+ auto IRLevelVersionVariable = new GlobalVariable(
+ M, IntTy64, true, GlobalVariable::ExternalLinkage,
+ Constant::getIntegerValue(IntTy64, APInt(64, ProfileVersion)),
+ INSTR_PROF_QUOTE(IR_LEVEL_PROF_VERSION_VAR));
IRLevelVersionVariable->setVisibility(GlobalValue::DefaultVisibility);
Triple TT(M.getTargetTriple());
if (TT.isOSBinFormatMachO())
IRLevelVersionVariable->setLinkage(GlobalValue::LinkOnceODRLinkage);
else
- IRLevelVersionVariable->setComdat(
- M.getOrInsertComdat(StringRef(INSTR_PROF_QUOTE(IR_LEVEL_PROF_VERSION_VAR))));
+ IRLevelVersionVariable->setComdat(M.getOrInsertComdat(
+ StringRef(INSTR_PROF_QUOTE(IR_LEVEL_PROF_VERSION_VAR))));
}
bool PGOInstrumentationGen::runOnModule(Module &M) {
@@ -819,7 +819,6 @@ bool PGOInstrumentationUse::runOnModule(
return false;
}
-
for (auto &F : M) {
if (F.isDeclaration())
continue;
More information about the llvm-commits
mailing list