Home
last modified time | relevance | path

Searched refs:Contents (Results 1 – 25 of 166) sorted by relevance

1234567

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h194 } Contents; variable
533 return Contents.CI; in getCImm()
538 return Contents.CFP; in getFPImm()
543 return Contents.MBB; in getMBB()
564 return Contents.Sym; in getMCSymbol()
632 return Contents.MD; in getMetadata()
646 Contents.CI = CI; in setCImm()
651 Contents.CFP = CFP; in setFPImm()
670 Contents.MD = MD; in setMetadata()
675 Contents.MBB = MBB; in setMBB()
[all …]
H A DScheduleDAG.h92 } Contents; variable
106 : Dep(S, kind), Contents() { in SDep()
114 Contents.Reg = Reg; in SDep()
118 Contents.Reg = Reg; in SDep()
125 : Dep(S, Order), Contents(), Latency(0) { in SDep()
126 Contents.OrdKind = kind; in SDep()
213 return getKind() == Data && Contents.Reg != 0; in isAssignedRegDep()
222 return Contents.Reg; in getReg()
236 Contents.Reg = Reg; in setReg()
476 return Contents.Reg == Other.Contents.Reg;
[all …]
H A DAccelTable.h297 void emitAppleAccelTableImpl(AsmPrinter *Asm, AccelTableBase &Contents,
305 void emitAppleAccelTable(AsmPrinter *Asm, AccelTable<DataT> &Contents, in emitAppleAccelTable() argument
308 emitAppleAccelTableImpl(Asm, Contents, Prefix, SecBegin, DataT::Atoms); in emitAppleAccelTable()
312 AccelTable<DWARF5AccelTableData> &Contents,
317 AsmPrinter *Asm, AccelTable<DWARF5AccelTableStaticData> &Contents,
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp113 : Asm(Asm), Contents(Contents), SkipIdenticalHashes(SkipIdenticalHashes) { in AccelTableWriter()
172 : AccelTableWriter(Asm, Contents, true), in AppleAccelTableWriter()
173 Header(Contents.getBucketCount(), Contents.getUniqueHashCount(), in AppleAccelTableWriter()
253 for (auto &Bucket : Contents.getBuckets()) { in emitHashes()
267 const auto &Buckets = Contents.getBuckets(); in emitOffsets()
523 Contents.getUniqueNameCount()), in Dwarf5AccelTableWriter()
549 Contents.finalize(Asm, Prefix); in emitAppleAccelTableImpl()
576 Contents.finalize(Asm, "names"); in emitDWARF5AccelTable()
578 Asm, Contents, CompUnits, in emitDWARF5AccelTable()
591 Contents.finalize(Asm, "names"); in emitDWARF5AccelTable()
[all …]
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionRecord.cpp61 const DebugSubsectionRecord &Contents, CodeViewContainer Container) in DebugSubsectionRecordBuilder() argument
62 : Contents(Contents), Container(Container) {} in DebugSubsectionRecordBuilder()
66 : Contents.getRecordData().getLength(); in calculateSerializedLength()
77 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind()); in commit()
81 : Contents.getRecordData().getLength(); in commit()
90 if (auto EC = Writer.writeStreamRef(Contents.getRecordData())) in commit()
H A DDebugStringTableSubsection.cpp26 Error DebugStringTableSubsectionRef::initialize(BinaryStreamRef Contents) { in initialize() argument
27 Stream = Contents; in initialize()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp277 MO->Contents.Reg.Prev = MO; in addRegOperandToUseList()
278 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList()
288 Head->Contents.Reg.Prev = MO; in addRegOperandToUseList()
289 MO->Contents.Reg.Prev = Last; in addRegOperandToUseList()
295 MO->Contents.Reg.Next = Head; in addRegOperandToUseList()
299 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList()
300 Last->Contents.Reg.Next = MO; in addRegOperandToUseList()
319 Prev->Contents.Reg.Next = Next; in removeRegOperandFromUseList()
323 MO->Contents.Reg.Prev = nullptr; in removeRegOperandFromUseList()
324 MO->Contents.Reg.Next = nullptr; in removeRegOperandFromUseList()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCFragment.h189 SmallVector<char, ContentsSize> Contents; variable
198 SmallVectorImpl<char> &getContents() { return Contents; } in getContents()
493 SmallString<8> Contents; variable
498 Contents.push_back(0); in MCFragment()
508 SmallString<8> &getContents() { return Contents; } in getContents()
509 const SmallString<8> &getContents() const { return Contents; } in getContents()
552 SmallString<8> Contents; variable
557 Contents.push_back(0); in MCFragment()
565 SmallString<8> &getContents() { return Contents; } in getContents()
604 SmallString<8> Contents; variable
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp292 ArrayRef<uint8_t> Contents; in printRuntimeFunction() local
293 error(Ctx.COFF.getSectionContents(XData, Contents)); in printRuntimeFunction()
294 if (Contents.empty()) in printRuntimeFunction()
298 if (Offset > Contents.size()) in printRuntimeFunction()
301 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); in printRuntimeFunction()
314 ArrayRef<uint8_t> Contents; in printData() local
315 error(Ctx.COFF.getSectionContents(PData, Contents)); in printData()
316 if (Contents.empty()) in printData()
320 reinterpret_cast<const RuntimeFunction *>(Contents.data()); in printData()
321 const size_t Count = Contents.size() / sizeof(RuntimeFunction); in printData()
H A DARMEHABIPrinter.h434 Expected<ArrayRef<uint8_t>> Contents = ELF->getSectionContents(EHT); in PrintExceptionTable() local
435 if (!Contents) in PrintExceptionTable()
462 *reinterpret_cast<const support::ulittle32_t *>(Contents->data() + TableEntryOffset); in PrintExceptionTable()
472 PrintOpcodes(Contents->data() + TableEntryOffset, 3, 1); in PrintExceptionTable()
477 PrintOpcodes(Contents->data() + TableEntryOffset, 2 + 4 * AdditionalWords, in PrintExceptionTable()
501 Expected<ArrayRef<uint8_t>> Contents = ELF->getSectionContents(IT); in PrintIndexTable() local
502 if (!Contents) in PrintIndexTable()
516 reinterpret_cast<const support::ulittle32_t *>(Contents->data()); in PrintIndexTable()
549 PrintOpcodes(Contents->data() + Entry * IndexTableEntrySize + 4, 3, 1); in PrintIndexTable()
H A DARMWinEHPrinter.cpp814 ArrayRef<uint8_t> Contents; in dumpXDataRecord() local
815 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord()
821 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset); in dumpXDataRecord()
826 if (Contents.size() - Offset < 8) in dumpXDataRecord()
844 if ((int64_t)(Contents.size() - Offset - 4 * HeaderWords(XData) - in dumpXDataRecord()
1066 ArrayRef<uint8_t> Contents) { in dumpProcedureDataEntry() argument
1069 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset); in dumpProcedureDataEntry()
1084 ArrayRef<uint8_t> Contents; in dumpProcedureData() local
1085 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
1088 if (Contents.size() % PDataEntrySize) { in dumpProcedureData()
[all …]
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCFragment.cpp356 const SmallVectorImpl<char> &Contents = DF->getContents(); in dump() local
357 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump()
359 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
361 OS << "] (" << Contents.size() << " bytes)"; in dump()
380 const SmallVectorImpl<char> &Contents = CEIF->getContents(); in dump() local
381 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump()
383 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
385 OS << "] (" << Contents.size() << " bytes)"; in dump()
H A DMCCodeView.cpp149 SmallVectorImpl<char> &Contents = getStringTableFragment()->getContents(); in addToStringTable() local
151 StringTable.insert(std::make_pair(S, unsigned(Contents.size()))); in addToStringTable()
157 Contents.append(Ret.first.begin(), Ret.first.end() + 1); in addToStringTable()
612 SmallVectorImpl<char> &Contents = Frag.getContents(); in encodeDefRange() local
613 Contents.clear(); in encodeDefRange()
616 raw_svector_ostream OS(Contents); in encodeDefRange()
671 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_4)); in encodeDefRange()
674 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_2)); in encodeDefRange()
/freebsd-12.1/contrib/llvm/lib/XRay/
H A DInstrumentationMap.cpp68 StringRef Contents = ""; in loadObj() local
82 if (I->getContents(Contents)) in loadObj()
112 auto C = Contents.bytes_begin(); in loadObj()
115 if ((C - Contents.bytes_end()) % ELF64SledEntrySize != 0) in loadObj()
123 uint64_t A = I->getAddress() + C - Contents.bytes_begin() + Offset; in loadObj()
133 for (; C != Contents.bytes_end(); C += ELF64SledEntrySize) { in loadObj()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DPDB.cpp356 ArrayRef<uint8_t> Contents = Sec->getContents(); in getDebugH() local
357 if (!canUseDebugH(Contents)) in getDebugH()
359 return Contents; in getDebugH()
397 ArrayRef<uint8_t> Contents = in extractPCHSignature() local
400 BinaryStreamReader Reader(Contents, support::little); in extractPCHSignature()
777 MutableArrayRef<uint8_t> Contents = in remapTypesInSymbolRecord() local
781 if (Contents.size() < Ref.Offset + ByteSize) in remapTypesInSymbolRecord()
808 Contents = in recordStringTableReferenceAtOffset()
1147 ArrayRef<uint8_t> Contents = SecChunk->getContents(); in createSectionContrib() local
1150 reinterpret_cast<const char *>(Contents.data()), Contents.size()); in createSectionContrib()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DVirtualFileSystem.h575 std::vector<std::unique_ptr<Entry>> Contents; variable
580 std::vector<std::unique_ptr<Entry>> Contents, in RedirectingDirectoryEntry() argument
582 : Entry(EK_Directory, Name), Contents(std::move(Contents)), in RedirectingDirectoryEntry()
590 Contents.push_back(std::move(Content)); in addContent()
593 Entry *getLastContent() const { return Contents.back().get(); } in getLastContent()
595 using iterator = decltype(Contents)::iterator;
597 iterator contents_begin() { return Contents.begin(); } in contents_begin()
598 iterator contents_end() { return Contents.end(); } in contents_end()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp309 SmallVector<AttributeItem, 64> Contents; member in __anonb90111790111::ARMTargetELFStreamer
315 if (Contents[i].Tag == Attribute) in getAttributeItem()
316 return &Contents[i]; in getAttributeItem()
338 Contents.push_back(Item); in setAttributeItem()
359 Contents.push_back(Item); in setAttributeItem()
381 Contents.push_back(Item); in setAttributeItems()
767 assert(Contents.empty() && in switchVendor()
1040 AttributeItem item = Contents[i]; in calculateContentSize()
1077 if (Contents.empty()) in finishAttributeSection()
1114 AttributeItem item = Contents[i]; in finishAttributeSection()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp195 ArrayRef<uint8_t> &Contents, uint64_t &Addr) { in getSectionContents() argument
202 if (std::error_code EC = Obj->getSectionContents(Section, Contents)) in getSectionContents()
460 ArrayRef<uint8_t> Contents; in getPDataSection() local
461 error(Obj->getSectionContents(Pdata, Contents)); in getPDataSection()
462 if (Contents.empty()) in getPDataSection()
465 RFStart = reinterpret_cast<const RuntimeFunction *>(Contents.data()); in getPDataSection()
466 NumRFs = Contents.size() / sizeof(RuntimeFunction); in getPDataSection()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsectionRecord.h63 DebugSubsectionRecordBuilder(const DebugSubsectionRecord &Contents,
74 DebugSubsectionRecord Contents; variable
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/COFF/
H A DWriter.cpp236 std::copy(S.Contents.begin(), S.Contents.end(), Ptr); in writeSections()
241 S.Header.SizeOfRawData > S.Contents.size()) in writeSections()
242 memset(Ptr + S.Contents.size(), 0xcc, in writeSections()
243 S.Header.SizeOfRawData - S.Contents.size()); in writeSections()
/freebsd-12.1/sys/dev/qlxgb/
H A DREADME.txt11 Table of Contents
12 1. Package Contents
22 1. Package Contents
/freebsd-12.1/sys/dev/qlxge/
H A DREADME.txt11 Table of Contents
12 1. Package Contents
22 1. Package Contents
/freebsd-12.1/sys/dev/qlxgbe/
H A DREADME.txt11 Table of Contents
12 1. Package Contents
22 1. Package Contents
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.h312 ArrayRef<uint8_t> Contents; variable
314 explicit Segment(ArrayRef<uint8_t> Data) : Contents(Data) {} in Segment()
330 ArrayRef<uint8_t> Contents; variable
334 explicit Section(ArrayRef<uint8_t> Data) : Contents(Data) {} in Section()
615 ArrayRef<uint8_t> Contents;
617 explicit GroupSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in GroupSection()
658 ArrayRef<uint8_t> Contents;
661 explicit DynamicRelocationSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in DynamicRelocationSection()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp143 const MDString *Contents = dyn_cast<MDString>(Tuple->getOperand(1)); in EmitEndOfAsmFile() local
144 if (!Name || !Contents) in EmitEndOfAsmFile()
152 OutStreamer->EmitBytes(Contents->getString()); in EmitEndOfAsmFile()

1234567