| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/spec/expressions/ |
| D | list.compound_assignment_01.yaml | 18 operation: "*", op_name: "mult", 25 operation: "*", op_name: "mult", 31 operation: "*", op_name: "mult", 37 operation: "*", op_name: "mult", 44 operation: "*", op_name: "mult", 51 operation: "*", op_name: "mult", 58 operation: "*", op_name: "mult", 66 operation: "*", op_name: "mult", 73 operation: "*", op_name: "mult", 80 operation: "*", op_name: "mult", [all …]
|
| /arkcompiler/runtime_core/assembler/tests/ |
| D | lexer_test.cpp | 30 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 42 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 52 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 53 ASSERT_EQ(TokenTypeWhat(tok.first[1].type), "OPERATION") << "OPERATION expected"; in TEST() 56 ASSERT_EQ(TokenTypeWhat(tok.first[4].type), "OPERATION") << "OPERATION expected"; in TEST() 66 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 76 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 88 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST()
|
| D | assembler_lexer_test.cpp | 41 EXPECT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; 59 EXPECT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; 76 EXPECT_EQ(TokenTypeWhat(tok.first[1].type), "OPERATION") << "OPERATION expected"; 79 EXPECT_EQ(TokenTypeWhat(tok.first[4].type), "OPERATION") << "OPERATION expected"; 95 EXPECT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected";
|
| /arkcompiler/runtime_core/static_core/assembler/tests/ |
| D | lexer_test.cpp | 33 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 45 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 55 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 56 ASSERT_EQ(TokenTypeWhat(tok.first[1].type), "OPERATION") << "OPERATION expected"; in TEST() 59 ASSERT_EQ(TokenTypeWhat(tok.first[4].type), "OPERATION") << "OPERATION expected"; in TEST() 69 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 79 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST() 91 ASSERT_EQ(TokenTypeWhat(tok.first[0].type), "OPERATION") << "OPERATION expected"; in TEST()
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | rationale-for-bytecode.md | 14 somewhere in memory and executes corresponding _operations_ on operation's arguments, 15 also known as operation's _operands_. Operands may be _registers_ (very fast "variables" located 45 One very important question is how an operation refers to its operands. 47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in 60 In _register-based approach_, operands are explicitly encoded in the operation, which results in 153 | operation code | vreg 1 | vreg 2 | 162 | operation code | vreg 1 | vreg 2 | 187 One option is to make the operation _statically typed_, i.e. specify explicitly that it works only 191 Another option is to make the operation _dynamically typed_, i.e. specify that `adda ...` handles
|
| /arkcompiler/runtime_core/docs/ |
| D | rationale-for-bytecode.md | 14 somewhere in memory and executes corresponding _operations_ on operation's arguments, 15 also known as operation's _operands_. Operands may be _registers_ (very fast "variables" located 45 One very important question is how an operation refers to its operands. 47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in 60 In _register-based approach_, operands are explicitly encoded in the operation, which results in 153 | operation code | vreg 1 | vreg 2 | 162 | operation code | vreg 1 | vreg 2 | 187 One option is to make the operation _statically typed_, i.e. specify explicitly that it works only 191 Another option is to make the operation _dynamically typed_, i.e. specify that `adda ...` handles
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/04.literal_types/ |
| D | operations_on_literal_types1.sts | 19 The resulting operation type is the type specified for the operation in the supertype.
|
| D | operations_on_literal_types.sts | 19 The resulting operation type is the type specified for the operation in the supertype.
|
| D | operations_on_literal_types2.sts | 19 The resulting operation type is the type specified for the operation in the supertype.
|
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/js_files/ |
| D | heapdump.js | 120 // Simulated asynchronous operation 122 let success = false; // Simulated operation failed 124 resolve('operation success'); 126 reject(new Error('operation failed'));
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/interop_js/ |
| D | 2_esobject.rst | 17 …``operator []``, ``operator ()``, ``operator .``, ``operator as``. This operation can be applyed t… 46 a[index] // ok, no CTE, but RTE, no operation [] on JS side 47 a() // ok, no CTE, but RTE, no operation () on JS side
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | nop.yaml | 18 title: No operation 19 description: Perform an operation without behavior.
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | nop.yaml | 18 title: No operation 19 description: Perform an operation without behavior.
|
| /arkcompiler/ets_frontend/es2panda/test/parser/js/ |
| D | invalid-left-hand-side-in-prefix-operation-expected.txt | 1 SyntaxError: Invalid left-hand side operator. [invalid-left-hand-side-in-prefix-operation.js:17:5]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/06.type_inference/01.smart_types/ |
| D | comb_10a.sts | 33 …: p instanceof Number ? ((): number => { num = p * 2; return 2 })() // numeric operation without c… 36 : ((): number => { bool = !p; return 5 })() // boolean operation without cast
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | opcode_info.h | 35 kOpcodePropNotPure, // The operation does not return same result with idential operands 37 kOpcodePropIsAssertUpperBoundary, // The operation check upper boundary 38 kOpcodePropIsAssertLowerBoundary, // The operation check lower boundary
|
| /arkcompiler/runtime_core/static_core/tests/cts-assembly/ |
| D | op-26.pa | 14 #Assert that operation u32toi64 works fine
|
| D | obj-03.pa | 14 #Assert that operation newobj works fine
|
| D | op-07.pa | 14 #Assert that operation jltz works fine
|
| D | op-10.pa | 14 #Assert that operation jgez works fine
|
| D | math-45.pa | 14 #Assert that operation modu2 works fine
|
| /arkcompiler/runtime_core/tests/cts-assembly/ |
| D | op-05.pa | 14 #Assert that operation jeqz works fine
|
| D | obj-03.pa | 14 #Assert that operation newobj works fine
|
| D | op-03.pa | 14 #Assert that operation sta.64 works fine
|
| D | op-09.pa | 14 #Assert that operation jlez works fine
|