| /arkcompiler/ets_frontend/ets2panda/test/parser/js/ |
| D | test-binary-expression-expected.txt | 17 "program": "test-binary-expression.js" 22 "program": "test-binary-expression.js" 34 "program": "test-binary-expression.js" 39 "program": "test-binary-expression.js" 47 "program": "test-binary-expression.js" 52 "program": "test-binary-expression.js" 60 "program": "test-binary-expression.js" 65 "program": "test-binary-expression.js" 82 "program": "test-binary-expression.js" 87 "program": "test-binary-expression.js" [all …]
|
| /arkcompiler/ets_frontend/ets2panda/lexer/scripts/ |
| D | tokens.yaml | 17 flags: [binary] 21 flags: [binary] 25 flags: [binary] 29 flags: [binary] 33 flags: [unary, binary] 49 flags: [binary] 53 flags: [binary] 57 flags: [binary] 61 flags: [binary] 65 flags: [binary] [all …]
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/interop/ |
| D | binary_operation_js_obj.ets.arkts2.json | 54 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 64 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 74 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 84 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 94 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 104 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 114 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 124 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 134 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 144 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", [all …]
|
| D | binary_operation_js_obj.ets.autofix.json | 107 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 128 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 149 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 170 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 191 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 212 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 233 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 254 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 275 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", 296 "rule": "Binary operations on js objects (arkts-interop-js2s-binary-op)", [all …]
|
| /arkcompiler/runtime_core/ |
| D | .gitattributes | 3 # Denote all image files as binary 4 *.png binary 5 *.jpg binary 6 *.gif binary 8 …e/plugins/ets/tests/ets-templates/02.lexical_elements/04.line_separators/line_separators.ets binary 9 …tic_core/plugins/ets/tests/ets-templates/02.lexical_elements/03.white_spaces/whitespaces.ets binary 10 …e/plugins/ets/tests/ets-templates/02.lexical_elements/04.line_separators/line_separators.sts binary 11 …tic_core/plugins/ets/tests/ets-templates/02.lexical_elements/03.white_spaces/whitespaces.sts binary
|
| D | README.md | 25 …verts an ARK bytecode file in text format (*.pa) into a bytecode file in binary format (*.abc). Fo… 26 …er, further optimize the ARK bytecode to generate optimized bytecode file in binary format (*.abc). 30 ├── disassembler # Disassembler that converts an ARK bytecode file in binary format (*.a… 37 ├── libark_defect_scan_aux # Vulnerability defect scanning tool for ARK bytecode file in binary fo… 39 ├── libpandafile # Source code repository of ARK bytecode files (*.abc) in binary format. 41 ├── panda # CLI tool used to execute ARK bytecode files in binary format(*.abc). 74 The ark\_disasm disassembler converts binary ARK bytecodes into readable text ARK bytecodes. 94 Input file: ARK bytecodes in binary format
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_warnings_tests/boost_equal_statements_tests/ |
| D | boost_equal_statements_2-expected.txt | 1 Warning: Boost Equality Statement. Change sides of binary expression. [boost_equal_statements_2.ets… 2 Warning: Boost Equality Statement. Change sides of binary expression. [boost_equal_statements_2.ets… 3 Warning: Boost Equality Statement. Change sides of binary expression. [boost_equal_statements_2.ets… 4 Warning: Boost Equality Statement. Change sides of binary expression. [boost_equal_statements_2.ets… 5 Warning: Boost Equality Statement. Change sides of binary expression. [boost_equal_statements_2.ets…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/04.casting_contexts_and_conversions/04.casting_conversions_from_type_parameter/ |
| D | objectto_number_3.ets | 17 desc: Convert to number-binary type. 21 let binary: number = 0b1010; // 10 22 const obj1: object = binary; 23 assertTrue(obj1 == binary);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/src/arkts_playground/deps/ |
| D | runner.py | 30 class Binary(SimpleNamespace): class 47 self.binary = Binary( 140 … stdout, stderr, retcode = await self._execute_cmd(self.binary.disasm_bin, input_file, output_file) 156 stdout, stderr, retcode = await self._execute_cmd(self.binary.es2panda, *options) 166 self.binary.verifier, 197 output, _, _ = await self._execute_cmd(self.binary.ark_bin, "--version") 204 _, stderr, _ = await self._execute_cmd(self.binary.es2panda, "--version") 228 stdout, stderr, retcode = await self._execute_cmd(self.binary.ark_bin, *run_cmd) 234 … for f in [self.binary.disasm_bin, self.binary.ark_bin, self.binary.es2panda, self.stdlib_abc]: 245 return Runner(sett.binary.build, sett.binary.timeout, sett.binary.icu_data)
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/ |
| D | params.py | 40 # Path and parameters for es2panda binary 44 # Path and parameters for ark binary 48 # Path and parameters for ark_aot binary 52 # Path and parameters for ark_quick binary 60 # Path and parameters for verifier binary
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_warnings_tests/warnings_suppresion_tests/ |
| D | warnings_suppression_begin_end_2-expected.txt | 8 Warning: Boost Equality Statement. Change sides of binary expression. [warnings_suppression_begin_e… 10 Warning: Implicit Boxing to Int in Binary Expression. [warnings_suppression_begin_end_2.ets:76:19] 11 Warning: Boost Equality Statement. Change sides of binary expression. [warnings_suppression_begin_e… 13 Warning: Implicit Boxing to Int in Binary Expression. [warnings_suppression_begin_end_2.ets:81:19]
|
| /arkcompiler/runtime_core/static_core/compiler/cmake/ |
| D | benchmark_coverage.cmake | 34 …COMMAND bash ${PANDA_ROOT}/compiler/tools/benchmark_coverage.sh --binary-dir=${PANDA_BINARY_ROOT} … 39 …COMMAND bash ${PANDA_ROOT}/compiler/tools/benchmark_coverage.sh --binary-dir=${PANDA_BINARY_ROOT} … 44 …COMMAND bash ${PANDA_ROOT}/compiler/tools/benchmark_coverage.sh --binary-dir=${PANDA_BINARY_ROOT} … 49 …COMMAND bash ${PANDA_ROOT}/compiler/tools/benchmark_coverage.sh --binary-dir=${PANDA_BINARY_ROOT} … 54 …COMMAND bash ${PANDA_ROOT}/compiler/tools/benchmark_coverage.sh --binary-dir=${PANDA_BINARY_ROOT} … 60 # COMMAND bash ${PANDA_ROOT}/compiler/tools/benchmark_coverage.sh --binary-dir=${PANDA_BINARY_RO…
|
| D | ir_builder_coverage.cmake | 20 …COMMAND bash ${PANDA_ROOT}/compiler/tools/ir_builder_coverage.sh --binary-dir=${PANDA_BINARY_ROOT}… 26 …COMMAND bash ${PANDA_ROOT}/compiler/tools/pbc_2_ir_doc_gen.sh --binary-dir=${PANDA_BINARY_ROOT} --…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/runtime/ |
| D | 05_imports.rst | 114 packaging, |LANG| runtime subsystem relies only on binary executable files: 116 - Internal runtime loading APIs work **only** with binary executable files 118 - Binary executable files for |LANG| 2.0 do not have the concept of the common 124 All entities (functions, records) inside the executable binary file have fully 126 words, executable binary file is "flat" in terms of runtime names. 128 - Executable binary file by itself has no associated name or entrypoint, 131 - Executable binary file can be moved within the filesystem and runtime is not 132 sensitive to the actual file system path to the executable binary file. 134 - Several executable binary files *.abc* can be merged togethe, and it doesn't 137 - Executable binary files are processed **only** within a fixed **load context** [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_warnings_tests/implicit_boxing_unboxing_tests/ |
| D | implicit_boxing_unboxing_1-expected.txt | 1 Warning: Implicit Boxing to Int in Binary Expression. [implicit_boxing_unboxing_1.ets:26:9] 3 Warning: Implicit Boxing to Int in Binary Expression. [implicit_boxing_unboxing_1.ets:27:9] 35 Warning: Implicit Boxing to Int in Binary Expression. [implicit_boxing_unboxing_1.ets:78:5] 36 Warning: Implicit Boxing to Int in Binary Expression. [implicit_boxing_unboxing_1.ets:81:8] 37 Warning: Implicit Boxing to Int in Binary Expression. [implicit_boxing_unboxing_1.ets:82:5] 38 Warning: Implicit Boxing to Int in Binary Expression. [implicit_boxing_unboxing_1.ets:83:13]
|
| /arkcompiler/ets_frontend/ |
| D | .gitattributes | 2 as2panda/dist/* binary 4 as2panda/lib/binaryen.js binary
|
| /arkcompiler/runtime_core/static_core/tests/test-lists/hermes/ |
| D | hermes-excluded.txt | 122 bigint-binary-addition.js 123 bigint-binary-ashl.js 124 bigint-binary-ashr.js 125 bigint-binary-division.js 126 bigint-binary-equality.js 127 bigint-binary-exponentiate.js 128 bigint-binary-lshr.js 129 bigint-binary-multiplication.js 130 bigint-binary-relops.js 131 bigint-binary-remainder.js [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/src/arkts_playground/ |
| D | config.py | 41 class Binary(BaseModel): class 50 binary: Binary
|
| /arkcompiler/runtime_core/libabckit/doc/ |
| D | how_to_build_and_test.md | 42 The generated abckit binary and libabckit.so/libabckit.dll are in the `out/${target}/arkcompiler/ru… 44 The generated binary and library depend on the libraries in: 81 There are two ways to use abckit: executable binary and dynamic library. 83 (1) executable binary
|
| /arkcompiler/runtime_core/static_core/compiler/tools/aotdump/ |
| D | aotdump.yaml | 29 - binary 30 description: Print methods code in binary format
|
| /arkcompiler/jsvm/ |
| D | build_jsvm_inter.sh | 79 binary=${stripped_binary_path} 80 echo "${binary}" 87 ${NM} -D ${binary} --format=posix --defined-only \ 89 ${NM} ${binary} --format=posix --defined-only \ 94 ${OBJCOPY} --only-keep-debug ${binary} ${debug_path} 98 ${STRIP} --strip-all ${binary} 101 ${OBJCOPY} --add-section .gnu_debugdata=${mini_debug_path}.xz ${binary}
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
| D | platform.py | 179 for binary in bu.binaries: 180 log.trace('Deleting: %s', binary) 181 binary.unlink(missing_ok=True) 221 for binary in bu.binaries: 222 log.info('Path to binary: %s', binary)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/04.widening_union_conversions/ |
| D | nouniontounion2.ets | 21 let binary: number = 0b1010; 23 let unionValue: StringOrNumber = binary;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/buffer/ |
| D | BufferEncoding.ets | 20 'base64' |'base64url' | 'latin1' | 'binary' | 'hex'; 26 …ii', 'utf8', 'utf-8', 'utf16le', 'ucs2', 'ucs-2', 'base64', 'base64url', 'latin1', 'binary', 'hex']
|
| /arkcompiler/ets_frontend/es2panda/ |
| D | README.md | 15 - `--dump-size-stat`: Dump binary size statistics 19 - `--output`: Compiler binary output (.abc)
|