Searched refs:secInfo (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/ |
H A D | pgo_proto_transition_type_pool.h | 52 SectionInfo secInfo; variable 53 secInfo.number_ = pool_.size(); 54 secInfo.offset_ = sizeof(SectionInfo); 56 stream.seekp(secInfo.offset_, std::ofstream::cur); 62 secInfo.size_ = static_cast<uint32_t>(stream.tellp()) - static_cast<uint32_t>(secInfoPos); 65 stream.write(reinterpret_cast<const char *>(&(secInfo)), sizeof(SectionInfo)); 73 auto secInfo = base::ReadBuffer<SectionInfo>(buffer); variable 74 for (uint32_t i = 0; i < secInfo.number_; i++) {
|
H A D | pgo_record_pool.h | 144 SectionInfo secInfo; variable 145 secInfo.number_ = pool_.size(); 146 secInfo.offset_ = sizeof(SectionInfo); 148 stream.seekp(secInfo.offset_, std::ofstream::cur); 154 secInfo.size_ = static_cast<uint32_t>(stream.tellp()) - static_cast<uint32_t>(secInfoPos); 157 stream.write(reinterpret_cast<const char *>(&(secInfo)), sizeof(SectionInfo)); 165 auto secInfo = base::ReadBuffer<SectionInfo>(buffer); variable 166 for (uint32_t i = 0; i < secInfo.number_; i++) {
|
H A D | pool_template.h | 125 SectionInfo secInfo; variable 126 secInfo.number_ = pool_.size(); 127 secInfo.offset_ = sizeof(SectionInfo); 129 stream.seekp(secInfo.offset_, std::ofstream::cur); 134 secInfo.size_ = static_cast<uint32_t>(stream.tellp()) - static_cast<uint32_t>(secInfoPos); 137 stream.write(reinterpret_cast<const char *>(&(secInfo)), sizeof(SectionInfo)); 177 auto secInfo = base::ReadBuffer<SectionInfo>(buffer); variable 178 for (uint32_t i = 0; i < secInfo.number_; i++) {
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_profiler_info.cpp | 294 SectionInfo secInfo = base::ReadBuffer<SectionInfo>(buffer); in ParseFromBinary() local 295 for (uint32_t j = 0; j < secInfo.number_; j++) { in ParseFromBinary() 326 SectionInfo secInfo; in ProcessToBinary() local 359 secInfo.number_++; in ProcessToBinary() 361 if (secInfo.number_ > 0) { in ProcessToBinary() 362 secInfo.offset_ = sizeof(SectionInfo); in ProcessToBinary() 363 secInfo.size_ = static_cast<uint32_t>(methodStream.tellp()); in ProcessToBinary() 365 stream.write(reinterpret_cast<char *>(&secInfo), sizeof(SectionInfo)); in ProcessToBinary() 494 SectionInfo secInfo = base::ReadBuffer<SectionInfo>(buffer); in ParseFromBinary() local 495 for (uint32_t j = 0; j < secInfo in ParseFromBinary() 795 SectionInfo secInfo = base::ReadBuffer<SectionInfo>(buffer); ParseFromBinaryForLayout() local 850 SectionInfo secInfo; ProcessToBinaryForLayout() local 1097 SectionInfo secInfo = base::ReadBuffer<SectionInfo>(buffer); ParseFromBinaryForLayout() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | file_generators.cpp | 284 assembler->IterateSecInfos([&](size_t i, std::pair<uint8_t *, size_t> secInfo) { in CollectModuleSectionDes() 290 moduleDes.SetSecAddrAndSize(sec, reinterpret_cast<uint64_t>(secInfo.first), secInfo.second); in CollectModuleSectionDes() 302 assembler_->IterateSecInfos([&](size_t i, std::pair<uint8_t *, size_t> secInfo) { in CollectAnModuleSectionDes() 306 moduleDes.SetSecAddrAndSize(sec, reinterpret_cast<uint64_t>(secInfo.first), secInfo.second); in CollectAnModuleSectionDes()
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
H A D | elf_builder.cpp | 560 for (auto const &[secName, secInfo] : sections) { in PackELFSections()
|
Completed in 8 milliseconds