Searched full:operations (Results 1 – 25 of 59) sorted by relevance
123
| /arkcompiler/runtime_core/compiler/docs/ |
| D | memory_coalescing_doc.md | 4 …y) support simultaneous load and store operations for consecutive addresses instead of several sep… 8 Replacing two memory operations with one generally reduces the number of long latency memory instru… 27 `AArch64` has `32`-bit and `64`-bit versions of coalescing operations – `ldp` and `stp`. As a resul… 54 …ization tries to coalesce memory operations in a scope of a basic block. It needs that two consecu… 56 During hoisting and sinking of memory operations we use rules for memory instruction scheduling: do… 240 | `--compiler-memory-coalescing-objects` | Allows coalescing of operations with `ref`s | `true` |
|
| /arkcompiler/runtime_core/verification/util/tests/ |
| D | set_operations_property_test.cpp | 58 TEST_CASE("Test operations over sets0", "verifier_set_operations0") 84 TEST_CASE("Test operations over sets1", "verifier_set_operations1") 123 TEST_CASE("Test operations over sets2", "verifier_set_operations2")
|
| /arkcompiler/runtime_core/assembler/ |
| D | lexer.cpp | 49 /* Generate the map of OPERATIONS from ISA: */ in FindOperation() 50 static const std::unordered_map<std::string_view, Token::Type> OPERATIONS = { in FindOperation() local 58 auto iter = OPERATIONS.find(s); in FindOperation() 60 if (iter == OPERATIONS.end()) { in FindOperation() 64 return OPERATIONS.at(s); in FindOperation()
|
| /arkcompiler/runtime_core/scripts/ |
| D | run_check_atomic_format.py | 122 COMMENTS, OPERATIONS = parse_file() variable 123 sys.exit(process_results(COMMENTS, OPERATIONS))
|
| /arkcompiler/runtime_core/tests/cts-assembly/ |
| D | op-25.pa | 14 #Assert that operations u64tof64 and f64tou64 works fine
|
| D | obj-01.pa | 14 # Assert that operations ststatic, ststatic.64 work fine
|
| D | literalarrays-01.pa | 14 #assert that operations with array of i64 works fine
|
| D | obj-05.pa | 14 # Assert that operations stobj, stobj.64 work fine
|
| D | literalarrays-02.pa | 14 #assert that operations with array of i32 works fine
|
| D | obj-02.pa | 14 # Assert that operations ldstatic, ldstatic.64 work fine
|
| D | literalarrays-04.pa | 14 #assert that operations with array of f32 works fine
|
| D | obj-06.pa | 14 # Assert that operations ldobj, ldobj.64 work fine
|
| D | arrays-01.pa | 14 #assert that operations with array of i64 works fine
|
| D | literalarrays-03.pa | 14 #assert that operations with array of f64 works fine
|
| D | arrays-02.pa | 36 #assert that operations with array of i32 works fine
|
| D | arrays-04.pa | 38 #assert that operations with array of f32 works fine
|
| D | arrays-03.pa | 38 #assert that operations with array of f64 works fine
|
| /arkcompiler/ets_frontend/testTs/ |
| D | README.md | 4 1. skip_tests.json:avoids code files and does not perform operations on TS files stored in the file.
|
| /arkcompiler/runtime_core/docs/ |
| D | rationale-for-bytecode.md | 36 hardware world: the terms "operations", "operands", "registers" and "stack" have the same meaning. 166 that most of operations inside a function happen on local and/or temporary variables, while 221 that once a value of a certain type is store into a virtual register, all operations on that value
|
| D | 2022-08-18-isa-changelog.md | 24 such that runtime can distinguish the "define-function" operations of different kinds.
|
| /arkcompiler/runtime_core/cmake/ |
| D | Testing.cmake | 68 # * test_name behaves as a standard CMake target, i.e. such operations as
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | code_sink.cpp | 28 * Code sinking optimization attempts to sink operations that is needed only in 152 // Volatile memory operations are barriers in SinkInstruction()
|
| /arkcompiler/runtime_core/runtime/ |
| D | thread_manager.h | 273 …// When the counter != 0, operations with thread set are permitted to avoid destruction of shared … 274 // Synchronized with lock (not atomic) for mutual exclusion with thread operations
|
| /arkcompiler/runtime_core/isa/ |
| D | isa.yaml | 54 …VM support operations on registers with i32 and i64 integral values. However, 8-bit and 16-bit int… 58 …VM support operations on registers with f32 and f64 values, which corresponds to IEEE-754 single a… 259 description: throw operations. 262 description: operations with wider width. 512 - title: binary operations 513 description: binary operations 618 - title: unary operations 619 description: unary operations 1462 - title: jump operations
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | circuit_builder.h | 383 // Pointer/Arithmetic/Logic Operations 407 // middle ir: operations with any type 413 // middle ir: Number operations 418 // middle ir: object operations 430 // Object Operations
|
123