diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-06 22:50:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-06 22:50:56 +0000 |
commit | 9043823cf4db1c0865d9879e9533bbe33b6226cf (patch) | |
tree | 50b9d70be9657d9ff7f973e664a750d4d92a369f /llvm/lib/CodeGen/AsmPrinter.cpp | |
parent | 21fa7698673645a9a5c00dfc2d793c17ea1036ff (diff) | |
download | bcm5719-llvm-9043823cf4db1c0865d9879e9533bbe33b6226cf.tar.gz bcm5719-llvm-9043823cf4db1c0865d9879e9533bbe33b6226cf.zip |
If a target uses a GOT, put it in the jt data section, not the text
section. This will fix alpha when Andrew implements
AlphaTargetMachine::getTargetLowering().
llvm-svn: 30779
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index 96a481fc846..33b6b979d0d 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter.cpp @@ -22,6 +22,7 @@ #include "llvm/Support/MathExtras.h" #include "llvm/Target/TargetAsmInfo.h" #include "llvm/Target/TargetData.h" +#include "llvm/Target/TargetLowering.h" #include "llvm/Target/TargetMachine.h" #include <iostream> #include <cerrno> @@ -200,10 +201,17 @@ void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI, // Pick the directive to use to print the jump table entries, and switch to // the appropriate section. if (TM.getRelocationModel() == Reloc::PIC_) { - // In PIC mode, we need to emit the jump table to the same section as the - // function body itself, otherwise the label differences won't make sense. - const Function *F = MF.getFunction(); - SwitchToTextSection(getSectionForFunction(*F).c_str(), F); + TargetLowering *LoweringInfo = TM.getTargetLowering(); + if (LoweringInfo && LoweringInfo->usesGlobalOffsetTable()) { + SwitchToDataSection(TAI->getJumpTableDataSection(), 0); + if (TD->getPointerSize() == 8) + JTEntryDirective = TAI->getData64bitsDirective(); + } else { + // In PIC mode, we need to emit the jump table to the same section as the + // function body itself, otherwise the label differences won't make sense. + const Function *F = MF.getFunction(); + SwitchToTextSection(getSectionForFunction(*F).c_str(), F); + } } else { SwitchToDataSection(TAI->getJumpTableDataSection(), 0); if (TD->getPointerSize() == 8) |