Home
last modified time | relevance | path

Searched refs:SectionOrLength (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp396 void writeSymbolAuxCsectEntry(uint64_t SectionOrLength,
881 void XCOFFObjectWriter::writeSymbolAuxCsectEntry(uint64_t SectionOrLength, in writeSymbolAuxCsectEntry() argument
884 W.write<uint32_t>(is64Bit() ? Lo_32(SectionOrLength) : SectionOrLength); in writeSymbolAuxCsectEntry()
890 W.write<uint32_t>(Hi_32(SectionOrLength)); in writeSymbolAuxCsectEntry()
/src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DXCOFFYAML.h116 std::optional<uint32_t> SectionOrLength; member
/src/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h329 support::ubig32_t SectionOrLength;
369 return Entry32->SectionOrLength;
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DXCOFFYAML.cpp269 IO.mapOptional("SectionOrLength", AuxSym.SectionOrLength); in auxSymMapping()
H A DXCOFFEmitter.cpp644 W.write<uint32_t>(AuxSym.SectionOrLength.value_or(0)); in writeAuxSymbol()