From 1adacceba9c9ee0f16e54388e56c9a249b296f75 Mon Sep 17 00:00:00 2001 From: rdivacky Date: Thu, 15 Oct 2009 16:26:17 +0000 Subject: Delete all stale files. --- lib/Debugger/SourceLanguage-Unknown.cpp | 138 -------------------------------- 1 file changed, 138 deletions(-) delete mode 100644 lib/Debugger/SourceLanguage-Unknown.cpp (limited to 'lib/Debugger/SourceLanguage-Unknown.cpp') diff --git a/lib/Debugger/SourceLanguage-Unknown.cpp b/lib/Debugger/SourceLanguage-Unknown.cpp deleted file mode 100644 index b806fc7..0000000 --- a/lib/Debugger/SourceLanguage-Unknown.cpp +++ /dev/null @@ -1,138 +0,0 @@ -//===-- SourceLanguage-Unknown.cpp - Implement itf for unknown languages --===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// If the LLVM debugger does not have a module for a particular language, it -// falls back on using this one to perform the source-language interface. This -// interface is not wonderful, but it gets the job done. -// -//===----------------------------------------------------------------------===// - -#include "llvm/Debugger/SourceLanguage.h" -#include "llvm/Debugger/ProgramInfo.h" -#include "llvm/Support/Streams.h" -#include -#include -using namespace llvm; - -//===----------------------------------------------------------------------===// -// Implement the SourceLanguage cache for the Unknown language. -// - -namespace { - /// SLUCache - This cache allows for efficient lookup of source functions by - /// name. - /// - struct SLUCache : public SourceLanguageCache { - ProgramInfo &PI; - std::multimap FunctionMap; - public: - SLUCache(ProgramInfo &pi); - - typedef std::multimap::const_iterator - fm_iterator; - - std::pair - getFunction(const std::string &Name) const { - return FunctionMap.equal_range(Name); - } - - SourceFunctionInfo *addSourceFunction(SourceFunctionInfo *SF) { - FunctionMap.insert(std::make_pair(SF->getSymbolicName(), SF)); - return SF; - } - }; -} - -SLUCache::SLUCache(ProgramInfo &pi) : PI(pi) { -} - - -//===----------------------------------------------------------------------===// -// Implement SourceLanguageUnknown class, which is used to handle unrecognized -// languages. -// - -namespace { - static struct SLU : public SourceLanguage { - //===------------------------------------------------------------------===// - // Implement the miscellaneous methods... - // - virtual const char *getSourceLanguageName() const { - return "unknown"; - } - - /// lookupFunction - Given a textual function name, return the - /// SourceFunctionInfo descriptor for that function, or null if it cannot be - /// found. If the program is currently running, the RuntimeInfo object - /// provides information about the current evaluation context, otherwise it - /// will be null. - /// - virtual SourceFunctionInfo *lookupFunction(const std::string &FunctionName, - ProgramInfo &PI, - RuntimeInfo *RI = 0) const; - - //===------------------------------------------------------------------===// - // We do use a cache for information... - // - typedef SLUCache CacheType; - SLUCache *createSourceLanguageCache(ProgramInfo &PI) const { - return new SLUCache(PI); - } - - /// createSourceFunctionInfo - Create the new object and inform the cache of - /// the new function. - virtual SourceFunctionInfo * - createSourceFunctionInfo(const GlobalVariable *Desc, ProgramInfo &PI) const; - - } TheUnknownSourceLanguageInstance; -} - -const SourceLanguage &SourceLanguage::getUnknownLanguageInstance() { - return TheUnknownSourceLanguageInstance; -} - - -SourceFunctionInfo * -SLU::createSourceFunctionInfo(const GlobalVariable *Desc, - ProgramInfo &PI) const { - SourceFunctionInfo *Result = new SourceFunctionInfo(PI, Desc); - return PI.getLanguageCache(this).addSourceFunction(Result); -} - - -/// lookupFunction - Given a textual function name, return the -/// SourceFunctionInfo descriptor for that function, or null if it cannot be -/// found. If the program is currently running, the RuntimeInfo object -/// provides information about the current evaluation context, otherwise it will -/// be null. -/// -SourceFunctionInfo *SLU::lookupFunction(const std::string &FunctionName, - ProgramInfo &PI, RuntimeInfo *RI) const{ - SLUCache &Cache = PI.getLanguageCache(this); - std::pair IP - = Cache.getFunction(FunctionName); - - if (IP.first == IP.second) { - if (PI.allSourceFunctionsRead()) - return 0; // Nothing found - - // Otherwise, we might be able to find the function if we read all of them - // in. Do so now. - PI.getSourceFunctions(); - assert(PI.allSourceFunctionsRead() && "Didn't read in all functions?"); - return lookupFunction(FunctionName, PI, RI); - } - - SourceFunctionInfo *Found = IP.first->second; - ++IP.first; - if (IP.first != IP.second) - cout << "Whoa, found multiple functions with the same name. I should" - << " ask the user which one to use: FIXME!\n"; - return Found; -} -- cgit v1.1