Home
last modified time | relevance | path

Searched refs:disasm (Results 1 – 24 of 24) sorted by relevance

/arkcompiler/runtime_core/disassembler/
Ddisasm.cpp36 panda::disasm::Disassembler disasm {}; in Disassemble() local
37 disasm.Disassemble(input_file, quiet, skip_strings); in Disassemble()
39 disasm.CollectInfo(); in Disassemble()
46 disasm.Serialize(res_pa, true, verbose); in Disassemble()
Daccumulators.h25 namespace panda::disasm {
DBUILD.gn119 sources = [ "disasm.cpp" ]
Ddisassembler.h49 namespace panda::disasm {
DCMakeLists.txt17 panda_add_executable(ark_disasm disasm.cpp)
Ddisassembler.cpp24 namespace panda::disasm { namespace
/arkcompiler/runtime_core/tests/checked/
Dchecker_tests.rb22 disasm = %(
49 File.write('disasm.txt', disasm)
DREADME.md39 * **ASM_METHOD** (name: string) select a specified method in disasm file, next "ASM*" checks will b…
40 * **ASM_INST** (inst: pattern) select a specified instruction in disasm file, next "ASM*" checks wi…
41 …nst: pattern) same as other similar checks, but search only in a current disasm scope, defined by …
42 If none of these checks were specified, then search will be applied in the whole disasm file.
Ddisasm_and_log_demo.pa15 #! RUN force_jit: true, options: "--compiler-disasm-dump", entry: "_GLOBAL::main"
/arkcompiler/runtime_core/disassembler/templates/
Dopcode_translator.cpp.erb18 namespace panda::disasm {
31 } // namespace panda::disasm
Dtype_to_pandasm_type.cpp.erb18 namespace panda::disasm {
68 } // namespace panda::disasm
Dget_ins_info.cpp.erb21 namespace panda::disasm {
77 } // namespace panda::disasm
Dbc_ins_to_pandasm_ins.cpp.erb18 namespace panda::disasm {
98 } // namespace panda::disasm
Dget_language_specific_metadata.inc.erb18 namespace panda::disasm {
/arkcompiler/runtime_core/compiler/tests/
Dvixl_exec_module.h241 Disassembler disasm(allocator_); in PrintInstructions()
242 decoder.AppendVisitor(&disasm); in PrintInstructions()
247 … std::cout << *(reinterpret_cast<const uint32_t *>(instr)) << ":\t" << disasm.GetOutput() << "\n"; in PrintInstructions()
/arkcompiler/runtime_core/docs/
Daot.md163 as disassembly(`--show-code disasm`) or in base64 binary(`--show-code binary`)
167 `ark_aotdump --show-code disasm file.an`
170 `--compiler-disasm-dump` that dumps disassembler, IR instruction and all generated native code for …
171 Disassembler creates files with following name format `disasm-<METHOD_NAME>.txt`. IR dumps are writ…
178 `ark_aot --compiler-disasm-dump --panda-files file.abc --output file.an`
/arkcompiler/runtime_core/disassembler/tests/
Dfunctions_test.cpp.in22 using namespace panda::disasm;
Dliterals_test.cpp.in22 using namespace panda::disasm;
Dmetadata_test.cpp.in22 using namespace panda::disasm;
Drecords_test.cpp.in22 using namespace panda::disasm;
Dlabels_test.cpp.in22 using namespace panda::disasm;
Dinstructions_test.cpp.in22 using namespace panda::disasm;
/arkcompiler/runtime_core/cmake/
DPandaAssembly.cmake271 "--show-code" "disasm"
/arkcompiler/runtime_core/compiler/tests/aarch64/
Dencoder64_test.cpp3451 vixl::aarch64::Disassembler disasm(buf, sizeof(buf)); in GetOutput() local
3452 vixl::aarch64::Decoder::ScopedVisitors sv(decoder_, {&disasm}); in GetOutput()
3461 output_ += disasm.GetOutput(); in GetOutput()