diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-04-12 00:48:32 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-04-12 00:48:32 +0000 |
commit | c3b0f50ac25b2277ae8712abc03485923c09716c (patch) | |
tree | 5299d0a1d862c399dfe4b1c796d944dca67483af /llvm/lib/CodeGen/MachineBlockPlacement.cpp | |
parent | 73b75e01bfa15ab4d308d05861e39a4f93cb15e9 (diff) | |
download | llvm-c3b0f50ac25b2277ae8712abc03485923c09716c.zip llvm-c3b0f50ac25b2277ae8712abc03485923c09716c.tar.gz llvm-c3b0f50ac25b2277ae8712abc03485923c09716c.tar.bz2 |
Add a flag to align all basic blocks in the function.
When debugging performance regressions we often ask ourselves if the regression
that we see is due to poor isel/sched/ra or due to some micro-architetural
problem. When comparing two code sequences one good way to rule out front-end
bottlenecks (and other the issues) is to force code alignment. This pass adds
a flag that forces the alignment of all of the basic blocks in the program.
llvm-svn: 179353
Diffstat (limited to 'llvm/lib/CodeGen/MachineBlockPlacement.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBlockPlacement.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineBlockPlacement.cpp b/llvm/lib/CodeGen/MachineBlockPlacement.cpp index cd948e2..774df81 100644 --- a/llvm/lib/CodeGen/MachineBlockPlacement.cpp +++ b/llvm/lib/CodeGen/MachineBlockPlacement.cpp @@ -39,6 +39,7 @@ #include "llvm/CodeGen/MachineLoopInfo.h" #include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/Support/Allocator.h" +#include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetLowering.h" @@ -52,6 +53,11 @@ STATISTIC(CondBranchTakenFreq, STATISTIC(UncondBranchTakenFreq, "Potential frequency of taking unconditional branches"); +static cl::opt<unsigned> AlignAllBlock("align-all-blocks", + cl::desc("Force the alignment of all " + "blocks in the function."), + cl::init(0), cl::Hidden); + namespace { class BlockChain; /// \brief Type for our function-wide basic block -> block chain mapping. @@ -1083,6 +1089,14 @@ bool MachineBlockPlacement::runOnMachineFunction(MachineFunction &F) { TLI = F.getTarget().getTargetLowering(); assert(BlockToChain.empty()); + if (AlignAllBlock) { + // Align all of the blocks in the function to a specific alignment. + for (MachineFunction::iterator FI = F.begin(), FE = F.end(); + FI != FE; ++FI) + FI->setAlignment(AlignAllBlock); + return true; + } + buildCFGChains(F); BlockToChain.clear(); |