HomeSort by: relevance | last modified time | path
    Searched defs:DataSection (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbolData.cpp 40 uint32_t DataSection = RawSymbol->getAddressSection();
42 if (DataSection == 0) {
44 Session.addressForRVA(RVA, DataSection, DataOffset);
47 if (DataSection) {
50 if (Section->getAddressSection() == DataSection &&
  /src/sys/arch/powerpc/stand/mkbootimage/
pef.h 69 #define DataSection 1
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 301 uint32_t DataSection = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 379 struct DataSection : Section {
380 DataSection() : Section(wasm::WASM_SEC_DATA) {}
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 883 MCSection &DataSection = *OFI.getDataSection();
884 MCA.registerSection(DataSection);
889 DataSection.setAlignment(Align(std::max(16u, DataSection.getAlignment())));
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 214 DataSection,
743 if (CurrentState != DataSection) {
749 CurrentState = DataSection;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCObjectFileInfo.h 58 MCSection *DataSection = nullptr;
255 MCSection *getDataSection() const { return DataSection; }
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 652 MCSectionWasm &DataSection) {
653 LLVM_DEBUG(errs() << "addData: " << DataSection.getName() << "\n");
655 DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlignment()));
657 for (const MCFragment &Frag : DataSection) {
1577 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection());
1578 if (!DataSection.isWasmData())
1585 DataSection.getSegmentIndex(), Layout.getSymbolOffset(WS),
1686 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection());
1696 DataSegments[DataSection.getSegmentIndex()];
1700 DataSection.getSegmentIndex()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.cpp 1293 auto &DataSection = Obj->addSection<Section>(Data);
1294 DataSection.Name = ".data";
1295 DataSection.Type = ELF::SHT_PROGBITS;
1296 DataSection.Size = Data.size();
1297 DataSection.Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE;
1305 SymTab->addSymbol(Prefix + "_start", STB_GLOBAL, STT_NOTYPE, &DataSection,
1307 SymTab->addSymbol(Prefix + "_end", STB_GLOBAL, STT_NOTYPE, &DataSection,
1308 /*Value=*/DataSection.Size, NewSymbolVisibility, 0, 0);
1310 /*Value=*/DataSection.Size, NewSymbolVisibility, SHN_ABS,
  /src/external/bsd/elftosb/dist/common/
EncoreBootImage.h 69 * EncoreBootImage::DataSection class and can contain any arbitrary data.
78 * create instances of the EncoreBootImage::BootSection or EncoreBootImage::DataSection
840 class DataSection : public Section
844 DataSection() : Section(), m_data(), m_length(0) {}
847 DataSection(uint32_t identifier) : Section(identifier), m_data(), m_length(0) {}

Completed in 30 milliseconds