Home
last modified time | relevance | path

Searched full:binary (Results 1 – 25 of 182) sorted by relevance

12345678

/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/runtime_core/compiler/cmake/
Dbenchmark_coverage.cmake34 …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…
Dir_builder_coverage.cmake19 …COMMAND bash ${PANDA_ROOT}/compiler/tools/ir_builder_coverage.sh --binary-dir=${PANDA_BINARY_ROOT}…
24 …COMMAND bash ${PANDA_ROOT}/compiler/tools/pbc_2_ir_doc_gen.sh --binary-dir=${PANDA_BINARY_ROOT} --…
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/prof_dump/
Dmain.cpp63 {"binary", required_argument, nullptr, 'b'}, in ParseCommand()
112 "-t, --text binary to text.\n" in GetHelper()
113 "-b, --binary text to binary.\n" in GetHelper()
155 LOG_NO_TAG(ERROR) << "profiler dump to binary success!"; in Main()
157 LOG_NO_TAG(ERROR) << "profiler dump to binary failed!"; in Main()
/arkcompiler/toolchain/build/toolchain/linux/
DBUILD.gn68 # Output linker map files for binary size analysis.
86 # Output linker map files for binary size analysis.
97 # Output linker map files for binary size analysis.
117 # Output linker map files for binary size analysis.
/arkcompiler/ets_frontend/
D.gitattributes2 as2panda/dist/* binary
4 as2panda/lib/binaryen.js binary
/arkcompiler/ets_frontend/merge_abc/src/
DprotobufSnapshotGenerator.cpp28 std::ios::out | std::ios::trunc | std::ios::binary); in GenerateSnapshot()
40 …ream input(panda::os::file::File::GetExtendedFilePath(inputName), std::ios::in | std::ios::binary); in GenerateProgram()
57 std::ios::in | std::ios::binary); in GetCacheContext()
86 std::ios::out | std::ios::trunc | std::ios::binary); in UpdateCacheFile()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp182 …CString maxSafeIntStr = "11111111111111111111111111111111111111111111111111111"; // Binary: 2 ^ 53… in HWTEST_F_L0()
183 … maxSafeIntPlusOneStr = "100000000000000000000000000000000000000000000000000000"; // Binary: 2 ^ 53 in HWTEST_F_L0()
184 …CString bigintStr1 = "111111111111111111111111111111111111111111111111111111"; // Binary: 2 ^ 54 -… in HWTEST_F_L0()
186 JSHandle<BigInt> maxSafeInt = BigIntHelper::SetBigInt(thread, maxSafeIntStr, BigInt::BINARY); in HWTEST_F_L0()
187 …<BigInt> maxSafeIntPlusOne = BigIntHelper::SetBigInt(thread, maxSafeIntPlusOneStr, BigInt::BINARY); in HWTEST_F_L0()
188 JSHandle<BigInt> bigint1 = BigIntHelper::SetBigInt(thread, bigintStr1, BigInt::BINARY); in HWTEST_F_L0()
189 JSHandle<BigInt> bigint2 = BigIntHelper::SetBigInt(thread, bigintStr2, BigInt::BINARY); in HWTEST_F_L0()
209 JSHandle<BigInt> bigint = BigIntHelper::SetBigInt(thread, bigintStr4, BigInt::BINARY); in HWTEST_F_L0()
217 JSHandle<BigInt> bigint5 = BigIntHelper::SetBigInt(thread, bigintStr5, BigInt::BINARY); in HWTEST_F_L0()
222 JSHandle<BigInt> bigint6 = BigIntHelper::SetBigInt(thread, bigintStr6, BigInt::BINARY); in HWTEST_F_L0()
[all …]
/arkcompiler/runtime_core/compiler/tools/aotdump/
Daotdump.yaml29 - binary
30 description: Print methods code in binary format
/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/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 …/Unsigned decimal/hexadecimal/binary integers not larger than 64 bits. Hexadecimal literals are pr…
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
Dglossary.md30 to **Panda Binary File**.
34 * **Panda Binary File** or **Panda File** or **PF** is a binary representation of Panda Bytecode.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dfldai.64.yaml35 # test - check binary representation of FP literals - positive
89 # test - check binary representation of FP literals - negative
170 # test - check binary representation of FP literals - positive
Dfldai.yaml35 # test - check binary representation of FP literals - positive
86 # test - check binary representation of FP literals - negative
164 # test - check binary representation of FP literals - positive
Dfmovi.64.yaml96 # test - check binary representation of FP literals
219 # test - check binary representation of FP literals
Dfmovi.yaml95 # test - check binary representation of FP literals
221 # test - check binary representation of FP literals
/arkcompiler/toolchain/build/toolchain/
Dgcc_solink_wrapper.py97 help='The readelf binary to run',
101 help='The nm binary to run',
104 help='The strip binary to run',
Dgcc_link_wrapper.py21 # actually wrapper scripts (i.e. .bat files on Windows) rather than binary
62 help='The strip binary to run',
/arkcompiler/ets_frontend/test262/
Drun_test262.py76 help="ark's binary tool")
86 parser.add_argument('--ark-frontend-binary',
87 help="ark frontend conversion binary tool")
101 parser.add_argument('--merge-abc-binary',
102 help="frontend merge abc binary tool")
543 host_args += f"--ark-frontend-binary={ark_frontend_binary} "
546 host_args += f"--merge-abc-binary={merge_abc_binary} "
Drun_sunspider.py38 help="ark's binary tool")
58 parser.add_argument('--ark-frontend-binary',
61 help="ark frontend conversion binary tool")
79 parser.add_argument('--merge-abc-binary',
82 help="frontend merge abc binary tool")
/arkcompiler/runtime_core/quickener/
Dquick.cpp57 panda::PandArg<std::string> input("INPUT", "", "Path to the input binary file"); in main()
58 panda::PandArg<std::string> output("OUTPUT", "", "Path to the output binary file"); in main()
/arkcompiler/ets_frontend/test_ecma_bcopt/
Dtest_bytecode_optimizer_for_js.txt2 # source binary: test_bytecode_optimizer_for_js.abc
/arkcompiler/ets_runtime/docs/
Denvironment-setup-and-compilation.md42 The binary files related to ARK are available in the following paths:

12345678