From 213e39ee7cd54853337980ff3b0b9d45230c04d0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 22 Nov 2004 21:48:33 +0000 Subject: These methods are obsolete llvm-svn: 18129 --- llvm/lib/ExecutionEngine/JIT/Emitter.cpp | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'llvm/lib/ExecutionEngine/JIT') diff --git a/llvm/lib/ExecutionEngine/JIT/Emitter.cpp b/llvm/lib/ExecutionEngine/JIT/Emitter.cpp index c2c8875e19c..be81614a023 100644 --- a/llvm/lib/ExecutionEngine/JIT/Emitter.cpp +++ b/llvm/lib/ExecutionEngine/JIT/Emitter.cpp @@ -169,7 +169,7 @@ void *JITResolver::getFunctionStub(Function *F) { } DEBUG(std::cerr << "JIT: Stub emitted at [" << Stub << "] for function '" - << F->getName() << "\n"); + << F->getName() << "'\n"); // Finally, keep track of the stub-to-Function mapping so that the // JITCompilerFn knows which function to compile! @@ -250,8 +250,6 @@ namespace { virtual uint64_t getCurrentPCValue(); virtual uint64_t getCurrentPCOffset(); - virtual uint64_t getGlobalValueAddress(GlobalValue *V); - virtual uint64_t getGlobalValueAddress(const char *Name); virtual uint64_t getConstantPoolEntryAddress(unsigned Entry); // forceCompilationOf - Force the compilation of the specified function, and @@ -398,24 +396,6 @@ void Emitter::emitWordAt(unsigned W, unsigned *Ptr) { *Ptr = W; } -uint64_t Emitter::getGlobalValueAddress(GlobalValue *V) { - // Try looking up the function to see if it is already compiled, if not return - // 0. - if (Function *F = dyn_cast(V)) { - void *Addr = TheJIT->getPointerToGlobalIfAvailable(F); - if (Addr == 0 && F->hasExternalLinkage()) { - // Do not output stubs for external functions. - Addr = TheJIT->getPointerToFunction(F); - } - return (intptr_t)Addr; - } else { - return (intptr_t)TheJIT->getOrEmitGlobalVariable(cast(V)); - } -} -uint64_t Emitter::getGlobalValueAddress(const char *Name) { - return (intptr_t)TheJIT->getPointerToNamedFunction(Name); -} - // getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry // in the constant pool that was last emitted with the 'emitConstantPool' // method. -- cgit v1.2.3