Home
last modified time | relevance | path

Searched full:etc (Results 1 – 25 of 166) sorted by relevance

1234567

/arkcompiler/runtime_core/docs/bc_verification/
Dabsint_checks.md5 …s type of checks eliminate rutime problems with undefined bits in integers, truncation issues, etc.
21 These checks eliminate calls of methods with incorrect `this`, wrong access to arrays, etc.
41 These checks help to detect issues with unintended truncation/overflow/underflow etc.
/arkcompiler/runtime_core/static_core/docs/bc_verification/
Dabsint_checks.md5 …s type of checks eliminate rutime problems with undefined bits in integers, truncation issues, etc.
21 These checks eliminate calls of methods with incorrect `this`, wrong access to arrays, etc.
41 These checks help to detect issues with unintended truncation/overflow/underflow etc.
/arkcompiler/runtime_core/static_core/docs/
Dtask_manager.md14 - which component is the owner of this task (`GC`, `JIT`, etc.)
25 …ext(i.e. which language currently executed - static or dynamic, do we expect GC soon or not, etc).
37 2. Managing tasks - `TaskQueue`, `TaskExecutor` etc.
41 …e. we shouldn't have one `TaskQueue` for tasks from different task producers (such as GC, JIT etc.)
Dmemory-management-SW-requirements.md9 …or the internal usage by Runtime(Allocations for compiler purposes, for GC internal structures etc)
13 GC used to recycle memory allocated as result of application work(objects, compiled code etc).
Drationale-for-bytecode.md32 (debugger, profilers, etc.) is also unified, as well as the ecosystem for managing libraries,
33 frameworks, etc.
189 numbers and store the result into accumulator, we will need a dedicated `adda_d ...`, etc.
193 single- and double-precision numbers, etc.).
Ddesign-of-interpreter.md6 bytecode instruction set, executable file format, etc. Each subsection below consists of following
63 themselves, etc.).
83 about types, etc.
125 1. Interpreter does not depend on C++ standard library. All necessary classes, containers, etc.
/arkcompiler/runtime_core/static_core/cmake/
DREADME.md12 …ets (if you have installed additional libraries, like google-test, clang-format, clang-tidy, etc.).
68 …this target(panda_target_link_libraries, panda_target_include_directories, etc) otherwise if PANDA…
72 …roup "core_tests" or to common group for all tests in plugin("ecmascript_tests", "ets_tests", etc).
/arkcompiler/ets_runtime/ecmascript/
Djs_thread_hclass_entries.h28 // Let X be the builtin object (e.g. X = Array, object, etc.),
40 // Let X be the builtin object (e.g. X = Array, Object, etc.)
43 // Let x be the builtin instance object (e.g. x = new Array(), new Object(), etc.)
/arkcompiler/runtime_core/docs/
Dmemory-management-SW-requirements.md9 …or the internal usage by Runtime(Allocations for compiler purposes, for GC internal structures etc)
13 GC used to recycle memory allocated as result of application work(objects, compiled code etc).
Drationale-for-bytecode.md32 (debugger, profilers, etc.) is also unified, as well as the ecosystem for managing libraries,
33 frameworks, etc.
189 numbers and store the result into accumulator, we will need a dedicated `adda_d ...`, etc.
193 single- and double-precision numbers, etc.).
Ddesign-of-interpreter.md6 bytecode instruction set, executable file format, etc. Each subsection below consists of following
63 themselves, etc.).
83 about types, etc.
125 1. Interpreter does not depend on C++ standard library. All necessary classes, containers, etc.
/arkcompiler/runtime_core/static_core/scripts/
Dinstall-deps-ubuntu34 echo -e $repo_name > /etc/apt/sources.list.d/llvm-${llvm_version}.list
75 (detected with the contents of /etc/os-release).
165 echo -e $repo_name > /etc/apt/sources.list.d/ubuntu-toolchain-r-test.list
167 cat > /etc/apt/preferences.d/ubuntu-toolchain-r-test << EOF
269 local MY_HOME=$(grep "^${MY_USERNAME}:" /etc/passwd | cut -d: -f6)
401 if [ ! -f /etc/os-release ]; then
402 echo "FATAL: /etc/os-release not found. Exiting..."
405 . /etc/os-release
Dinstall-deps-qemu76 if [ ! -f /etc/os-release ]; then
77 echo "FATAL: /etc/os-release not found. Exiting..."
81 . /etc/os-release
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe149.md8 etc.) because in ArkTS, a ``class`` declaration introduces a new type,
Drecipe139.md57 // involving real network / DB logic, etc.
/arkcompiler/runtime_core/scripts/
Dinstall-deps-ubuntu35 (detected with the contents of /etc/os-release).
190 if [ ! -f /etc/os-release ]; then
191 echo "FATAL: /etc/os-release not found. Exiting..."
194 . /etc/os-release
Dinstall-deps-qemu76 if [ ! -f /etc/os-release ]; then
77 echo "FATAL: /etc/os-release not found. Exiting..."
81 . /etc/os-release
/arkcompiler/toolchain/build/misc/overrides/
Dbuild.gni21 # Use the system install of Xcode for tools like ibtool, libtool, etc.
/arkcompiler/ets_runtime/etc/
DBUILD.gn19 module_install_dir = "etc/param"
/arkcompiler/ets_runtime/ecmascript/ohos/
Denable_aot_list_helper.cpp19 const std::string EnableAotJitListHelper::ENABLE_LIST_NAME = "/etc/ark/app_aot_jit_enable_list.conf…
/arkcompiler/ets_runtime/ecmascript/base/
Darray_helper.h38 …// Common subprocedure for Array.prototype.at, Array.prototype.indexOf, Array.prototype.slice, etc.
47 // Common subprocedure for Array.prototype.lastIndexOf, etc.
/arkcompiler/runtime_core/static_core/plugins/ets/doc/
Dbuild-docs.sh87 if [[ ! -f /etc/os-release ]]; then
88 echo "FATAL: /etc/os-release not found"
92 . /etc/os-release
/arkcompiler/runtime_core/static_core/compiler/docs/
Dcodegen_doc.md18 1. Conversions from IR to encoder structures (like conditions, immediate, registers, etc).
58 GetCallingConvention()->BeginMethod(); // emit moves from parameters to dst-regs etc.
95 /* VisitAdd, VisitSub, VisitMul etc... */
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dmodules.rst21 functions, classes, etc.) declared in the module are only visible outside
24 Conversely, a variable, function, class, interface, etc. exported from
/arkcompiler/runtime_core/static_core/verification/util/
Dsaturated_enum.h28 …1. initial value UNDEFINED and any op will lead to fatal error, add constructors etc for proper in…
29 pros: more safety and robustness to programmer errors, cons: more code, more complexity, etc

1234567