Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 1 | //===-- 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 Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/Passes.h" |
| 20 | #include "llvm/Target/TargetRegisterInfo.h" |
| 21 | #include "llvm/Support/Debug.h" |
Chris Lattner | c02497f | 2009-08-23 03:47:42 +0000 | [diff] [blame] | 22 | #include "llvm/Support/raw_ostream.h" |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/Statistic.h" |
Lang Hames | f41538d | 2009-06-02 16:53:25 +0000 | [diff] [blame] | 24 | #include <limits> |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 25 | using namespace llvm; |
| 26 | |
| 27 | char LiveStacks::ID = 0; |
| 28 | static RegisterPass<LiveStacks> X("livestacks", "Live Stack Slot Analysis"); |
| 29 | |
| 30 | void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const { |
Evan Cheng | ef901c5 | 2008-09-22 22:26:15 +0000 | [diff] [blame] | 31 | AU.setPreservesAll(); |
Lang Hames | 233a60e | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 32 | AU.addPreserved<SlotIndexes>(); |
| 33 | AU.addRequiredTransitive<SlotIndexes>(); |
Evan Cheng | bbeeb2a | 2008-09-22 20:58:04 +0000 | [diff] [blame] | 34 | MachineFunctionPass::getAnalysisUsage(AU); |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | void LiveStacks::releaseMemory() { |
| 38 | // Release VNInfo memroy regions after all VNInfo objects are dtor'd. |
Benjamin Kramer | 991de14 | 2010-03-30 20:16:45 +0000 | [diff] [blame] | 39 | VNInfoAllocator.DestroyAll(); |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 40 | S2IMap.clear(); |
| 41 | S2RCMap.clear(); |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | bool 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 Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 51 | void LiveStacks::print(raw_ostream &OS, const Module*) const { |
Chris Lattner | c02497f | 2009-08-23 03:47:42 +0000 | [diff] [blame] | 52 | |
| 53 | OS << "********** INTERVALS **********\n"; |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 54 | for (const_iterator I = begin(), E = end(); I != E; ++I) { |
Chris Lattner | c02497f | 2009-08-23 03:47:42 +0000 | [diff] [blame] | 55 | I->second.print(OS); |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 56 | int Slot = I->first; |
| 57 | const TargetRegisterClass *RC = getIntervalRegClass(Slot); |
| 58 | if (RC) |
Chris Lattner | c02497f | 2009-08-23 03:47:42 +0000 | [diff] [blame] | 59 | OS << " [" << RC->getName() << "]\n"; |
Evan Cheng | c781a24 | 2009-05-03 18:32:42 +0000 | [diff] [blame] | 60 | else |
Chris Lattner | c02497f | 2009-08-23 03:47:42 +0000 | [diff] [blame] | 61 | OS << " [Unknown]\n"; |
Evan Cheng | 3f32d65 | 2008-06-04 09:18:41 +0000 | [diff] [blame] | 62 | } |
| 63 | } |