blob: d1e3a47f94b2636ffbf3591425b75d9ee2d0b0eb [file] [log] [blame]
Matheus Almeidadac77fb2014-03-27 11:39:03 +00001//===-------- MipsELFStreamer.cpp - ELF Object Output ---------------------===//
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 "MipsELFStreamer.h"
Zoran Jovanovic9c654832014-11-05 16:35:20 +000011#include "MipsTargetStreamer.h"
Daniel Sanders68c37472014-07-21 13:30:55 +000012#include "llvm/MC/MCInst.h"
Rafael Espindola95fb9b92015-06-02 20:38:46 +000013#include "llvm/MC/MCSymbolELF.h"
Zoran Jovanovic9c654832014-11-05 16:35:20 +000014#include "llvm/Support/ELF.h"
15
Benjamin Kramer89854eb2014-09-03 21:04:12 +000016using namespace llvm;
Daniel Sanders68c37472014-07-21 13:30:55 +000017
18void MipsELFStreamer::EmitInstruction(const MCInst &Inst,
19 const MCSubtargetInfo &STI) {
20 MCELFStreamer::EmitInstruction(Inst, STI);
21
22 MCContext &Context = getContext();
23 const MCRegisterInfo *MCRegInfo = Context.getRegisterInfo();
24
25 for (unsigned OpIndex = 0; OpIndex < Inst.getNumOperands(); ++OpIndex) {
26 const MCOperand &Op = Inst.getOperand(OpIndex);
27
28 if (!Op.isReg())
29 continue;
30
31 unsigned Reg = Op.getReg();
32 RegInfoRecord->SetPhysRegUsed(Reg, MCRegInfo);
33 }
Zoran Jovanovic9c654832014-11-05 16:35:20 +000034
Toma Tabacu9ca50962015-04-16 09:53:47 +000035 createPendingLabelRelocs();
36}
37
38void MipsELFStreamer::createPendingLabelRelocs() {
39 MipsTargetELFStreamer *ELFTargetStreamer =
40 static_cast<MipsTargetELFStreamer *>(getTargetStreamer());
41
42 // FIXME: Also mark labels when in MIPS16 mode.
Zoran Jovanovic9c654832014-11-05 16:35:20 +000043 if (ELFTargetStreamer->isMicroMipsEnabled()) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +000044 for (auto *L : Labels) {
45 auto *Label = cast<MCSymbolELF>(L);
Rafael Espindolac73aed12015-06-03 19:03:11 +000046 getAssembler().registerSymbol(*Label);
Zoran Jovanovic9c654832014-11-05 16:35:20 +000047 // The "other" values are stored in the last 6 bits of the second byte.
48 // The traditional defines for STO values assume the full byte and thus
49 // the shift to pack it.
Rafael Espindola95fb9b92015-06-02 20:38:46 +000050 Label->setOther(ELF::STO_MIPS_MICROMIPS >> 2);
Zoran Jovanovic9c654832014-11-05 16:35:20 +000051 }
52 }
53
54 Labels.clear();
55}
56
57void MipsELFStreamer::EmitLabel(MCSymbol *Symbol) {
58 MCELFStreamer::EmitLabel(Symbol);
59 Labels.push_back(Symbol);
60}
61
Rafael Espindola0709a7b2015-05-21 19:20:38 +000062void MipsELFStreamer::SwitchSection(MCSection *Section,
Zoran Jovanovic9c654832014-11-05 16:35:20 +000063 const MCExpr *Subsection) {
64 MCELFStreamer::SwitchSection(Section, Subsection);
65 Labels.clear();
66}
67
68void MipsELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
69 const SMLoc &Loc) {
70 MCELFStreamer::EmitValueImpl(Value, Size, Loc);
71 Labels.clear();
Daniel Sanders68c37472014-07-21 13:30:55 +000072}
73
74void MipsELFStreamer::EmitMipsOptionRecords() {
75 for (const auto &I : MipsOptionRecords)
76 I->EmitMipsOptionRecord();
77}
Matheus Almeidadac77fb2014-03-27 11:39:03 +000078
Rafael Espindolacd584a82015-03-19 01:50:16 +000079MCELFStreamer *llvm::createMipsELFStreamer(MCContext &Context,
Rafael Espindola5560a4c2015-04-14 22:14:34 +000080 MCAsmBackend &MAB,
81 raw_pwrite_stream &OS,
Rafael Espindolacd584a82015-03-19 01:50:16 +000082 MCCodeEmitter *Emitter,
83 bool RelaxAll) {
84 return new MipsELFStreamer(Context, MAB, OS, Emitter);
Matheus Almeidadac77fb2014-03-27 11:39:03 +000085}