1 //===-- LiveStackAnalysis.cpp - Live Stack Slot Analysis ------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the live stack slot analysis pass. It is analogous to
11 // live interval analysis except it's analyzing liveness of stack slots rather
14 //===----------------------------------------------------------------------===//
16 #define DEBUG_TYPE "livestacks"
17 #include "llvm/CodeGen/LiveStackAnalysis.h"
18 #include "llvm/ADT/Statistic.h"
19 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
20 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/Support/Debug.h"
22 #include "llvm/Support/raw_ostream.h"
23 #include "llvm/Target/TargetRegisterInfo.h"
27 char LiveStacks::ID = 0;
28 INITIALIZE_PASS_BEGIN(LiveStacks, "livestacks",
29 "Live Stack Slot Analysis", false, false)
30 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
31 INITIALIZE_PASS_END(LiveStacks, "livestacks",
32 "Live Stack Slot Analysis", false, false)
34 char &llvm::LiveStacksID = LiveStacks::ID;
36 void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const {
38 AU.addPreserved<SlotIndexes>();
39 AU.addRequiredTransitive<SlotIndexes>();
40 MachineFunctionPass::getAnalysisUsage(AU);
43 void LiveStacks::releaseMemory() {
44 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
45 VNInfoAllocator.Reset();
50 bool LiveStacks::runOnMachineFunction(MachineFunction &MF) {
51 TRI = MF.getTarget().getRegisterInfo();
52 // FIXME: No analysis is being done right now. We are relying on the
53 // register allocators to provide the information.
58 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) {
59 assert(Slot >= 0 && "Spill slot indice must be >= 0");
60 SS2IntervalMap::iterator I = S2IMap.find(Slot);
61 if (I == S2IMap.end()) {
62 I = S2IMap.insert(I, std::make_pair(Slot,
63 LiveInterval(TargetRegisterInfo::index2StackSlot(Slot), 0.0F)));
64 S2RCMap.insert(std::make_pair(Slot, RC));
66 // Use the largest common subclass register class.
67 const TargetRegisterClass *OldRC = S2RCMap[Slot];
68 S2RCMap[Slot] = TRI->getCommonSubClass(OldRC, RC);
73 /// print - Implement the dump method.
74 void LiveStacks::print(raw_ostream &OS, const Module*) const {
76 OS << "********** INTERVALS **********\n";
77 for (const_iterator I = begin(), E = end(); I != E; ++I) {
80 const TargetRegisterClass *RC = getIntervalRegClass(Slot);
82 OS << " [" << RC->getName() << "]\n";