Implement a simple FIXME: if we are emitting a basic block address that has
authorChris Lattner <sabre@nondot.org>
Tue, 16 Nov 2004 04:30:51 +0000 (04:30 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 16 Nov 2004 04:30:51 +0000 (04:30 +0000)
already been emitted, we don't have to remember it and deal with it later,
just emit it directly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17868 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86CodeEmitter.cpp

index c7477448dd258f151ca45eb7349a1cdde6b5e65c..853e6c12cdfea321a6f20e4be6ac3fe763bf0f11 100644 (file)
@@ -278,9 +278,19 @@ void Emitter::emitBasicBlock(const MachineBasicBlock &MBB) {
 /// necessary to resolve this address later (and emits a dummy value).
 ///
 void Emitter::emitPCRelativeBlockAddress(const MachineBasicBlock *MBB) {
-  // FIXME: Emit backward branches directly
-  BBRefs.push_back(std::make_pair(MBB, MCE.getCurrentPCValue()));
-  MCE.emitWord(0);
+  // If this is a backwards branch, we already know the address of the target,
+  // so just emit the value.
+  std::map<const MachineBasicBlock*, unsigned>::iterator I =
+    BasicBlockAddrs.find(MBB);
+  if (I != BasicBlockAddrs.end()) {
+    unsigned Location = I->second;
+    MCE.emitWord(Location-MCE.getCurrentPCValue()-4);
+  } else {
+    // Otherwise, remember where this reference was and where it is to so we can
+    // deal with it later.
+    BBRefs.push_back(std::make_pair(MBB, MCE.getCurrentPCValue()));
+    MCE.emitWord(0);
+  }
 }
 
 /// emitPCRelativeValue - Emit a 32-bit PC relative address.