Daniel Dunbar | 8a3c9d9 | 2010-06-16 20:04:22 +0000 | [diff] [blame] | 1 | //===- lib/MC/MCObjectStreamer.cpp - Object File MCStreamer Interface -----===// |
| 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/MC/MCObjectStreamer.h" |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/STLExtras.h" |
Craig Topper | 6e80c28 | 2012-03-26 06:58:25 +0000 | [diff] [blame] | 12 | #include "llvm/MC/MCAsmBackend.h" |
| 13 | #include "llvm/MC/MCAsmInfo.h" |
Daniel Dunbar | 8a3c9d9 | 2010-06-16 20:04:22 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCAssembler.h" |
Benjamin Kramer | a3e0ddb | 2010-07-29 17:48:06 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCCodeEmitter.h" |
Rafael Espindola | 0a017a6 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCContext.h" |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCDwarf.h" |
Michael J. Spencer | e2da0a4 | 2010-07-19 06:13:10 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCExpr.h" |
Craig Topper | 6e80c28 | 2012-03-26 06:58:25 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCObjectWriter.h" |
Serge Pavlov | 24a3ebb | 2013-06-27 14:35:03 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCSection.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCSymbol.h" |
Craig Topper | 6e80c28 | 2012-03-26 06:58:25 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ErrorHandling.h" |
Rafael Espindola | 105270f | 2015-03-18 19:08:20 +0000 | [diff] [blame] | 23 | #include "llvm/Support/TargetRegistry.h" |
Daniel Dunbar | 8a3c9d9 | 2010-06-16 20:04:22 +0000 | [diff] [blame] | 24 | using namespace llvm; |
| 25 | |
Rafael Espindola | 24ea09e | 2014-01-26 06:06:37 +0000 | [diff] [blame] | 26 | MCObjectStreamer::MCObjectStreamer(MCContext &Context, MCAsmBackend &TAB, |
Rafael Espindola | 5560a4c | 2015-04-14 22:14:34 +0000 | [diff] [blame] | 27 | raw_pwrite_stream &OS, |
| 28 | MCCodeEmitter *Emitter_) |
Rafael Espindola | 24ea09e | 2014-01-26 06:06:37 +0000 | [diff] [blame] | 29 | : MCStreamer(Context), |
Chandler Carruth | de093ef | 2013-01-31 23:29:57 +0000 | [diff] [blame] | 30 | Assembler(new MCAssembler(Context, TAB, *Emitter_, |
| 31 | *TAB.createObjectWriter(OS), OS)), |
Rafael Espindola | 3dd8ef6 | 2014-05-12 14:02:44 +0000 | [diff] [blame] | 32 | CurSectionData(nullptr), EmitEHFrame(true), EmitDebugFrame(false) {} |
Daniel Dunbar | 8a3c9d9 | 2010-06-16 20:04:22 +0000 | [diff] [blame] | 33 | |
| 34 | MCObjectStreamer::~MCObjectStreamer() { |
Benjamin Kramer | a3e0ddb | 2010-07-29 17:48:06 +0000 | [diff] [blame] | 35 | delete &Assembler->getBackend(); |
| 36 | delete &Assembler->getEmitter(); |
Daniel Dunbar | 42a037a | 2010-12-17 02:45:41 +0000 | [diff] [blame] | 37 | delete &Assembler->getWriter(); |
Daniel Dunbar | 8a3c9d9 | 2010-06-16 20:04:22 +0000 | [diff] [blame] | 38 | delete Assembler; |
| 39 | } |
Daniel Dunbar | b2347fe | 2010-06-16 20:04:25 +0000 | [diff] [blame] | 40 | |
Petr Hosek | 9e0c890 | 2015-04-12 23:42:25 +0000 | [diff] [blame] | 41 | void MCObjectStreamer::flushPendingLabels(MCFragment *F, uint64_t FOffset) { |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 42 | if (PendingLabels.size()) { |
| 43 | if (!F) { |
| 44 | F = new MCDataFragment(); |
| 45 | CurSectionData->getFragmentList().insert(CurInsertionPoint, F); |
| 46 | F->setParent(CurSectionData); |
| 47 | } |
| 48 | for (MCSymbolData *SD : PendingLabels) { |
| 49 | SD->setFragment(F); |
Petr Hosek | 9e0c890 | 2015-04-12 23:42:25 +0000 | [diff] [blame] | 50 | SD->setOffset(FOffset); |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 51 | } |
| 52 | PendingLabels.clear(); |
| 53 | } |
| 54 | } |
| 55 | |
Pedro Artigas | 7212ee4 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 56 | void MCObjectStreamer::reset() { |
Pedro Artigas | b95c53e | 2012-12-14 18:52:11 +0000 | [diff] [blame] | 57 | if (Assembler) |
| 58 | Assembler->reset(); |
Craig Topper | bb694de | 2014-04-13 04:57:38 +0000 | [diff] [blame] | 59 | CurSectionData = nullptr; |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 60 | CurInsertionPoint = MCSectionData::iterator(); |
Rafael Espindola | 3dd8ef6 | 2014-05-12 14:02:44 +0000 | [diff] [blame] | 61 | EmitEHFrame = true; |
| 62 | EmitDebugFrame = false; |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 63 | PendingLabels.clear(); |
Pedro Artigas | 7212ee4 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 64 | MCStreamer::reset(); |
| 65 | } |
| 66 | |
Rafael Espindola | 3dd8ef6 | 2014-05-12 14:02:44 +0000 | [diff] [blame] | 67 | void MCObjectStreamer::EmitFrames(MCAsmBackend *MAB) { |
| 68 | if (!getNumFrameInfos()) |
| 69 | return; |
| 70 | |
| 71 | if (EmitEHFrame) |
| 72 | MCDwarfFrameEmitter::Emit(*this, MAB, true); |
| 73 | |
| 74 | if (EmitDebugFrame) |
| 75 | MCDwarfFrameEmitter::Emit(*this, MAB, false); |
| 76 | } |
| 77 | |
Michael J. Spencer | e2da0a4 | 2010-07-19 06:13:10 +0000 | [diff] [blame] | 78 | MCFragment *MCObjectStreamer::getCurrentFragment() const { |
| 79 | assert(getCurrentSectionData() && "No current section!"); |
| 80 | |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 81 | if (CurInsertionPoint != getCurrentSectionData()->getFragmentList().begin()) |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 82 | return std::prev(CurInsertionPoint); |
Michael J. Spencer | e2da0a4 | 2010-07-19 06:13:10 +0000 | [diff] [blame] | 83 | |
Craig Topper | bb694de | 2014-04-13 04:57:38 +0000 | [diff] [blame] | 84 | return nullptr; |
Michael J. Spencer | e2da0a4 | 2010-07-19 06:13:10 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 87 | MCDataFragment *MCObjectStreamer::getOrCreateDataFragment() { |
Michael J. Spencer | e2da0a4 | 2010-07-19 06:13:10 +0000 | [diff] [blame] | 88 | MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment()); |
Derek Schuff | 8878bcc9 | 2013-02-15 22:50:52 +0000 | [diff] [blame] | 89 | // When bundling is enabled, we don't want to add data to a fragment that |
| 90 | // already has instructions (see MCELFStreamer::EmitInstToData for details) |
Petr Hosek | 9e0c890 | 2015-04-12 23:42:25 +0000 | [diff] [blame] | 91 | if (!F || (Assembler->isBundlingEnabled() && !Assembler->getRelaxAll() && |
| 92 | F->hasInstructions())) { |
David Blaikie | 4d3b043 | 2014-04-10 21:53:47 +0000 | [diff] [blame] | 93 | F = new MCDataFragment(); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 94 | insert(F); |
| 95 | } |
Michael J. Spencer | e2da0a4 | 2010-07-19 06:13:10 +0000 | [diff] [blame] | 96 | return F; |
| 97 | } |
| 98 | |
Rafael Espindola | 2be1281 | 2014-06-25 15:29:54 +0000 | [diff] [blame] | 99 | void MCObjectStreamer::visitUsedSymbol(const MCSymbol &Sym) { |
| 100 | Assembler->getOrCreateSymbolData(Sym); |
| 101 | } |
| 102 | |
Rafael Espindola | 3dd8ef6 | 2014-05-12 14:02:44 +0000 | [diff] [blame] | 103 | void MCObjectStreamer::EmitCFISections(bool EH, bool Debug) { |
| 104 | MCStreamer::EmitCFISections(EH, Debug); |
| 105 | EmitEHFrame = EH; |
| 106 | EmitDebugFrame = Debug; |
| 107 | } |
| 108 | |
Kevin Enderby | 96918bc | 2014-04-22 17:27:29 +0000 | [diff] [blame] | 109 | void MCObjectStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, |
| 110 | const SMLoc &Loc) { |
Rafael Espindola | 591c641 | 2014-06-25 18:37:33 +0000 | [diff] [blame] | 111 | MCStreamer::EmitValueImpl(Value, Size, Loc); |
Rafael Espindola | a084fd6 | 2010-11-28 23:08:47 +0000 | [diff] [blame] | 112 | MCDataFragment *DF = getOrCreateDataFragment(); |
| 113 | |
Cameron Zwarich | 80cbcd2 | 2013-05-25 21:56:53 +0000 | [diff] [blame] | 114 | MCLineEntry::Make(this, getCurrentSection().first); |
| 115 | |
Rafael Espindola | a084fd6 | 2010-11-28 23:08:47 +0000 | [diff] [blame] | 116 | // Avoid fixups when possible. |
| 117 | int64_t AbsValue; |
Rafael Espindola | 9364ac6 | 2014-06-25 14:42:14 +0000 | [diff] [blame] | 118 | if (Value->EvaluateAsAbsolute(AbsValue, getAssembler())) { |
Rafael Espindola | 64e1af8 | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 119 | EmitIntValue(AbsValue, Size); |
Rafael Espindola | 4c70eea | 2010-12-03 02:54:21 +0000 | [diff] [blame] | 120 | return; |
Rafael Espindola | a084fd6 | 2010-11-28 23:08:47 +0000 | [diff] [blame] | 121 | } |
Eli Bendersky | a31a894 | 2012-12-07 19:13:57 +0000 | [diff] [blame] | 122 | DF->getFixups().push_back( |
Jim Grosbach | 63661f8 | 2015-05-15 19:13:05 +0000 | [diff] [blame] | 123 | MCFixup::create(DF->getContents().size(), Value, |
Kevin Enderby | 96918bc | 2014-04-22 17:27:29 +0000 | [diff] [blame] | 124 | MCFixup::getKindForSize(Size, false), Loc)); |
Rafael Espindola | 4c70eea | 2010-12-03 02:54:21 +0000 | [diff] [blame] | 125 | DF->getContents().resize(DF->getContents().size() + Size, 0); |
Rafael Espindola | a084fd6 | 2010-11-28 23:08:47 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Oliver Stannard | cf6bfb1 | 2014-11-03 12:19:03 +0000 | [diff] [blame] | 128 | void MCObjectStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { |
| 129 | // We need to create a local symbol to avoid relocations. |
| 130 | Frame.Begin = getContext().CreateTempSymbol(); |
| 131 | EmitLabel(Frame.Begin); |
Rafael Espindola | 3824120 | 2012-01-07 22:42:19 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Rafael Espindola | f28213c | 2012-01-09 00:17:29 +0000 | [diff] [blame] | 134 | void MCObjectStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { |
Rafael Espindola | 49bbfd0 | 2014-06-25 00:13:59 +0000 | [diff] [blame] | 135 | Frame.End = getContext().CreateTempSymbol(); |
| 136 | EmitLabel(Frame.End); |
Rafael Espindola | f28213c | 2012-01-09 00:17:29 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Rafael Espindola | e5b7415 | 2010-11-28 17:18:55 +0000 | [diff] [blame] | 139 | void MCObjectStreamer::EmitLabel(MCSymbol *Symbol) { |
Rafael Espindola | 27c0c9b | 2011-04-27 15:21:19 +0000 | [diff] [blame] | 140 | MCStreamer::EmitLabel(Symbol); |
Rafael Espindola | e5b7415 | 2010-11-28 17:18:55 +0000 | [diff] [blame] | 141 | |
| 142 | MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol); |
Rafael Espindola | e5b7415 | 2010-11-28 17:18:55 +0000 | [diff] [blame] | 143 | assert(!SD.getFragment() && "Unexpected fragment on symbol data!"); |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 144 | |
| 145 | // If there is a current fragment, mark the symbol as pointing into it. |
| 146 | // Otherwise queue the label and set its fragment pointer when we emit the |
| 147 | // next fragment. |
Petr Hosek | 9e0c890 | 2015-04-12 23:42:25 +0000 | [diff] [blame] | 148 | auto *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment()); |
| 149 | if (F && !(getAssembler().isBundlingEnabled() && |
| 150 | getAssembler().getRelaxAll())) { |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 151 | SD.setFragment(F); |
| 152 | SD.setOffset(F->getContents().size()); |
| 153 | } else { |
| 154 | PendingLabels.push_back(&SD); |
| 155 | } |
Rafael Espindola | e5b7415 | 2010-11-28 17:18:55 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Rafael Espindola | 6aea592 | 2011-04-21 23:39:26 +0000 | [diff] [blame] | 158 | void MCObjectStreamer::EmitULEB128Value(const MCExpr *Value) { |
Rafael Espindola | 675fbb2 | 2010-12-03 01:19:49 +0000 | [diff] [blame] | 159 | int64_t IntValue; |
Rafael Espindola | 5004f4a | 2010-12-18 03:57:21 +0000 | [diff] [blame] | 160 | if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) { |
Rafael Espindola | 6aea592 | 2011-04-21 23:39:26 +0000 | [diff] [blame] | 161 | EmitULEB128IntValue(IntValue); |
Rafael Espindola | 675fbb2 | 2010-12-03 01:19:49 +0000 | [diff] [blame] | 162 | return; |
| 163 | } |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 164 | insert(new MCLEBFragment(*Value, false)); |
Rafael Espindola | 5e87498 | 2010-11-02 17:22:24 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Rafael Espindola | 6aea592 | 2011-04-21 23:39:26 +0000 | [diff] [blame] | 167 | void MCObjectStreamer::EmitSLEB128Value(const MCExpr *Value) { |
Rafael Espindola | 675fbb2 | 2010-12-03 01:19:49 +0000 | [diff] [blame] | 168 | int64_t IntValue; |
Rafael Espindola | 5004f4a | 2010-12-18 03:57:21 +0000 | [diff] [blame] | 169 | if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) { |
Rafael Espindola | 6aea592 | 2011-04-21 23:39:26 +0000 | [diff] [blame] | 170 | EmitSLEB128IntValue(IntValue); |
Rafael Espindola | 675fbb2 | 2010-12-03 01:19:49 +0000 | [diff] [blame] | 171 | return; |
| 172 | } |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 173 | insert(new MCLEBFragment(*Value, true)); |
Rafael Espindola | 5e87498 | 2010-11-02 17:22:24 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 176 | void MCObjectStreamer::EmitWeakReference(MCSymbol *Alias, |
| 177 | const MCSymbol *Symbol) { |
| 178 | report_fatal_error("This file format doesn't support weak aliases."); |
| 179 | } |
| 180 | |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 181 | void MCObjectStreamer::ChangeSection(const MCSection *Section, |
| 182 | const MCExpr *Subsection) { |
Rafael Espindola | 36a15cb | 2015-03-20 20:00:01 +0000 | [diff] [blame] | 183 | changeSectionImpl(Section, Subsection); |
| 184 | } |
| 185 | |
| 186 | bool MCObjectStreamer::changeSectionImpl(const MCSection *Section, |
| 187 | const MCExpr *Subsection) { |
Daniel Dunbar | b2347fe | 2010-06-16 20:04:25 +0000 | [diff] [blame] | 188 | assert(Section && "Cannot switch to a null section!"); |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 189 | flushPendingLabels(nullptr); |
Daniel Dunbar | b2347fe | 2010-06-16 20:04:25 +0000 | [diff] [blame] | 190 | |
Rafael Espindola | 36a15cb | 2015-03-20 20:00:01 +0000 | [diff] [blame] | 191 | bool Created; |
| 192 | CurSectionData = &getAssembler().getOrCreateSectionData(*Section, &Created); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 193 | |
| 194 | int64_t IntSubsection = 0; |
| 195 | if (Subsection && |
| 196 | !Subsection->EvaluateAsAbsolute(IntSubsection, getAssembler())) |
| 197 | report_fatal_error("Cannot evaluate subsection number"); |
| 198 | if (IntSubsection < 0 || IntSubsection > 8192) |
| 199 | report_fatal_error("Subsection number out of range"); |
| 200 | CurInsertionPoint = |
| 201 | CurSectionData->getSubsectionInsertionPoint(unsigned(IntSubsection)); |
Rafael Espindola | 36a15cb | 2015-03-20 20:00:01 +0000 | [diff] [blame] | 202 | return Created; |
Daniel Dunbar | b2347fe | 2010-06-16 20:04:25 +0000 | [diff] [blame] | 203 | } |
| 204 | |
Eli Bendersky | ea2824d | 2012-12-07 17:42:41 +0000 | [diff] [blame] | 205 | void MCObjectStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) { |
| 206 | getAssembler().getOrCreateSymbolData(*Symbol); |
Zoran Jovanovic | 28221d8 | 2014-03-20 09:44:49 +0000 | [diff] [blame] | 207 | MCStreamer::EmitAssignment(Symbol, Value); |
Eli Bendersky | ea2824d | 2012-12-07 17:42:41 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Rafael Espindola | 591c641 | 2014-06-25 18:37:33 +0000 | [diff] [blame] | 210 | void MCObjectStreamer::EmitInstruction(const MCInst &Inst, |
| 211 | const MCSubtargetInfo &STI) { |
| 212 | MCStreamer::EmitInstruction(Inst, STI); |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 213 | |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 214 | MCSectionData *SD = getCurrentSectionData(); |
| 215 | SD->setHasInstructions(true); |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 216 | |
| 217 | // Now that a machine instruction has been assembled into this section, make |
| 218 | // a line entry for any .loc directive that has been seen. |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 219 | MCLineEntry::Make(this, getCurrentSection().first); |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 220 | |
| 221 | // If this instruction doesn't need relaxation, just emit it as data. |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 222 | MCAssembler &Assembler = getAssembler(); |
| 223 | if (!Assembler.getBackend().mayNeedRelaxation(Inst)) { |
David Woodhouse | 6f3c73f | 2014-01-28 23:12:49 +0000 | [diff] [blame] | 224 | EmitInstToData(Inst, STI); |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 225 | return; |
| 226 | } |
| 227 | |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 228 | // Otherwise, relax and emit it as data if either: |
| 229 | // - The RelaxAll flag was passed |
| 230 | // - Bundling is enabled and this instruction is inside a bundle-locked |
| 231 | // group. We want to emit all such instructions into the same data |
| 232 | // fragment. |
| 233 | if (Assembler.getRelaxAll() || |
| 234 | (Assembler.isBundlingEnabled() && SD->isBundleLocked())) { |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 235 | MCInst Relaxed; |
Jim Grosbach | aba3de9 | 2012-01-18 18:52:16 +0000 | [diff] [blame] | 236 | getAssembler().getBackend().relaxInstruction(Inst, Relaxed); |
| 237 | while (getAssembler().getBackend().mayNeedRelaxation(Relaxed)) |
| 238 | getAssembler().getBackend().relaxInstruction(Relaxed, Relaxed); |
David Woodhouse | 6f3c73f | 2014-01-28 23:12:49 +0000 | [diff] [blame] | 239 | EmitInstToData(Relaxed, STI); |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 240 | return; |
| 241 | } |
| 242 | |
| 243 | // Otherwise emit to a separate fragment. |
David Woodhouse | 6f3c73f | 2014-01-28 23:12:49 +0000 | [diff] [blame] | 244 | EmitInstToFragment(Inst, STI); |
Rafael Espindola | 72b5488 | 2010-11-01 16:27:31 +0000 | [diff] [blame] | 245 | } |
| 246 | |
David Woodhouse | 6f3c73f | 2014-01-28 23:12:49 +0000 | [diff] [blame] | 247 | void MCObjectStreamer::EmitInstToFragment(const MCInst &Inst, |
| 248 | const MCSubtargetInfo &STI) { |
Petr Hosek | 9e0c890 | 2015-04-12 23:42:25 +0000 | [diff] [blame] | 249 | if (getAssembler().getRelaxAll() && getAssembler().isBundlingEnabled()) |
| 250 | llvm_unreachable("All instructions should have already been relaxed"); |
| 251 | |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 252 | // Always create a new, separate fragment here, because its size can change |
| 253 | // during relaxation. |
David Woodhouse | f5199f6 | 2014-01-28 23:12:53 +0000 | [diff] [blame] | 254 | MCRelaxableFragment *IF = new MCRelaxableFragment(Inst, STI); |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 255 | insert(IF); |
Rafael Espindola | 3fa6fc1 | 2010-12-02 05:44:06 +0000 | [diff] [blame] | 256 | |
Eli Friedman | b2545fb | 2011-04-18 20:54:46 +0000 | [diff] [blame] | 257 | SmallString<128> Code; |
| 258 | raw_svector_ostream VecOS(Code); |
Jim Grosbach | 91df21f | 2015-05-15 19:13:16 +0000 | [diff] [blame^] | 259 | getAssembler().getEmitter().encodeInstruction(Inst, VecOS, IF->getFixups(), |
David Woodhouse | 9784cef | 2014-01-28 23:13:07 +0000 | [diff] [blame] | 260 | STI); |
Eli Friedman | b2545fb | 2011-04-18 20:54:46 +0000 | [diff] [blame] | 261 | VecOS.flush(); |
Eli Bendersky | a31a894 | 2012-12-07 19:13:57 +0000 | [diff] [blame] | 262 | IF->getContents().append(Code.begin(), Code.end()); |
Rafael Espindola | 3fa6fc1 | 2010-12-02 05:44:06 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Matt Beaumont-Gay | 5ae7208 | 2013-02-15 23:12:33 +0000 | [diff] [blame] | 265 | #ifndef NDEBUG |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 266 | static const char *const BundlingNotImplementedMsg = |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 267 | "Aligned bundling is not implemented for this object format"; |
Matt Beaumont-Gay | 5ae7208 | 2013-02-15 23:12:33 +0000 | [diff] [blame] | 268 | #endif |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 269 | |
| 270 | void MCObjectStreamer::EmitBundleAlignMode(unsigned AlignPow2) { |
| 271 | llvm_unreachable(BundlingNotImplementedMsg); |
| 272 | } |
| 273 | |
Eli Bendersky | 802b628 | 2013-01-07 21:51:08 +0000 | [diff] [blame] | 274 | void MCObjectStreamer::EmitBundleLock(bool AlignToEnd) { |
Eli Bendersky | f483ff9 | 2012-12-20 19:05:53 +0000 | [diff] [blame] | 275 | llvm_unreachable(BundlingNotImplementedMsg); |
| 276 | } |
| 277 | |
| 278 | void MCObjectStreamer::EmitBundleUnlock() { |
| 279 | llvm_unreachable(BundlingNotImplementedMsg); |
| 280 | } |
| 281 | |
Ulrich Weigand | 64f4405 | 2013-06-19 21:27:27 +0000 | [diff] [blame] | 282 | void MCObjectStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, |
| 283 | unsigned Column, unsigned Flags, |
| 284 | unsigned Isa, |
| 285 | unsigned Discriminator, |
| 286 | StringRef FileName) { |
| 287 | // In case we see two .loc directives in a row, make sure the |
| 288 | // first one gets a line entry. |
| 289 | MCLineEntry::Make(this, getCurrentSection().first); |
| 290 | |
| 291 | this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags, |
| 292 | Isa, Discriminator, FileName); |
| 293 | } |
| 294 | |
Rafael Espindola | 3851808 | 2014-08-15 14:31:47 +0000 | [diff] [blame] | 295 | static const MCExpr *buildSymbolDiff(MCObjectStreamer &OS, const MCSymbol *A, |
| 296 | const MCSymbol *B) { |
| 297 | MCContext &Context = OS.getContext(); |
| 298 | MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None; |
| 299 | const MCExpr *ARef = MCSymbolRefExpr::Create(A, Variant, Context); |
| 300 | const MCExpr *BRef = MCSymbolRefExpr::Create(B, Variant, Context); |
| 301 | const MCExpr *AddrDelta = |
| 302 | MCBinaryExpr::Create(MCBinaryExpr::Sub, ARef, BRef, Context); |
| 303 | return AddrDelta; |
| 304 | } |
| 305 | |
Rafael Espindola | 5e955fb | 2014-08-15 14:43:02 +0000 | [diff] [blame] | 306 | static void emitDwarfSetLineAddr(MCObjectStreamer &OS, int64_t LineDelta, |
| 307 | const MCSymbol *Label, int PointerSize) { |
| 308 | // emit the sequence to set the address |
| 309 | OS.EmitIntValue(dwarf::DW_LNS_extended_op, 1); |
| 310 | OS.EmitULEB128IntValue(PointerSize + 1); |
| 311 | OS.EmitIntValue(dwarf::DW_LNE_set_address, 1); |
| 312 | OS.EmitSymbolValue(Label, PointerSize); |
| 313 | |
| 314 | // emit the sequence for the LineDelta (from 1) and a zero address delta. |
| 315 | MCDwarfLineAddr::Emit(&OS, LineDelta, 0); |
| 316 | } |
| 317 | |
Rafael Espindola | 57ab708 | 2010-12-03 00:55:40 +0000 | [diff] [blame] | 318 | void MCObjectStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta, |
| 319 | const MCSymbol *LastLabel, |
Evan Cheng | c7ac690 | 2011-07-14 05:43:07 +0000 | [diff] [blame] | 320 | const MCSymbol *Label, |
| 321 | unsigned PointerSize) { |
Rafael Espindola | 57ab708 | 2010-12-03 00:55:40 +0000 | [diff] [blame] | 322 | if (!LastLabel) { |
Rafael Espindola | 5e955fb | 2014-08-15 14:43:02 +0000 | [diff] [blame] | 323 | emitDwarfSetLineAddr(*this, LineDelta, Label, PointerSize); |
Rafael Espindola | 57ab708 | 2010-12-03 00:55:40 +0000 | [diff] [blame] | 324 | return; |
| 325 | } |
Rafael Espindola | 3851808 | 2014-08-15 14:31:47 +0000 | [diff] [blame] | 326 | const MCExpr *AddrDelta = buildSymbolDiff(*this, Label, LastLabel); |
Rafael Espindola | 57ab708 | 2010-12-03 00:55:40 +0000 | [diff] [blame] | 327 | int64_t Res; |
Rafael Espindola | 5004f4a | 2010-12-18 03:57:21 +0000 | [diff] [blame] | 328 | if (AddrDelta->EvaluateAsAbsolute(Res, getAssembler())) { |
Rafael Espindola | 57ab708 | 2010-12-03 00:55:40 +0000 | [diff] [blame] | 329 | MCDwarfLineAddr::Emit(this, LineDelta, Res); |
| 330 | return; |
| 331 | } |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 332 | insert(new MCDwarfLineAddrFragment(LineDelta, *AddrDelta)); |
Rafael Espindola | 57ab708 | 2010-12-03 00:55:40 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Rafael Espindola | 736a35d | 2010-12-28 05:39:27 +0000 | [diff] [blame] | 335 | void MCObjectStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel, |
| 336 | const MCSymbol *Label) { |
Rafael Espindola | 3851808 | 2014-08-15 14:31:47 +0000 | [diff] [blame] | 337 | const MCExpr *AddrDelta = buildSymbolDiff(*this, Label, LastLabel); |
Rafael Espindola | 736a35d | 2010-12-28 05:39:27 +0000 | [diff] [blame] | 338 | int64_t Res; |
| 339 | if (AddrDelta->EvaluateAsAbsolute(Res, getAssembler())) { |
| 340 | MCDwarfFrameEmitter::EmitAdvanceLoc(*this, Res); |
| 341 | return; |
| 342 | } |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 343 | insert(new MCDwarfCallFrameFragment(*AddrDelta)); |
Rafael Espindola | 736a35d | 2010-12-28 05:39:27 +0000 | [diff] [blame] | 344 | } |
| 345 | |
Rafael Espindola | 64e1af8 | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 346 | void MCObjectStreamer::EmitBytes(StringRef Data) { |
Peter Collingbourne | 588009e | 2013-10-20 02:16:18 +0000 | [diff] [blame] | 347 | MCLineEntry::Make(this, getCurrentSection().first); |
Benjamin Kramer | 64ddcb0 | 2012-10-04 13:12:43 +0000 | [diff] [blame] | 348 | getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end()); |
| 349 | } |
| 350 | |
| 351 | void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment, |
| 352 | int64_t Value, |
| 353 | unsigned ValueSize, |
| 354 | unsigned MaxBytesToEmit) { |
| 355 | if (MaxBytesToEmit == 0) |
| 356 | MaxBytesToEmit = ByteAlignment; |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 357 | insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit)); |
Benjamin Kramer | 64ddcb0 | 2012-10-04 13:12:43 +0000 | [diff] [blame] | 358 | |
| 359 | // Update the maximum alignment on the current section if necessary. |
| 360 | if (ByteAlignment > getCurrentSectionData()->getAlignment()) |
| 361 | getCurrentSectionData()->setAlignment(ByteAlignment); |
| 362 | } |
| 363 | |
| 364 | void MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment, |
| 365 | unsigned MaxBytesToEmit) { |
| 366 | EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit); |
| 367 | cast<MCAlignFragment>(getCurrentFragment())->setEmitNops(true); |
| 368 | } |
| 369 | |
Jim Grosbach | b591277 | 2012-01-27 00:37:08 +0000 | [diff] [blame] | 370 | bool MCObjectStreamer::EmitValueToOffset(const MCExpr *Offset, |
Jim Grosbach | 5aac954 | 2012-01-26 23:47:45 +0000 | [diff] [blame] | 371 | unsigned char Value) { |
Rafael Espindola | f849bf8 | 2011-02-20 20:20:07 +0000 | [diff] [blame] | 372 | int64_t Res; |
| 373 | if (Offset->EvaluateAsAbsolute(Res, getAssembler())) { |
Peter Collingbourne | 2f495b9 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 374 | insert(new MCOrgFragment(*Offset, Value)); |
Jim Grosbach | b591277 | 2012-01-27 00:37:08 +0000 | [diff] [blame] | 375 | return false; |
Rafael Espindola | f849bf8 | 2011-02-20 20:20:07 +0000 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | MCSymbol *CurrentPos = getContext().CreateTempSymbol(); |
| 379 | EmitLabel(CurrentPos); |
| 380 | MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None; |
| 381 | const MCExpr *Ref = |
| 382 | MCSymbolRefExpr::Create(CurrentPos, Variant, getContext()); |
| 383 | const MCExpr *Delta = |
| 384 | MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext()); |
| 385 | |
| 386 | if (!Delta->EvaluateAsAbsolute(Res, getAssembler())) |
Jim Grosbach | b591277 | 2012-01-27 00:37:08 +0000 | [diff] [blame] | 387 | return true; |
Eric Christopher | ce0cfce | 2013-01-09 01:35:34 +0000 | [diff] [blame] | 388 | EmitFill(Res, Value); |
Jim Grosbach | b591277 | 2012-01-27 00:37:08 +0000 | [diff] [blame] | 389 | return false; |
Rafael Espindola | 9065bfc6 | 2010-12-02 05:59:38 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Akira Hatanaka | f5ddf13 | 2011-11-23 22:18:04 +0000 | [diff] [blame] | 392 | // Associate GPRel32 fixup with data and resize data area |
| 393 | void MCObjectStreamer::EmitGPRel32Value(const MCExpr *Value) { |
| 394 | MCDataFragment *DF = getOrCreateDataFragment(); |
| 395 | |
Jim Grosbach | 63661f8 | 2015-05-15 19:13:05 +0000 | [diff] [blame] | 396 | DF->getFixups().push_back(MCFixup::create(DF->getContents().size(), |
Eli Bendersky | a31a894 | 2012-12-07 19:13:57 +0000 | [diff] [blame] | 397 | Value, FK_GPRel_4)); |
Akira Hatanaka | f5ddf13 | 2011-11-23 22:18:04 +0000 | [diff] [blame] | 398 | DF->getContents().resize(DF->getContents().size() + 4, 0); |
| 399 | } |
| 400 | |
Jack Carter | 77064c0 | 2012-08-22 00:49:30 +0000 | [diff] [blame] | 401 | // Associate GPRel32 fixup with data and resize data area |
| 402 | void MCObjectStreamer::EmitGPRel64Value(const MCExpr *Value) { |
| 403 | MCDataFragment *DF = getOrCreateDataFragment(); |
| 404 | |
Jim Grosbach | 63661f8 | 2015-05-15 19:13:05 +0000 | [diff] [blame] | 405 | DF->getFixups().push_back(MCFixup::create(DF->getContents().size(), |
Eli Bendersky | a31a894 | 2012-12-07 19:13:57 +0000 | [diff] [blame] | 406 | Value, FK_GPRel_4)); |
Jack Carter | 77064c0 | 2012-08-22 00:49:30 +0000 | [diff] [blame] | 407 | DF->getContents().resize(DF->getContents().size() + 8, 0); |
| 408 | } |
| 409 | |
Rafael Espindola | 64e1af8 | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 410 | void MCObjectStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) { |
Benjamin Kramer | 4c8af55 | 2012-10-01 15:14:14 +0000 | [diff] [blame] | 411 | // FIXME: A MCFillFragment would be more memory efficient but MCExpr has |
| 412 | // problems evaluating expressions across multiple fragments. |
| 413 | getOrCreateDataFragment()->getContents().append(NumBytes, FillValue); |
| 414 | } |
| 415 | |
Rafael Espindola | 64e1af8 | 2013-07-02 15:49:13 +0000 | [diff] [blame] | 416 | void MCObjectStreamer::EmitZeros(uint64_t NumBytes) { |
Michael Ilseman | 5be22a1 | 2014-12-12 21:48:03 +0000 | [diff] [blame] | 417 | const MCSection *Sec = getCurrentSection().first; |
| 418 | assert(Sec && "need a section"); |
| 419 | unsigned ItemSize = Sec->isVirtualSection() ? 0 : 1; |
Serge Pavlov | 24a3ebb | 2013-06-27 14:35:03 +0000 | [diff] [blame] | 420 | insert(new MCFillFragment(0, ItemSize, NumBytes)); |
| 421 | } |
| 422 | |
Rafael Espindola | 0708209 | 2012-01-07 03:13:18 +0000 | [diff] [blame] | 423 | void MCObjectStreamer::FinishImpl() { |
Kevin Enderby | e7739d4 | 2011-12-09 18:09:40 +0000 | [diff] [blame] | 424 | // If we are generating dwarf for assembly source files dump out the sections. |
| 425 | if (getContext().getGenDwarfForAssembly()) |
David Blaikie | 8bf66c4 | 2014-04-01 07:35:52 +0000 | [diff] [blame] | 426 | MCGenDwarfInfo::Emit(this); |
| 427 | |
| 428 | // Dump out the dwarf file & directory tables and line tables. |
| 429 | MCDwarfLineTable::Emit(this); |
Kevin Enderby | e7739d4 | 2011-12-09 18:09:40 +0000 | [diff] [blame] | 430 | |
Derek Schuff | 5f708e5 | 2014-10-22 22:38:06 +0000 | [diff] [blame] | 431 | flushPendingLabels(nullptr); |
Daniel Dunbar | b2347fe | 2010-06-16 20:04:25 +0000 | [diff] [blame] | 432 | getAssembler().Finish(); |
| 433 | } |