Home
last modified time | relevance | path

Searched full:more (Results 1 – 25 of 635) sorted by relevance

12345678910>>...26

/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
Darg_parser.py52 raise RuntimeError(f"Bad path to lib_gen_dir: '{args.lib_gen_dir}'\nSee --help for more.")
54 … raise RuntimeError(f"Bad path to es2panda_root: '{args.es2panda_root}'\nSee --help for more.")
57 raise RuntimeError(f"Bad path to header: '{header}'. See --help for more.")
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/
Dtwo_same_field_modifiers.ets19 desc: The same field modifier appears more than once in a field declaration.
20 assert: It is a compile-time error if the same field modifier appears more than once in a field dec…
/arkcompiler/runtime_core/static_core/isa/
DREADME21 Please refer to the file itself for more details.
23 Driver for template generation. Run './gen.rb --help' for more details.
DChangeLog.md11 + Added more variants of arithmetic opcodes
/arkcompiler/runtime_core/isa/
DREADME21 Please refer to the file itself for more details.
23 Driver for template generation. Run './gen.rb --help' for more details.
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/testing/
DREADME.md3 _NOTE(ipetrov): add more documentation_
18 // Add one more test to the testsuite
/arkcompiler/runtime_core/docs/changelogs/
D2022-08-18-isa-changelog.md18 …of some opcodes (about immediate number and accumulator), so that the bytecode can be more compact.
25 We also add header index in function such that runtime can access IndexHeader more efficiently.
35 This will help runtime to build constant pool more efficiently.
/arkcompiler/runtime_core/static_core/compiler/docs/
Dcheck_elimination_doc.md27 2. If based on bounds analysis input of NullCheck is more then 0, check is deleted.
34 If based on bounds analysis input of NegativeCheck is more then 0, check is deleted.
36 If based on bounds analysis input of BoundsCheck is more or equal than 0 and less than length of ar…
77 …k instructions in `NotFullyRedundantBoundsCheck` algorithm try to replace more then 2 grouped boun…
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dintro.rst26 As mobile devices continue to become more prevalent in our daily lives,
35 provides a more structured approach to coding in |JS|. |LANG| aims to
43 ahead-of-time more efficiently, resulting in faster application startup and
/arkcompiler/runtime_core/static_core/
DREADME.md53 # It is minimal pack of tools for start develop on Linux x86-64, you can see more options by pass "…
58 Let's configure a common build in `Debug` mode using `Clang-14` (more information about the build c…
107 You can see more options by pass `--help`.
133 You can see more options by pass `--help`.
156 You can see more options by launch `ark_aot` without options.
175 You can see more options by pass `--help`.
190 * Unlike `RelWithDebInfo`, `FastVerify` preserves assertions (and provides more verbose debug infor…
192 * `DebugDetailed` gives more debug information than `Debug`, it can be useful for debugging unit te…
206 For more details, see the [build system](cmake/README.md).
346 You can see more options by pass `--help` to script
/arkcompiler/runtime_core/static_core/docs/
Ddesign-of-interpreter.md87 more efficient data reads from the Panda binary file. Foreign entities are loaded from their
101 more space. As a solution, our file format will support variable length of identifiers to
104 To enable even more compact size of resulting binaries, we will compress it with the
141 1. Panda should scale onto a wide range of devices, including IoT devices. Although more and
142 more toolchains support C++ compilation for IoT, the standard library is often not present
144 optimal size of resulting native binary executable files, it is more reasonable to reimplement
180 1. Although tagged virtual registers occupy more memory (especially on 64-bit architectures),
Dtask_manager.md3 … tasks for two components `GC` and `JIT`. Both of this components can use more than one thread for…
21 …e background queue. If no tasks in both queues - WorkerThread request `TaskManager` for more tasks.
27 … we will increase priority for TaskQueue for GC tasks. TaskManager choose more tasks from TaskQueu…
Dir_format.md80 Panda bytecode has more than 200 instructions. We need to convert all Bytecode instructions in IR i…
97 The more and more complex optimizations we do, the more overhead we get. We need to find a balance …
99 In Ahead-Of-Time(AOT) mode the overhead is less critical for us, so we can do more optimizations.
115 1. It is more common in compilers and easier to understand
143 **BasicBlock** can not have more than one incoming or outgoing edges into the same block.
263 …ches to make iterating more effective is to store data in sequence container, such as array or vec…
303 **Lowering pass** makes low level instructions(which are more close to machine code).
322 In the future, we plan to make fully own implementation for more optimal code generation(in terms o…
/arkcompiler/runtime_core/docs/
Ddesign-of-interpreter.md87 more efficient data reads from the Panda binary file. Foreign entities are loaded from their
101 more space. As a solution, our file format will support variable length of identifiers to
104 To enable even more compact size of resulting binaries, we will compress it with the
141 1. Panda should scale onto a wide range of devices, including IoT devices. Although more and
142 more toolchains support C++ compilation for IoT, the standard library is often not present
144 optimal size of resulting native binary executable files, it is more reasonable to reimplement
180 1. Although tagged virtual registers occupy more memory (especially on 64-bit architectures),
Dir_format.md71 Panda bytecode has more than 200 instructions. We need to convert all Bytecode instructions in IR i…
88 The more and more complex optimizations we do, the more overhead we get. We need to find a balance …
90 In Ahead-Of-Time(AOT) mode the overhead is less critical for us, so we can do more optimizations.
106 1. It is more common in compilers and easier to understand
134 **BasicBlock** can not have more than one incoming or outgoing edges into the same block.
254 …ches to make iterating more effective is to store data in sequence container, such as array or vec…
294 **Lowering pass** makes low level instructions(which are more close to machine code).
313 In the future, we plan to make fully own implementation for more optimal code generation(in terms o…
/arkcompiler/ets_frontend/ets2panda/public/
DREADME.md96 <details><summary>More info</summary>
148 <details><summary>More info</summary>
176 <details><summary>More info</summary>
205 <details><summary>More info</summary>
235 <details><summary>More info</summary>
265 <details><summary>More info</summary>
305 <details><summary>More info</summary>
337 <details><summary>More info</summary>
537 More detailed:
/arkcompiler/runtime_core/static_core/verification/util/
Dsaturated_enum.h29 pros: more safety and robustness to programmer errors, cons: more code, more complexity, etc
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/docs/
Dinterop_intrinsic_opt_doc.md13 * Redundancy elimination for `wrap` intrinsics (hoisting them to more optimal positions and removin…
31 Scope merging is done in 3 stages, moving from more local to more global transforms. Number of obje…
87 …on if it is fully anticipated there and there is a path to end block where it occurs more than once
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask_manager.h58 …* @brief Method allocates TaskQueue. It's importent that lifetime of Allocator should be more then…
69 …d creates callback that will delete queue. It's importent that lifetime of Allocator should be more
76 * - if new count is more then current one, method will create new workers;
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/amd64/
Dhandle_call_v4_v4_v4_imm4_id16_amd64.S27 …movq %rbx, -(CFRAME_CALLEE_REGS_START_SLOT * 8 + 8)(%rbp) // we need one more register, borrow rb…
28 …movq %r14, -(CFRAME_CALLEE_REGS_START_SLOT * 8)(%rbp) // we need one more register, borrow r14 fo…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/HashSet/
DHashSetValuesIteratorTest.ets40 "The hashSet values iterator should return undefined for no more values");
58 "The hashSet $_iterator should return undefined for no more values");
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dleb128.h165 bool more = true; in EncodeSigned() local
167 while (more) { in EncodeSigned()
171 more = !((data == 0 && (byte & SIGN_BIT) == 0) || (data == -1 && (byte & SIGN_BIT) != 0)); in EncodeSigned()
172 if (more) { in EncodeSigned()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/
Dsummary.rst20 full list with more detailed code examples and workaround suggestions.
32 code is read more often than written;
280 and more understandable code as both *pro* and *contra* arguments can be found.
283 in the language specification, compiler, and runtime. More importantly, in the
290 feedback. More cases and suggested workarounds can be found in :ref:`Recipes`.
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe22.md31 // Rewrite with Object. Less type control, need more type checks for safety
/arkcompiler/ets_frontend/arkguard/
Dtsconfig.base.json2 /* Visit https://aka.ms/tsconfig.json to read more about this file */

12345678910>>...26