Home
last modified time | relevance | path

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

12

/ark/runtime_core/
D.gitattributes3 # Denote all image files as binary
4 *.png binary
5 *.jpg binary
6 *.gif binary
DREADME.md21 … ARK bytecode file (*.pa) in text format into a bytecode file (*.abc) in binary format. For detail…
24 ├── disassembler # Disassembler that converts an ARK bytecode file (*.abc) in binary forma…
31 ├── libpandafile # Source code repository of ARK bytecode files (*.abc) in binary format.
47 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.
139 Input file: ARK bytecodes in binary format
/ark/ts2abc/
D.gitattributes2 as2panda/dist/* binary
4 as2panda/lib/binaryen.js binary
/ark/ts2abc/ts2panda/
DREADME.md11 * [panda binary dumper](doc/binary_dumper.md)
15 #### dump panda binary
/ark/js_runtime/ecmascript/
Dstub_module.cpp24 std::ofstream modulefile(filename.c_str(), std::ofstream::binary); in Save()
56 std::ifstream modulefile(filename.c_str(), std::ofstream::binary); in Load()
/ark/ts2abc/test_ecma_bcopt/
Dtest_bytecode_optimizer_for_js.txt2 # source binary: test_bytecode_optimizer_for_js.abc
/ark/runtime_core/dprof/libstorage/dprof/
Dstorage.cpp129 std::ofstream file(fileName, std::ios::binary); in SaveAppData()
190 std::ifstream file(path, std::ios::binary); in ForEachApps()
/ark/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 excutable file, it is not expected to check for language …
27 * Signed/Unsigned decimal/hexadecimal/binary integers not larger than 64 bits. Hexadecimal literals…
108 | `ctor` | Marks a function as object constructor. It will be renamed in binary file according to…
109 | `cctor` | Marks a function as static constructor. It will be renamed in binary file according to…
447 Assembler doesn't guarantee that functions, records and their fields will be located in binary file…
482 # 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
Ddesign-of-interpreter.md60 * In Panda Assembler's back-end, we automatically generate emission of bytecode in the binary form.
90 more efficient data reads from the Panda binary file. Foreign entities are loaded from their
131 optimal size of resulting native binary executable files, it is more reasonable to reimplement
Dfile_format.md3 This document describes Panda binary file format with the following goals in mind:
16 The current binary file format should extend these limits to conform to the modern requirements.
18 To achieve this, all references in the binary file are 4 bytes long. It allows a space of 4GB
31 redundant references should be avoided. Also, if it is possible, binary file format should avoid da…
32 indexes (like sorted list of strings). However, the described binary file format supports one index:
38 current binary file. Local classes, fields and methods are declared in the current file.
60 To support this feature, the described binary file format uses offsets and doesn't specify how
65 The binary file format supports future changes via version number.
/ark/js_runtime/docs/
Denvironment-setup-and-compilation.md33 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
Ddevelopment-example.md75 # source binary: hello-world.abc
185 …014"></a><a name="p121612050181014"></a>Runs other engines and specifies binary files (such as d8,…
210 …a name="p16709194812126"></a><a name="p16709194812126"></a>Specifies the binary tool of ARK runtim…
/ark/runtime_core/cmake/
DHostTools.cmake15 # we need to have the assembler binary. If we are not
DTesting.cmake64 # If OUTPUT_DIRECTORY is not defined, the binary will be put to bin-gtests
DREADME.md24 The tests-binary will also be generated during the build. To run tests, run the following command:
DPandaAssembly.cmake111 # Subdirectory in the current binary directory that is used to store build artifacts.
301 # Subdirectory in the current binary directory that is used to store build artifacts.
/ark/ts2abc/ts2panda/src/statement/
DreturnStatement.ts55 …pandaGen.binary(stmt, ts.SyntaxKind.EqualsEqualsEqualsToken, getVregisterCache(pandaGen, CacheList…
/ark/ts2abc/test262/
DREADME.md45 --ark-tool ARK_TOOL ark's binary tool
170 `.abc` indicates the generated binary `abc` file.
/ark/js_runtime/ecmascript/snapshot/mem/
Dsnapshot.cpp46 write.open(filePath.second.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in MakeSnapShotProgramObject()
/ark/runtime_core/libpandabase/mem/
Dalloc_tracker.cpp134 std::ofstream out(GetDumpFilePath(), std::ios::out | std::ios::binary | std::ios::trunc); in Dump()
/ark/runtime_core/tests/benchmarks/
DCMakeLists.txt76 panda_add_benchmark("access-binary-trees" "AccessBinaryTrees" 0 TRUE def…
/ark/js_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md332 #### Integer binary arithmetic operations
358 #### Floating-point binary arithmetic operations
376 #### Integer binary compare operations
399 #### Floating-point binary compare operations
/ark/ts2abc/ts2panda/src/
Dcompiler.ts1323 pandaGen.binary(expr, expr.operatorToken.kind, lhs);
1357 this.pandaGen.binary(expr, ts.SyntaxKind.PlusToken, lrh);
1375 pandaGen.binary(expr, ts.SyntaxKind.PlusToken, lrh);
1424 this.pandaGen.binary(lhs.parent, operator, lhsVreg);

12