Home
last modified time | relevance | path

Searched refs:ModuleTag (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/runtime_core/disassembler/tests/expected/
Dmodule-multi-import.pa10ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-multi-export.js…
11 2 0x492 { 3 [ ModuleTag: LOCAL_EXPORT, local_name: a, export_name: a; ModuleTag: LOCAL_EXPORT, loca…
12ModuleTag: LOCAL_EXPORT, local_name: ClassB, export_name: ClassB, module_request: ./module-export-…
Dmodule-start-export.pa8 0 0x586 { 1 [ ModuleTag: INDIRECT_EXPORT, export_name: a, import_name: a, module_request: ./module-…
9 1 0x47a { 1 [ ModuleTag: STAR_EXPORT, module_request: ./module-import-file.js; ]}
10 2 0x38b { 1 [ ModuleTag: LOCAL_EXPORT, local_name: c, export_name: c; ]}
11ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-indirect-export…
Dmodule-import-file.pa8 0 0x586 { 1 [ ModuleTag: INDIRECT_EXPORT, export_name: a, import_name: a, module_request: ./module-…
9 1 0x47a { 1 [ ModuleTag: STAR_EXPORT, module_request: ./module-import-file.js; ]}
10 2 0x38b { 1 [ ModuleTag: LOCAL_EXPORT, local_name: c, export_name: c; ]}
11ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-indirect-export…
Dmodule-indirect-export.pa8 0 0x586 { 1 [ ModuleTag: INDIRECT_EXPORT, export_name: a, import_name: a, module_request: ./module-…
9 1 0x47a { 1 [ ModuleTag: STAR_EXPORT, module_request: ./module-import-file.js; ]}
10 2 0x38b { 1 [ ModuleTag: LOCAL_EXPORT, local_name: c, export_name: c; ]}
11ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-indirect-export…
Dmodule-regular-import.pa8 0 0x31e { 3 [ ModuleTag: LOCAL_EXPORT, local_name: a, export_name: a; ModuleTag: LOCAL_EXPORT, loca…
9 1 0x20f { 1 [ ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-ex…
Dmodule-namespace-import.pa8 0 0x318 { 1 [ ModuleTag: NAMESPACE_IMPORT, local_name: ns, module_request: ./module-export-file.js;…
9 1 0x208 { 3 [ ModuleTag: LOCAL_EXPORT, local_name: a, export_name: a; ModuleTag: LOCAL_EXPORT, loca…
Dscript-export.pa8 0 0x1c2 { 1 [ ModuleTag: LOCAL_EXPORT, local_name: x, export_name: x; ]}
Dmodule-local-export.pa8 0 0x1ff { 1 [ ModuleTag: LOCAL_EXPORT, local_name: c, export_name: c; ]}
/arkcompiler/runtime_core/libpandafile/
Dmodule_data_accessor-inl.h34 cb(ModuleTag::REGULAR_IMPORT, 0, module_request_idx, import_name_offset, local_name_offset); in EnumerateModuleRecord()
41 cb(ModuleTag::NAMESPACE_IMPORT, 0, module_request_idx, 0, local_name_offset); in EnumerateModuleRecord()
48 cb(ModuleTag::LOCAL_EXPORT, export_name_offset, 0, 0, local_name_offset); in EnumerateModuleRecord()
56 … cb(ModuleTag::INDIRECT_EXPORT, export_name_offset, module_request_idx, import_name_offset, 0); in EnumerateModuleRecord()
62 cb(ModuleTag::STAR_EXPORT, 0, module_request_idx, 0, 0); in EnumerateModuleRecord()
Dmodule_data_accessor.h31 enum class ModuleTag : uint8_t { enum
/arkcompiler/runtime_core/abc2program/
Dabc_module_array_processor.cpp37 …module_data_accessor_->EnumerateModuleRecord([&](panda_file::ModuleTag tag, uint32_t export_name_o… in FillProgramData()
40 case panda_file::ModuleTag::REGULAR_IMPORT: in FillProgramData()
44 case panda_file::ModuleTag::NAMESPACE_IMPORT: in FillProgramData()
48 case panda_file::ModuleTag::LOCAL_EXPORT: in FillProgramData()
52 case panda_file::ModuleTag::INDIRECT_EXPORT: in FillProgramData()
56 case panda_file::ModuleTag::STAR_EXPORT: in FillProgramData()
/arkcompiler/runtime_core/bytecode_optimizer/
Doptimize_bytecode.cpp260 mda.EnumerateModuleRecord([&](panda_file::ModuleTag tag, uint32_t export_name_offset, in AnalysisModuleRecordInfoOfModuleDataAccessor()
264 case panda_file::ModuleTag::LOCAL_EXPORT: { in AnalysisModuleRecordInfoOfModuleDataAccessor()
276 case panda_file::ModuleTag::REGULAR_IMPORT: { in AnalysisModuleRecordInfoOfModuleDataAccessor()
286 case panda_file::ModuleTag::NAMESPACE_IMPORT: { in AnalysisModuleRecordInfoOfModuleDataAccessor()
/arkcompiler/runtime_core/disassembler/
Ddisassembler.cpp405 std::string Disassembler::ModuleTagToString(panda_file::ModuleTag &tag) const in ModuleTagToString()
408 case panda_file::ModuleTag::REGULAR_IMPORT: in ModuleTagToString()
410 case panda_file::ModuleTag::NAMESPACE_IMPORT: in ModuleTagToString()
412 case panda_file::ModuleTag::LOCAL_EXPORT: in ModuleTagToString()
414 case panda_file::ModuleTag::INDIRECT_EXPORT: in ModuleTagToString()
416 case panda_file::ModuleTag::STAR_EXPORT: in ModuleTagToString()
439 …mda.EnumerateModuleRecord([&](panda_file::ModuleTag tag, uint32_t export_name_offset, uint32_t req… in GetModuleLiteralArray()
443 if (tag == panda_file::ModuleTag::REGULAR_IMPORT || in GetModuleLiteralArray()
444 … tag == panda_file::ModuleTag::NAMESPACE_IMPORT || tag == panda_file::ModuleTag::LOCAL_EXPORT) { in GetModuleLiteralArray()
451 … if (tag == panda_file::ModuleTag::LOCAL_EXPORT || tag == panda_file::ModuleTag::INDIRECT_EXPORT) { in GetModuleLiteralArray()
[all …]
Ddisassembler.h192 std::string ModuleTagToString(panda_file::ModuleTag &tag) const;
/arkcompiler/runtime_core/libark_defect_scan_aux/
Dabc_file.cpp37 using ModuleTag = panda_file::ModuleTag; typedef
570 …mda.EnumerateModuleRecord([&](const ModuleTag &tag, uint32_t export_name_offset, uint32_t module_r… in ExtractModuleRecord()
579 case ModuleTag::REGULAR_IMPORT: { in ExtractModuleRecord()
588 case ModuleTag::NAMESPACE_IMPORT: { in ExtractModuleRecord()
595 case ModuleTag::LOCAL_EXPORT: { in ExtractModuleRecord()
604 case ModuleTag::INDIRECT_EXPORT: { in ExtractModuleRecord()
612 case ModuleTag::STAR_EXPORT: { in ExtractModuleRecord()