|
@@ -1629,14 +1629,14 @@ bool FPPassManager::runOnFunction(Function &F) {
|
|
FunctionSize = F.getInstructionCount();
|
|
FunctionSize = F.getInstructionCount();
|
|
}
|
|
}
|
|
|
|
|
|
- bool ProfileTime = llvm::timeTraceProfilerEnabled();
|
|
|
|
- if (ProfileTime)
|
|
|
|
- llvm::timeTraceProfilerBegin("OptFunction", F.getName());
|
|
|
|
|
|
+ llvm::TimeTraceScope FunctionScope("OptFunction", F.getName());
|
|
|
|
|
|
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
|
|
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
|
|
FunctionPass *FP = getContainedPass(Index);
|
|
FunctionPass *FP = getContainedPass(Index);
|
|
bool LocalChanged = false;
|
|
bool LocalChanged = false;
|
|
|
|
|
|
|
|
+ llvm::TimeTraceScope PassScope("RunPass", FP->getPassName());
|
|
|
|
+
|
|
dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getName());
|
|
dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getName());
|
|
dumpRequiredSet(FP);
|
|
dumpRequiredSet(FP);
|
|
|
|
|
|
@@ -1674,9 +1674,6 @@ bool FPPassManager::runOnFunction(Function &F) {
|
|
removeDeadPasses(FP, F.getName(), ON_FUNCTION_MSG);
|
|
removeDeadPasses(FP, F.getName(), ON_FUNCTION_MSG);
|
|
}
|
|
}
|
|
|
|
|
|
- if (ProfileTime)
|
|
|
|
- llvm::timeTraceProfilerEnd();
|
|
|
|
-
|
|
|
|
return Changed;
|
|
return Changed;
|
|
}
|
|
}
|
|
|
|
|