mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Add SlotIndex statistics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127007 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fb69810a2b
commit
10c5f2dad5
@ -10,6 +10,7 @@
|
||||
#define DEBUG_TYPE "slotindexes"
|
||||
|
||||
#include "llvm/CodeGen/SlotIndexes.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
@ -21,6 +22,8 @@ char SlotIndexes::ID = 0;
|
||||
INITIALIZE_PASS(SlotIndexes, "slotindexes",
|
||||
"Slot index numbering", false, false)
|
||||
|
||||
STATISTIC(NumRenumPasses, "Number of slot index renumber passes");
|
||||
|
||||
void SlotIndexes::getAnalysisUsage(AnalysisUsage &au) const {
|
||||
au.setPreservesAll();
|
||||
MachineFunctionPass::getAnalysisUsage(au);
|
||||
@ -128,6 +131,7 @@ void SlotIndexes::renumberIndexes() {
|
||||
// pass during the initial numbering of the function if the new instructions
|
||||
// had been present.
|
||||
DEBUG(dbgs() << "\n*** Renumbering SlotIndexes ***\n");
|
||||
++NumRenumPasses;
|
||||
|
||||
unsigned index = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user