Home
last modified time | relevance | path

Searched refs:secInfo (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.cpp731 SectionInfo secInfo = base::ReadBuffer<SectionInfo>(buffer); in ParseFromBinary() local
732 for (uint32_t j = 0; j < secInfo.number_; j++) { in ParseFromBinary()
763 SectionInfo secInfo; in ProcessToBinary() local
795 secInfo.number_++; in ProcessToBinary()
797 if (secInfo.number_ > 0) { in ProcessToBinary()
798 secInfo.offset_ = sizeof(SectionInfo); in ProcessToBinary()
799 secInfo.size_ = static_cast<uint32_t>(methodStream.tellg()); in ProcessToBinary()
801 stream.write(reinterpret_cast<char *>(&secInfo), sizeof(SectionInfo)); in ProcessToBinary()
906 SectionInfo secInfo = base::ReadBuffer<SectionInfo>(buffer); in ParseFromBinary() local
907 for (uint32_t j = 0; j < secInfo.number_; j++) { in ParseFromBinary()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dfile_generators.cpp166 assembler_->IterateSecInfos([&](size_t i, std::pair<uint8_t *, size_t> secInfo) { in CollectModuleSectionDes() argument
172 … moduleDes.SetSecAddrAndSize(sec, reinterpret_cast<uint64_t>(secInfo.first), secInfo.second); in CollectModuleSectionDes()
185 assembler_->IterateSecInfos([&](size_t i, std::pair<uint8_t *, size_t> secInfo) { in CollectAnModuleSectionDes() argument
189 moduleDes.SetSecAddrAndSize(sec, reinterpret_cast<uint64_t>(secInfo.first), secInfo.second); in CollectAnModuleSectionDes()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Delf_builder.cpp424 for (auto const &[secName, secInfo] : sections) { in PackELFSections()