Home
last modified time | relevance | path

Searched full:operation (Results 1 – 25 of 648) sorted by relevance

12345678910>>...26

/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/spec/expressions/
Dlist.compound_assignment_01.yaml18 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/
Dlexer_test.cpp30 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()
Dassembler_lexer_test.cpp41 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/
Dlexer_test.cpp33 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/
Drationale-for-bytecode.md14 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/
Drationale-for-bytecode.md14 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/
Doperations_on_literal_types1.sts19 The resulting operation type is the type specified for the operation in the supertype.
Doperations_on_literal_types.sts19 The resulting operation type is the type specified for the operation in the supertype.
Doperations_on_literal_types2.sts19 The resulting operation type is the type specified for the operation in the supertype.
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/js_files/
Dheapdump.js120 // 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/
D2_esobject.rst17 …``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/
Dnop.yaml18 title: No operation
19 description: Perform an operation without behavior.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dnop.yaml18 title: No operation
19 description: Perform an operation without behavior.
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dinvalid-left-hand-side-in-prefix-operation-expected.txt1 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/
Dcomb_10a.sts33 …: 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/
Dopcode_info.h35 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/
Dop-26.pa14 #Assert that operation u32toi64 works fine
Dobj-03.pa14 #Assert that operation newobj works fine
Dop-07.pa14 #Assert that operation jltz works fine
Dop-10.pa14 #Assert that operation jgez works fine
Dmath-45.pa14 #Assert that operation modu2 works fine
/arkcompiler/runtime_core/tests/cts-assembly/
Dop-05.pa14 #Assert that operation jeqz works fine
Dobj-03.pa14 #Assert that operation newobj works fine
Dop-03.pa14 #Assert that operation sta.64 works fine
Dop-09.pa14 #Assert that operation jlez works fine

12345678910>>...26