Searched refs:rodataSizeBeforeText (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | file_generators.cpp | 154 uint32_t rodataSizeBeforeText = 0; in CollectFuncEntryInfo() local 157 std::tie(rodataAddrBeforeText, rodataSizeBeforeText, rodataAddrAfterText, rodataSizeAfterText) = in CollectFuncEntryInfo() 160 if (rodataSizeBeforeText != 0) { in CollectFuncEntryInfo() 161 aotInfo.UpdateCurTextSecOffset(rodataSizeBeforeText); in CollectFuncEntryInfo() 220 uint32_t rodataSizeBeforeText = 0; in CollectFuncEntryInfoByLiteCG() local 224 if (rodataSizeBeforeText != 0) { in CollectFuncEntryInfoByLiteCG() 225 aotInfo.UpdateCurTextSecOffset(rodataSizeBeforeText); in CollectFuncEntryInfoByLiteCG() 384 uint32_t rodataSizeBeforeText = 0; in RollbackTextSize() local 389 … std::tie(rodataAddrBeforeText, rodataSizeBeforeText, rodataAddrAfterText, rodataSizeAfterText) = in RollbackTextSize() 614 uint32_t rodataSizeBeforeText = 0; in GetMemoryCodeInfos() local [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
| D | elf_reader.cpp | 288 uint32_t rodataSizeBeforeText = moduleInfo->rodataSizeBeforeText; in SeparateTextSections() local 290 if (rodataSizeBeforeText != 0) { in SeparateTextSections() 291 secOffset += rodataSizeBeforeText; in SeparateTextSections() 357 uint32_t rodataSizeBeforeText = moduleInfo.rodataSizeBeforeText; in SeparateTextSections() local 359 if (rodataSizeBeforeText != 0) { in SeparateTextSections() 360 parser.ParseBuffer(reinterpret_cast<void *>(secAddr + secOffset), rodataSizeBeforeText, in SeparateTextSections() 362 secOffset += rodataSizeBeforeText; in SeparateTextSections()
|
| D | elf_builder.cpp | 335 uint32_t rodataSizeBeforeText = 0; in MergeTextSections() local 338 … std::tie(rodataAddrBeforeText, rodataSizeBeforeText, rodataAddrAfterText, rodataSizeAfterText) = in MergeTextSections() 340 if (rodataSizeBeforeText != 0) { in MergeTextSections() 341 file.write(reinterpret_cast<char *>(rodataAddrBeforeText), rodataSizeBeforeText); in MergeTextSections() 342 curInfo.rodataSizeBeforeText = rodataSizeBeforeText; in MergeTextSections() 343 curSecOffset += rodataSizeBeforeText; in MergeTextSections()
|
| D | module_section_des.h | 31 uint32_t rodataSizeBeforeText {0};
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | machine_code.cpp | 28 size_t rodataSizeBeforeTextAlign = AlignUp(desc->rodataSizeBeforeText, MachineCode::TEXT_ALIGN); in SetData() 49 … reinterpret_cast<uint8_t*>(desc->rodataAddrBeforeText), desc->rodataSizeBeforeText) != EOK) { in SetData()
|
| D | machine_code.h | 31 size_t rodataSizeBeforeText {0};
|
| /arkcompiler/ets_runtime/ecmascript/jit/ |
| D | jit_task.cpp | 51 …size_t rodataSizeBeforeTextAlign = AlignUp(codeDesc_.rodataSizeBeforeText, MachineCode::TEXT_ALIGN… in InstallCode()
|