Searched full:assembly (Results 1 – 25 of 170) sorted by relevance
1234567
| /arkcompiler/runtime_core/tests/ |
| D | CMakeLists.txt | 16 add_custom_target(cts-assembly COMMENT "Running compliance tests for Panda Assembly") 27 add_dependencies(tests cts-assembly regression) 31 add_dependencies(tests cts-assembly regression cts-generator-build verifier-tests) 658 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/env-01.pa" ARGUMENTS -- 1 2 EXPECTED_S… 659 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/math-01.pa") 660 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/math-02.pa") 661 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/math-03.pa") 662 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/math-04.pa") 663 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/math-05.pa") 664 add_test_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/cts-assembly/math-06.pa") [all …]
|
| /arkcompiler/runtime_core/tests/benchmarks/ |
| D | CMakeLists.txt | 13 # Building and running benchmarks in Panda Assembly from the Panda source tree. 104 add_custom_target(benchmarks-panda-assembly-interpreter 105 COMMENT "Running benchmarks in Panda Assembly in interpreter") 106 add_custom_target(benchmarks-panda-assembly-enforce-jit-compiler 107 COMMENT "Running benchmarks in Panda Assembly with enforced JIT") 108 add_custom_target(benchmarks-panda-assembly-aot 109 COMMENT "Running benchmarks in Panda Assembly with AOT") 110 add_custom_target(benchmarks-panda-assembly-default 111 COMMENT "Running benchmarks in Panda Assembly") 114 benchmarks-panda-assembly-interpreter [all …]
|
| /arkcompiler/runtime_core/assembler/ |
| D | assembly-program.h | 22 #include "assembly-function.h" 23 #include "assembly-record.h" 24 #include "assembly-type.h" 25 #include "assembly-methodhandle.h" 26 #include "assembly-literals.h"
|
| D | CMakeLists.txt | 38 assembly-emitter.cpp 39 assembly-parser.cpp 40 assembly-program.cpp 41 assembly-type.cpp 42 assembly-ins.cpp
|
| D | BUILD.gn | 31 "assembly-emitter.cpp", 32 "assembly-ins.cpp", 33 "assembly-parser.cpp", 34 "assembly-program.cpp", 35 "assembly-type.cpp",
|
| D | assembly-parser.h | 24 #include "assembly-context.h" 25 #include "assembly-emitter.h" 26 #include "assembly-field.h" 27 #include "assembly-function.h" 28 #include "assembly-ins.h" 29 #include "assembly-label.h" 30 #include "assembly-program.h" 31 #include "assembly-record.h" 32 #include "assembly-type.h"
|
| D | assembly-function.h | 26 #include "assembly-ins.h" 27 #include "assembly-label.h" 28 #include "assembly-type.h" 29 #include "assembly-debug.h" 30 #include "assembly-file-location.h"
|
| D | assembly-context.h | 24 #include "assembly-ins.h" 25 #include "assembly-type.h"
|
| /arkcompiler/runtime_core/compiler/tools/ |
| D | ignore_checked_coverage.txt | 7 # IGNORE benchmark - ignoring a benchmark or CTS-assembly test (bo… 8 …on - ignoring a single function of a benchmark or CTS-assembly test (both osr an… 9 … - ignoring OSR-compilation of a single function of a benchmark or CTS-assembly test for aarch32 … 10 …ark JIT - ignoring JIT-compilation of a benchmark or CTS-assembly test
|
| /arkcompiler/ets_frontend/ts2panda/ |
| D | README.md | 10 * [panda assembly dumper](doc/assembly_dumper.md) 19 #### dump panda assembly 21 …se/clang_x64/arkcompiler/ets_frontend/build/src/index.js <your/path/to/case_jsFile> --dump-assembly
|
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | mergeProgram.h | 19 #include "assembly-function.h" 20 #include "assembly-ins.h" 21 #include "assembly-program.h"
|
| /arkcompiler/runtime_core/docs/ |
| D | assembly_format.md | 1 # Assembly File Format Specification 5 This document describes assembly file format for Panda platform. Assembly files are human-readable … 11 …assembly should not "favor" by any means any existing programming language that is (or intended to… 12 …anda assembly should not focus on a certain programming paradigm. E.g. we should not enforce conce… 14 … quantity and internal structure of source code files writtebn in Panda assembly language. Assembl… 70 As stated above, current version of Panda assembly does not favor any language as the platform is d… 107 …ill be renamed in binary file according to particular language rules (`.ctor` for Panda Assembly) | 108 …ll be renamed in binary file according to particular language rules (`.cctor` for Panda Assembly) | 136 Currently Panda Assembly supports annotations for the following languages: 151 Currently Panda Assembly supports following Java annotations [all …]
|
| D | cfi_directives.md | 5 In some situations **hand-written** assembly code is preferred to compiler-generated, i.e. for perf… 8 Unfortunately, hand-written assembly lacks of debug symbols and they should be added manually by a …
|
| D | design-of-interpreter.md | 208 1. A light-weight Panda Assembly language is developed, along with the Panda Assembler tool. 209 1. A compliance test suite for the Panda Assembly language is created. The core part of the suite 210 are small chunks of hand-written Panda Assembly covering corner cases, while the majority of 212 1. A set of benchmarks is ported to Panda Assembly and maintained as a part of the source tree. 216 A general overview of managed assembly languages can be found [here](overview-of-managed-assemblers…
|
| D | glossary.md | 29 * **Panda Assembler** is a tool that translates **Panda Assembly Language** 31 * **Panda Assembly Language** is a low-level programming language retaining very strong 33 See [Assembly Format](assembly_format.md).
|
| /arkcompiler/ets_frontend/ts2panda/ts2abc/ |
| D | ts2abc.h | 26 #include "assembly-type.h" 27 #include "assembly-program.h" 28 #include "assembly-emitter.h"
|
| D | main.cpp | 16 #include "assembly-type.h" 17 #include "assembly-program.h" 18 #include "assembly-emitter.h"
|
| /arkcompiler/ets_runtime/ecmascript/compiler/assembler/ |
| D | assembler.h | 43 // When run from cpp to assembly code, there are some insts before the assembly frame is ready. 44 // When return from assembly code to cpp, there are some insts after the assembly frame is broken.
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | optimize_bytecode.h | 19 #include "assembler/assembly-emitter.h" 20 #include "assembler/assembly-program.h"
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | hotfix.h | 19 #include <assembly-function.h> 20 #include <assembly-ins.h> 21 #include <assembly-literals.h> 22 #include <assembly-program.h>
|
| /arkcompiler/ets_frontend/es2panda/compiler/debugger/ |
| D | debuginfoDumper.h | 19 #include <assembly-ins.h> 20 #include <assembly-program.h>
|
| /arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
| D | typeExtractorEmitter.h | 21 #include <assembly-function.h> 22 #include <assembly-program.h>
|
| /arkcompiler/runtime_core/runtime/tests/ |
| D | intrinsics_blacklist_test.cpp | 17 #include "assembly-parser.h" 18 #include "assembly-emitter.h"
|
| /arkcompiler/runtime_core/cmake/ |
| D | PandaAssembly.cmake | 14 # Add a panda assembly to the project using the specified source file 20 # Adds a panda assembly target called <name> to be build from <source> file 87 # Add a single buildable and runnable Panda Assembly file to the build tree. 110 # Adds a target <target> which assembles the assembly file <source> 127 # Do not run assembly 359 # Add a single buildable and verifiable Panda Assembly file to the build tree. 376 # Adds a target <target> which assembles the assembly file <source>
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
| D | inspector_test_base.cpp | 20 #include "assembly-emitter.h" 21 #include "assembly-parser.h"
|
1234567