diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-06 04:41:22 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-06-06 04:41:22 +0000 |
| commit | b7f76d32fe3b2614e2aa6976a5484eadce20c320 (patch) | |
| tree | 377986023c73f77a81a8488a6d581cd2fea5fa6f /llvm/lib/Target | |
| parent | 65d29b87e3ba27454c8a360b3698c446c23b5d7b (diff) | |
| download | bcm5719-llvm-b7f76d32fe3b2614e2aa6976a5484eadce20c320.tar.gz bcm5719-llvm-b7f76d32fe3b2614e2aa6976a5484eadce20c320.zip | |
Fixed a bunch of test cases in test/Regression/Jello which could not get the
address of a floating-point (allocated via ConstantPool) correctly.
llvm-svn: 6647
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/Sparc/SparcV9CodeEmitter.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/llvm/lib/Target/Sparc/SparcV9CodeEmitter.cpp b/llvm/lib/Target/Sparc/SparcV9CodeEmitter.cpp index ee6d2f33e6c..f5ca2c38737 100644 --- a/llvm/lib/Target/Sparc/SparcV9CodeEmitter.cpp +++ b/llvm/lib/Target/Sparc/SparcV9CodeEmitter.cpp @@ -22,7 +22,7 @@ bool UltraSparc::addPassesToEmitMachineCode(PassManager &PM, MachineCodeEmitter &MCE) { MachineCodeEmitter *M = &MCE; - DEBUG(MachineCodeEmitter::createFilePrinterEmitter(MCE)); + DEBUG(M = MachineCodeEmitter::createFilePrinterEmitter(MCE)); PM.add(new SparcV9CodeEmitter(*this, *M)); PM.add(createMachineCodeDestructionPass()); // Free stuff no longer needed return false; @@ -443,8 +443,19 @@ int64_t SparcV9CodeEmitter::getMachineOpValue(MachineInstr &MI, DEBUG(std::cerr << "already generated: 0x" << std::hex << rv << "\n"); } } else { - DEBUG(std::cerr << "not a function: " << *GV << "\n"); rv = (int64_t)MCE.getGlobalValueAddress(GV); + if (rv == 0) { + if (Constant *C = ConstantPointerRef::get(GV)) { + if (ConstantMap.find(C) != ConstantMap.end()) { + rv = MCE.getConstantPoolEntryAddress(ConstantMap[C]); + } else { + std::cerr << "Constant: 0x" << std::hex << &*C << std::dec + << ", " << *V << " not found in ConstantMap!\n"; + abort(); + } + } + } + DEBUG(std::cerr << "Global addr: " << rv << "\n"); } // The real target of the call is Addr = PC + (rv * 4) // So undo that: give the instruction (Addr - PC) / 4 |

