Home
last modified time | relevance | path

Searched refs:abc_file (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/
Ddefect_scan_aux_test.cpp117 auto &abc_file = ds_test.GetAbcFileInstance(); in main() local
118 size_t def_func_cnt = abc_file->GetDefinedFunctionCount(); in main()
120 size_t def_class_cnt = abc_file->GetDefinedClassCount(); in main()
124 TestHelper::ExpectTrue(abc_file->IsModule()); in main()
126 std::string inter_name0 = abc_file->GetInternalNameByExportName("UInput"); in main()
128 auto ex_class = abc_file->GetExportClassByExportName("UInput"); in main()
150 std::string inter_name1 = abc_file->GetInternalNameByExportName("exFunc3"); in main()
152 auto ex_func1 = abc_file->GetExportFunctionByExportName("exFunc3"); in main()
156 std::string inter_name2 = abc_file->GetInternalNameByExportName("default"); in main()
158 auto ex_func2 = abc_file->GetExportFunctionByExportName("default"); in main()
[all …]
/arkcompiler/ets_frontend/test262/
Drun_sunspider.py185 self.abc_file = ""
345 self.abc_file = f'{file_name_pre}.abc'
351 self.abc_file = f'{file_name_pre}.abc'
363 self.abc_file = out_file
423 self.abc_file = os.path.abspath(out_file)
430 abc_file = import_file[0][1:].replace(".js", ".abc")
431 abc_file = os.path.abspath(f'{js_dir}/{abc_file}')
432 if self.abc_file.find(abc_file) < 0:
433 self.abc_file += f':{abc_file}'
469 self.abc_file]
[all …]
/arkcompiler/runtime_core/libark_defect_scan_aux/include/
Dclass.h37 Class(std::string_view class_name, const AbcFile *abc_file, const Function *def_func) in Class() argument
38 : class_name_(class_name), abc_file_(abc_file), def_func_(def_func) in Class()
Dfunction.h34 const AbcFile *abc_file) in Function() argument
35 … : func_name_(func_name), m_id_(m_id), arg_count_(arg_count), graph_(graph), abc_file_(abc_file) in Function()
/arkcompiler/runtime_core/libark_defect_scan_aux/
Dabc_file.cpp59 …std::unique_ptr<AbcFile> abc_file(new (std::nothrow) AbcFile(abc_filename, std::move(panda_file))); in Open() local
60 if (abc_file == nullptr) { in Open()
65 abc_file->ExtractDebugInfo(); in Open()
66 abc_file->ExtractModuleInfo(); in Open()
67 abc_file->InitializeAllDefinedFunction(); in Open()
68 abc_file->ExtractDefinedClassAndFunctionInfo(); in Open()
69 abc_file->ExtractClassAndFunctionExportList(); in Open()
70 return abc_file; in Open()
DBUILD.gn36 "$ark_root/libark_defect_scan_aux/abc_file.cpp",
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dexecution.py341 for idx, abc_file in enumerate(hap_1_abc_files):
342 with zf1.open(abc_file) as f1, zf2.open(hap_2_abc_files[idx]) as f2:
554 def disasm_abc(abc_file): argument
572 pa_file = abc_file + '.pa'
573 cmd = [ark_disasm_path, '--verbose', abc_file, pa_file]
588 def is_abc_debug_info_correct(abc_file, is_debug): argument
589 pa_file = disasm_abc(abc_file)
/arkcompiler/ets_frontend/testTs/
Drun_testTs.py296abc_file = os.path.abspath(os.path.join(outpath, '%s.abc' % os.path.splitext(os.path.basename(file…
298 '--modules', '--display-typeinfo', '-o', abc_file];
/arkcompiler/ets_runtime/test/
Druntest.py314 abc_file = f'{os.path.splitext(file)[0]}.abc'
419 abc_file = f'{out_case_dir}/{name}.abc'