Searched refs:binary (Results 1 – 25 of 32) sorted by relevance
12
/ark/runtime_core/ |
D | .gitattributes | 3 # Denote all image files as binary 4 *.png binary 5 *.jpg binary 6 *.gif binary
|
D | README.md | 21 … 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 | .gitattributes | 2 as2panda/dist/* binary 4 as2panda/lib/binaryen.js binary
|
/ark/ts2abc/ts2panda/ |
D | README.md | 11 * [panda binary dumper](doc/binary_dumper.md) 15 #### dump panda binary
|
/ark/js_runtime/ecmascript/ |
D | stub_module.cpp | 24 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/ |
D | test_bytecode_optimizer_for_js.txt | 2 # source binary: test_bytecode_optimizer_for_js.abc
|
/ark/runtime_core/dprof/libstorage/dprof/ |
D | storage.cpp | 129 std::ofstream file(fileName, std::ios::binary); in SaveAppData() 190 std::ifstream file(path, std::ios::binary); in ForEachApps()
|
/ark/runtime_core/docs/ |
D | assembly_format.md | 5 …binary 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
|
D | cfi_directives.md | 6 In case of **compiler-generated** code compilers emit special **debug symbols** in resulting binary…
|
D | design-of-interpreter.md | 60 * 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
|
D | file_format.md | 3 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/ |
D | environment-setup-and-compilation.md | 33 The binary files related to ARK are available in the following paths:
|
D | using-the-toolchain.md | 150 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
|
D | development-example.md | 75 # 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/ |
D | HostTools.cmake | 15 # we need to have the assembler binary. If we are not
|
D | Testing.cmake | 64 # If OUTPUT_DIRECTORY is not defined, the binary will be put to bin-gtests
|
D | README.md | 24 The tests-binary will also be generated during the build. To run tests, run the following command:
|
D | PandaAssembly.cmake | 111 # 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/ |
D | returnStatement.ts | 55 …pandaGen.binary(stmt, ts.SyntaxKind.EqualsEqualsEqualsToken, getVregisterCache(pandaGen, CacheList…
|
/ark/ts2abc/test262/ |
D | README.md | 45 --ark-tool ARK_TOOL ark's binary tool 170 `.abc` indicates the generated binary `abc` file.
|
/ark/js_runtime/ecmascript/snapshot/mem/ |
D | snapshot.cpp | 46 write.open(filePath.second.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in MakeSnapShotProgramObject()
|
/ark/runtime_core/libpandabase/mem/ |
D | alloc_tracker.cpp | 134 std::ofstream out(GetDumpFilePath(), std::ios::out | std::ios::binary | std::ios::trunc); in Dump()
|
/ark/runtime_core/tests/benchmarks/ |
D | CMakeLists.txt | 76 panda_add_benchmark("access-binary-trees" "AccessBinaryTrees" 0 TRUE def…
|
/ark/js_runtime/ecmascript/compiler/ |
D | circuit_ir_specification.md | 332 #### 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/ |
D | compiler.ts | 1323 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