LLVM 24.0.0git
GOFFObjectWriter.cpp
Go to the documentation of this file.
1//===- lib/MC/GOFFObjectWriter.cpp - GOFF File Writer ---------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements GOFF object file writer information.
10//
11//===----------------------------------------------------------------------===//
12
15#include "llvm/MC/MCAssembler.h"
21#include "llvm/MC/MCValue.h"
23#include "llvm/Support/Debug.h"
24#include "llvm/Support/Endian.h"
26
27using namespace llvm;
28
29#define DEBUG_TYPE "goff-writer"
30
31namespace {
32// Common flag values on records.
33
34// Flag: This record is continued.
35constexpr uint8_t RecContinued = GOFF::Flags(7, 1, 1);
36
37// Flag: This record is a continuation.
38constexpr uint8_t RecContinuation = GOFF::Flags(6, 1, 1);
39
40// The GOFFOstream is responsible to write the data into the fixed physical
41// records of the format. A user of this class announces the begin of a new
42// logical record. While writing the payload, the physical records are created
43// for the data. Possible fill bytes at the end of a physical record are written
44// automatically. In principle, the GOFFOstream is agnostic of the endianness of
45// the payload. However, it also supports writing data in big endian byte order.
46//
47// The physical records use the flag field to indicate if the there is a
48// successor and predecessor record. To be able to set these flags while
49// writing, the basic implementation idea is to always buffer the last seen
50// physical record.
51class GOFFOstream {
52 /// The underlying raw_pwrite_stream.
54
55 /// The number of logical records emitted so far.
56 uint32_t LogicalRecords = 0;
57
58 /// The number of physical records emitted so far.
59 uint32_t PhysicalRecords = 0;
60
61 /// The size of the buffer. Same as the payload size of a physical record.
62 static constexpr uint8_t BufferSize = GOFF::PayloadLength;
63
64 /// Current position in buffer.
65 char *BufferPtr = Buffer;
66
67 /// Static allocated buffer for the stream.
68 char Buffer[BufferSize];
69
70 /// The type of the current logical record, and the flags (aka continued and
71 /// continuation indicators) for the previous (physical) record.
72 uint8_t TypeAndFlags = 0;
73
74public:
75 GOFFOstream(raw_pwrite_stream &OS);
76 ~GOFFOstream();
77
78 raw_pwrite_stream &getOS() { return OS; }
79 size_t getWrittenSize() const { return PhysicalRecords * GOFF::RecordLength; }
80 uint32_t getNumLogicalRecords() { return LogicalRecords; }
81
82 /// Write the specified bytes.
83 void write(const char *Ptr, size_t Size);
84
85 /// Write zeroes, up to a maximum of 16 bytes.
86 void write_zeros(unsigned NumZeros);
87
88 /// Support for endian-specific data.
89 template <typename value_type> void writebe(value_type Value) {
90 Value =
92 write((const char *)&Value, sizeof(value_type));
93 }
94
95 /// Begin a new logical record. Implies finalizing the previous record.
96 void newRecord(GOFF::RecordType Type);
97
98 /// Ends a logical record.
99 void finalizeRecord();
100
101private:
102 /// Updates the continued/continuation flags, and writes the record prefix of
103 /// a physical record.
104 void updateFlagsAndWritePrefix(bool IsContinued);
105
106 /// Returns the remaining size in the buffer.
107 size_t getRemainingSize();
108};
109} // namespace
110
111GOFFOstream::GOFFOstream(raw_pwrite_stream &OS) : OS(OS) {}
112
113GOFFOstream::~GOFFOstream() { finalizeRecord(); }
114
115void GOFFOstream::updateFlagsAndWritePrefix(bool IsContinued) {
116 // Update the flags based on the previous state and the flag IsContinued.
117 if (TypeAndFlags & RecContinued)
118 TypeAndFlags |= RecContinuation;
119 if (IsContinued)
120 TypeAndFlags |= RecContinued;
121 else
122 TypeAndFlags &= ~RecContinued;
123
124 OS << static_cast<unsigned char>(GOFF::PTVPrefix) // Record Type
125 << static_cast<unsigned char>(TypeAndFlags) // Continuation
126 << static_cast<unsigned char>(0); // Version
127
128 ++PhysicalRecords;
129}
130
131size_t GOFFOstream::getRemainingSize() {
132 return size_t(&Buffer[BufferSize] - BufferPtr);
133}
134
135void GOFFOstream::write(const char *Ptr, size_t Size) {
136 size_t RemainingSize = getRemainingSize();
137
138 // Data fits into the buffer.
139 if (LLVM_LIKELY(Size <= RemainingSize)) {
140 memcpy(BufferPtr, Ptr, Size);
141 BufferPtr += Size;
142 return;
143 }
144
145 // Otherwise the buffer is partially filled or full, and data does not fit
146 // into it.
147 updateFlagsAndWritePrefix(/*IsContinued=*/true);
148 OS.write(Buffer, size_t(BufferPtr - Buffer));
149 if (RemainingSize > 0) {
150 OS.write(Ptr, RemainingSize);
151 Ptr += RemainingSize;
152 Size -= RemainingSize;
153 }
154
155 while (Size > BufferSize) {
156 updateFlagsAndWritePrefix(/*IsContinued=*/true);
157 OS.write(Ptr, BufferSize);
158 Ptr += BufferSize;
159 Size -= BufferSize;
160 }
161
162 // The remaining bytes fit into the buffer.
163 memcpy(Buffer, Ptr, Size);
164 BufferPtr = &Buffer[Size];
165}
166
167void GOFFOstream::write_zeros(unsigned NumZeros) {
168 assert(NumZeros <= 16 && "Range for zeros too large");
169
170 // Handle the common case first: all fits in the buffer.
171 size_t RemainingSize = getRemainingSize();
172 if (LLVM_LIKELY(RemainingSize >= NumZeros)) {
173 memset(BufferPtr, 0, NumZeros);
174 BufferPtr += NumZeros;
175 return;
176 }
177
178 // Otherwise some field value is cleared.
179 static char Zeros[16] = {
180 0,
181 };
182 write(Zeros, NumZeros);
183}
184
185void GOFFOstream::newRecord(GOFF::RecordType Type) {
186 finalizeRecord();
187 TypeAndFlags = Type << 4;
188 ++LogicalRecords;
189}
190
191void GOFFOstream::finalizeRecord() {
192 if (Buffer == BufferPtr)
193 return;
194 updateFlagsAndWritePrefix(/*IsContinued=*/false);
195 OS.write(Buffer, size_t(BufferPtr - Buffer));
196 OS.write_zeros(getRemainingSize());
197 BufferPtr = Buffer;
198}
199
200namespace {
201// A GOFFSymbol holds all the data required for writing an ESD record.
202class GOFFSymbol {
203public:
204 std::string Name;
205 uint32_t EsdId;
206 uint32_t ParentEsdId;
207 uint64_t Offset = 0; // Offset of the symbol into the section. LD only.
208 // Offset is only 32 bit, the larger type is used to
209 // enable error checking.
212
213 GOFF::BehavioralAttributes BehavAttrs;
214 GOFF::SymbolFlags SymbolFlags;
215 uint32_t SortKey = 0;
216 uint32_t SectionLength = 0;
217 uint32_t ADAEsdId = 0;
218 uint32_t EASectionEDEsdId = 0;
219 uint32_t EASectionOffset = 0;
220 uint8_t FillByteValue = 0;
221
222 GOFFSymbol() : EsdId(0), ParentEsdId(0) {}
223
224 GOFFSymbol(StringRef Name, uint32_t EsdID, const GOFF::SDAttr &Attr)
225 : Name(Name.data(), Name.size()), EsdId(EsdID), ParentEsdId(0),
227 BehavAttrs.setTaskingBehavior(Attr.TaskingBehavior);
228 BehavAttrs.setBindingScope(Attr.BindingScope);
229 }
230
231 GOFFSymbol(StringRef Name, uint32_t EsdID, uint32_t ParentEsdID,
232 const GOFF::EDAttr &Attr, GOFF::ESDAlignment Alignment)
233 : Name(Name.data(), Name.size()), EsdId(EsdID), ParentEsdId(ParentEsdID),
235 this->NameSpace = Attr.NameSpace;
236 // We always set a fill byte value.
237 this->FillByteValue = Attr.FillByteValue;
238 SymbolFlags.setFillBytePresence(1);
239 SymbolFlags.setReservedQwords(Attr.ReservedQwords);
240 // TODO Do we need/should set the "mangled" flag?
241 BehavAttrs.setReadOnly(Attr.IsReadOnly);
242 BehavAttrs.setRmode(Attr.Rmode);
243 BehavAttrs.setTextStyle(Attr.TextStyle);
244 BehavAttrs.setBindingAlgorithm(Attr.BindAlgorithm);
245 BehavAttrs.setLoadingBehavior(Attr.LoadBehavior);
246 BehavAttrs.setAlignment(Alignment);
247 }
248
249 GOFFSymbol(StringRef Name, uint32_t EsdID, uint32_t ParentEsdID,
250 GOFF::ESDNameSpaceId NameSpace, const GOFF::LDAttr &Attr)
251 : Name(Name.data(), Name.size()), EsdId(EsdID), ParentEsdId(ParentEsdID),
252 SymbolType(GOFF::ESD_ST_LabelDefinition), NameSpace(NameSpace) {
253 SymbolFlags.setRenameable(Attr.IsRenamable);
254 BehavAttrs.setExecutable(Attr.Executable);
255 BehavAttrs.setBindingStrength(Attr.BindingStrength);
256 BehavAttrs.setLinkageType(Attr.Linkage);
257 BehavAttrs.setAmode(Attr.Amode);
258 BehavAttrs.setBindingScope(Attr.BindingScope);
259 }
260
261 GOFFSymbol(StringRef Name, uint32_t EsdID, uint32_t ParentEsdID,
262 const GOFF::EDAttr &EDAttr, GOFF::ESDAlignment Alignment,
263 const GOFF::PRAttr &Attr)
264 : Name(Name.data(), Name.size()), EsdId(EsdID), ParentEsdId(ParentEsdID),
265 SymbolType(GOFF::ESD_ST_PartReference), NameSpace(EDAttr.NameSpace) {
266 SymbolFlags.setRenameable(Attr.IsRenamable);
267 BehavAttrs.setExecutable(Attr.Executable);
268 BehavAttrs.setLinkageType(Attr.Linkage);
269 BehavAttrs.setBindingScope(Attr.BindingScope);
270 BehavAttrs.setAlignment(Alignment);
271 }
272
273 GOFFSymbol(StringRef Name, uint32_t EsdID, uint32_t ParentEsdID,
274 const GOFF::ERAttr &Attr)
275 : Name(Name.data(), Name.size()), EsdId(EsdID), ParentEsdId(ParentEsdID),
277 NameSpace(GOFF::ESD_NS_NormalName) {
278 BehavAttrs.setExecutable(Attr.Executable);
279 BehavAttrs.setBindingStrength(Attr.BindingStrength);
280 BehavAttrs.setLinkageType(Attr.Linkage);
281 BehavAttrs.setAmode(Attr.Amode);
282 BehavAttrs.setBindingScope(Attr.BindingScope);
283 BehavAttrs.setIndirectReference(Attr.IsIndirectReference);
284 }
285};
286
287class GOFFWriter {
288 GOFFOstream OS;
289 MCAssembler &Asm;
290 MCSectionGOFF *RootSD;
291
292 /// Saved relocation data collected in recordRelocations().
293 std::vector<GOFFRelocationEntry> &Relocations;
294
295 void writeHeader();
296 void writeSymbol(const GOFFSymbol &Symbol);
297 void writeText(const MCSectionGOFF *MC);
298 void writeRelocations();
299 void writeEnd();
300
301 void defineSectionSymbols(const MCSectionGOFF &Section);
302 void defineLabel(const MCSymbolGOFF &Symbol);
303 void defineExtern(const MCSymbolGOFF &Symbol);
304 void defineSymbols();
305
306public:
307 GOFFWriter(raw_pwrite_stream &OS, MCAssembler &Asm, MCSectionGOFF *RootSD,
308 std::vector<GOFFRelocationEntry> &Relocations);
309 uint64_t writeObject();
310};
311} // namespace
312
313GOFFWriter::GOFFWriter(raw_pwrite_stream &OS, MCAssembler &Asm,
314 MCSectionGOFF *RootSD,
315 std::vector<GOFFRelocationEntry> &Relocations)
316 : OS(OS), Asm(Asm), RootSD(RootSD), Relocations(Relocations) {}
317
318void GOFFWriter::defineSectionSymbols(const MCSectionGOFF &Section) {
319 if (Section.isSD()) {
320 GOFFSymbol SD(Section.getExternalName(), Section.getOrdinal(),
321 Section.getSDAttributes());
322 writeSymbol(SD);
323 }
324
325 if (Section.isED()) {
326 GOFFSymbol ED(Section.getExternalName(), Section.getOrdinal(),
327 Section.getParent()->getOrdinal(), Section.getEDAttributes(),
328 Section.getEDAlignment());
329 ED.SectionLength = Asm.getSectionAddressSize(Section);
330 writeSymbol(ED);
331 }
332
333 if (Section.isPR()) {
334 MCSectionGOFF *Parent = Section.getParent();
335 GOFFSymbol PR(Section.getExternalName(), Section.getOrdinal(),
336 Parent->getOrdinal(), Parent->getEDAttributes(),
337 Parent->getEDAlignment(), Section.getPRAttributes());
338 PR.SectionLength = Asm.getSectionAddressSize(Section);
339 if (Section.requiresNonZeroLength()) {
340 // We cannot have a zero-length section for data. If we do,
341 // artificially inflate it. Use 2 bytes to avoid odd alignments. Note:
342 // if this is ever changed, you will need to update the code in
343 // SystemZAsmPrinter::emitCEEMAIN and SystemZAsmPrinter::emitCELQMAIN to
344 // generate -1 if there is no ADA
345 if (!PR.SectionLength)
346 PR.SectionLength = 2;
347 }
348 writeSymbol(PR);
349 }
350}
351
352void GOFFWriter::defineLabel(const MCSymbolGOFF &Symbol) {
353 MCSectionGOFF &Section = static_cast<MCSectionGOFF &>(Symbol.getSection());
354 GOFFSymbol LD(Symbol.getExternalName(), Symbol.getIndex(),
355 Section.getOrdinal(), Section.getEDAttributes().NameSpace,
356 GOFF::LDAttr{false, Symbol.getCodeData(),
357 Symbol.getBindingStrength(), Symbol.getLinkage(),
358 GOFF::ESD_AMODE_64, Symbol.getBindingScope()});
359 if (Symbol.getADA())
360 LD.ADAEsdId = Symbol.getADA()->getOrdinal();
361 LD.Offset = Asm.getSymbolOffset(Symbol);
362 writeSymbol(LD);
363}
364
365void GOFFWriter::defineExtern(const MCSymbolGOFF &Symbol) {
366 if (Symbol.getCodeData() == GOFF::ESD_EXE_DATA) {
367 MCSectionGOFF *ED = Symbol.getADA()->getParent();
368 GOFFSymbol PR(Symbol.getExternalName(), Symbol.getIndex(), ED->getOrdinal(),
369 ED->getEDAttributes(), ED->getEDAlignment(),
370 GOFF::PRAttr{/*IsRenamable*/ false, Symbol.getCodeData(),
371 Symbol.getLinkage(), Symbol.getBindingScope(),
372 0});
373 writeSymbol(PR);
374 } else {
375 GOFFSymbol ER(Symbol.getExternalName(), Symbol.getIndex(),
376 RootSD->getOrdinal(),
377 GOFF::ERAttr{Symbol.isIndirect(), Symbol.getCodeData(),
378 Symbol.getBindingStrength(), Symbol.getLinkage(),
379 GOFF::ESD_AMODE_64, Symbol.getBindingScope()});
380 writeSymbol(ER);
381 }
382}
383
384void GOFFWriter::defineSymbols() {
385 unsigned Ordinal = 0;
386 // Process all sections.
387 for (MCSection &S : Asm) {
388 auto &Section = static_cast<MCSectionGOFF &>(S);
389 Section.setOrdinal(++Ordinal);
390 defineSectionSymbols(Section);
391 }
392
393 // Process all symbols
394 for (const MCSymbol &Sym : Asm.symbols()) {
395 if (Sym.isTemporary())
396 continue;
397 auto &Symbol = static_cast<const MCSymbolGOFF &>(Sym);
398 if (!Symbol.isDefined()) {
399 Symbol.setIndex(++Ordinal);
400 defineExtern(Symbol);
401 } else if (Symbol.isInEDSection()) {
402 Symbol.setIndex(++Ordinal);
403 defineLabel(Symbol);
404 } else {
405 // Symbol is in PR section, the symbol refers to the section.
406 Symbol.setIndex(Symbol.getSection().getOrdinal());
407 }
408 }
409}
410
411void GOFFWriter::writeHeader() {
412 OS.newRecord(GOFF::RT_HDR);
413 OS.write_zeros(1); // Reserved
414 OS.writebe<uint32_t>(0); // Target Hardware Environment
415 OS.writebe<uint32_t>(0); // Target Operating System Environment
416 OS.write_zeros(2); // Reserved
417 OS.writebe<uint16_t>(0); // CCSID
418 OS.write_zeros(16); // Character Set name
419 OS.write_zeros(16); // Language Product Identifier
420 OS.writebe<uint32_t>(1); // Architecture Level
421 OS.writebe<uint16_t>(0); // Module Properties Length
422 OS.write_zeros(6); // Reserved
423}
424
425void GOFFWriter::writeSymbol(const GOFFSymbol &Symbol) {
426 if (Symbol.Offset >= (((uint64_t)1) << 31))
427 report_fatal_error("ESD offset out of range");
428
429 // All symbol names are in EBCDIC.
430 SmallString<256> Name;
432
433 // Check length here since this number is technically signed but we need uint
434 // for writing to records.
435 if (Name.size() >= GOFF::MaxDataLength)
436 report_fatal_error("Symbol max name length exceeded");
437 uint16_t NameLength = Name.size();
438
439 OS.newRecord(GOFF::RT_ESD);
440 OS.writebe<uint8_t>(Symbol.SymbolType); // Symbol Type
441 OS.writebe<uint32_t>(Symbol.EsdId); // ESDID
442 OS.writebe<uint32_t>(Symbol.ParentEsdId); // Parent or Owning ESDID
443 OS.writebe<uint32_t>(0); // Reserved
444 OS.writebe<uint32_t>(
445 static_cast<uint32_t>(Symbol.Offset)); // Offset or Address
446 OS.writebe<uint32_t>(0); // Reserved
447 OS.writebe<uint32_t>(Symbol.SectionLength); // Length
448 OS.writebe<uint32_t>(Symbol.EASectionEDEsdId); // Extended Attribute ESDID
449 OS.writebe<uint32_t>(Symbol.EASectionOffset); // Extended Attribute Offset
450 OS.writebe<uint32_t>(0); // Reserved
451 OS.writebe<uint8_t>(Symbol.NameSpace); // Name Space ID
452 OS.writebe<uint8_t>(Symbol.SymbolFlags); // Flags
453 OS.writebe<uint8_t>(Symbol.FillByteValue); // Fill-Byte Value
454 OS.writebe<uint8_t>(0); // Reserved
455 OS.writebe<uint32_t>(Symbol.ADAEsdId); // ADA ESDID
456 OS.writebe<uint32_t>(Symbol.SortKey); // Sort Priority
457 OS.writebe<uint64_t>(0); // Reserved
458 for (auto F : Symbol.BehavAttrs.Attr)
459 OS.writebe<uint8_t>(F); // Behavioral Attributes
460 OS.writebe<uint16_t>(NameLength); // Name Length
461 OS.write(Name.data(), NameLength); // Name
462}
463
464namespace {
465/// Adapter stream to write a text section.
466class TextStream : public raw_ostream {
467 /// The underlying GOFFOstream.
468 GOFFOstream &OS;
469
470 /// The buffer size is the maximum number of bytes in a TXT section.
471 static constexpr size_t BufferSize = GOFF::MaxDataLength;
472
473 /// Static allocated buffer for the stream, used by the raw_ostream class. The
474 /// buffer is sized to hold the payload of a logical TXT record.
475 char Buffer[BufferSize];
476
477 /// The offset for the next TXT record. This is equal to the number of bytes
478 /// written.
479 size_t Offset;
480
481 /// The Esdid of the GOFF section.
482 const uint32_t EsdId;
483
484 /// The record style.
485 const GOFF::ESDTextStyle RecordStyle;
486
487 /// See raw_ostream::write_impl.
488 void write_impl(const char *Ptr, size_t Size) override;
489
490 uint64_t current_pos() const override { return Offset; }
491
492public:
493 explicit TextStream(GOFFOstream &OS, uint32_t EsdId,
494 GOFF::ESDTextStyle RecordStyle)
495 : OS(OS), Offset(0), EsdId(EsdId), RecordStyle(RecordStyle) {
496 SetBuffer(Buffer, sizeof(Buffer));
497 }
498
499 ~TextStream() override { flush(); }
500};
501} // namespace
502
503void TextStream::write_impl(const char *Ptr, size_t Size) {
504 size_t WrittenLength = 0;
505
506 // We only have signed 32bits of offset.
507 if (Offset + Size > std::numeric_limits<int32_t>::max())
508 report_fatal_error("TXT section too large");
509
510 while (WrittenLength < Size) {
511 size_t ToWriteLength =
512 std::min(Size - WrittenLength, size_t(GOFF::MaxDataLength));
513
514 OS.newRecord(GOFF::RT_TXT);
515 OS.writebe<uint8_t>(GOFF::Flags(4, 4, RecordStyle)); // Text Record Style
516 OS.writebe<uint32_t>(EsdId); // Element ESDID
517 OS.writebe<uint32_t>(0); // Reserved
518 OS.writebe<uint32_t>(static_cast<uint32_t>(Offset)); // Offset
519 OS.writebe<uint32_t>(0); // Text Field True Length
520 OS.writebe<uint16_t>(0); // Text Encoding
521 OS.writebe<uint16_t>(ToWriteLength); // Data Length
522 OS.write(Ptr + WrittenLength, ToWriteLength); // Data
523
524 WrittenLength += ToWriteLength;
525 Offset += ToWriteLength;
526 }
527}
528
529void GOFFWriter::writeText(const MCSectionGOFF *Section) {
530 // A BSS section contains only zeros, no need to write this.
531 if (Section->isBSS())
532 return;
533
534 TextStream S(OS, Section->getOrdinal(), Section->getTextStyle());
535 Asm.writeSectionData(S, Section);
536}
537
538namespace {
539// RelocDataItemBuffer provides a static buffer for relocation data items.
540class RelocDataItemBuffer {
541 char Buffer[GOFF::MaxDataLength];
542 char *Ptr;
543
544public:
545 RelocDataItemBuffer() : Ptr(Buffer) {}
546 const char *data() { return Buffer; }
547 size_t size() { return Ptr - Buffer; }
548 void reset() { Ptr = Buffer; }
549 bool fits(size_t S) { return size() + S < GOFF::MaxDataLength; }
550 template <typename T> void writebe(T Val) {
551 assert(fits(sizeof(T)) && "Out-of-bounds write");
553 Ptr += sizeof(T);
554 }
555};
556} // namespace
557
558void GOFFWriter::writeRelocations() {
559 // Set the IDs in the relocation entries.
560 for (auto &RelocEntry : Relocations) {
561 auto GetRptr = [](const MCSymbolGOFF *Sym) -> uint32_t {
562 if (Sym->isTemporary())
563 return static_cast<MCSectionGOFF &>(Sym->getSection())
564 .getBeginSymbol()
565 ->getIndex();
566 return Sym->getIndex();
567 };
568
569 RelocEntry.PEsdId = RelocEntry.Pptr->getOrdinal();
570 RelocEntry.REsdId = GetRptr(RelocEntry.Rptr);
571 }
572
573 // Sort relocation data items by the P pointer to save space.
574 std::sort(
575 Relocations.begin(), Relocations.end(),
576 [](const GOFFRelocationEntry &Left, const GOFFRelocationEntry &Right) {
577 return std::tie(Left.PEsdId, Left.REsdId, Left.POffset) <
578 std::tie(Right.PEsdId, Right.REsdId, Right.POffset);
579 });
580
581 // Construct the compressed relocation data items, and write them out.
582 RelocDataItemBuffer Buffer;
583 for (auto I = Relocations.begin(), E = Relocations.end(); I != E;) {
584 Buffer.reset();
585
586 uint32_t PrevResdId = -1;
587 uint32_t PrevPesdId = -1;
588 uint64_t PrevPOffset = -1;
589 for (; I != E; ++I) {
590 const GOFFRelocationEntry &Rel = *I;
591
592 bool SameREsdId = (Rel.REsdId == PrevResdId);
593 bool SamePEsdId = (Rel.PEsdId == PrevPesdId);
594 bool SamePOffset = (Rel.POffset == PrevPOffset);
595 bool EightByteOffset = ((Rel.POffset >> 32) & 0xffffffff);
596
597 // Calculate size of relocation data item, and check if it still fits into
598 // the record.
599 size_t ItemSize = 8; // Smallest size of a relocation data item.
600 if (!SameREsdId)
601 ItemSize += 4;
602 if (!SamePEsdId)
603 ItemSize += 4;
604 if (!SamePOffset)
605 ItemSize += (EightByteOffset ? 8 : 4);
606 if (!Buffer.fits(ItemSize))
607 break;
608
609 GOFF::Flags RelocFlags[6];
610 RelocFlags[0].set(0, 1, SameREsdId);
611 RelocFlags[0].set(1, 1, SamePEsdId);
612 RelocFlags[0].set(2, 1, SamePOffset);
613 RelocFlags[0].set(6, 1, EightByteOffset);
614
615 RelocFlags[1].set(0, 4, Rel.ReferenceType);
616 RelocFlags[1].set(4, 4, Rel.ReferentType);
617
618 RelocFlags[2].set(0, 7, Rel.Action);
619 RelocFlags[2].set(7, 1, Rel.FetchStore);
620
621 RelocFlags[4].set(0, 8, Rel.TargetLength);
622
623 for (auto F : RelocFlags)
624 Buffer.writebe<uint8_t>(F);
625 Buffer.writebe<uint16_t>(0); // Reserved.
626 if (!SameREsdId)
627 Buffer.writebe<uint32_t>(Rel.REsdId);
628 if (!SamePEsdId)
629 Buffer.writebe<uint32_t>(Rel.PEsdId);
630 if (!SamePOffset) {
631 if (EightByteOffset)
632 Buffer.writebe<uint64_t>(Rel.POffset);
633 else
634 Buffer.writebe<uint32_t>(Rel.POffset);
635 }
636
637 PrevResdId = Rel.REsdId;
638 PrevPesdId = Rel.PEsdId;
639 PrevPOffset = Rel.POffset;
640 }
641
642 OS.newRecord(GOFF::RT_RLD);
643 OS.writebe<uint8_t>(0); // Reserved.
644 OS.writebe<uint16_t>(Buffer.size()); // Length (of the relocation data).
645 OS.write(Buffer.data(), Buffer.size()); // Relocation Directory Data Items.
646 }
647}
648
649void GOFFWriter::writeEnd() {
650 uint8_t F = GOFF::END_EPR_None;
651 uint8_t AMODE = 0;
652 uint32_t ESDID = 0;
653
654 // TODO Set Flags/AMODE/ESDID for entry point.
655
656 OS.newRecord(GOFF::RT_END);
657 OS.writebe<uint8_t>(GOFF::Flags(6, 2, F)); // Indicator flags
658 OS.writebe<uint8_t>(AMODE); // AMODE
659 OS.write_zeros(3); // Reserved
660 // The record count is the number of logical records. In principle, this value
661 // is available as OS.logicalRecords(). However, some tools rely on this field
662 // being zero.
663 OS.writebe<uint32_t>(0); // Record Count
664 OS.writebe<uint32_t>(ESDID); // ESDID (of entry point)
665}
666
667uint64_t GOFFWriter::writeObject() {
668 writeHeader();
669
670 defineSymbols();
671
672 for (const MCSection &Section : Asm)
673 writeText(static_cast<const MCSectionGOFF *>(&Section));
674
675 writeRelocations();
676
677 writeEnd();
678
679 // Make sure all records are written.
680 OS.finalizeRecord();
681
682 LLVM_DEBUG(dbgs() << "Wrote " << OS.getNumLogicalRecords()
683 << " logical records.");
684
685 return OS.getWrittenSize();
686}
687
689 std::unique_ptr<MCGOFFObjectTargetWriter> MOTW, raw_pwrite_stream &OS)
690 : TargetObjectWriter(std::move(MOTW)), OS(OS) {}
691
693
695 Relocations.clear();
696 RootSD = nullptr;
698}
699
701 const MCFixup &Fixup, MCValue Target,
702 uint64_t &FixedValue) {
703 const MCFixupKindInfo &FKI =
704 Asm->getBackend().getFixupKindInfo(Fixup.getKind());
705 const uint32_t Length = FKI.TargetSize / 8;
706 assert(FKI.TargetSize % 8 == 0 && "Target Size not multiple of 8");
707 const uint64_t FixupOffset = Asm->getFragmentOffset(F) + Fixup.getOffset();
708
709 unsigned RelocType = TargetObjectWriter->getRelocType(Target, Fixup);
710
711 const MCSectionGOFF *PSection = static_cast<MCSectionGOFF *>(F.getParent());
712 const auto &A = *static_cast<const MCSymbolGOFF *>(Target.getAddSym());
713 const MCSymbolGOFF *B = static_cast<const MCSymbolGOFF *>(Target.getSubSym());
715 if (A.isUndefined()) {
716 Asm->reportError(
717 Fixup.getLoc(),
718 Twine("symbol ")
719 .concat(A.getExternalName())
720 .concat(" must be defined for a relative immediate relocation"));
721 return;
722 }
723 if (&A.getSection() != PSection) {
724 MCSectionGOFF &GOFFSection = static_cast<MCSectionGOFF &>(A.getSection());
725 Asm->reportError(Fixup.getLoc(),
726 Twine("relative immediate relocation section mismatch: ")
727 .concat(GOFFSection.getExternalName())
728 .concat(" of symbol ")
729 .concat(A.getExternalName())
730 .concat(" <-> ")
731 .concat(PSection->getExternalName()));
732 return;
733 }
734 if (B) {
735 Asm->reportError(
736 Fixup.getLoc(),
737 Twine("subtractive symbol ")
738 .concat(B->getExternalName())
739 .concat(" not supported for a relative immediate relocation"));
740 return;
741 }
742 FixedValue = Asm->getSymbolOffset(A) - FixupOffset + Target.getConstant();
743 return;
744 }
745 FixedValue = Target.getConstant();
746
747 // The symbol only has a section-relative offset if it is a temporary symbol.
748 FixedValue += A.isTemporary() ? Asm->getSymbolOffset(A) : 0;
749 A.setUsedInReloc();
750 if (B) {
751 FixedValue -= B->isTemporary() ? Asm->getSymbolOffset(*B) : 0;
752 B->setUsedInReloc();
753 }
754
755 // UseQCon causes class offsets versus absolute addresses to be used. This
756 // is analogous to using QCONs in older OBJ object file format.
757 bool UseQCon = RelocType == MCGOFFObjectTargetWriter::Reloc_Type_QCon;
758
759 GOFF::RLDFetchStore FetchStore =
764 assert((FetchStore == GOFF::RLDFetchStore::RLD_FS_Fetch || B == nullptr) &&
765 "No dependent relocations expected");
766
768 enum GOFF::RLDReferentType ReferentType = GOFF::RLD_RO_Label;
769 if (UseQCon) {
771 ReferentType = GOFF::RLD_RO_Class;
772 }
775
776 auto DumpReloc = [&PSection, &ReferenceType, &FixupOffset,
777 &FixedValue](const char *N, const MCSymbolGOFF *Sym) {
778 const char *Con;
779 switch (ReferenceType) {
781 Con = "ACon";
782 break;
784 Con = "QCon";
785 break;
787 Con = "VCon";
788 break;
789 default:
790 Con = "(unknown)";
791 }
792 dbgs() << "Reloc " << N << ": " << Con
793 << " Rptr: " << Sym->getExternalName()
794 << " Pptr: " << PSection->getExternalName()
795 << " Offset: " << FixupOffset << " Fixed Imm: " << FixedValue
796 << "\n";
797 };
798 (void)DumpReloc;
799
800 // Save relocation data for later writing.
801 LLVM_DEBUG(DumpReloc("A", &A));
802 Relocations.emplace_back(PSection, &A, ReferenceType, ReferentType,
803 GOFF::RLD_ACT_Add, FetchStore, FixupOffset, Length);
804 if (B) {
805 LLVM_DEBUG(DumpReloc("B", B));
806 Relocations.emplace_back(
807 PSection, B, ReferenceType, ReferentType, GOFF::RLD_ACT_Subtract,
809 }
810}
811
813 uint64_t Size = GOFFWriter(OS, *Asm, RootSD, Relocations).writeObject();
814 return Size;
815}
816
817std::unique_ptr<MCObjectWriter>
818llvm::createGOFFObjectWriter(std::unique_ptr<MCGOFFObjectTargetWriter> MOTW,
819 raw_pwrite_stream &OS) {
820 return std::make_unique<GOFFObjectWriter>(std::move(MOTW), OS);
821}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_LIKELY(EXPR)
Definition Compiler.h:337
This file provides utility functions for converting between EBCDIC-1047 and UTF-8.
This file declares the MCSectionGOFF class, which contains all of the necessary machine code sections...
This file contains the MCSymbolGOFF class.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define T
PowerPC TLS Dynamic Call Fixup
static Split data
#define LLVM_DEBUG(...)
Definition Debug.h:119
GOFFObjectWriter(std::unique_ptr< MCGOFFObjectTargetWriter > MOTW, raw_pwrite_stream &OS)
void reset() override
lifetime management
uint64_t writeObject() override
Write the object file and returns the number of bytes written.
~GOFFObjectWriter() override
void recordRelocation(const MCFragment &F, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) override
Record a relocation entry.
constexpr void set(uint8_t BitIndex, uint8_t Length, T NewValue)
Definition GOFF.h:210
LLVM_ABI bool getSymbolOffset(const MCSymbol &S, uint64_t &Val) const
LLVM_ABI uint64_t getSectionAddressSize(const MCSection &Sec) const
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Definition MCFixup.h:61
virtual void reset()
lifetime management
GOFF::EDAttr getEDAttributes() const
StringRef getExternalName() const
GOFF::ESDAlignment getEDAlignment() const
unsigned getOrdinal() const
Definition MCSection.h:666
Target - Wrapper for Target specific information.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
Twine concat(const Twine &Suffix) const
Definition Twine.h:497
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
LLVM Value Representation.
Definition Value.h:75
raw_ostream & write_zeros(unsigned NumZeros)
write_zeros - Insert 'NumZeros' nulls.
raw_ostream & write(unsigned char C)
An abstract base class for streams implementations that also support a pwrite operation.
LLVM_ABI std::error_code convertToEBCDIC(StringRef Source, SmallVectorImpl< char > &Result)
LLVM_ABI void writeHeader(support::endian::Writer &W, bool Is64Bit, uint8_t OSABI, uint8_t ABIVersion, uint16_t EMachine, uint32_t EFlags, uint64_t SHOff, uint16_t SHNum, uint16_t SHStrNdx)
Write an ELF file header (Elf32_Ehdr or Elf64_Ehdr) for an ET_REL object.
Definition ELFWriter.cpp:21
RecordType
Definition GOFF.h:44
@ RT_RLD
Definition GOFF.h:47
@ RT_TXT
Definition GOFF.h:46
@ RT_ESD
Definition GOFF.h:45
@ RT_HDR
Definition GOFF.h:50
@ RT_END
Definition GOFF.h:49
@ RLD_ACT_Subtract
Definition GOFF.h:178
@ RLD_ACT_Add
Definition GOFF.h:177
RLDFetchStore
Definition GOFF.h:181
@ RLD_FS_Store
Definition GOFF.h:181
@ RLD_FS_Fetch
Definition GOFF.h:181
constexpr uint8_t PayloadLength
Definition GOFF.h:30
ESDTextStyle
Definition GOFF.h:91
@ ESD_EXE_DATA
Definition GOFF.h:111
constexpr uint16_t MaxDataLength
Maximum data length before starting a new card for RLD and TXT data.
Definition GOFF.h:39
@ END_EPR_None
Definition GOFF.h:184
ESDAlignment
Definition GOFF.h:144
RLDReferenceType
Definition GOFF.h:160
@ RLD_RT_RAddress
Definition GOFF.h:161
@ RLD_RT_ROffset
Definition GOFF.h:162
@ RLD_RT_RTypeConstant
Definition GOFF.h:165
RLDReferentType
Definition GOFF.h:169
@ RLD_RO_Label
Definition GOFF.h:170
@ RLD_RO_Class
Definition GOFF.h:172
constexpr uint8_t PTVPrefix
Prefix byte on every record. This indicates GOFF format.
Definition GOFF.h:42
constexpr uint8_t RecordLength
Length of the parts of a physical GOFF record.
Definition GOFF.h:28
ESDNameSpaceId
Definition GOFF.h:61
@ ESD_NS_ProgramManagementBinder
Definition GOFF.h:62
@ ESD_NS_NormalName
Definition GOFF.h:63
ESDSymbolType
Definition GOFF.h:53
@ ESD_ST_PartReference
Definition GOFF.h:57
@ ESD_ST_ElementDefinition
Definition GOFF.h:55
@ ESD_ST_LabelDefinition
Definition GOFF.h:56
@ ESD_ST_SectionDefinition
Definition GOFF.h:54
@ ESD_ST_ExternalReference
Definition GOFF.h:58
SymbolFlags
Symbol flags.
Definition Symbol.h:25
value_type byte_swap(value_type value, endianness endian)
Definition Endian.h:44
void write(void *memory, value_type value, endianness endian)
Write a value to memory with a particular endianness.
Definition Endian.h:96
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:573
@ Length
Definition DWP.cpp:573
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
Definition STLExtras.h:1669
LLVM_ABI std::unique_ptr< MCObjectWriter > createGOFFObjectWriter(std::unique_ptr< MCGOFFObjectTargetWriter > MOTW, raw_pwrite_stream &OS)
Construct a new GOFF writer instance.
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
Definition STLExtras.h:1151
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1917
LLVM_ABI Error write(DWPWriter &Out, ArrayRef< std::string > Inputs, OnCuIndexOverflow OverflowOptValue, Dwarf64StrOffsetsPromotion StrOffsetsOptValue, raw_pwrite_stream *OS=nullptr)
Definition DWP.cpp:736
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:860
#define N
GOFF::RLDReferenceType ReferenceType
GOFF::RLDFetchStore FetchStore
GOFF::RLDReferentType ReferentType
GOFF::ESDReserveQwords ReservedQwords
GOFF::ESDRmode Rmode
GOFF::ESDTextStyle TextStyle
GOFF::ESDLoadingBehavior LoadBehavior
GOFF::ESDNameSpaceId NameSpace
GOFF::ESDBindingAlgorithm BindAlgorithm
GOFF::ESDBindingScope BindingScope
GOFF::ESDBindingStrength BindingStrength
GOFF::ESDLinkageType Linkage
GOFF::ESDExecutable Executable
GOFF::ESDAmode Amode
GOFF::ESDAmode Amode
GOFF::ESDBindingStrength BindingStrength
GOFF::ESDExecutable Executable
GOFF::ESDBindingScope BindingScope
GOFF::ESDLinkageType Linkage
GOFF::ESDLinkageType Linkage
GOFF::ESDBindingScope BindingScope
GOFF::ESDExecutable Executable
GOFF::ESDTaskingBehavior TaskingBehavior
GOFF::ESDBindingScope BindingScope
Target independent information on a fixup kind.
uint8_t TargetSize
The number of bits written by this fixup.