| /arkcompiler/runtime_core/disassembler/tests/expected/ |
| D | module-multi-import.pa | 10 …ModuleTag: 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… 12 …ModuleTag: LOCAL_EXPORT, local_name: ClassB, export_name: ClassB, module_request: ./module-export-…
|
| D | module-start-export.pa | 8 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; ]} 11 …ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-indirect-export…
|
| D | module-import-file.pa | 8 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; ]} 11 …ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-indirect-export…
|
| D | module-indirect-export.pa | 8 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; ]} 11 …ModuleTag: REGULAR_IMPORT, local_name: a, import_name: a, module_request: ./module-indirect-export…
|
| D | module-regular-import.pa | 8 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…
|
| D | module-namespace-import.pa | 8 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…
|
| D | script-export.pa | 8 0 0x1c2 { 1 [ ModuleTag: LOCAL_EXPORT, local_name: x, export_name: x; ]}
|
| D | module-local-export.pa | 8 0 0x1ff { 1 [ ModuleTag: LOCAL_EXPORT, local_name: c, export_name: c; ]}
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | module_data_accessor-inl.h | 34 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()
|
| D | module_data_accessor.h | 31 enum class ModuleTag : uint8_t { enum
|
| /arkcompiler/runtime_core/abc2program/ |
| D | abc_module_array_processor.cpp | 37 …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/ |
| D | optimize_bytecode.cpp | 260 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/ |
| D | disassembler.cpp | 405 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 …]
|
| D | disassembler.h | 192 std::string ModuleTagToString(panda_file::ModuleTag &tag) const;
|
| /arkcompiler/runtime_core/libark_defect_scan_aux/ |
| D | abc_file.cpp | 37 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()
|