reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
  414   EXPECT_TRUE(text.segmentName.equals("__TEXT"));
  415   EXPECT_TRUE(text.sectionName.equals("__text"));
  416   EXPECT_EQ(S_REGULAR, text.type);
  417   EXPECT_EQ(text.attributes,SectionAttr(S_ATTR_PURE_INSTRUCTIONS
  419   EXPECT_EQ((uint16_t)text.alignment, 4U);
  420   EXPECT_EQ(text.address, Hex64(0x0));
  421   EXPECT_EQ(18UL, text.content.size());
  422   const Relocation& blx = text.relocations[0];
  430   const Relocation& movw1 = text.relocations[1];
  436   const Relocation& movw2 = text.relocations[2];
  442    const Relocation& movt1 = text.relocations[3];
  448   const Relocation& movt2 = text.relocations[4];
  454  const Relocation& absPointer = text.relocations[5];