2003-09-30 20:37:50 +02:00
|
|
|
//===-- llvm/SlotCalculator.h - Calculate value slots -----------*- C++ -*-===//
|
2003-10-20 22:19:47 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2002-04-08 00:49:37 +02:00
|
|
|
// This class calculates the slots that values will land in. This is useful for
|
|
|
|
// when writing bytecode or assembly out, because you have to know these things.
|
|
|
|
//
|
|
|
|
// Specifically, this class calculates the "type plane numbering" that you see
|
|
|
|
// for a function if you strip out all of the symbols in it. For assembly
|
|
|
|
// writing, this is used when a symbol does not have a name. For bytecode
|
|
|
|
// writing, this is always used, and the symbol table is added on later.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-04-08 00:49:37 +02:00
|
|
|
#ifndef LLVM_SLOTCALCULATOR_H
|
|
|
|
#define LLVM_SLOTCALCULATOR_H
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2003-11-11 23:41:34 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2001-07-14 08:08:51 +02:00
|
|
|
class Value;
|
2001-09-07 18:27:05 +02:00
|
|
|
class Module;
|
2002-03-23 23:51:58 +01:00
|
|
|
class Function;
|
2002-04-09 20:35:38 +02:00
|
|
|
class SymbolTable;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2001-09-07 18:27:05 +02:00
|
|
|
class SlotCalculator {
|
2001-06-06 22:29:01 +02:00
|
|
|
const Module *TheModule;
|
2004-01-14 03:49:34 +01:00
|
|
|
|
|
|
|
// BuildBytecodeInfo - If true, this is the creating information for the
|
|
|
|
// bytecode writer, if false, we are building information for the assembly
|
|
|
|
// emitter. The assembly emitter doesn't need named objects numbered, among
|
|
|
|
// other differences.
|
|
|
|
bool BuildBytecodeInfo;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2002-01-20 23:54:45 +01:00
|
|
|
typedef std::vector<const Value*> TypePlane;
|
|
|
|
std::vector<TypePlane> Table;
|
|
|
|
std::map<const Value *, unsigned> NodeMap;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
// ModuleLevel - Used to keep track of which values belong to the module,
|
2002-04-08 00:49:37 +02:00
|
|
|
// and which values belong to the currently incorporated function.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2002-01-20 23:54:45 +01:00
|
|
|
std::vector<unsigned> ModuleLevel;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
public:
|
2004-01-14 03:49:34 +01:00
|
|
|
SlotCalculator(const Module *M, bool BuildBytecodeInfo);
|
2002-03-23 23:51:58 +01:00
|
|
|
// Start out in incorp state
|
2004-01-14 03:49:34 +01:00
|
|
|
SlotCalculator(const Function *M, bool BuildBytecodeInfo);
|
2001-06-06 22:29:01 +02:00
|
|
|
inline ~SlotCalculator() {}
|
|
|
|
|
2003-10-17 04:02:40 +02:00
|
|
|
// getSlot returns < 0 on error!
|
|
|
|
int getSlot(const Value *D) const;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
inline unsigned getNumPlanes() const { return Table.size(); }
|
|
|
|
inline unsigned getModuleLevel(unsigned Plane) const {
|
|
|
|
return Plane < ModuleLevel.size() ? ModuleLevel[Plane] : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const TypePlane &getPlane(unsigned Plane) const {
|
|
|
|
return Table[Plane];
|
|
|
|
}
|
|
|
|
|
2002-04-08 00:49:37 +02:00
|
|
|
// If you'd like to deal with a function, use these two methods to get its
|
|
|
|
// data into the SlotCalculator!
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2002-04-08 00:49:37 +02:00
|
|
|
void incorporateFunction(const Function *F);
|
|
|
|
void purgeFunction();
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
protected:
|
2003-10-17 04:02:40 +02:00
|
|
|
// getOrCreateSlot - Values can be crammed into here at will... if
|
|
|
|
// they haven't been inserted already, they get inserted, otherwise
|
|
|
|
// they are ignored.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2003-10-17 04:02:40 +02:00
|
|
|
int getOrCreateSlot(const Value *D);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-10-17 04:02:40 +02:00
|
|
|
// insertValue - Insert a value into the value table... Return the
|
|
|
|
// slot that it occupies, or -1 if the declaration is to be ignored
|
|
|
|
// because of the IgnoreNamedNodes flag.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2003-10-17 04:02:40 +02:00
|
|
|
int insertValue(const Value *D, bool dontIgnore = false);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-10-17 04:02:40 +02:00
|
|
|
// doInsertValue - Small helper function to be called only be insertVal.
|
|
|
|
int doInsertValue(const Value *D);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2002-04-08 00:49:37 +02:00
|
|
|
// processModule - Process all of the module level function declarations and
|
2001-09-07 18:27:05 +02:00
|
|
|
// types that are available.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2001-09-07 18:27:05 +02:00
|
|
|
void processModule();
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2001-09-07 18:27:05 +02:00
|
|
|
// processSymbolTable - Insert all of the values in the specified symbol table
|
|
|
|
// into the values table...
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2001-09-07 18:27:05 +02:00
|
|
|
void processSymbolTable(const SymbolTable *ST);
|
|
|
|
void processSymbolTableConstants(const SymbolTable *ST);
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
#endif
|