blob: 798b9b939cd356e25b830d0b1da446a844681462 [file] [log] [blame]
Evan Cheng3f32d652008-06-04 09:18:41 +00001//===-- LiveStackAnalysis.cpp - Live Stack Slot Analysis ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
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
12// than registers.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "livestacks"
17#include "llvm/CodeGen/LiveStackAnalysis.h"
Lang Hamesf41538d2009-06-02 16:53:25 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Evan Cheng3f32d652008-06-04 09:18:41 +000019#include "llvm/CodeGen/Passes.h"
20#include "llvm/Target/TargetRegisterInfo.h"
21#include "llvm/Support/Debug.h"
Chris Lattnerc02497f2009-08-23 03:47:42 +000022#include "llvm/Support/raw_ostream.h"
Evan Cheng3f32d652008-06-04 09:18:41 +000023#include "llvm/ADT/Statistic.h"
Lang Hamesf41538d2009-06-02 16:53:25 +000024#include <limits>
Evan Cheng3f32d652008-06-04 09:18:41 +000025using namespace llvm;
26
27char LiveStacks::ID = 0;
28static RegisterPass<LiveStacks> X("livestacks", "Live Stack Slot Analysis");
29
30void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const {
Evan Chengef901c52008-09-22 22:26:15 +000031 AU.setPreservesAll();
Lang Hames233a60e2009-11-03 23:52:08 +000032 AU.addPreserved<SlotIndexes>();
33 AU.addRequiredTransitive<SlotIndexes>();
Evan Chengbbeeb2a2008-09-22 20:58:04 +000034 MachineFunctionPass::getAnalysisUsage(AU);
Evan Cheng3f32d652008-06-04 09:18:41 +000035}
36
37void LiveStacks::releaseMemory() {
38 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
Benjamin Kramer991de142010-03-30 20:16:45 +000039 VNInfoAllocator.DestroyAll();
Evan Chengc781a242009-05-03 18:32:42 +000040 S2IMap.clear();
41 S2RCMap.clear();
Evan Cheng3f32d652008-06-04 09:18:41 +000042}
43
44bool LiveStacks::runOnMachineFunction(MachineFunction &) {
45 // FIXME: No analysis is being done right now. We are relying on the
46 // register allocators to provide the information.
47 return false;
48}
49
50/// print - Implement the dump method.
Chris Lattner45cfe542009-08-23 06:03:38 +000051void LiveStacks::print(raw_ostream &OS, const Module*) const {
Chris Lattnerc02497f2009-08-23 03:47:42 +000052
53 OS << "********** INTERVALS **********\n";
Evan Cheng3f32d652008-06-04 09:18:41 +000054 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Chris Lattnerc02497f2009-08-23 03:47:42 +000055 I->second.print(OS);
Evan Chengc781a242009-05-03 18:32:42 +000056 int Slot = I->first;
57 const TargetRegisterClass *RC = getIntervalRegClass(Slot);
58 if (RC)
Chris Lattnerc02497f2009-08-23 03:47:42 +000059 OS << " [" << RC->getName() << "]\n";
Evan Chengc781a242009-05-03 18:32:42 +000060 else
Chris Lattnerc02497f2009-08-23 03:47:42 +000061 OS << " [Unknown]\n";
Evan Cheng3f32d652008-06-04 09:18:41 +000062 }
63}