Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | //===-- 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 Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 12 | #include "llvm/SymTabValue.h" |
| 13 | #include <vector> |
| 14 | #include <map> |
Chris Lattner | 644dc17 | 2001-07-14 06:08:51 +0000 | [diff] [blame] | 15 | class Value; |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 16 | class Module; |
Chris Lattner | e7506a3 | 2002-03-23 22:51:58 +0000 | [diff] [blame^] | 17 | class Function; |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 18 | class MethodArgument; |
| 19 | class BasicBlock; |
| 20 | class Instruction; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 21 | |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 22 | class SlotCalculator { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 23 | const Module *TheModule; |
| 24 | bool IgnoreNamedNodes; // Shall we not count named nodes? |
| 25 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 26 | typedef std::vector<const Value*> TypePlane; |
| 27 | std::vector<TypePlane> Table; |
| 28 | std::map<const Value *, unsigned> NodeMap; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 29 | |
| 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 Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 33 | std::vector<unsigned> ModuleLevel; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 34 | |
| 35 | public: |
| 36 | SlotCalculator(const Module *M, bool IgnoreNamed); |
Chris Lattner | e7506a3 | 2002-03-23 22:51:58 +0000 | [diff] [blame^] | 37 | // Start out in incorp state |
| 38 | SlotCalculator(const Function *M, bool IgnoreNamed); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 39 | 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 Lattner | e7506a3 | 2002-03-23 22:51:58 +0000 | [diff] [blame^] | 56 | void incorporateMethod(const Function *F); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 57 | void purgeMethod(); |
| 58 | |
| 59 | protected: |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 60 | // 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 Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 63 | // |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 64 | int insertVal(const Value *D, bool dontIgnore = false); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 65 | |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 66 | // 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 Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 68 | // |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 69 | int insertValue(const Value *D); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 71 | // doInsertVal - Small helper function to be called only be insertVal. |
| 72 | int doInsertVal(const Value *D); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 74 | // processModule - Process all of the module level method declarations and |
| 75 | // types that are available. |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 76 | // |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 77 | void processModule(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 79 | // processSymbolTable - Insert all of the values in the specified symbol table |
| 80 | // into the values table... |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 81 | // |
Chris Lattner | 4c4007b | 2001-09-07 16:27:05 +0000 | [diff] [blame] | 82 | void processSymbolTable(const SymbolTable *ST); |
| 83 | void processSymbolTableConstants(const SymbolTable *ST); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | #endif |