blob: e8fead76bb7b61f0da8e1966dabc8a4abc2c6a23 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===-- llvm/Analysis/SlotCalculator.h - Calculate value slots ---*- C++ -*-==//
2//
3// This ModuleAnalyzer subclass calculates the slots that values will land in.
4// This is useful for when writing bytecode or assembly out, because you have
5// to know these things.
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_ANALYSIS_SLOTCALCULATOR_H
10#define LLVM_ANALYSIS_SLOTCALCULATOR_H
11
Chris Lattner00950542001-06-06 20:29:01 +000012#include "llvm/SymTabValue.h"
13#include <vector>
14#include <map>
Chris Lattner644dc172001-07-14 06:08:51 +000015class Value;
Chris Lattner4c4007b2001-09-07 16:27:05 +000016class Module;
Chris Lattnere7506a32002-03-23 22:51:58 +000017class Function;
Chris Lattner4c4007b2001-09-07 16:27:05 +000018class MethodArgument;
19class BasicBlock;
20class Instruction;
Chris Lattner00950542001-06-06 20:29:01 +000021
Chris Lattner4c4007b2001-09-07 16:27:05 +000022class SlotCalculator {
Chris Lattner00950542001-06-06 20:29:01 +000023 const Module *TheModule;
24 bool IgnoreNamedNodes; // Shall we not count named nodes?
25
Chris Lattner697954c2002-01-20 22:54:45 +000026 typedef std::vector<const Value*> TypePlane;
27 std::vector<TypePlane> Table;
28 std::map<const Value *, unsigned> NodeMap;
Chris Lattner00950542001-06-06 20:29:01 +000029
30 // ModuleLevel - Used to keep track of which values belong to the module,
31 // and which values belong to the currently incorporated method.
32 //
Chris Lattner697954c2002-01-20 22:54:45 +000033 std::vector<unsigned> ModuleLevel;
Chris Lattner00950542001-06-06 20:29:01 +000034
35public:
36 SlotCalculator(const Module *M, bool IgnoreNamed);
Chris Lattnere7506a32002-03-23 22:51:58 +000037 // Start out in incorp state
38 SlotCalculator(const Function *M, bool IgnoreNamed);
Chris Lattner00950542001-06-06 20:29:01 +000039 inline ~SlotCalculator() {}
40
41 // getValSlot returns < 0 on error!
42 int getValSlot(const Value *D) const;
43
44 inline unsigned getNumPlanes() const { return Table.size(); }
45 inline unsigned getModuleLevel(unsigned Plane) const {
46 return Plane < ModuleLevel.size() ? ModuleLevel[Plane] : 0;
47 }
48
49 inline const TypePlane &getPlane(unsigned Plane) const {
50 return Table[Plane];
51 }
52
53 // If you'd like to deal with a method, use these two methods to get its data
54 // into the SlotCalculator!
55 //
Chris Lattnere7506a32002-03-23 22:51:58 +000056 void incorporateMethod(const Function *F);
Chris Lattner00950542001-06-06 20:29:01 +000057 void purgeMethod();
58
59protected:
Chris Lattner4c4007b2001-09-07 16:27:05 +000060 // insertVal - Insert a value into the value table... Return the slot that it
61 // occupies, or -1 if the declaration is to be ignored because of the
62 // IgnoreNamedNodes flag.
Chris Lattner00950542001-06-06 20:29:01 +000063 //
Chris Lattner4c4007b2001-09-07 16:27:05 +000064 int insertVal(const Value *D, bool dontIgnore = false);
Chris Lattner00950542001-06-06 20:29:01 +000065
Chris Lattner4c4007b2001-09-07 16:27:05 +000066 // insertValue - Values can be crammed into here at will... if they haven't
67 // been inserted already, they get inserted, otherwise they are ignored.
Chris Lattner00950542001-06-06 20:29:01 +000068 //
Chris Lattner4c4007b2001-09-07 16:27:05 +000069 int insertValue(const Value *D);
Chris Lattner00950542001-06-06 20:29:01 +000070
Chris Lattner4c4007b2001-09-07 16:27:05 +000071 // doInsertVal - Small helper function to be called only be insertVal.
72 int doInsertVal(const Value *D);
Chris Lattner00950542001-06-06 20:29:01 +000073
Chris Lattner4c4007b2001-09-07 16:27:05 +000074 // processModule - Process all of the module level method declarations and
75 // types that are available.
Chris Lattner00950542001-06-06 20:29:01 +000076 //
Chris Lattner4c4007b2001-09-07 16:27:05 +000077 void processModule();
Chris Lattner00950542001-06-06 20:29:01 +000078
Chris Lattner4c4007b2001-09-07 16:27:05 +000079 // processSymbolTable - Insert all of the values in the specified symbol table
80 // into the values table...
Chris Lattner00950542001-06-06 20:29:01 +000081 //
Chris Lattner4c4007b2001-09-07 16:27:05 +000082 void processSymbolTable(const SymbolTable *ST);
83 void processSymbolTableConstants(const SymbolTable *ST);
Chris Lattner00950542001-06-06 20:29:01 +000084};
85
86#endif