1 //===--- XCOFFObjectFile.cpp - XCOFF object file implementation -----------===// 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 defines the XCOFFObjectFile class. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "llvm/Object/XCOFFObjectFile.h" 14 #include "llvm/ADT/StringSwitch.h" 15 #include "llvm/Support/DataExtractor.h" 16 #include "llvm/TargetParser/SubtargetFeature.h" 17 #include <cstddef> 18 #include <cstring> 19 20 namespace llvm { 21 22 using namespace XCOFF; 23 24 namespace object { 25 26 static const uint8_t FunctionSym = 0x20; 27 static const uint16_t NoRelMask = 0x0001; 28 static const size_t SymbolAuxTypeOffset = 17; 29 30 // Checks that [Ptr, Ptr + Size) bytes fall inside the memory buffer 31 // 'M'. Returns a pointer to the underlying object on success. 32 template <typename T> 33 static Expected<const T *> getObject(MemoryBufferRef M, const void *Ptr, 34 const uint64_t Size = sizeof(T)) { 35 uintptr_t Addr = reinterpret_cast<uintptr_t>(Ptr); 36 if (Error E = Binary::checkOffset(M, Addr, Size)) 37 return std::move(E); 38 return reinterpret_cast<const T *>(Addr); 39 } 40 41 static uintptr_t getWithOffset(uintptr_t Base, ptrdiff_t Offset) { 42 return reinterpret_cast<uintptr_t>(reinterpret_cast<const char *>(Base) + 43 Offset); 44 } 45 46 template <typename T> static const T *viewAs(uintptr_t in) { 47 return reinterpret_cast<const T *>(in); 48 } 49 50 static StringRef generateXCOFFFixedNameStringRef(const char *Name) { 51 auto NulCharPtr = 52 static_cast<const char *>(memchr(Name, '\0', XCOFF::NameSize)); 53 return NulCharPtr ? StringRef(Name, NulCharPtr - Name) 54 : StringRef(Name, XCOFF::NameSize); 55 } 56 57 template <typename T> StringRef XCOFFSectionHeader<T>::getName() const { 58 const T &DerivedXCOFFSectionHeader = static_cast<const T &>(*this); 59 return generateXCOFFFixedNameStringRef(DerivedXCOFFSectionHeader.Name); 60 } 61 62 template <typename T> uint16_t XCOFFSectionHeader<T>::getSectionType() const { 63 const T &DerivedXCOFFSectionHeader = static_cast<const T &>(*this); 64 return DerivedXCOFFSectionHeader.Flags & SectionFlagsTypeMask; 65 } 66 67 template <typename T> 68 uint32_t XCOFFSectionHeader<T>::getSectionSubtype() const { 69 const T &DerivedXCOFFSectionHeader = static_cast<const T &>(*this); 70 return DerivedXCOFFSectionHeader.Flags & ~SectionFlagsTypeMask; 71 } 72 73 template <typename T> 74 bool XCOFFSectionHeader<T>::isReservedSectionType() const { 75 return getSectionType() & SectionFlagsReservedMask; 76 } 77 78 template <typename AddressType> 79 bool XCOFFRelocation<AddressType>::isRelocationSigned() const { 80 return Info & XR_SIGN_INDICATOR_MASK; 81 } 82 83 template <typename AddressType> 84 bool XCOFFRelocation<AddressType>::isFixupIndicated() const { 85 return Info & XR_FIXUP_INDICATOR_MASK; 86 } 87 88 template <typename AddressType> 89 uint8_t XCOFFRelocation<AddressType>::getRelocatedLength() const { 90 // The relocation encodes the bit length being relocated minus 1. Add back 91 // the 1 to get the actual length being relocated. 92 return (Info & XR_BIASED_LENGTH_MASK) + 1; 93 } 94 95 template struct ExceptionSectionEntry<support::ubig32_t>; 96 template struct ExceptionSectionEntry<support::ubig64_t>; 97 98 template <typename T> 99 Expected<StringRef> getLoaderSecSymNameInStrTbl(const T *LoaderSecHeader, 100 uint64_t Offset) { 101 if (LoaderSecHeader->LengthOfStrTbl > Offset) 102 return (reinterpret_cast<const char *>(LoaderSecHeader) + 103 LoaderSecHeader->OffsetToStrTbl + Offset); 104 105 return createError("entry with offset 0x" + Twine::utohexstr(Offset) + 106 " in the loader section's string table with size 0x" + 107 Twine::utohexstr(LoaderSecHeader->LengthOfStrTbl) + 108 " is invalid"); 109 } 110 111 Expected<StringRef> LoaderSectionSymbolEntry32::getSymbolName( 112 const LoaderSectionHeader32 *LoaderSecHeader32) const { 113 const NameOffsetInStrTbl *NameInStrTbl = 114 reinterpret_cast<const NameOffsetInStrTbl *>(SymbolName); 115 if (NameInStrTbl->IsNameInStrTbl != XCOFFSymbolRef::NAME_IN_STR_TBL_MAGIC) 116 return generateXCOFFFixedNameStringRef(SymbolName); 117 118 return getLoaderSecSymNameInStrTbl(LoaderSecHeader32, NameInStrTbl->Offset); 119 } 120 121 Expected<StringRef> LoaderSectionSymbolEntry64::getSymbolName( 122 const LoaderSectionHeader64 *LoaderSecHeader64) const { 123 return getLoaderSecSymNameInStrTbl(LoaderSecHeader64, Offset); 124 } 125 126 uintptr_t 127 XCOFFObjectFile::getAdvancedSymbolEntryAddress(uintptr_t CurrentAddress, 128 uint32_t Distance) { 129 return getWithOffset(CurrentAddress, Distance * XCOFF::SymbolTableEntrySize); 130 } 131 132 const XCOFF::SymbolAuxType * 133 XCOFFObjectFile::getSymbolAuxType(uintptr_t AuxEntryAddress) const { 134 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 135 return viewAs<XCOFF::SymbolAuxType>( 136 getWithOffset(AuxEntryAddress, SymbolAuxTypeOffset)); 137 } 138 139 void XCOFFObjectFile::checkSectionAddress(uintptr_t Addr, 140 uintptr_t TableAddress) const { 141 if (Addr < TableAddress) 142 report_fatal_error("Section header outside of section header table."); 143 144 uintptr_t Offset = Addr - TableAddress; 145 if (Offset >= getSectionHeaderSize() * getNumberOfSections()) 146 report_fatal_error("Section header outside of section header table."); 147 148 if (Offset % getSectionHeaderSize() != 0) 149 report_fatal_error( 150 "Section header pointer does not point to a valid section header."); 151 } 152 153 const XCOFFSectionHeader32 * 154 XCOFFObjectFile::toSection32(DataRefImpl Ref) const { 155 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 156 #ifndef NDEBUG 157 checkSectionAddress(Ref.p, getSectionHeaderTableAddress()); 158 #endif 159 return viewAs<XCOFFSectionHeader32>(Ref.p); 160 } 161 162 const XCOFFSectionHeader64 * 163 XCOFFObjectFile::toSection64(DataRefImpl Ref) const { 164 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 165 #ifndef NDEBUG 166 checkSectionAddress(Ref.p, getSectionHeaderTableAddress()); 167 #endif 168 return viewAs<XCOFFSectionHeader64>(Ref.p); 169 } 170 171 XCOFFSymbolRef XCOFFObjectFile::toSymbolRef(DataRefImpl Ref) const { 172 assert(Ref.p != 0 && "Symbol table pointer can not be nullptr!"); 173 #ifndef NDEBUG 174 checkSymbolEntryPointer(Ref.p); 175 #endif 176 return XCOFFSymbolRef(Ref, this); 177 } 178 179 const XCOFFFileHeader32 *XCOFFObjectFile::fileHeader32() const { 180 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 181 return static_cast<const XCOFFFileHeader32 *>(FileHeader); 182 } 183 184 const XCOFFFileHeader64 *XCOFFObjectFile::fileHeader64() const { 185 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 186 return static_cast<const XCOFFFileHeader64 *>(FileHeader); 187 } 188 189 const XCOFFAuxiliaryHeader32 *XCOFFObjectFile::auxiliaryHeader32() const { 190 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 191 return static_cast<const XCOFFAuxiliaryHeader32 *>(AuxiliaryHeader); 192 } 193 194 const XCOFFAuxiliaryHeader64 *XCOFFObjectFile::auxiliaryHeader64() const { 195 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 196 return static_cast<const XCOFFAuxiliaryHeader64 *>(AuxiliaryHeader); 197 } 198 199 template <typename T> const T *XCOFFObjectFile::sectionHeaderTable() const { 200 return static_cast<const T *>(SectionHeaderTable); 201 } 202 203 const XCOFFSectionHeader32 * 204 XCOFFObjectFile::sectionHeaderTable32() const { 205 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 206 return static_cast<const XCOFFSectionHeader32 *>(SectionHeaderTable); 207 } 208 209 const XCOFFSectionHeader64 * 210 XCOFFObjectFile::sectionHeaderTable64() const { 211 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 212 return static_cast<const XCOFFSectionHeader64 *>(SectionHeaderTable); 213 } 214 215 void XCOFFObjectFile::moveSymbolNext(DataRefImpl &Symb) const { 216 uintptr_t NextSymbolAddr = getAdvancedSymbolEntryAddress( 217 Symb.p, toSymbolRef(Symb).getNumberOfAuxEntries() + 1); 218 #ifndef NDEBUG 219 // This function is used by basic_symbol_iterator, which allows to 220 // point to the end-of-symbol-table address. 221 if (NextSymbolAddr != getEndOfSymbolTableAddress()) 222 checkSymbolEntryPointer(NextSymbolAddr); 223 #endif 224 Symb.p = NextSymbolAddr; 225 } 226 227 Expected<StringRef> 228 XCOFFObjectFile::getStringTableEntry(uint32_t Offset) const { 229 // The byte offset is relative to the start of the string table. 230 // A byte offset value of 0 is a null or zero-length symbol 231 // name. A byte offset in the range 1 to 3 (inclusive) points into the length 232 // field; as a soft-error recovery mechanism, we treat such cases as having an 233 // offset of 0. 234 if (Offset < 4) 235 return StringRef(nullptr, 0); 236 237 if (StringTable.Data != nullptr && StringTable.Size > Offset) 238 return (StringTable.Data + Offset); 239 240 return createError("entry with offset 0x" + Twine::utohexstr(Offset) + 241 " in a string table with size 0x" + 242 Twine::utohexstr(StringTable.Size) + " is invalid"); 243 } 244 245 StringRef XCOFFObjectFile::getStringTable() const { 246 // If the size is less than or equal to 4, then the string table contains no 247 // string data. 248 return StringRef(StringTable.Data, 249 StringTable.Size <= 4 ? 0 : StringTable.Size); 250 } 251 252 Expected<StringRef> 253 XCOFFObjectFile::getCFileName(const XCOFFFileAuxEnt *CFileEntPtr) const { 254 if (CFileEntPtr->NameInStrTbl.Magic != XCOFFSymbolRef::NAME_IN_STR_TBL_MAGIC) 255 return generateXCOFFFixedNameStringRef(CFileEntPtr->Name); 256 return getStringTableEntry(CFileEntPtr->NameInStrTbl.Offset); 257 } 258 259 Expected<StringRef> XCOFFObjectFile::getSymbolName(DataRefImpl Symb) const { 260 return toSymbolRef(Symb).getName(); 261 } 262 263 Expected<uint64_t> XCOFFObjectFile::getSymbolAddress(DataRefImpl Symb) const { 264 return toSymbolRef(Symb).getValue(); 265 } 266 267 uint64_t XCOFFObjectFile::getSymbolValueImpl(DataRefImpl Symb) const { 268 return toSymbolRef(Symb).getValue(); 269 } 270 271 uint32_t XCOFFObjectFile::getSymbolAlignment(DataRefImpl Symb) const { 272 uint64_t Result = 0; 273 XCOFFSymbolRef XCOFFSym = toSymbolRef(Symb); 274 if (XCOFFSym.isCsectSymbol()) { 275 Expected<XCOFFCsectAuxRef> CsectAuxRefOrError = 276 XCOFFSym.getXCOFFCsectAuxRef(); 277 if (!CsectAuxRefOrError) 278 // TODO: report the error up the stack. 279 consumeError(CsectAuxRefOrError.takeError()); 280 else 281 Result = 1ULL << CsectAuxRefOrError.get().getAlignmentLog2(); 282 } 283 return Result; 284 } 285 286 uint64_t XCOFFObjectFile::getCommonSymbolSizeImpl(DataRefImpl Symb) const { 287 uint64_t Result = 0; 288 XCOFFSymbolRef XCOFFSym = toSymbolRef(Symb); 289 if (XCOFFSym.isCsectSymbol()) { 290 Expected<XCOFFCsectAuxRef> CsectAuxRefOrError = 291 XCOFFSym.getXCOFFCsectAuxRef(); 292 if (!CsectAuxRefOrError) 293 // TODO: report the error up the stack. 294 consumeError(CsectAuxRefOrError.takeError()); 295 else { 296 XCOFFCsectAuxRef CsectAuxRef = CsectAuxRefOrError.get(); 297 assert(CsectAuxRef.getSymbolType() == XCOFF::XTY_CM); 298 Result = CsectAuxRef.getSectionOrLength(); 299 } 300 } 301 return Result; 302 } 303 304 Expected<SymbolRef::Type> 305 XCOFFObjectFile::getSymbolType(DataRefImpl Symb) const { 306 XCOFFSymbolRef XCOFFSym = toSymbolRef(Symb); 307 308 Expected<bool> IsFunction = XCOFFSym.isFunction(); 309 if (!IsFunction) 310 return IsFunction.takeError(); 311 312 if (*IsFunction) 313 return SymbolRef::ST_Function; 314 315 if (XCOFF::C_FILE == XCOFFSym.getStorageClass()) 316 return SymbolRef::ST_File; 317 318 int16_t SecNum = XCOFFSym.getSectionNumber(); 319 if (SecNum <= 0) 320 return SymbolRef::ST_Other; 321 322 Expected<DataRefImpl> SecDRIOrErr = 323 getSectionByNum(XCOFFSym.getSectionNumber()); 324 325 if (!SecDRIOrErr) 326 return SecDRIOrErr.takeError(); 327 328 DataRefImpl SecDRI = SecDRIOrErr.get(); 329 330 Expected<StringRef> SymNameOrError = XCOFFSym.getName(); 331 if (SymNameOrError) { 332 // The "TOC" symbol is treated as SymbolRef::ST_Other. 333 if (SymNameOrError.get() == "TOC") 334 return SymbolRef::ST_Other; 335 336 // The symbol for a section name is treated as SymbolRef::ST_Other. 337 StringRef SecName; 338 if (is64Bit()) 339 SecName = XCOFFObjectFile::toSection64(SecDRIOrErr.get())->getName(); 340 else 341 SecName = XCOFFObjectFile::toSection32(SecDRIOrErr.get())->getName(); 342 343 if (SecName == SymNameOrError.get()) 344 return SymbolRef::ST_Other; 345 } else 346 return SymNameOrError.takeError(); 347 348 if (isSectionData(SecDRI) || isSectionBSS(SecDRI)) 349 return SymbolRef::ST_Data; 350 351 if (isDebugSection(SecDRI)) 352 return SymbolRef::ST_Debug; 353 354 return SymbolRef::ST_Other; 355 } 356 357 Expected<section_iterator> 358 XCOFFObjectFile::getSymbolSection(DataRefImpl Symb) const { 359 const int16_t SectNum = toSymbolRef(Symb).getSectionNumber(); 360 361 if (isReservedSectionNumber(SectNum)) 362 return section_end(); 363 364 Expected<DataRefImpl> ExpSec = getSectionByNum(SectNum); 365 if (!ExpSec) 366 return ExpSec.takeError(); 367 368 return section_iterator(SectionRef(ExpSec.get(), this)); 369 } 370 371 void XCOFFObjectFile::moveSectionNext(DataRefImpl &Sec) const { 372 const char *Ptr = reinterpret_cast<const char *>(Sec.p); 373 Sec.p = reinterpret_cast<uintptr_t>(Ptr + getSectionHeaderSize()); 374 } 375 376 Expected<StringRef> XCOFFObjectFile::getSectionName(DataRefImpl Sec) const { 377 return generateXCOFFFixedNameStringRef(getSectionNameInternal(Sec)); 378 } 379 380 uint64_t XCOFFObjectFile::getSectionAddress(DataRefImpl Sec) const { 381 // Avoid ternary due to failure to convert the ubig32_t value to a unit64_t 382 // with MSVC. 383 if (is64Bit()) 384 return toSection64(Sec)->VirtualAddress; 385 386 return toSection32(Sec)->VirtualAddress; 387 } 388 389 uint64_t XCOFFObjectFile::getSectionIndex(DataRefImpl Sec) const { 390 // Section numbers in XCOFF are numbered beginning at 1. A section number of 391 // zero is used to indicate that a symbol is being imported or is undefined. 392 if (is64Bit()) 393 return toSection64(Sec) - sectionHeaderTable64() + 1; 394 else 395 return toSection32(Sec) - sectionHeaderTable32() + 1; 396 } 397 398 uint64_t XCOFFObjectFile::getSectionSize(DataRefImpl Sec) const { 399 // Avoid ternary due to failure to convert the ubig32_t value to a unit64_t 400 // with MSVC. 401 if (is64Bit()) 402 return toSection64(Sec)->SectionSize; 403 404 return toSection32(Sec)->SectionSize; 405 } 406 407 Expected<ArrayRef<uint8_t>> 408 XCOFFObjectFile::getSectionContents(DataRefImpl Sec) const { 409 if (isSectionVirtual(Sec)) 410 return ArrayRef<uint8_t>(); 411 412 uint64_t OffsetToRaw; 413 if (is64Bit()) 414 OffsetToRaw = toSection64(Sec)->FileOffsetToRawData; 415 else 416 OffsetToRaw = toSection32(Sec)->FileOffsetToRawData; 417 418 const uint8_t * ContentStart = base() + OffsetToRaw; 419 uint64_t SectionSize = getSectionSize(Sec); 420 if (Error E = Binary::checkOffset( 421 Data, reinterpret_cast<uintptr_t>(ContentStart), SectionSize)) 422 return createError( 423 toString(std::move(E)) + ": section data with offset 0x" + 424 Twine::utohexstr(OffsetToRaw) + " and size 0x" + 425 Twine::utohexstr(SectionSize) + " goes past the end of the file"); 426 427 return ArrayRef(ContentStart, SectionSize); 428 } 429 430 uint64_t XCOFFObjectFile::getSectionAlignment(DataRefImpl Sec) const { 431 uint64_t Result = 0; 432 llvm_unreachable("Not yet implemented!"); 433 return Result; 434 } 435 436 uint64_t XCOFFObjectFile::getSectionFileOffsetToRawData(DataRefImpl Sec) const { 437 if (is64Bit()) 438 return toSection64(Sec)->FileOffsetToRawData; 439 440 return toSection32(Sec)->FileOffsetToRawData; 441 } 442 443 Expected<uintptr_t> XCOFFObjectFile::getSectionFileOffsetToRawData( 444 XCOFF::SectionTypeFlags SectType) const { 445 DataRefImpl DRI = getSectionByType(SectType); 446 447 if (DRI.p == 0) // No section is not an error. 448 return 0; 449 450 uint64_t SectionOffset = getSectionFileOffsetToRawData(DRI); 451 uint64_t SizeOfSection = getSectionSize(DRI); 452 453 uintptr_t SectionStart = reinterpret_cast<uintptr_t>(base() + SectionOffset); 454 if (Error E = Binary::checkOffset(Data, SectionStart, SizeOfSection)) { 455 SmallString<32> UnknownType; 456 Twine(("<Unknown:") + Twine::utohexstr(SectType) + ">") 457 .toVector(UnknownType); 458 const char *SectionName = UnknownType.c_str(); 459 460 switch (SectType) { 461 #define ECASE(Value, String) \ 462 case XCOFF::Value: \ 463 SectionName = String; \ 464 break 465 466 ECASE(STYP_PAD, "pad"); 467 ECASE(STYP_DWARF, "dwarf"); 468 ECASE(STYP_TEXT, "text"); 469 ECASE(STYP_DATA, "data"); 470 ECASE(STYP_BSS, "bss"); 471 ECASE(STYP_EXCEPT, "expect"); 472 ECASE(STYP_INFO, "info"); 473 ECASE(STYP_TDATA, "tdata"); 474 ECASE(STYP_TBSS, "tbss"); 475 ECASE(STYP_LOADER, "loader"); 476 ECASE(STYP_DEBUG, "debug"); 477 ECASE(STYP_TYPCHK, "typchk"); 478 ECASE(STYP_OVRFLO, "ovrflo"); 479 #undef ECASE 480 } 481 return createError(toString(std::move(E)) + ": " + SectionName + 482 " section with offset 0x" + 483 Twine::utohexstr(SectionOffset) + " and size 0x" + 484 Twine::utohexstr(SizeOfSection) + 485 " goes past the end of the file"); 486 } 487 return SectionStart; 488 } 489 490 bool XCOFFObjectFile::isSectionCompressed(DataRefImpl Sec) const { 491 return false; 492 } 493 494 bool XCOFFObjectFile::isSectionText(DataRefImpl Sec) const { 495 return getSectionFlags(Sec) & XCOFF::STYP_TEXT; 496 } 497 498 bool XCOFFObjectFile::isSectionData(DataRefImpl Sec) const { 499 uint32_t Flags = getSectionFlags(Sec); 500 return Flags & (XCOFF::STYP_DATA | XCOFF::STYP_TDATA); 501 } 502 503 bool XCOFFObjectFile::isSectionBSS(DataRefImpl Sec) const { 504 uint32_t Flags = getSectionFlags(Sec); 505 return Flags & (XCOFF::STYP_BSS | XCOFF::STYP_TBSS); 506 } 507 508 bool XCOFFObjectFile::isDebugSection(DataRefImpl Sec) const { 509 uint32_t Flags = getSectionFlags(Sec); 510 return Flags & (XCOFF::STYP_DEBUG | XCOFF::STYP_DWARF); 511 } 512 513 bool XCOFFObjectFile::isSectionVirtual(DataRefImpl Sec) const { 514 return is64Bit() ? toSection64(Sec)->FileOffsetToRawData == 0 515 : toSection32(Sec)->FileOffsetToRawData == 0; 516 } 517 518 relocation_iterator XCOFFObjectFile::section_rel_begin(DataRefImpl Sec) const { 519 DataRefImpl Ret; 520 if (is64Bit()) { 521 const XCOFFSectionHeader64 *SectionEntPtr = toSection64(Sec); 522 auto RelocationsOrErr = 523 relocations<XCOFFSectionHeader64, XCOFFRelocation64>(*SectionEntPtr); 524 if (Error E = RelocationsOrErr.takeError()) { 525 // TODO: report the error up the stack. 526 consumeError(std::move(E)); 527 return relocation_iterator(RelocationRef()); 528 } 529 Ret.p = reinterpret_cast<uintptr_t>(&*RelocationsOrErr.get().begin()); 530 } else { 531 const XCOFFSectionHeader32 *SectionEntPtr = toSection32(Sec); 532 auto RelocationsOrErr = 533 relocations<XCOFFSectionHeader32, XCOFFRelocation32>(*SectionEntPtr); 534 if (Error E = RelocationsOrErr.takeError()) { 535 // TODO: report the error up the stack. 536 consumeError(std::move(E)); 537 return relocation_iterator(RelocationRef()); 538 } 539 Ret.p = reinterpret_cast<uintptr_t>(&*RelocationsOrErr.get().begin()); 540 } 541 return relocation_iterator(RelocationRef(Ret, this)); 542 } 543 544 relocation_iterator XCOFFObjectFile::section_rel_end(DataRefImpl Sec) const { 545 DataRefImpl Ret; 546 if (is64Bit()) { 547 const XCOFFSectionHeader64 *SectionEntPtr = toSection64(Sec); 548 auto RelocationsOrErr = 549 relocations<XCOFFSectionHeader64, XCOFFRelocation64>(*SectionEntPtr); 550 if (Error E = RelocationsOrErr.takeError()) { 551 // TODO: report the error up the stack. 552 consumeError(std::move(E)); 553 return relocation_iterator(RelocationRef()); 554 } 555 Ret.p = reinterpret_cast<uintptr_t>(&*RelocationsOrErr.get().end()); 556 } else { 557 const XCOFFSectionHeader32 *SectionEntPtr = toSection32(Sec); 558 auto RelocationsOrErr = 559 relocations<XCOFFSectionHeader32, XCOFFRelocation32>(*SectionEntPtr); 560 if (Error E = RelocationsOrErr.takeError()) { 561 // TODO: report the error up the stack. 562 consumeError(std::move(E)); 563 return relocation_iterator(RelocationRef()); 564 } 565 Ret.p = reinterpret_cast<uintptr_t>(&*RelocationsOrErr.get().end()); 566 } 567 return relocation_iterator(RelocationRef(Ret, this)); 568 } 569 570 void XCOFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const { 571 if (is64Bit()) 572 Rel.p = reinterpret_cast<uintptr_t>(viewAs<XCOFFRelocation64>(Rel.p) + 1); 573 else 574 Rel.p = reinterpret_cast<uintptr_t>(viewAs<XCOFFRelocation32>(Rel.p) + 1); 575 } 576 577 uint64_t XCOFFObjectFile::getRelocationOffset(DataRefImpl Rel) const { 578 if (is64Bit()) { 579 const XCOFFRelocation64 *Reloc = viewAs<XCOFFRelocation64>(Rel.p); 580 const XCOFFSectionHeader64 *Sec64 = sectionHeaderTable64(); 581 const uint64_t RelocAddress = Reloc->VirtualAddress; 582 const uint16_t NumberOfSections = getNumberOfSections(); 583 for (uint16_t I = 0; I < NumberOfSections; ++I) { 584 // Find which section this relocation belongs to, and get the 585 // relocation offset relative to the start of the section. 586 if (Sec64->VirtualAddress <= RelocAddress && 587 RelocAddress < Sec64->VirtualAddress + Sec64->SectionSize) { 588 return RelocAddress - Sec64->VirtualAddress; 589 } 590 ++Sec64; 591 } 592 } else { 593 const XCOFFRelocation32 *Reloc = viewAs<XCOFFRelocation32>(Rel.p); 594 const XCOFFSectionHeader32 *Sec32 = sectionHeaderTable32(); 595 const uint32_t RelocAddress = Reloc->VirtualAddress; 596 const uint16_t NumberOfSections = getNumberOfSections(); 597 for (uint16_t I = 0; I < NumberOfSections; ++I) { 598 // Find which section this relocation belongs to, and get the 599 // relocation offset relative to the start of the section. 600 if (Sec32->VirtualAddress <= RelocAddress && 601 RelocAddress < Sec32->VirtualAddress + Sec32->SectionSize) { 602 return RelocAddress - Sec32->VirtualAddress; 603 } 604 ++Sec32; 605 } 606 } 607 return InvalidRelocOffset; 608 } 609 610 symbol_iterator XCOFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { 611 uint32_t Index; 612 if (is64Bit()) { 613 const XCOFFRelocation64 *Reloc = viewAs<XCOFFRelocation64>(Rel.p); 614 Index = Reloc->SymbolIndex; 615 616 if (Index >= getNumberOfSymbolTableEntries64()) 617 return symbol_end(); 618 } else { 619 const XCOFFRelocation32 *Reloc = viewAs<XCOFFRelocation32>(Rel.p); 620 Index = Reloc->SymbolIndex; 621 622 if (Index >= getLogicalNumberOfSymbolTableEntries32()) 623 return symbol_end(); 624 } 625 DataRefImpl SymDRI; 626 SymDRI.p = getSymbolEntryAddressByIndex(Index); 627 return symbol_iterator(SymbolRef(SymDRI, this)); 628 } 629 630 uint64_t XCOFFObjectFile::getRelocationType(DataRefImpl Rel) const { 631 if (is64Bit()) 632 return viewAs<XCOFFRelocation64>(Rel.p)->Type; 633 return viewAs<XCOFFRelocation32>(Rel.p)->Type; 634 } 635 636 void XCOFFObjectFile::getRelocationTypeName( 637 DataRefImpl Rel, SmallVectorImpl<char> &Result) const { 638 StringRef Res; 639 if (is64Bit()) { 640 const XCOFFRelocation64 *Reloc = viewAs<XCOFFRelocation64>(Rel.p); 641 Res = XCOFF::getRelocationTypeString(Reloc->Type); 642 } else { 643 const XCOFFRelocation32 *Reloc = viewAs<XCOFFRelocation32>(Rel.p); 644 Res = XCOFF::getRelocationTypeString(Reloc->Type); 645 } 646 Result.append(Res.begin(), Res.end()); 647 } 648 649 Expected<uint32_t> XCOFFObjectFile::getSymbolFlags(DataRefImpl Symb) const { 650 XCOFFSymbolRef XCOFFSym = toSymbolRef(Symb); 651 uint32_t Result = SymbolRef::SF_None; 652 653 if (XCOFFSym.getSectionNumber() == XCOFF::N_ABS) 654 Result |= SymbolRef::SF_Absolute; 655 656 XCOFF::StorageClass SC = XCOFFSym.getStorageClass(); 657 if (XCOFF::C_EXT == SC || XCOFF::C_WEAKEXT == SC) 658 Result |= SymbolRef::SF_Global; 659 660 if (XCOFF::C_WEAKEXT == SC) 661 Result |= SymbolRef::SF_Weak; 662 663 if (XCOFFSym.isCsectSymbol()) { 664 Expected<XCOFFCsectAuxRef> CsectAuxEntOrErr = 665 XCOFFSym.getXCOFFCsectAuxRef(); 666 if (CsectAuxEntOrErr) { 667 if (CsectAuxEntOrErr.get().getSymbolType() == XCOFF::XTY_CM) 668 Result |= SymbolRef::SF_Common; 669 } else 670 return CsectAuxEntOrErr.takeError(); 671 } 672 673 if (XCOFFSym.getSectionNumber() == XCOFF::N_UNDEF) 674 Result |= SymbolRef::SF_Undefined; 675 676 // There is no visibility in old 32 bit XCOFF object file interpret. 677 if (is64Bit() || (auxiliaryHeader32() && (auxiliaryHeader32()->getVersion() == 678 NEW_XCOFF_INTERPRET))) { 679 uint16_t SymType = XCOFFSym.getSymbolType(); 680 if ((SymType & VISIBILITY_MASK) == SYM_V_HIDDEN) 681 Result |= SymbolRef::SF_Hidden; 682 683 if ((SymType & VISIBILITY_MASK) == SYM_V_EXPORTED) 684 Result |= SymbolRef::SF_Exported; 685 } 686 return Result; 687 } 688 689 basic_symbol_iterator XCOFFObjectFile::symbol_begin() const { 690 DataRefImpl SymDRI; 691 SymDRI.p = reinterpret_cast<uintptr_t>(SymbolTblPtr); 692 return basic_symbol_iterator(SymbolRef(SymDRI, this)); 693 } 694 695 basic_symbol_iterator XCOFFObjectFile::symbol_end() const { 696 DataRefImpl SymDRI; 697 const uint32_t NumberOfSymbolTableEntries = getNumberOfSymbolTableEntries(); 698 SymDRI.p = getSymbolEntryAddressByIndex(NumberOfSymbolTableEntries); 699 return basic_symbol_iterator(SymbolRef(SymDRI, this)); 700 } 701 702 XCOFFObjectFile::xcoff_symbol_iterator_range XCOFFObjectFile::symbols() const { 703 return xcoff_symbol_iterator_range(symbol_begin(), symbol_end()); 704 } 705 706 section_iterator XCOFFObjectFile::section_begin() const { 707 DataRefImpl DRI; 708 DRI.p = getSectionHeaderTableAddress(); 709 return section_iterator(SectionRef(DRI, this)); 710 } 711 712 section_iterator XCOFFObjectFile::section_end() const { 713 DataRefImpl DRI; 714 DRI.p = getWithOffset(getSectionHeaderTableAddress(), 715 getNumberOfSections() * getSectionHeaderSize()); 716 return section_iterator(SectionRef(DRI, this)); 717 } 718 719 uint8_t XCOFFObjectFile::getBytesInAddress() const { return is64Bit() ? 8 : 4; } 720 721 StringRef XCOFFObjectFile::getFileFormatName() const { 722 return is64Bit() ? "aix5coff64-rs6000" : "aixcoff-rs6000"; 723 } 724 725 Triple::ArchType XCOFFObjectFile::getArch() const { 726 return is64Bit() ? Triple::ppc64 : Triple::ppc; 727 } 728 729 Expected<SubtargetFeatures> XCOFFObjectFile::getFeatures() const { 730 return SubtargetFeatures(); 731 } 732 733 bool XCOFFObjectFile::isRelocatableObject() const { 734 if (is64Bit()) 735 return !(fileHeader64()->Flags & NoRelMask); 736 return !(fileHeader32()->Flags & NoRelMask); 737 } 738 739 Expected<uint64_t> XCOFFObjectFile::getStartAddress() const { 740 // TODO FIXME Should get from auxiliary_header->o_entry when support for the 741 // auxiliary_header is added. 742 return 0; 743 } 744 745 StringRef XCOFFObjectFile::mapDebugSectionName(StringRef Name) const { 746 return StringSwitch<StringRef>(Name) 747 .Case("dwinfo", "debug_info") 748 .Case("dwline", "debug_line") 749 .Case("dwpbnms", "debug_pubnames") 750 .Case("dwpbtyp", "debug_pubtypes") 751 .Case("dwarnge", "debug_aranges") 752 .Case("dwabrev", "debug_abbrev") 753 .Case("dwstr", "debug_str") 754 .Case("dwrnges", "debug_ranges") 755 .Case("dwloc", "debug_loc") 756 .Case("dwframe", "debug_frame") 757 .Case("dwmac", "debug_macinfo") 758 .Default(Name); 759 } 760 761 size_t XCOFFObjectFile::getFileHeaderSize() const { 762 return is64Bit() ? sizeof(XCOFFFileHeader64) : sizeof(XCOFFFileHeader32); 763 } 764 765 size_t XCOFFObjectFile::getSectionHeaderSize() const { 766 return is64Bit() ? sizeof(XCOFFSectionHeader64) : 767 sizeof(XCOFFSectionHeader32); 768 } 769 770 bool XCOFFObjectFile::is64Bit() const { 771 return Binary::ID_XCOFF64 == getType(); 772 } 773 774 Expected<StringRef> XCOFFObjectFile::getRawData(const char *Start, 775 uint64_t Size, 776 StringRef Name) const { 777 uintptr_t StartPtr = reinterpret_cast<uintptr_t>(Start); 778 // TODO: this path is untested. 779 if (Error E = Binary::checkOffset(Data, StartPtr, Size)) 780 return createError(toString(std::move(E)) + ": " + Name.data() + 781 " data with offset 0x" + Twine::utohexstr(StartPtr) + 782 " and size 0x" + Twine::utohexstr(Size) + 783 " goes past the end of the file"); 784 return StringRef(Start, Size); 785 } 786 787 uint16_t XCOFFObjectFile::getMagic() const { 788 return is64Bit() ? fileHeader64()->Magic : fileHeader32()->Magic; 789 } 790 791 Expected<DataRefImpl> XCOFFObjectFile::getSectionByNum(int16_t Num) const { 792 if (Num <= 0 || Num > getNumberOfSections()) 793 return createStringError(object_error::invalid_section_index, 794 "the section index (" + Twine(Num) + 795 ") is invalid"); 796 797 DataRefImpl DRI; 798 DRI.p = getWithOffset(getSectionHeaderTableAddress(), 799 getSectionHeaderSize() * (Num - 1)); 800 return DRI; 801 } 802 803 DataRefImpl 804 XCOFFObjectFile::getSectionByType(XCOFF::SectionTypeFlags SectType) const { 805 DataRefImpl DRI; 806 auto GetSectionAddr = [&](const auto &Sections) -> uintptr_t { 807 for (const auto &Sec : Sections) 808 if (Sec.getSectionType() == SectType) 809 return reinterpret_cast<uintptr_t>(&Sec); 810 return uintptr_t(0); 811 }; 812 if (is64Bit()) 813 DRI.p = GetSectionAddr(sections64()); 814 else 815 DRI.p = GetSectionAddr(sections32()); 816 return DRI; 817 } 818 819 Expected<StringRef> 820 XCOFFObjectFile::getSymbolSectionName(XCOFFSymbolRef SymEntPtr) const { 821 const int16_t SectionNum = SymEntPtr.getSectionNumber(); 822 823 switch (SectionNum) { 824 case XCOFF::N_DEBUG: 825 return "N_DEBUG"; 826 case XCOFF::N_ABS: 827 return "N_ABS"; 828 case XCOFF::N_UNDEF: 829 return "N_UNDEF"; 830 default: 831 Expected<DataRefImpl> SecRef = getSectionByNum(SectionNum); 832 if (SecRef) 833 return generateXCOFFFixedNameStringRef( 834 getSectionNameInternal(SecRef.get())); 835 return SecRef.takeError(); 836 } 837 } 838 839 unsigned XCOFFObjectFile::getSymbolSectionID(SymbolRef Sym) const { 840 XCOFFSymbolRef XCOFFSymRef(Sym.getRawDataRefImpl(), this); 841 return XCOFFSymRef.getSectionNumber(); 842 } 843 844 bool XCOFFObjectFile::isReservedSectionNumber(int16_t SectionNumber) { 845 return (SectionNumber <= 0 && SectionNumber >= -2); 846 } 847 848 uint16_t XCOFFObjectFile::getNumberOfSections() const { 849 return is64Bit() ? fileHeader64()->NumberOfSections 850 : fileHeader32()->NumberOfSections; 851 } 852 853 int32_t XCOFFObjectFile::getTimeStamp() const { 854 return is64Bit() ? fileHeader64()->TimeStamp : fileHeader32()->TimeStamp; 855 } 856 857 uint16_t XCOFFObjectFile::getOptionalHeaderSize() const { 858 return is64Bit() ? fileHeader64()->AuxHeaderSize 859 : fileHeader32()->AuxHeaderSize; 860 } 861 862 uint32_t XCOFFObjectFile::getSymbolTableOffset32() const { 863 return fileHeader32()->SymbolTableOffset; 864 } 865 866 int32_t XCOFFObjectFile::getRawNumberOfSymbolTableEntries32() const { 867 // As far as symbol table size is concerned, if this field is negative it is 868 // to be treated as a 0. However since this field is also used for printing we 869 // don't want to truncate any negative values. 870 return fileHeader32()->NumberOfSymTableEntries; 871 } 872 873 uint32_t XCOFFObjectFile::getLogicalNumberOfSymbolTableEntries32() const { 874 return (fileHeader32()->NumberOfSymTableEntries >= 0 875 ? fileHeader32()->NumberOfSymTableEntries 876 : 0); 877 } 878 879 uint64_t XCOFFObjectFile::getSymbolTableOffset64() const { 880 return fileHeader64()->SymbolTableOffset; 881 } 882 883 uint32_t XCOFFObjectFile::getNumberOfSymbolTableEntries64() const { 884 return fileHeader64()->NumberOfSymTableEntries; 885 } 886 887 uint32_t XCOFFObjectFile::getNumberOfSymbolTableEntries() const { 888 return is64Bit() ? getNumberOfSymbolTableEntries64() 889 : getLogicalNumberOfSymbolTableEntries32(); 890 } 891 892 uintptr_t XCOFFObjectFile::getEndOfSymbolTableAddress() const { 893 const uint32_t NumberOfSymTableEntries = getNumberOfSymbolTableEntries(); 894 return getWithOffset(reinterpret_cast<uintptr_t>(SymbolTblPtr), 895 XCOFF::SymbolTableEntrySize * NumberOfSymTableEntries); 896 } 897 898 void XCOFFObjectFile::checkSymbolEntryPointer(uintptr_t SymbolEntPtr) const { 899 if (SymbolEntPtr < reinterpret_cast<uintptr_t>(SymbolTblPtr)) 900 report_fatal_error("Symbol table entry is outside of symbol table."); 901 902 if (SymbolEntPtr >= getEndOfSymbolTableAddress()) 903 report_fatal_error("Symbol table entry is outside of symbol table."); 904 905 ptrdiff_t Offset = reinterpret_cast<const char *>(SymbolEntPtr) - 906 reinterpret_cast<const char *>(SymbolTblPtr); 907 908 if (Offset % XCOFF::SymbolTableEntrySize != 0) 909 report_fatal_error( 910 "Symbol table entry position is not valid inside of symbol table."); 911 } 912 913 uint32_t XCOFFObjectFile::getSymbolIndex(uintptr_t SymbolEntPtr) const { 914 return (reinterpret_cast<const char *>(SymbolEntPtr) - 915 reinterpret_cast<const char *>(SymbolTblPtr)) / 916 XCOFF::SymbolTableEntrySize; 917 } 918 919 uint64_t XCOFFObjectFile::getSymbolSize(DataRefImpl Symb) const { 920 uint64_t Result = 0; 921 XCOFFSymbolRef XCOFFSym = toSymbolRef(Symb); 922 if (XCOFFSym.isCsectSymbol()) { 923 Expected<XCOFFCsectAuxRef> CsectAuxRefOrError = 924 XCOFFSym.getXCOFFCsectAuxRef(); 925 if (!CsectAuxRefOrError) 926 // TODO: report the error up the stack. 927 consumeError(CsectAuxRefOrError.takeError()); 928 else { 929 XCOFFCsectAuxRef CsectAuxRef = CsectAuxRefOrError.get(); 930 uint8_t SymType = CsectAuxRef.getSymbolType(); 931 if (SymType == XCOFF::XTY_SD || SymType == XCOFF::XTY_CM) 932 Result = CsectAuxRef.getSectionOrLength(); 933 } 934 } 935 return Result; 936 } 937 938 uintptr_t XCOFFObjectFile::getSymbolEntryAddressByIndex(uint32_t Index) const { 939 return getAdvancedSymbolEntryAddress( 940 reinterpret_cast<uintptr_t>(getPointerToSymbolTable()), Index); 941 } 942 943 Expected<StringRef> 944 XCOFFObjectFile::getSymbolNameByIndex(uint32_t Index) const { 945 const uint32_t NumberOfSymTableEntries = getNumberOfSymbolTableEntries(); 946 947 if (Index >= NumberOfSymTableEntries) 948 return createError("symbol index " + Twine(Index) + 949 " exceeds symbol count " + 950 Twine(NumberOfSymTableEntries)); 951 952 DataRefImpl SymDRI; 953 SymDRI.p = getSymbolEntryAddressByIndex(Index); 954 return getSymbolName(SymDRI); 955 } 956 957 uint16_t XCOFFObjectFile::getFlags() const { 958 return is64Bit() ? fileHeader64()->Flags : fileHeader32()->Flags; 959 } 960 961 const char *XCOFFObjectFile::getSectionNameInternal(DataRefImpl Sec) const { 962 return is64Bit() ? toSection64(Sec)->Name : toSection32(Sec)->Name; 963 } 964 965 uintptr_t XCOFFObjectFile::getSectionHeaderTableAddress() const { 966 return reinterpret_cast<uintptr_t>(SectionHeaderTable); 967 } 968 969 int32_t XCOFFObjectFile::getSectionFlags(DataRefImpl Sec) const { 970 return is64Bit() ? toSection64(Sec)->Flags : toSection32(Sec)->Flags; 971 } 972 973 XCOFFObjectFile::XCOFFObjectFile(unsigned int Type, MemoryBufferRef Object) 974 : ObjectFile(Type, Object) { 975 assert(Type == Binary::ID_XCOFF32 || Type == Binary::ID_XCOFF64); 976 } 977 978 ArrayRef<XCOFFSectionHeader64> XCOFFObjectFile::sections64() const { 979 assert(is64Bit() && "64-bit interface called for non 64-bit file."); 980 const XCOFFSectionHeader64 *TablePtr = sectionHeaderTable64(); 981 return ArrayRef<XCOFFSectionHeader64>(TablePtr, 982 TablePtr + getNumberOfSections()); 983 } 984 985 ArrayRef<XCOFFSectionHeader32> XCOFFObjectFile::sections32() const { 986 assert(!is64Bit() && "32-bit interface called for non 32-bit file."); 987 const XCOFFSectionHeader32 *TablePtr = sectionHeaderTable32(); 988 return ArrayRef<XCOFFSectionHeader32>(TablePtr, 989 TablePtr + getNumberOfSections()); 990 } 991 992 // In an XCOFF32 file, when the field value is 65535, then an STYP_OVRFLO 993 // section header contains the actual count of relocation entries in the s_paddr 994 // field. STYP_OVRFLO headers contain the section index of their corresponding 995 // sections as their raw "NumberOfRelocations" field value. 996 template <typename T> 997 Expected<uint32_t> XCOFFObjectFile::getNumberOfRelocationEntries( 998 const XCOFFSectionHeader<T> &Sec) const { 999 const T &Section = static_cast<const T &>(Sec); 1000 if (is64Bit()) 1001 return Section.NumberOfRelocations; 1002 1003 uint16_t SectionIndex = &Section - sectionHeaderTable<T>() + 1; 1004 if (Section.NumberOfRelocations < XCOFF::RelocOverflow) 1005 return Section.NumberOfRelocations; 1006 for (const auto &Sec : sections32()) { 1007 if (Sec.Flags == XCOFF::STYP_OVRFLO && 1008 Sec.NumberOfRelocations == SectionIndex) 1009 return Sec.PhysicalAddress; 1010 } 1011 return errorCodeToError(object_error::parse_failed); 1012 } 1013 1014 template <typename Shdr, typename Reloc> 1015 Expected<ArrayRef<Reloc>> XCOFFObjectFile::relocations(const Shdr &Sec) const { 1016 uintptr_t RelocAddr = getWithOffset(reinterpret_cast<uintptr_t>(FileHeader), 1017 Sec.FileOffsetToRelocationInfo); 1018 auto NumRelocEntriesOrErr = getNumberOfRelocationEntries(Sec); 1019 if (Error E = NumRelocEntriesOrErr.takeError()) 1020 return std::move(E); 1021 1022 uint32_t NumRelocEntries = NumRelocEntriesOrErr.get(); 1023 static_assert((sizeof(Reloc) == XCOFF::RelocationSerializationSize64 || 1024 sizeof(Reloc) == XCOFF::RelocationSerializationSize32), 1025 "Relocation structure is incorrect"); 1026 auto RelocationOrErr = 1027 getObject<Reloc>(Data, reinterpret_cast<void *>(RelocAddr), 1028 NumRelocEntries * sizeof(Reloc)); 1029 if (!RelocationOrErr) 1030 return createError( 1031 toString(RelocationOrErr.takeError()) + ": relocations with offset 0x" + 1032 Twine::utohexstr(Sec.FileOffsetToRelocationInfo) + " and size 0x" + 1033 Twine::utohexstr(NumRelocEntries * sizeof(Reloc)) + 1034 " go past the end of the file"); 1035 1036 const Reloc *StartReloc = RelocationOrErr.get(); 1037 1038 return ArrayRef<Reloc>(StartReloc, StartReloc + NumRelocEntries); 1039 } 1040 1041 template <typename ExceptEnt> 1042 Expected<ArrayRef<ExceptEnt>> XCOFFObjectFile::getExceptionEntries() const { 1043 assert((is64Bit() && sizeof(ExceptEnt) == sizeof(ExceptionSectionEntry64)) || 1044 (!is64Bit() && sizeof(ExceptEnt) == sizeof(ExceptionSectionEntry32))); 1045 1046 Expected<uintptr_t> ExceptionSectOrErr = 1047 getSectionFileOffsetToRawData(XCOFF::STYP_EXCEPT); 1048 if (!ExceptionSectOrErr) 1049 return ExceptionSectOrErr.takeError(); 1050 1051 DataRefImpl DRI = getSectionByType(XCOFF::STYP_EXCEPT); 1052 if (DRI.p == 0) 1053 return ArrayRef<ExceptEnt>(); 1054 1055 ExceptEnt *ExceptEntStart = 1056 reinterpret_cast<ExceptEnt *>(*ExceptionSectOrErr); 1057 return ArrayRef<ExceptEnt>( 1058 ExceptEntStart, ExceptEntStart + getSectionSize(DRI) / sizeof(ExceptEnt)); 1059 } 1060 1061 template Expected<ArrayRef<ExceptionSectionEntry32>> 1062 XCOFFObjectFile::getExceptionEntries() const; 1063 template Expected<ArrayRef<ExceptionSectionEntry64>> 1064 XCOFFObjectFile::getExceptionEntries() const; 1065 1066 Expected<XCOFFStringTable> 1067 XCOFFObjectFile::parseStringTable(const XCOFFObjectFile *Obj, uint64_t Offset) { 1068 // If there is a string table, then the buffer must contain at least 4 bytes 1069 // for the string table's size. Not having a string table is not an error. 1070 if (Error E = Binary::checkOffset( 1071 Obj->Data, reinterpret_cast<uintptr_t>(Obj->base() + Offset), 4)) { 1072 consumeError(std::move(E)); 1073 return XCOFFStringTable{0, nullptr}; 1074 } 1075 1076 // Read the size out of the buffer. 1077 uint32_t Size = support::endian::read32be(Obj->base() + Offset); 1078 1079 // If the size is less then 4, then the string table is just a size and no 1080 // string data. 1081 if (Size <= 4) 1082 return XCOFFStringTable{4, nullptr}; 1083 1084 auto StringTableOrErr = 1085 getObject<char>(Obj->Data, Obj->base() + Offset, Size); 1086 if (!StringTableOrErr) 1087 return createError(toString(StringTableOrErr.takeError()) + 1088 ": string table with offset 0x" + 1089 Twine::utohexstr(Offset) + " and size 0x" + 1090 Twine::utohexstr(Size) + 1091 " goes past the end of the file"); 1092 1093 const char *StringTablePtr = StringTableOrErr.get(); 1094 if (StringTablePtr[Size - 1] != '\0') 1095 return errorCodeToError(object_error::string_table_non_null_end); 1096 1097 return XCOFFStringTable{Size, StringTablePtr}; 1098 } 1099 1100 // This function returns the import file table. Each entry in the import file 1101 // table consists of: "path_name\0base_name\0archive_member_name\0". 1102 Expected<StringRef> XCOFFObjectFile::getImportFileTable() const { 1103 Expected<uintptr_t> LoaderSectionAddrOrError = 1104 getSectionFileOffsetToRawData(XCOFF::STYP_LOADER); 1105 if (!LoaderSectionAddrOrError) 1106 return LoaderSectionAddrOrError.takeError(); 1107 1108 uintptr_t LoaderSectionAddr = LoaderSectionAddrOrError.get(); 1109 if (!LoaderSectionAddr) 1110 return StringRef(); 1111 1112 uint64_t OffsetToImportFileTable = 0; 1113 uint64_t LengthOfImportFileTable = 0; 1114 if (is64Bit()) { 1115 const LoaderSectionHeader64 *LoaderSec64 = 1116 viewAs<LoaderSectionHeader64>(LoaderSectionAddr); 1117 OffsetToImportFileTable = LoaderSec64->OffsetToImpid; 1118 LengthOfImportFileTable = LoaderSec64->LengthOfImpidStrTbl; 1119 } else { 1120 const LoaderSectionHeader32 *LoaderSec32 = 1121 viewAs<LoaderSectionHeader32>(LoaderSectionAddr); 1122 OffsetToImportFileTable = LoaderSec32->OffsetToImpid; 1123 LengthOfImportFileTable = LoaderSec32->LengthOfImpidStrTbl; 1124 } 1125 1126 auto ImportTableOrErr = getObject<char>( 1127 Data, 1128 reinterpret_cast<void *>(LoaderSectionAddr + OffsetToImportFileTable), 1129 LengthOfImportFileTable); 1130 if (!ImportTableOrErr) 1131 return createError( 1132 toString(ImportTableOrErr.takeError()) + 1133 ": import file table with offset 0x" + 1134 Twine::utohexstr(LoaderSectionAddr + OffsetToImportFileTable) + 1135 " and size 0x" + Twine::utohexstr(LengthOfImportFileTable) + 1136 " goes past the end of the file"); 1137 1138 const char *ImportTablePtr = ImportTableOrErr.get(); 1139 if (ImportTablePtr[LengthOfImportFileTable - 1] != '\0') 1140 return createError( 1141 ": import file name table with offset 0x" + 1142 Twine::utohexstr(LoaderSectionAddr + OffsetToImportFileTable) + 1143 " and size 0x" + Twine::utohexstr(LengthOfImportFileTable) + 1144 " must end with a null terminator"); 1145 1146 return StringRef(ImportTablePtr, LengthOfImportFileTable); 1147 } 1148 1149 Expected<std::unique_ptr<XCOFFObjectFile>> 1150 XCOFFObjectFile::create(unsigned Type, MemoryBufferRef MBR) { 1151 // Can't use std::make_unique because of the private constructor. 1152 std::unique_ptr<XCOFFObjectFile> Obj; 1153 Obj.reset(new XCOFFObjectFile(Type, MBR)); 1154 1155 uint64_t CurOffset = 0; 1156 const auto *Base = Obj->base(); 1157 MemoryBufferRef Data = Obj->Data; 1158 1159 // Parse file header. 1160 auto FileHeaderOrErr = 1161 getObject<void>(Data, Base + CurOffset, Obj->getFileHeaderSize()); 1162 if (Error E = FileHeaderOrErr.takeError()) 1163 return std::move(E); 1164 Obj->FileHeader = FileHeaderOrErr.get(); 1165 1166 CurOffset += Obj->getFileHeaderSize(); 1167 1168 if (Obj->getOptionalHeaderSize()) { 1169 auto AuxiliaryHeaderOrErr = 1170 getObject<void>(Data, Base + CurOffset, Obj->getOptionalHeaderSize()); 1171 if (Error E = AuxiliaryHeaderOrErr.takeError()) 1172 return std::move(E); 1173 Obj->AuxiliaryHeader = AuxiliaryHeaderOrErr.get(); 1174 } 1175 1176 CurOffset += Obj->getOptionalHeaderSize(); 1177 1178 // Parse the section header table if it is present. 1179 if (Obj->getNumberOfSections()) { 1180 uint64_t SectionHeadersSize = 1181 Obj->getNumberOfSections() * Obj->getSectionHeaderSize(); 1182 auto SecHeadersOrErr = 1183 getObject<void>(Data, Base + CurOffset, SectionHeadersSize); 1184 if (!SecHeadersOrErr) 1185 return createError(toString(SecHeadersOrErr.takeError()) + 1186 ": section headers with offset 0x" + 1187 Twine::utohexstr(CurOffset) + " and size 0x" + 1188 Twine::utohexstr(SectionHeadersSize) + 1189 " go past the end of the file"); 1190 1191 Obj->SectionHeaderTable = SecHeadersOrErr.get(); 1192 } 1193 1194 const uint32_t NumberOfSymbolTableEntries = 1195 Obj->getNumberOfSymbolTableEntries(); 1196 1197 // If there is no symbol table we are done parsing the memory buffer. 1198 if (NumberOfSymbolTableEntries == 0) 1199 return std::move(Obj); 1200 1201 // Parse symbol table. 1202 CurOffset = Obj->is64Bit() ? Obj->getSymbolTableOffset64() 1203 : Obj->getSymbolTableOffset32(); 1204 const uint64_t SymbolTableSize = 1205 static_cast<uint64_t>(XCOFF::SymbolTableEntrySize) * 1206 NumberOfSymbolTableEntries; 1207 auto SymTableOrErr = 1208 getObject<void *>(Data, Base + CurOffset, SymbolTableSize); 1209 if (!SymTableOrErr) 1210 return createError( 1211 toString(SymTableOrErr.takeError()) + ": symbol table with offset 0x" + 1212 Twine::utohexstr(CurOffset) + " and size 0x" + 1213 Twine::utohexstr(SymbolTableSize) + " goes past the end of the file"); 1214 1215 Obj->SymbolTblPtr = SymTableOrErr.get(); 1216 CurOffset += SymbolTableSize; 1217 1218 // Parse String table. 1219 Expected<XCOFFStringTable> StringTableOrErr = 1220 parseStringTable(Obj.get(), CurOffset); 1221 if (Error E = StringTableOrErr.takeError()) 1222 return std::move(E); 1223 Obj->StringTable = StringTableOrErr.get(); 1224 1225 return std::move(Obj); 1226 } 1227 1228 Expected<std::unique_ptr<ObjectFile>> 1229 ObjectFile::createXCOFFObjectFile(MemoryBufferRef MemBufRef, 1230 unsigned FileType) { 1231 return XCOFFObjectFile::create(FileType, MemBufRef); 1232 } 1233 1234 std::optional<StringRef> XCOFFObjectFile::tryGetCPUName() const { 1235 return StringRef("future"); 1236 } 1237 1238 Expected<bool> XCOFFSymbolRef::isFunction() const { 1239 if (!isCsectSymbol()) 1240 return false; 1241 1242 if (getSymbolType() & FunctionSym) 1243 return true; 1244 1245 Expected<XCOFFCsectAuxRef> ExpCsectAuxEnt = getXCOFFCsectAuxRef(); 1246 if (!ExpCsectAuxEnt) 1247 return ExpCsectAuxEnt.takeError(); 1248 1249 const XCOFFCsectAuxRef CsectAuxRef = ExpCsectAuxEnt.get(); 1250 1251 if (CsectAuxRef.getStorageMappingClass() != XCOFF::XMC_PR && 1252 CsectAuxRef.getStorageMappingClass() != XCOFF::XMC_GL) 1253 return false; 1254 1255 // A function definition should not be a common type symbol or an external 1256 // symbol. 1257 if (CsectAuxRef.getSymbolType() == XCOFF::XTY_CM || 1258 CsectAuxRef.getSymbolType() == XCOFF::XTY_ER) 1259 return false; 1260 1261 // If the next symbol is an XTY_LD type symbol with the same address, this 1262 // XTY_SD symbol is not a function. Otherwise this is a function symbol for 1263 // -ffunction-sections. 1264 if (CsectAuxRef.getSymbolType() == XCOFF::XTY_SD) { 1265 // If this is a csect with size 0, it won't be a function definition. 1266 // This is used to work around the fact that LLVM always generates below 1267 // symbol for -ffunction-sections: 1268 // m 0x00000000 .text 1 unamex **No Symbol** 1269 // a4 0x00000000 0 0 SD PR 0 0 1270 // FIXME: remove or replace this meaningless symbol. 1271 if (getSize() == 0) 1272 return false; 1273 1274 xcoff_symbol_iterator NextIt(this); 1275 // If this is the last main symbol table entry, there won't be an XTY_LD 1276 // type symbol below. 1277 if (++NextIt == getObject()->symbol_end()) 1278 return true; 1279 1280 if (cantFail(getAddress()) != cantFail(NextIt->getAddress())) 1281 return true; 1282 1283 // Check next symbol is XTY_LD. If so, this symbol is not a function. 1284 Expected<XCOFFCsectAuxRef> NextCsectAuxEnt = NextIt->getXCOFFCsectAuxRef(); 1285 if (!NextCsectAuxEnt) 1286 return NextCsectAuxEnt.takeError(); 1287 1288 if (NextCsectAuxEnt.get().getSymbolType() == XCOFF::XTY_LD) 1289 return false; 1290 1291 return true; 1292 } 1293 1294 if (CsectAuxRef.getSymbolType() == XCOFF::XTY_LD) 1295 return true; 1296 1297 return createError( 1298 "symbol csect aux entry with index " + 1299 Twine(getObject()->getSymbolIndex(CsectAuxRef.getEntryAddress())) + 1300 " has invalid symbol type " + 1301 Twine::utohexstr(CsectAuxRef.getSymbolType())); 1302 } 1303 1304 bool XCOFFSymbolRef::isCsectSymbol() const { 1305 XCOFF::StorageClass SC = getStorageClass(); 1306 return (SC == XCOFF::C_EXT || SC == XCOFF::C_WEAKEXT || 1307 SC == XCOFF::C_HIDEXT); 1308 } 1309 1310 Expected<XCOFFCsectAuxRef> XCOFFSymbolRef::getXCOFFCsectAuxRef() const { 1311 assert(isCsectSymbol() && 1312 "Calling csect symbol interface with a non-csect symbol."); 1313 1314 uint8_t NumberOfAuxEntries = getNumberOfAuxEntries(); 1315 1316 Expected<StringRef> NameOrErr = getName(); 1317 if (auto Err = NameOrErr.takeError()) 1318 return std::move(Err); 1319 1320 uint32_t SymbolIdx = getObject()->getSymbolIndex(getEntryAddress()); 1321 if (!NumberOfAuxEntries) { 1322 return createError("csect symbol \"" + *NameOrErr + "\" with index " + 1323 Twine(SymbolIdx) + " contains no auxiliary entry"); 1324 } 1325 1326 if (!getObject()->is64Bit()) { 1327 // In XCOFF32, the csect auxilliary entry is always the last auxiliary 1328 // entry for the symbol. 1329 uintptr_t AuxAddr = XCOFFObjectFile::getAdvancedSymbolEntryAddress( 1330 getEntryAddress(), NumberOfAuxEntries); 1331 return XCOFFCsectAuxRef(viewAs<XCOFFCsectAuxEnt32>(AuxAddr)); 1332 } 1333 1334 // XCOFF64 uses SymbolAuxType to identify the auxiliary entry type. 1335 // We need to iterate through all the auxiliary entries to find it. 1336 for (uint8_t Index = NumberOfAuxEntries; Index > 0; --Index) { 1337 uintptr_t AuxAddr = XCOFFObjectFile::getAdvancedSymbolEntryAddress( 1338 getEntryAddress(), Index); 1339 if (*getObject()->getSymbolAuxType(AuxAddr) == 1340 XCOFF::SymbolAuxType::AUX_CSECT) { 1341 #ifndef NDEBUG 1342 getObject()->checkSymbolEntryPointer(AuxAddr); 1343 #endif 1344 return XCOFFCsectAuxRef(viewAs<XCOFFCsectAuxEnt64>(AuxAddr)); 1345 } 1346 } 1347 1348 return createError( 1349 "a csect auxiliary entry has not been found for symbol \"" + *NameOrErr + 1350 "\" with index " + Twine(SymbolIdx)); 1351 } 1352 1353 Expected<StringRef> XCOFFSymbolRef::getName() const { 1354 // A storage class value with the high-order bit on indicates that the name is 1355 // a symbolic debugger stabstring. 1356 if (getStorageClass() & 0x80) 1357 return StringRef("Unimplemented Debug Name"); 1358 1359 if (!getObject()->is64Bit()) { 1360 if (getSymbol32()->NameInStrTbl.Magic != 1361 XCOFFSymbolRef::NAME_IN_STR_TBL_MAGIC) 1362 return generateXCOFFFixedNameStringRef(getSymbol32()->SymbolName); 1363 1364 return getObject()->getStringTableEntry(getSymbol32()->NameInStrTbl.Offset); 1365 } 1366 1367 return getObject()->getStringTableEntry(getSymbol64()->Offset); 1368 } 1369 1370 // Explictly instantiate template classes. 1371 template struct XCOFFSectionHeader<XCOFFSectionHeader32>; 1372 template struct XCOFFSectionHeader<XCOFFSectionHeader64>; 1373 1374 template struct XCOFFRelocation<llvm::support::ubig32_t>; 1375 template struct XCOFFRelocation<llvm::support::ubig64_t>; 1376 1377 template llvm::Expected<llvm::ArrayRef<llvm::object::XCOFFRelocation64>> 1378 llvm::object::XCOFFObjectFile::relocations<llvm::object::XCOFFSectionHeader64, 1379 llvm::object::XCOFFRelocation64>( 1380 llvm::object::XCOFFSectionHeader64 const &) const; 1381 template llvm::Expected<llvm::ArrayRef<llvm::object::XCOFFRelocation32>> 1382 llvm::object::XCOFFObjectFile::relocations<llvm::object::XCOFFSectionHeader32, 1383 llvm::object::XCOFFRelocation32>( 1384 llvm::object::XCOFFSectionHeader32 const &) const; 1385 1386 bool doesXCOFFTracebackTableBegin(ArrayRef<uint8_t> Bytes) { 1387 if (Bytes.size() < 4) 1388 return false; 1389 1390 return support::endian::read32be(Bytes.data()) == 0; 1391 } 1392 1393 #define GETVALUEWITHMASK(X) (Data & (TracebackTable::X)) 1394 #define GETVALUEWITHMASKSHIFT(X, S) \ 1395 ((Data & (TracebackTable::X)) >> (TracebackTable::S)) 1396 1397 Expected<TBVectorExt> TBVectorExt::create(StringRef TBvectorStrRef) { 1398 Error Err = Error::success(); 1399 TBVectorExt TBTVecExt(TBvectorStrRef, Err); 1400 if (Err) 1401 return std::move(Err); 1402 return TBTVecExt; 1403 } 1404 1405 TBVectorExt::TBVectorExt(StringRef TBvectorStrRef, Error &Err) { 1406 const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(TBvectorStrRef.data()); 1407 Data = support::endian::read16be(Ptr); 1408 uint32_t VecParmsTypeValue = support::endian::read32be(Ptr + 2); 1409 unsigned ParmsNum = 1410 GETVALUEWITHMASKSHIFT(NumberOfVectorParmsMask, NumberOfVectorParmsShift); 1411 1412 ErrorAsOutParameter EAO(&Err); 1413 Expected<SmallString<32>> VecParmsTypeOrError = 1414 parseVectorParmsType(VecParmsTypeValue, ParmsNum); 1415 if (!VecParmsTypeOrError) 1416 Err = VecParmsTypeOrError.takeError(); 1417 else 1418 VecParmsInfo = VecParmsTypeOrError.get(); 1419 } 1420 1421 uint8_t TBVectorExt::getNumberOfVRSaved() const { 1422 return GETVALUEWITHMASKSHIFT(NumberOfVRSavedMask, NumberOfVRSavedShift); 1423 } 1424 1425 bool TBVectorExt::isVRSavedOnStack() const { 1426 return GETVALUEWITHMASK(IsVRSavedOnStackMask); 1427 } 1428 1429 bool TBVectorExt::hasVarArgs() const { 1430 return GETVALUEWITHMASK(HasVarArgsMask); 1431 } 1432 1433 uint8_t TBVectorExt::getNumberOfVectorParms() const { 1434 return GETVALUEWITHMASKSHIFT(NumberOfVectorParmsMask, 1435 NumberOfVectorParmsShift); 1436 } 1437 1438 bool TBVectorExt::hasVMXInstruction() const { 1439 return GETVALUEWITHMASK(HasVMXInstructionMask); 1440 } 1441 #undef GETVALUEWITHMASK 1442 #undef GETVALUEWITHMASKSHIFT 1443 1444 Expected<XCOFFTracebackTable> 1445 XCOFFTracebackTable::create(const uint8_t *Ptr, uint64_t &Size, bool Is64Bit) { 1446 Error Err = Error::success(); 1447 XCOFFTracebackTable TBT(Ptr, Size, Err, Is64Bit); 1448 if (Err) 1449 return std::move(Err); 1450 return TBT; 1451 } 1452 1453 XCOFFTracebackTable::XCOFFTracebackTable(const uint8_t *Ptr, uint64_t &Size, 1454 Error &Err, bool Is64Bit) 1455 : TBPtr(Ptr), Is64BitObj(Is64Bit) { 1456 ErrorAsOutParameter EAO(&Err); 1457 DataExtractor DE(ArrayRef<uint8_t>(Ptr, Size), /*IsLittleEndian=*/false, 1458 /*AddressSize=*/0); 1459 DataExtractor::Cursor Cur(/*Offset=*/0); 1460 1461 // Skip 8 bytes of mandatory fields. 1462 DE.getU64(Cur); 1463 1464 unsigned FixedParmsNum = getNumberOfFixedParms(); 1465 unsigned FloatingParmsNum = getNumberOfFPParms(); 1466 uint32_t ParamsTypeValue = 0; 1467 1468 // Begin to parse optional fields. 1469 if (Cur && (FixedParmsNum + FloatingParmsNum) > 0) 1470 ParamsTypeValue = DE.getU32(Cur); 1471 1472 if (Cur && hasTraceBackTableOffset()) 1473 TraceBackTableOffset = DE.getU32(Cur); 1474 1475 if (Cur && isInterruptHandler()) 1476 HandlerMask = DE.getU32(Cur); 1477 1478 if (Cur && hasControlledStorage()) { 1479 NumOfCtlAnchors = DE.getU32(Cur); 1480 if (Cur && NumOfCtlAnchors) { 1481 SmallVector<uint32_t, 8> Disp; 1482 Disp.reserve(*NumOfCtlAnchors); 1483 for (uint32_t I = 0; I < NumOfCtlAnchors && Cur; ++I) 1484 Disp.push_back(DE.getU32(Cur)); 1485 if (Cur) 1486 ControlledStorageInfoDisp = std::move(Disp); 1487 } 1488 } 1489 1490 if (Cur && isFuncNamePresent()) { 1491 uint16_t FunctionNameLen = DE.getU16(Cur); 1492 if (Cur) 1493 FunctionName = DE.getBytes(Cur, FunctionNameLen); 1494 } 1495 1496 if (Cur && isAllocaUsed()) 1497 AllocaRegister = DE.getU8(Cur); 1498 1499 unsigned VectorParmsNum = 0; 1500 if (Cur && hasVectorInfo()) { 1501 StringRef VectorExtRef = DE.getBytes(Cur, 6); 1502 if (Cur) { 1503 Expected<TBVectorExt> TBVecExtOrErr = TBVectorExt::create(VectorExtRef); 1504 if (!TBVecExtOrErr) { 1505 Err = TBVecExtOrErr.takeError(); 1506 return; 1507 } 1508 VecExt = TBVecExtOrErr.get(); 1509 VectorParmsNum = VecExt->getNumberOfVectorParms(); 1510 // Skip two bytes of padding after vector info. 1511 DE.skip(Cur, 2); 1512 } 1513 } 1514 1515 // As long as there is no fixed-point or floating-point parameter, this 1516 // field remains not present even when hasVectorInfo gives true and 1517 // indicates the presence of vector parameters. 1518 if (Cur && (FixedParmsNum + FloatingParmsNum) > 0) { 1519 Expected<SmallString<32>> ParmsTypeOrError = 1520 hasVectorInfo() 1521 ? parseParmsTypeWithVecInfo(ParamsTypeValue, FixedParmsNum, 1522 FloatingParmsNum, VectorParmsNum) 1523 : parseParmsType(ParamsTypeValue, FixedParmsNum, FloatingParmsNum); 1524 1525 if (!ParmsTypeOrError) { 1526 Err = ParmsTypeOrError.takeError(); 1527 return; 1528 } 1529 ParmsType = ParmsTypeOrError.get(); 1530 } 1531 1532 if (Cur && hasExtensionTable()) { 1533 ExtensionTable = DE.getU8(Cur); 1534 1535 if (*ExtensionTable & ExtendedTBTableFlag::TB_EH_INFO) { 1536 // eh_info displacement must be 4-byte aligned. 1537 Cur.seek(alignTo(Cur.tell(), 4)); 1538 EhInfoDisp = Is64BitObj ? DE.getU64(Cur) : DE.getU32(Cur); 1539 } 1540 } 1541 if (!Cur) 1542 Err = Cur.takeError(); 1543 1544 Size = Cur.tell(); 1545 } 1546 1547 #define GETBITWITHMASK(P, X) \ 1548 (support::endian::read32be(TBPtr + (P)) & (TracebackTable::X)) 1549 #define GETBITWITHMASKSHIFT(P, X, S) \ 1550 ((support::endian::read32be(TBPtr + (P)) & (TracebackTable::X)) >> \ 1551 (TracebackTable::S)) 1552 1553 uint8_t XCOFFTracebackTable::getVersion() const { 1554 return GETBITWITHMASKSHIFT(0, VersionMask, VersionShift); 1555 } 1556 1557 uint8_t XCOFFTracebackTable::getLanguageID() const { 1558 return GETBITWITHMASKSHIFT(0, LanguageIdMask, LanguageIdShift); 1559 } 1560 1561 bool XCOFFTracebackTable::isGlobalLinkage() const { 1562 return GETBITWITHMASK(0, IsGlobaLinkageMask); 1563 } 1564 1565 bool XCOFFTracebackTable::isOutOfLineEpilogOrPrologue() const { 1566 return GETBITWITHMASK(0, IsOutOfLineEpilogOrPrologueMask); 1567 } 1568 1569 bool XCOFFTracebackTable::hasTraceBackTableOffset() const { 1570 return GETBITWITHMASK(0, HasTraceBackTableOffsetMask); 1571 } 1572 1573 bool XCOFFTracebackTable::isInternalProcedure() const { 1574 return GETBITWITHMASK(0, IsInternalProcedureMask); 1575 } 1576 1577 bool XCOFFTracebackTable::hasControlledStorage() const { 1578 return GETBITWITHMASK(0, HasControlledStorageMask); 1579 } 1580 1581 bool XCOFFTracebackTable::isTOCless() const { 1582 return GETBITWITHMASK(0, IsTOClessMask); 1583 } 1584 1585 bool XCOFFTracebackTable::isFloatingPointPresent() const { 1586 return GETBITWITHMASK(0, IsFloatingPointPresentMask); 1587 } 1588 1589 bool XCOFFTracebackTable::isFloatingPointOperationLogOrAbortEnabled() const { 1590 return GETBITWITHMASK(0, IsFloatingPointOperationLogOrAbortEnabledMask); 1591 } 1592 1593 bool XCOFFTracebackTable::isInterruptHandler() const { 1594 return GETBITWITHMASK(0, IsInterruptHandlerMask); 1595 } 1596 1597 bool XCOFFTracebackTable::isFuncNamePresent() const { 1598 return GETBITWITHMASK(0, IsFunctionNamePresentMask); 1599 } 1600 1601 bool XCOFFTracebackTable::isAllocaUsed() const { 1602 return GETBITWITHMASK(0, IsAllocaUsedMask); 1603 } 1604 1605 uint8_t XCOFFTracebackTable::getOnConditionDirective() const { 1606 return GETBITWITHMASKSHIFT(0, OnConditionDirectiveMask, 1607 OnConditionDirectiveShift); 1608 } 1609 1610 bool XCOFFTracebackTable::isCRSaved() const { 1611 return GETBITWITHMASK(0, IsCRSavedMask); 1612 } 1613 1614 bool XCOFFTracebackTable::isLRSaved() const { 1615 return GETBITWITHMASK(0, IsLRSavedMask); 1616 } 1617 1618 bool XCOFFTracebackTable::isBackChainStored() const { 1619 return GETBITWITHMASK(4, IsBackChainStoredMask); 1620 } 1621 1622 bool XCOFFTracebackTable::isFixup() const { 1623 return GETBITWITHMASK(4, IsFixupMask); 1624 } 1625 1626 uint8_t XCOFFTracebackTable::getNumOfFPRsSaved() const { 1627 return GETBITWITHMASKSHIFT(4, FPRSavedMask, FPRSavedShift); 1628 } 1629 1630 bool XCOFFTracebackTable::hasExtensionTable() const { 1631 return GETBITWITHMASK(4, HasExtensionTableMask); 1632 } 1633 1634 bool XCOFFTracebackTable::hasVectorInfo() const { 1635 return GETBITWITHMASK(4, HasVectorInfoMask); 1636 } 1637 1638 uint8_t XCOFFTracebackTable::getNumOfGPRsSaved() const { 1639 return GETBITWITHMASKSHIFT(4, GPRSavedMask, GPRSavedShift); 1640 } 1641 1642 uint8_t XCOFFTracebackTable::getNumberOfFixedParms() const { 1643 return GETBITWITHMASKSHIFT(4, NumberOfFixedParmsMask, 1644 NumberOfFixedParmsShift); 1645 } 1646 1647 uint8_t XCOFFTracebackTable::getNumberOfFPParms() const { 1648 return GETBITWITHMASKSHIFT(4, NumberOfFloatingPointParmsMask, 1649 NumberOfFloatingPointParmsShift); 1650 } 1651 1652 bool XCOFFTracebackTable::hasParmsOnStack() const { 1653 return GETBITWITHMASK(4, HasParmsOnStackMask); 1654 } 1655 1656 #undef GETBITWITHMASK 1657 #undef GETBITWITHMASKSHIFT 1658 } // namespace object 1659 } // namespace llvm 1660