/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | asm_caller.cpp | 39 static auto Not(T param) in Not() function 49 DEF(not, Not)
|
H A D | inst_test.cpp | 39 INST(3U, Opcode::Not).u64().Inputs(0U); in SRC_GRAPH() 43 INST(4U, Opcode::Not).u64().Inputs(1U); in SRC_GRAPH() 54 INST(5U, Opcode::Not).u64().Inputs(4U); in SRC_GRAPH()
|
H A D | inst_generator_test.cpp | 161 #error "Not supported!" 196 case Opcode::Not: in FixParams() 566 case Opcode::Not: in DoLogic() 931 OneTest(statGen, Opcode::Not); in RandomTestsPart2()
|
H A D | lowering_test.cpp | 671 // Not applied in TEST_F() 1512 INST(3U, Opcode::Not).type(type).Inputs(0U); in TestBitwiseBinaryOpWithInvertedOperand() 1515 INST(5U, Opcode::Not).type(type).Inputs(1U); in TestBitwiseBinaryOpWithInvertedOperand() 1518 INST(7U, Opcode::Not).type(type).Inputs(0U); in TestBitwiseBinaryOpWithInvertedOperand() 1541 INST(5U, Opcode::Not).type(type).Inputs(0U); in TestBitwiseBinaryOpWithInvertedOperand() 1591 INST(3U, Opcode::Not).s16().Inputs(0U); in TEST_F() 1594 INST(5U, Opcode::Not).s16().Inputs(1U); in TEST_F() 1597 INST(7U, Opcode::Not).s16().Inputs(0U); in TEST_F() 2055 INST(4U, Opcode::Not).type(type).Inputs(3U); in TestBitwiseInstructionsWithInvertedShiftedOperand() 2120 INST(4U, Opcode::Not) in TestBitwiseInstructionsWithInvertedShiftedOperandWithIncompatibleInstructionTypes() [all...] |
H A D | peepholes_test.cpp | 535 INST(2U, Opcode::Not).u64().Inputs(0U); in TEST_F() 536 INST(3U, Opcode::Not).u64().Inputs(1U); in TEST_F() 544 ASSERT_EQ(notInst->GetOpcode(), Opcode::Not); in TEST_F() 560 INST(2U, Opcode::Not).u64().Inputs(0U); in TEST_F() 561 INST(3U, Opcode::Not).u64().Inputs(1U); in TEST_F() 563 INST(5U, Opcode::Not).u64().Inputs(2U); in TEST_F() 564 INST(6U, Opcode::Not).u64().Inputs(3U); in TEST_F() 1480 INST(2U, Opcode::Not).u64().Inputs(0U); in TEST_F() 1481 INST(3U, Opcode::Not).u64().Inputs(1U); in TEST_F() 1489 ASSERT_EQ(notInst->GetOpcode(), Opcode::Not); in TEST_F() [all...] |
H A D | inst_generator.h | 201 {Opcode::Not, integerTypes_},
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/ |
H A D | jtr_reporter.rb | 58 if !(@status =~ /Passed\.|Not run\./) and !@output.empty? 72 @status = 'Not run. Excluded by tag' 76 @status = 'Not run. Not included by tag' 80 @status = 'Not run. Not mtched bugid' 84 @status = 'Not run. runner_option is ignore' 88 @status = 'Not run. Running only ignored' 147 @status = 'Not run.'
|
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
H A D | jtr_reporter.rb | 58 if !(@status =~ /Passed\.|Not run\./) and !@output.empty? 72 @status = 'Not run. Excluded by tag' 76 @status = 'Not run. Not included by tag' 80 @status = 'Not run. Not mtched bugid' 84 @status = 'Not run. runner_option is ignore' 88 @status = 'Not run. Running only ignored' 147 @status = 'Not run.'
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | common_stub_csigns.h | 47 V(Not) \
|
H A D | operations_stub_builder.h | 34 GateRef Not(GateRef glue, GateRef value, ProfileOperation callback = ProfileOperation());
|
H A D | call_signature.h | 387 V(Not) \
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | inst_test.cpp | 62 INST(3, Opcode::Not).u64().Inputs(0); in TEST_F() 66 INST(4, Opcode::Not).u64().Inputs(1); in TEST_F() 77 INST(5, Opcode::Not).u64().Inputs(4); in TEST_F()
|
H A D | basicblock_test.cpp | 101 INST(3, Opcode::Not).u64().Inputs(0); in TEST_F()
|
H A D | loop_analyzer_test.cpp | 265 INST(3, Opcode::Not).u64().Inputs(0); in TEST_F()
|
H A D | inst_generator.h | 156 {Opcode::Not, integer_types_},
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | x64_emitter.cpp | 714 assmbler.Not(kB, TransferReg(opnd0)); in EmitInsn() 717 assmbler.Not(kW, TransferReg(opnd0)); in EmitInsn() 720 assmbler.Not(kL, TransferReg(opnd0)); in EmitInsn() 723 assmbler.Not(kQ, TransferReg(opnd0)); in EmitInsn() 726 assmbler.Not(kB, TransferMem(opnd0, funcUniqueId)); in EmitInsn() 729 assmbler.Not(kW, TransferMem(opnd0, funcUniqueId)); in EmitInsn() 732 assmbler.Not(kL, TransferMem(opnd0, funcUniqueId)); in EmitInsn() 735 assmbler.Not(kQ, TransferMem(opnd0, funcUniqueId)); in EmitInsn()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | peepholes.cpp | 751 } else if (input0->GetOpcode() == Opcode::Not && input1->GetOpcode() == Opcode::Not && input0->HasSingleUser() && in VisitAnd() 769 CreateAndInsertInst(Opcode::Not, orInst, orInst); in VisitAnd() 834 } else if (input0->GetOpcode() == Opcode::Not && input1->GetOpcode() == Opcode::Not && input0->HasSingleUser() && in VisitOr() 852 CreateAndInsertInst(Opcode::Not, andInst, andInst); in VisitOr() 883 CreateAndInsertInst(Opcode::Not, inst, input0); in VisitXor() 2161 // Not applicable to numbers out of unchangeable f32->i32 range in TryReplaceFloatConstToIntConst() 2178 // Not applicable to numbers out of unchangeable f64->i64 range in TryReplaceFloatConstToIntConst()
|
H A D | lowering.cpp | 914 using Matcher = AnyOf<BinaryOp<Opcode::Or, SRC0, UnaryOp<Opcode::Not, SRC1, Flags::S>, Flags::C>, in LowerLogicWithInvertedOperand() 915 BinaryOp<Opcode::And, SRC0, UnaryOp<Opcode::Not, SRC1, Flags::S>, Flags::C>, in LowerLogicWithInvertedOperand() 916 BinaryOp<Opcode::Xor, SRC0, UnaryOp<Opcode::Not, SRC1, Flags::S>, Flags::C>>; in LowerLogicWithInvertedOperand()
|
H A D | lowering.h | 303 using NOT = UnaryOp<Opcode::Not, T, F>;
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
H A D | asm_assembler.h | 226 void Not(InsnSize insnSize, Reg reg) override; 227 void Not(InsnSize insnSize, const Mem &mem) override;
|
H A D | assembler.h | 241 virtual void Not(InsnSize insnSize, Reg reg) = 0; 242 virtual void Not(InsnSize insnSize, const Mem &mem) = 0;
|
H A D | elf_assembler.h | 219 void Not(InsnSize insnSize, Reg reg) override; 220 void Not(InsnSize insnSize, const Mem &mem) override;
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stub_list.h | 252 V(Not) \
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | encode.h | 41 DEF(Not, UNARY_OPERATION) \
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | slow_runtime_stub.h | 34 static JSTaggedValue Not(JSThread *thread, JSTaggedValue value);
|