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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  399   EXPECT_TRUE(text.segmentName.equals("__TEXT"));
  400   EXPECT_TRUE(text.sectionName.equals("__text"));
  401   EXPECT_EQ(text.type, S_REGULAR);
  402   EXPECT_EQ(text.attributes,SectionAttr(S_ATTR_PURE_INSTRUCTIONS
  404   EXPECT_EQ((uint16_t)text.alignment, 16U);
  405   EXPECT_EQ(text.address, Hex64(0x0));
  406   EXPECT_EQ(text.content.size(), 48UL);
  407   EXPECT_EQ((int)(text.content[0]), 0x55);
  408   EXPECT_EQ((int)(text.content[1]), 0x89);
  409   EXPECT_TRUE(text.indirectSymbols.empty());
  410   EXPECT_EQ(text.relocations.size(), 3UL);
  411   const Relocation& call = text.relocations[0];
  419   const Relocation& sectDiff = text.relocations[1];
  426   const Relocation& pair = text.relocations[2];