Home
last modified time | relevance | path

Searched full:xor (Results 1 – 25 of 151) sorted by relevance

1234567

/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dxor.yaml16 - file-name: "xor"
27 - sig: xor v1:in:i32, v2:in:i32
36 xor v0, v1
44 description: Check xor with zero and various values.
68 - sig: xor v1:in:i32, v2:in:i32
76 xor v0, v1
84 description: Check xor with +1 and various values.
116 - sig: xor v1:in:i32, v2:in:i32
124 xor v0, v1
132 description: Check xor with -1 and various values.
[all …]
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dxor.yaml16 - file-name: "xor"
27 - sig: xor v1:in:i32, v2:in:i32
36 xor v0, v1
44 description: Check xor with zero and various values.
68 - sig: xor v1:in:i32, v2:in:i32
76 xor v0, v1
84 description: Check xor with +1 and various values.
117 - sig: xor v1:in:i32, v2:in:i32
125 xor v0, v1
133 description: Check xor with -1 and various values.
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Doptimize_negation.sts22 //! INST "Xor "
26 //! INST "Xor "
31 //! INST_NOT "Xor "
35 //! INST "Xor "
41 //! INST_NOT "Xor "
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DBitwiseOperationsOnFloat.sts24 function Xor(a: double, b: double): long {
71 // Testing "xor" operator:
175 // Testing "xor" operator:
176 assert Xor(542.910991, 1903.2040221) == 1393
177 assert Xor(542.910991, -1903.2040221) == -1393
178 assert Xor(-542.910991, 1903.2040221) == -1395
179 assert Xor(-542.910991, -1903.2040221) == 1395
180 assert Xor(49509.2348100001, 49509.2348100001) == 0
181 assert Xor(9E120, 1.2) == 9223372036854775806
182 assert Xor(824E3, 21.018763) == 824021
[all …]
/arkcompiler/runtime_core/static_core/tests/cts-assembly/
Dmath-15.pa14 # assert(7 xor 5 == 2) operation --> xor
18 xor v0, v1
Dmath-15-v.pa14 # assert(7 xor 5 == 2) operation --> xorv
Dmath-06-v.pa14 # assert(7 xor 5 == 2) operation --> xoriv
Dmath-06.pa14 # assert(7 xor 5 == 2) operation --> xori
Dmath-28-v.pa14 # assert(7 xor 5 == 2) operation --> xor2v.64
Dmath-28.pa14 # assert(7 xor 5 == 2) operation --> xor2.64
/arkcompiler/runtime_core/tests/cts-assembly/
Dmath-15.pa14 # assert(7 xor 5 == 2) operation --> xor
18 xor v0, v1
Dmath-06.pa14 # assert(7 xor 5 == 2) operation --> xori
Dmath-28.pa14 # assert(7 xor 5 == 2) operation --> xor2.64
/arkcompiler/runtime_core/static_core/tests/checked/
Dxor_to_compare_to_xor.pa14 #! CHECKER Check that xor transform to Compare and after all to xor
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.h52 /* Atomics.xor ( typedArray, index, value ) */ \
53 V("xor", Xor, 3, INVALID)
82 // 25.4.13 Atomics.xor ( typedArray, index, value )
83 static JSTaggedValue Xor(EcmaRuntimeCallInfo *argv);
/arkcompiler/runtime_core/docs/
DPBC2IR.md66 | xor2 | i32 Xor |
67 | xor2.64 | i64 Xor |
97 | xori | i64 Constant, i32 Xor |
108 | xor | i32 Xor |
/arkcompiler/runtime_core/static_core/docs/
DPBC2IR.md66 | xor2 | i32 Xor |
67 | xor2.64 | i64 Xor |
97 | xori | i64 Constant, i32 Xor |
108 | xor | i32 Xor |
/arkcompiler/ets_runtime/test/aottest/xor/
DBUILD.gn16 host_aot_test_action("xor") {
/arkcompiler/runtime_core/static_core/runtime/arch/x86/
Dosr_x86.S22 xor %eax, %eax
/arkcompiler/runtime_core/static_core/compiler/tests/
Dcse_test.cpp73 INST(22U, Opcode::Xor).b().Inputs(0U, 1U); in SRC_GRAPH()
83 INST(31U, Opcode::Xor).b().Inputs(0U, 1U); in SRC_GRAPH()
120 INST(22U, Opcode::Xor).b().Inputs(0U, 1U); in OUT_GRAPH()
384 INST(14U, Opcode::Xor).b().Inputs(0U, 1U); in SRC_GRAPH()
390 INST(19U, Opcode::Xor).b().Inputs(1U, 0U); in SRC_GRAPH()
420 INST(14U, Opcode::Xor).b().Inputs(0U, 1U); in OUT_GRAPH()
482 INST(19U, Opcode::Xor).b().Inputs(18U, 1U); in SRC_GRAPH()
522 INST(19U, Opcode::Xor).b().Inputs(9U, 1U); in OUT_GRAPH()
561 INST(10U, Opcode::Xor).b().Inputs(4U, 5U); in SRC_GRAPH()
566 INST(24U, Opcode::Xor).b().Inputs(10U, 5U); in SRC_GRAPH()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/07.value_types/01.integer_types_and_operations/bitwise_xor/
Dbitwise_xor_byte.sts18 desc: check bitwise XOR of two bytes
Dbitwise_xor_char.sts18 desc: check bitwise XOR of two chars
Dbitwise_xor_long.sts18 desc: check bitwise XOR of two long integers
Dbitwise_xor_int.sts18 desc: check bitwise XOR of two integers
Dbitwise_xor_short.sts18 desc: check bitwise XOR of two short integers

1234567