blob: 95fccba48ac6442042e9174c940576cdb4f694bd [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- X86TargetObjectFile.cpp - X86 Object Info -------------------------===//
Chris Lattnerb8666022009-09-16 01:46:41 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +000010#include "X86TargetObjectFile.h"
Chandler Carruth07baed52014-01-13 08:04:33 +000011#include "llvm/IR/Mangler.h"
David Majnemerdee10572014-01-15 09:16:42 +000012#include "llvm/IR/Operator.h"
Chris Lattner3a78ce32009-09-18 20:22:52 +000013#include "llvm/MC/MCContext.h"
Daniel Dunbar55992562010-03-15 23:51:06 +000014#include "llvm/MC/MCExpr.h"
Rafael Espindolaca3e0ee2012-06-19 00:48:28 +000015#include "llvm/MC/MCSectionELF.h"
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +000016#include "llvm/Support/Dwarf.h"
Rafael Espindoladaeafb42014-02-19 17:23:20 +000017#include "llvm/Target/TargetLowering.h"
Jakub Staszakab3d8782013-01-10 23:43:56 +000018
Chris Lattnerb8666022009-09-16 01:46:41 +000019using namespace llvm;
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +000020using namespace dwarf;
Chris Lattnerb8666022009-09-16 01:46:41 +000021
Rafael Espindola15b26692014-02-09 14:50:44 +000022const MCExpr *X86_64MachoTargetObjectFile::getTTypeGlobalReference(
23 const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
Rafael Espindoladaeafb42014-02-19 17:23:20 +000024 const TargetMachine &TM, MachineModuleInfo *MMI,
25 MCStreamer &Streamer) const {
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +000026
Chris Lattnerb8666022009-09-16 01:46:41 +000027 // On Darwin/X86-64, we can reference dwarf symbols with foo@GOTPCREL+4, which
28 // is an indirect pc-relative reference.
Anton Korobeynikovc9adb6a2010-02-15 22:38:10 +000029 if (Encoding & (DW_EH_PE_indirect | DW_EH_PE_pcrel)) {
Rafael Espindoladaeafb42014-02-19 17:23:20 +000030 const MCSymbol *Sym = TM.getTargetLowering()->getSymbol(GV, Mang);
Anton Korobeynikovc9adb6a2010-02-15 22:38:10 +000031 const MCExpr *Res =
Daniel Dunbar55992562010-03-15 23:51:06 +000032 MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, getContext());
Anton Korobeynikovc9adb6a2010-02-15 22:38:10 +000033 const MCExpr *Four = MCConstantExpr::Create(4, getContext());
34 return MCBinaryExpr::CreateAdd(Res, Four, getContext());
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +000035 }
36
Rafael Espindola15b26692014-02-09 14:50:44 +000037 return TargetLoweringObjectFileMachO::getTTypeGlobalReference(
Rafael Espindoladaeafb42014-02-19 17:23:20 +000038 GV, Encoding, Mang, TM, MMI, Streamer);
Chris Lattnerb8666022009-09-16 01:46:41 +000039}
40
Rafael Espindoladaeafb42014-02-19 17:23:20 +000041MCSymbol *X86_64MachoTargetObjectFile::getCFIPersonalitySymbol(
42 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
43 MachineModuleInfo *MMI) const {
44 return TM.getTargetLowering()->getSymbol(GV, Mang);
Rafael Espindola08704342011-04-27 23:08:15 +000045}
Rafael Espindolaca3e0ee2012-06-19 00:48:28 +000046
47void
48X86LinuxTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM) {
49 TargetLoweringObjectFileELF::Initialize(Ctx, TM);
50 InitializeELF(TM.Options.UseInitArray);
51}
David Blaikie1b01ae82013-07-01 21:45:25 +000052
Ulrich Weigand2b6fc8d2013-07-02 18:47:09 +000053const MCExpr *
David Blaikie1b01ae82013-07-01 21:45:25 +000054X86LinuxTargetObjectFile::getDebugThreadLocalSymbol(
55 const MCSymbol *Sym) const {
56 return MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_DTPOFF, getContext());
57}
David Majnemerdee10572014-01-15 09:16:42 +000058
Rafael Espindoladaeafb42014-02-19 17:23:20 +000059const MCExpr *X86WindowsTargetObjectFile::getExecutableRelativeSymbol(
60 const ConstantExpr *CE, Mangler &Mang, const TargetMachine &TM) const {
David Majnemerdee10572014-01-15 09:16:42 +000061 // We are looking for the difference of two symbols, need a subtraction
62 // operation.
63 const SubOperator *Sub = dyn_cast<SubOperator>(CE);
64 if (!Sub)
65 return 0;
66
67 // Symbols must first be numbers before we can subtract them, we need to see a
68 // ptrtoint on both subtraction operands.
69 const PtrToIntOperator *SubLHS =
70 dyn_cast<PtrToIntOperator>(Sub->getOperand(0));
71 const PtrToIntOperator *SubRHS =
72 dyn_cast<PtrToIntOperator>(Sub->getOperand(1));
73 if (!SubLHS || !SubRHS)
74 return 0;
75
76 // Our symbols should exist in address space zero, cowardly no-op if
77 // otherwise.
78 if (SubLHS->getPointerAddressSpace() != 0 ||
79 SubRHS->getPointerAddressSpace() != 0)
80 return 0;
81
82 // Both ptrtoint instructions must wrap global variables:
83 // - Only global variables are eligible for image relative relocations.
84 // - The subtrahend refers to the special symbol __ImageBase, a global.
85 const GlobalVariable *GVLHS =
86 dyn_cast<GlobalVariable>(SubLHS->getPointerOperand());
87 const GlobalVariable *GVRHS =
88 dyn_cast<GlobalVariable>(SubRHS->getPointerOperand());
89 if (!GVLHS || !GVRHS)
90 return 0;
91
92 // We expect __ImageBase to be a global variable without a section, externally
93 // defined.
94 //
95 // It should look something like this: @__ImageBase = external constant i8
96 if (GVRHS->isThreadLocal() || GVRHS->getName() != "__ImageBase" ||
97 !GVRHS->hasExternalLinkage() || GVRHS->hasInitializer() ||
98 GVRHS->hasSection())
99 return 0;
100
101 // An image-relative, thread-local, symbol makes no sense.
102 if (GVLHS->isThreadLocal())
103 return 0;
104
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000105 return MCSymbolRefExpr::Create(TM.getTargetLowering()->getSymbol(GVLHS, Mang),
106 MCSymbolRefExpr::VK_COFF_IMGREL32,
107 getContext());
David Majnemerdee10572014-01-15 09:16:42 +0000108}