summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-02 00:09:00 +0000
committerChris Lattner <sabre@nondot.org>2003-06-02 00:09:00 +0000
commitcd0a9fa5b494c816a35fc4812630cbf503402efc (patch)
tree3c0791e2443d78bfbb71b96a6a6125066c1f37fd /llvm/lib/ExecutionEngine
parent6b689e3ad44a7f14d96abf1cd003e2c224d54175 (diff)
downloadbcm5719-llvm-cd0a9fa5b494c816a35fc4812630cbf503402efc.tar.gz
bcm5719-llvm-cd0a9fa5b494c816a35fc4812630cbf503402efc.zip
Remove obsolete code
llvm-svn: 6518
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/Emitter.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/Emitter.cpp b/llvm/lib/ExecutionEngine/JIT/Emitter.cpp
index 215e9eb42b9..4138e75148f 100644
--- a/llvm/lib/ExecutionEngine/JIT/Emitter.cpp
+++ b/llvm/lib/ExecutionEngine/JIT/Emitter.cpp
@@ -160,54 +160,3 @@ uint64_t Emitter::forceCompilationOf(Function *F) {
return (intptr_t)TheVM->getPointerToFunction(F);
}
-#if 0
-
-
-// emitPCRelativeDisp - For functions, just output a displacement that will
-// cause a reference to the zero page, which will cause a seg-fault, causing
-// things to get resolved on demand. Keep track of these markers.
-//
-// For basic block references, keep track of where the references are so they
-// may be patched up when the basic block is defined.
-//
-void Emitter::emitPCRelativeDisp(Value *V) {
- BasicBlock *BB = cast<BasicBlock>(V); // Keep track of reference...
- BBRefs.push_back(std::make_pair(BB, (unsigned*)CurByte));
- CurByte += 4;
-}
-
-// emitAddress - Emit an address in either direct or PCRelative form...
-//
-void Emitter::emitAddress(void *Addr, bool isPCRelative) {
- if (isPCRelative) {
- *(intptr_t*)CurByte = (intptr_t)Addr - (intptr_t)CurByte-4;
- } else {
- *(void**)CurByte = Addr;
- }
- CurByte += 4;
-}
-
-void Emitter::emitGlobalAddress(GlobalValue *V, bool isPCRelative) {
- if (isPCRelative) { // must be a call, this is a major hack!
- // Try looking up the function to see if it is already compiled!
- if (void *Addr = TheVM->getPointerToGlobalIfAvailable(V)) {
- emitAddress(Addr, isPCRelative);
- } else { // Function has not yet been code generated!
- TheVM->addFunctionRef(CurByte, cast<Function>(V));
-
- // Delayed resolution...
- emitAddress((void*)VM::CompilationCallback, isPCRelative);
- }
- } else {
- emitAddress(TheVM->getPointerToGlobal(V), isPCRelative);
- }
-}
-
-void Emitter::emitFunctionConstantValueAddress(unsigned ConstantNum,
- int Offset) {
- assert(ConstantNum < ConstantPoolAddresses.size() &&
- "Invalid ConstantPoolIndex!");
- *(void**)CurByte = (char*)ConstantPoolAddresses[ConstantNum]+Offset;
- CurByte += 4;
-}
-#endif
OpenPOWER on IntegriCloud