Searched refs:export_name_offset (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/runtime_core/libpandafile/ |
H A D | module_data_accessor-inl.h | 47 auto export_name_offset = static_cast<uint32_t>(panda_file::helpers::Read<sizeof(uint32_t)>(&sp)); in EnumerateModuleRecord() local 48 cb(ModuleTag::LOCAL_EXPORT, export_name_offset, 0, 0, local_name_offset); in EnumerateModuleRecord() 53 auto export_name_offset = static_cast<uint32_t>(panda_file::helpers::Read<sizeof(uint32_t)>(&sp)); in EnumerateModuleRecord() local 56 cb(ModuleTag::INDIRECT_EXPORT, export_name_offset, module_request_idx, import_name_offset, 0); in EnumerateModuleRecord()
|
/arkcompiler/runtime_core/abc2program/ |
H A D | abc_module_array_processor.cpp | 37 module_data_accessor_->EnumerateModuleRecord([&](panda_file::ModuleTag tag, uint32_t export_name_offset, in FillProgramData() 49 FillLocalExportEntry(literal_vec, export_name_offset, local_name_offset); in FillProgramData() 53 FillIndirectExportEntry(literal_vec, export_name_offset, request_module_idx, import_name_offset); in FillProgramData() 127 uint32_t export_name_offset, uint32_t &local_name_offset) in FillLocalExportEntry() 136 .value_ = GetStringById(panda_file::File::EntityId{export_name_offset}) in FillLocalExportEntry() 142 uint32_t export_name_offset, uint32_t request_module_idx, uint32_t import_name_offset) in FillIndirectExportEntry() 146 .value_ = GetStringById(panda_file::File::EntityId{export_name_offset}) in FillIndirectExportEntry() 126 FillLocalExportEntry(std::vector<panda::pandasm::LiteralArray::Literal> &literal_vec, uint32_t export_name_offset, uint32_t &local_name_offset) FillLocalExportEntry() argument 141 FillIndirectExportEntry(std::vector<panda::pandasm::LiteralArray::Literal> &literal_vec, uint32_t export_name_offset, uint32_t request_module_idx, uint32_t import_name_offset) FillIndirectExportEntry() argument
|
H A D | abc_module_array_processor.h | 37 uint32_t export_name_offset, uint32_t &local_name_offset); 39 uint32_t export_name_offset, uint32_t request_module_idx, uint32_t import_name_offset);
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
H A D | optimize_bytecode.cpp | 272 mda.EnumerateModuleRecord([&](panda_file::ModuleTag tag, uint32_t export_name_offset, in AnalysisModuleRecordInfoOfModuleDataAccessor() 277 std::string export_name = GetStringFromPandaFile(pfile, export_name_offset); in AnalysisModuleRecordInfoOfModuleDataAccessor()
|
/arkcompiler/runtime_core/libark_defect_scan_aux/ |
H A D | abc_file.cpp | 555 mda.EnumerateModuleRecord([&](const ModuleTag &tag, uint32_t export_name_offset, uint32_t module_request_idx, 583 std::string export_name = GetStringByStringId(EntityId(export_name_offset)); 590 std::string export_name = GetStringByStringId(EntityId(export_name_offset));
|
/arkcompiler/runtime_core/disassembler/ |
H A D | disassembler.cpp | 441 mda.EnumerateModuleRecord([&](panda_file::ModuleTag tag, uint32_t export_name_offset, in GetModuleLiteralArray() 454 if (!IsValidOffset(export_name_offset)) { in GetModuleLiteralArray() 457 ss << ", export_name: " << GetStringByOffset(export_name_offset); in GetModuleLiteralArray()
|
Completed in 7 milliseconds