Allow targets to specify the MachO CPUType/CPUSubtype information.
[oota-llvm.git] / lib / Target / ARM / ARMAsmBackend.cpp
1 //===-- ARMAsmBackend.cpp - ARM Assembler Backend -------------------------===//
2 //
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
10 #include "llvm/Target/TargetAsmBackend.h"
11 #include "ARM.h"
12 //FIXME: add #include "ARMFixupKinds.h"
13 #include "llvm/ADT/Twine.h"
14 #include "llvm/MC/ELFObjectWriter.h"
15 #include "llvm/MC/MCAssembler.h"
16 #include "llvm/MC/MCExpr.h"
17 #include "llvm/MC/MCObjectFormat.h"
18 #include "llvm/MC/MCObjectWriter.h"
19 #include "llvm/MC/MCSectionELF.h"
20 #include "llvm/MC/MCSectionMachO.h"
21 #include "llvm/MC/MachObjectWriter.h"
22 #include "llvm/Support/ELF.h"
23 #include "llvm/Support/MachO.h"
24 #include "llvm/Support/ErrorHandling.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include "llvm/Target/TargetRegistry.h"
27 #include "llvm/Target/TargetAsmBackend.h"
28 using namespace llvm;
29
30 namespace {
31 class ARMAsmBackend : public TargetAsmBackend {
32 public:
33   ARMAsmBackend(const Target &T)
34     : TargetAsmBackend(T) {
35   }
36
37   bool MayNeedRelaxation(const MCInst &Inst) const;
38
39   void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
40
41   bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
42
43   unsigned getPointerSize() const {
44     return 4;
45   }
46 };
47
48 bool ARMAsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
49   // FIXME: Thumb targets, different move constant targets..
50   return false;
51 }
52
53 void ARMAsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
54   assert(0 && "ARMAsmBackend::RelaxInstruction() unimplemented");
55   return;
56 }
57
58 bool ARMAsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
59   if ((Count % 4) != 0) {
60     // Fixme: % 2 for Thumb?
61     return false;
62   }
63   return true;
64 }
65 } // end anonymous namespace
66
67 namespace {
68 // FIXME: This should be in a separate file.
69 // ELF is an ELF of course...
70 class ELFARMAsmBackend : public ARMAsmBackend {
71   MCELFObjectFormat Format;
72
73 public:
74   Triple::OSType OSType;
75   ELFARMAsmBackend(const Target &T, Triple::OSType _OSType)
76     : ARMAsmBackend(T), OSType(_OSType) {
77     HasScatteredSymbols = true;
78   }
79
80   virtual const MCObjectFormat &getObjectFormat() const {
81     return Format;
82   }
83
84   void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
85                   uint64_t Value) const;
86
87   bool isVirtualSection(const MCSection &Section) const {
88     const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
89     return SE.getType() == MCSectionELF::SHT_NOBITS;
90   }
91
92   MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
93     return new ELFObjectWriter(OS, /*Is64Bit=*/false,
94                                OSType, ELF::EM_ARM,
95                                /*IsLittleEndian=*/true,
96                                /*HasRelocationAddend=*/false);
97   }
98 };
99
100 // Fixme: can we raise this to share code between Darwin and ELF?
101 void ELFARMAsmBackend::ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
102                                   uint64_t Value) const {
103   assert(0 && "ELFARMAsmBackend::ApplyFixup() unimplemented");
104 }
105
106 // FIXME: This should be in a separate file.
107 class DarwinARMAsmBackend : public ARMAsmBackend {
108   MCMachOObjectFormat Format;
109
110 public:
111   DarwinARMAsmBackend(const Target &T)
112     : ARMAsmBackend(T) {
113     HasScatteredSymbols = true;
114     assert(0 && "DarwinARMAsmBackend::DarwinARMAsmBackend() unimplemented");
115   }
116
117   virtual const MCObjectFormat &getObjectFormat() const {
118     return Format;
119   }
120
121   void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
122                   uint64_t Value) const;
123
124   bool isVirtualSection(const MCSection &Section) const {
125     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
126     return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
127             SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
128             SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
129   }
130
131   MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
132     // FIXME: Subtarget info should be derived. Force v7 for now.
133     return new MachObjectWriter(OS, /*Is64Bit=*/false, MachO::CPUTypeARM,
134                                 MachO::CPUSubType_ARM_V7);
135   }
136
137   virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
138     return false;
139   }
140 };
141
142 void DarwinARMAsmBackend::ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
143                                   uint64_t Value) const {
144   assert(0 && "DarwinARMAsmBackend::ApplyFixup() unimplemented");
145 }
146 } // end anonymous namespace
147
148 TargetAsmBackend *llvm::createARMAsmBackend(const Target &T,
149                                             const std::string &TT) {
150   switch (Triple(TT).getOS()) {
151   case Triple::Darwin:
152     return new DarwinARMAsmBackend(T);
153   case Triple::MinGW32:
154   case Triple::Cygwin:
155   case Triple::Win32:
156     assert(0 && "Windows not supported on ARM");
157   default:
158     return new ELFARMAsmBackend(T, Triple(TT).getOS());
159   }
160 }