Home | History | Annotate | Download | only in llvm-objdump

Lines Matching defs:Contents

103                         cl::desc("Have -section dump the raw binary contents"));
889 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
893 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0';
895 DumpCstringChar(Contents[i]);
901 memcpy(&f, Contents + (lp - SectAddress), sizeof(float));
903 memcpy(&l, Contents + (lp - SectAddress), sizeof(uint32_t));
912 memcpy(&d, Contents + (lp - SectAddress), sizeof(double));
914 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
915 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
927 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
928 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
930 memcpy(&l2, Contents
932 memcpy(&l3, Contents + (lp - SectAddress) + 3 * sizeof(uint32_t),
1079 outs() << "Contents of (" << SegName << "," << SectName
1101 outs() << "zerofill section and has no contents in the file\n";
1132 outs() << "zerofill section and has no contents in the file\n";
1149 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3239 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3243 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3249 memcpy(&p, Contents + i, size);
3290 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3294 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3300 memcpy(&p, Contents + i, size);
4959 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5022 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5065 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5105 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5145 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
6440 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
6443 read<uint64_t>(Contents.data() + Offset);
6445 read<uint32_t>(Contents.data() + Offset);
6539 StringRef Contents;
6540 CompactUnwind.getContents(Contents);
6545 for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
6546 CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
6571 outs() << "Contents of __compact_unwind section:\n";
6676 outs() << "Contents of __unwind_info section:\n";
6678 StringRef Contents;
6679 UnwindInfo.getContents(Contents);
6680 const char *Pos = Contents.data();
6723 Pos = Contents.data() + CommonEncodingsStart;
6740 Pos = Contents.data() + PersonalitiesStart;
6763 Pos = Contents.data() + IndicesStart;
6788 Pos = Contents.data() + IndexEntries[0].LSDAStart;
6821 Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart;