darling-libobjc2/opts/TypeInfoProvider.h
2010-05-19 14:16:26 +00:00

46 lines
1.2 KiB
C++

#include "IMPCacher.h"
#include "llvm/Pass.h"
#include "llvm/Function.h"
#include "llvm/Module.h"
#include "llvm/Instructions.h"
#include "llvm/Constants.h"
#include "llvm/LLVMContext.h"
#include "llvm/Metadata.h"
#include "llvm/Support/IRBuilder.h"
#include "llvm/Support/CallSite.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/ADT/StringMap.h"
using namespace llvm;
namespace GNUstep
{
class TypeInfoProvider
{
public:
typedef StringMap<uintptr_t> CallSiteEntry;
//typedef std::vector<CallSiteEntry> CallSiteMap;
typedef SmallVector<CallSiteEntry, 16> CallSiteMap;
private:
struct callsite_info
{
uintptr_t moduleID;
int32_t callsiteID;
uintptr_t methodID;
};
const char *symbol_table;
size_t symbol_size;
StringMap<CallSiteMap> CallSiteRecords;
void loadCallsiteRecords(callsite_info *callsite_records, size_t size);
TypeInfoProvider(void);
public:
CallSiteMap* getCallSitesForModule(Module &M);
void PrintStatistics();
static TypeInfoProvider* SharedTypeInfoProvider();
~TypeInfoProvider();
};
}