blob: 8a6ac251ab2d9da6cce9648c1c6d7a9b5377da99 [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
Evan Cheng3f32d652008-06-04 09:18:41 +000016#include "llvm/CodeGen/LiveStackAnalysis.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "llvm/ADT/Statistic.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"
Evan Cheng3f32d652008-06-04 09:18:41 +000020#include "llvm/Support/Debug.h"
Chris Lattnerc02497f2009-08-23 03:47:42 +000021#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/Target/TargetRegisterInfo.h"
Stephen Hines37ed9c12014-12-01 14:51:49 -080023#include "llvm/Target/TargetSubtargetInfo.h"
Lang Hamesf41538d2009-06-02 16:53:25 +000024#include <limits>
Evan Cheng3f32d652008-06-04 09:18:41 +000025using namespace llvm;
26
Stephen Hinesdce4a402014-05-29 02:49:00 -070027#define DEBUG_TYPE "livestacks"
28
Evan Cheng3f32d652008-06-04 09:18:41 +000029char LiveStacks::ID = 0;
Evan Chengbb36a432012-09-21 20:04:28 +000030INITIALIZE_PASS_BEGIN(LiveStacks, "livestacks",
31 "Live Stack Slot Analysis", false, false)
32INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
33INITIALIZE_PASS_END(LiveStacks, "livestacks",
Owen Andersonce665bd2010-10-07 22:25:06 +000034 "Live Stack Slot Analysis", false, false)
Evan Cheng3f32d652008-06-04 09:18:41 +000035
Jakob Stoklund Olesen2d172932010-10-26 00:11:33 +000036char &llvm::LiveStacksID = LiveStacks::ID;
37
Evan Cheng3f32d652008-06-04 09:18:41 +000038void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const {
Evan Chengef901c52008-09-22 22:26:15 +000039 AU.setPreservesAll();
Lang Hames233a60e2009-11-03 23:52:08 +000040 AU.addPreserved<SlotIndexes>();
41 AU.addRequiredTransitive<SlotIndexes>();
Evan Chengbbeeb2a2008-09-22 20:58:04 +000042 MachineFunctionPass::getAnalysisUsage(AU);
Evan Cheng3f32d652008-06-04 09:18:41 +000043}
44
45void LiveStacks::releaseMemory() {
Benjamin Kramerce9a20b2010-06-26 11:30:59 +000046 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
47 VNInfoAllocator.Reset();
Evan Chengc781a242009-05-03 18:32:42 +000048 S2IMap.clear();
49 S2RCMap.clear();
Evan Cheng3f32d652008-06-04 09:18:41 +000050}
51
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +000052bool LiveStacks::runOnMachineFunction(MachineFunction &MF) {
Stephen Hines37ed9c12014-12-01 14:51:49 -080053 TRI = MF.getSubtarget().getRegisterInfo();
Evan Cheng3f32d652008-06-04 09:18:41 +000054 // FIXME: No analysis is being done right now. We are relying on the
55 // register allocators to provide the information.
56 return false;
57}
58
Jakob Stoklund Olesenbe97e902011-01-09 21:17:37 +000059LiveInterval &
60LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) {
61 assert(Slot >= 0 && "Spill slot indice must be >= 0");
62 SS2IntervalMap::iterator I = S2IMap.find(Slot);
63 if (I == S2IMap.end()) {
64 I = S2IMap.insert(I, std::make_pair(Slot,
65 LiveInterval(TargetRegisterInfo::index2StackSlot(Slot), 0.0F)));
66 S2RCMap.insert(std::make_pair(Slot, RC));
67 } else {
68 // Use the largest common subclass register class.
69 const TargetRegisterClass *OldRC = S2RCMap[Slot];
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +000070 S2RCMap[Slot] = TRI->getCommonSubClass(OldRC, RC);
Jakob Stoklund Olesenbe97e902011-01-09 21:17:37 +000071 }
72 return I->second;
73}
74
Evan Cheng3f32d652008-06-04 09:18:41 +000075/// print - Implement the dump method.
Chris Lattner45cfe542009-08-23 06:03:38 +000076void LiveStacks::print(raw_ostream &OS, const Module*) const {
Chris Lattnerc02497f2009-08-23 03:47:42 +000077
78 OS << "********** INTERVALS **********\n";
Evan Cheng3f32d652008-06-04 09:18:41 +000079 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Chris Lattnerc02497f2009-08-23 03:47:42 +000080 I->second.print(OS);
Evan Chengc781a242009-05-03 18:32:42 +000081 int Slot = I->first;
82 const TargetRegisterClass *RC = getIntervalRegClass(Slot);
83 if (RC)
Stephen Hines37ed9c12014-12-01 14:51:49 -080084 OS << " [" << TRI->getRegClassName(RC) << "]\n";
Evan Chengc781a242009-05-03 18:32:42 +000085 else
Chris Lattnerc02497f2009-08-23 03:47:42 +000086 OS << " [Unknown]\n";
Evan Cheng3f32d652008-06-04 09:18:41 +000087 }
88}