Searched refs:disasm (Results 1 – 24 of 24) sorted by relevance
/arkcompiler/runtime_core/disassembler/ |
D | disasm.cpp | 36 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()
|
D | accumulators.h | 25 namespace panda::disasm {
|
D | BUILD.gn | 119 sources = [ "disasm.cpp" ]
|
D | disassembler.h | 49 namespace panda::disasm {
|
D | CMakeLists.txt | 17 panda_add_executable(ark_disasm disasm.cpp)
|
D | disassembler.cpp | 24 namespace panda::disasm { namespace
|
/arkcompiler/runtime_core/tests/checked/ |
D | checker_tests.rb | 22 disasm = %( 49 File.write('disasm.txt', disasm)
|
D | README.md | 39 * **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.
|
D | disasm_and_log_demo.pa | 15 #! RUN force_jit: true, options: "--compiler-disasm-dump", entry: "_GLOBAL::main"
|
/arkcompiler/runtime_core/disassembler/templates/ |
D | opcode_translator.cpp.erb | 18 namespace panda::disasm { 31 } // namespace panda::disasm
|
D | type_to_pandasm_type.cpp.erb | 18 namespace panda::disasm { 68 } // namespace panda::disasm
|
D | get_ins_info.cpp.erb | 21 namespace panda::disasm { 77 } // namespace panda::disasm
|
D | bc_ins_to_pandasm_ins.cpp.erb | 18 namespace panda::disasm { 98 } // namespace panda::disasm
|
D | get_language_specific_metadata.inc.erb | 18 namespace panda::disasm {
|
/arkcompiler/runtime_core/compiler/tests/ |
D | vixl_exec_module.h | 241 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/ |
D | aot.md | 163 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/ |
D | functions_test.cpp.in | 22 using namespace panda::disasm;
|
D | literals_test.cpp.in | 22 using namespace panda::disasm;
|
D | metadata_test.cpp.in | 22 using namespace panda::disasm;
|
D | records_test.cpp.in | 22 using namespace panda::disasm;
|
D | labels_test.cpp.in | 22 using namespace panda::disasm;
|
D | instructions_test.cpp.in | 22 using namespace panda::disasm;
|
/arkcompiler/runtime_core/cmake/ |
D | PandaAssembly.cmake | 271 "--show-code" "disasm"
|
/arkcompiler/runtime_core/compiler/tests/aarch64/ |
D | encoder64_test.cpp | 3451 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()
|