Home
last modified time | relevance | path

Searched refs:binary (Results 1 – 25 of 55) sorted by relevance

123

/arkcompiler/runtime_core/
D.gitattributes3 # Denote all image files as binary
4 *.png binary
5 *.jpg binary
6 *.gif binary
DREADME.md26 …verts an ARK bytecode file in text format (*.pa) into a bytecode file in binary format (*.abc). Fo…
27 …er, further optimize the ARK bytecode to generate optimized bytecode file in binary format (*.abc).
31 ├── disassembler # Disassembler that converts an ARK bytecode file in binary format (*.a…
38 ├── libark_defect_scan_aux # Vulnerability defect scanning tool for ARK bytecode file in binary fo…
40 ├── libpandafile # Source code repository of ARK bytecode files (*.abc) in binary format.
42 ├── panda # CLI tool used to execute ARK bytecode files in binary format(*.abc).
75 The ark\_asm assembler converts the text ARK bytecode file into a bytecode file in binary format.
97 Output file: ARK bytecodes in binary format
101 The ark\_disasm disassembler converts binary ARK bytecodes into readable text ARK bytecodes.
121 Input file: ARK bytecodes in binary format
/arkcompiler/ets_frontend/arkguard/src/generator/
DDictionaryNameGenerator.ts50 let binary: string = this.mTransformNumber.toString(BINARY_RADIX).split('').reverse().join('');
52 for (let i = 0; i < binary.length; i++) {
53 if (binary[i] === '1') {
/arkcompiler/ets_frontend/
D.gitattributes2 as2panda/dist/* binary
4 as2panda/lib/binaryen.js binary
/arkcompiler/ets_frontend/merge_abc/src/
DprotobufSnapshotGenerator.cpp30 std::ios::out | std::ios::trunc | std::ios::binary); in GenerateSnapshot()
44 std::ios::in | std::ios::binary); in GenerateProgram()
62 std::ios::in | std::ios::binary); in GetCacheContext()
91 std::ios::out | std::ios::trunc | std::ios::binary); in UpdateCacheFile()
/arkcompiler/ets_frontend/ts2panda/
DREADME.md11 * [panda binary dumper](doc/binary_dumper.md)
15 #### dump panda binary
/arkcompiler/ets_frontend/es2panda/
DREADME.md15 - `--dump-size-stat`: Dump binary size statistics
19 - `--output`: Compiler binary output (.abc)
/arkcompiler/ets_frontend/legacy_bin/
Dprebuilts-readme-legacy.md1 # legacy binary构建说明
/arkcompiler/runtime_core/bytecode_optimizer/tools/
Doptimizer_coverage.sh21 --binary-dir=*)
/arkcompiler/ets_frontend/test_ecma_bcopt/
Dtest_bytecode_optimizer_for_js.txt2 # source binary: test_bytecode_optimizer_for_js.abc
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot.cpp54 std::fstream writer(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in Serialize()
82 std::fstream writer(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in Serialize()
109 std::fstream write(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::app); in SerializeBuiltins()
/arkcompiler/ets_runtime/docs/
Denvironment-setup-and-compilation.md42 The binary files related to ARK are available in the following paths:
Dusing-the-toolchain.md150 The ark\_asm assembler converts the text ARK bytecode file into a bytecode file in binary format.
200 Output file: ARK bytecodes in binary format
204 The ark\_disasm disassembler converts binary ARK bytecodes into readable text ARK bytecodes.
242 Input file: ARK bytecodes in binary format
/arkcompiler/runtime_core/bytecode_optimizer/cmake/
Dcoverage.cmake18 …COMMAND bash ${PANDA_ROOT}/bytecode_optimizer/tools/optimizer_coverage.sh --binary-dir=${PANDA_BIN…
/arkcompiler/runtime_core/docs/
Dassembly_format.md5binary files that can be executed by the Panda virtual machine. Please note that this document doe…
13 * When Panda assembler generates a binary executable file, it is not expected to check for language…
27 * Signed/Unsigned decimal/hexadecimal/binary integers not larger than 64 bits. Hexadecimal literals…
107 | `ctor` | Marks a function as object constructor. It will be renamed in binary file according to…
108 | `cctor` | Marks a function as static constructor. It will be renamed in binary file according to…
494 - Assembler doesn't guarantee that functions, records and their fields will be located in binary fi…
529 # After loading the binary, control will be transferred here
Dcfi_directives.md6 In case of **compiler-generated** code compilers emit special **debug symbols** in resulting binary
/arkcompiler/ets_frontend/ts2panda/src/statement/
DreturnStatement.ts56 …pandaGen.binary(stmt, ts.SyntaxKind.EqualsEqualsEqualsToken, getVregisterCache(pandaGen, CacheList…
/arkcompiler/toolchain/test/
Dtest_helper.gni102 "--qemu-binary-path",
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Dan_file_info.cpp37 std::ofstream file(rawPath, std::ofstream::binary); in Save()
Dstub_file_info.cpp35 std::ofstream file(realPath.c_str(), std::ofstream::binary); in Save()
/arkcompiler/runtime_core/cmake/
DTesting.cmake63 # If OUTPUT_DIRECTORY is not defined, the binary will be put to bin-gtests
DHostTools.cmake15 # we need to have the assembler binary. If we are not
/arkcompiler/toolchain/build/config/compiler/
DBUILD.gn67 # .comment section taking up binary size.
79 # much even when optimization is disabled to get the binary size down.
285 # Reduce the page size from 65536 in order to reduce binary size slightly
/arkcompiler/toolchain/build/config/aosp/
Dconfig.gni49 # Libc++ library directory. Override to use a custom libc++ binary.
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_encoder.cpp126 … std::fstream::binary | std::fstream::out | std::fstream::in | std::fstream::trunc); in SaveAndRename()

123