Searched full:ashri (Results 1 – 25 of 44) sorted by relevance
12
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | ashri.yaml | 17 - file-name: ashri 29 - sig: ashri imm:i32 35 ashri %s 44 description: Check `ashri` with zero and various values. 62 - sig: ashri imm:i32 68 ashri %s 77 description: Check `ashri` with +1 and various values. 95 - sig: ashri imm:i32 101 ashri %s 110 description: Check `ashri` with -1 and various values. [all …]
|
| D | template.yaml | 169 - include: 'ashri.yaml'
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | ashri.yaml | 17 - file-name: ashri 29 - sig: ashri imm:i32 35 ashri %s 44 description: Check `ashri` with zero and various values. 61 - sig: ashri imm:i32 67 ashri %s 76 description: Check `ashri` with +1 and various values. 93 - sig: ashri imm:i32 99 ashri %s 108 description: Check `ashri` with -1 and various values. [all …]
|
| D | template.yaml | 169 - include: 'ashri.yaml'
|
| D | starr.8.yaml | 699 ashri 24
|
| D | starr.16.yaml | 678 ashri 16
|
| /arkcompiler/runtime_core/static_core/tests/cts-assembly/ |
| D | math-09.pa | 14 # assert(151 ashri 1 == 71) operation --> ashri 17 ashri 1
|
| D | math-09-v.pa | 14 # assert(151 ashri 1 == 71) operation --> ashriv
|
| /arkcompiler/runtime_core/tests/cts-assembly/ |
| D | math-09.pa | 14 # assert(151 ashri 1 == 71) operation --> ashri 17 ashri 1
|
| /arkcompiler/runtime_core/static_core/tests/checked/ |
| D | combine_shifts.pa | 77 ashri 15 78 ashri 17 84 ashri 0xf2 85 ashri 0xe6
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | fast_divisor.ets | 57 //! INST "AShrI" 60 //! INST_NEXT "AShrI" 122 //! INST "AShrI" 125 //! INST_NEXT "AShrI" 204 //! INST "AShrI" 207 //! INST_NEXT "AShrI" 269 //! INST "AShrI" 272 //! INST_NEXT "AShrI"
|
| /arkcompiler/runtime_core/disassembler/tests/sources/ |
| D | instructions.pa | 132 ashri 1
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | lowering.h | 307 using ASHRI = UnaryOp<Opcode::AShrI, T, F>;
|
| D | lowering.cpp | 686 case Opcode::AShrI: in GetShiftTypeByOpcode() 1009 …e expecting that at this point all "shift by immediate" patterns were replaced with ShlI/ShrI/AShrI in LowerBinaryOperationWithShiftedOperand() 1013 BinaryOp<OPCODE, SRC0, ASHRI<SRC1>, FLAGS>>; in LowerBinaryOperationWithShiftedOperand() 1023 BinaryOp<OPCODE, SRC0, NOT<ASHRI<SRC1>>>>>; in LowerBinaryOperationWithShiftedOperand() 1054 …e expecting that at this point all "shift by immediate" patterns were replaced with ShlI/ShrI/AShrI in LowerUnaryOperationWithShiftedOperand() 1058 UnaryOp<OPCODE, ASHRI<SRC0>>>; in LowerUnaryOperationWithShiftedOperand()
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | inst_generator_test.cpp | 276 case Opcode::AShrI: in FixParams() 301 … opc == Opcode::AShrI || opc == Opcode::AndI || opc == Opcode::OrI || opc == Opcode::XorI); in IsImmOps() 623 case Opcode::AShrI: in DoLogic() 941 OneTest(statGen, Opcode::AShrI); in RandomTestsPart2()
|
| D | lowering_test.cpp | 344 ASSERT_EQ(INS(6U).GetPrev()->GetOpcode(), Opcode::AShrI); in TEST_F() 345 ASSERT_EQ(INS(7U).GetPrev()->GetOpcode(), Opcode::AShrI); in TEST_F() 1692 {Opcode::AShr, Opcode::AShrI, ShiftType::ASR}}; in TEST_F() 1760 {Opcode::AShr, Opcode::AShrI, ShiftType::ASR}}; in TEST_F() 1846 {Opcode::AShr, Opcode::AShrI, ShiftType::ASR}}; in TEST_F() 1867 {Opcode::AShr, Opcode::AShrI, ShiftType::ASR}}; in TEST_F() 1974 {Opcode::AShr, Opcode::AShrI, ShiftType::ASR}}; in TEST_F() 2032 {Opcode::AShr, Opcode::AShrI, ShiftType::ASR}}; in TEST_F() 2691 INST(2U, Opcode::AShrI).Inputs(0U).Imm(typeSize - 1L); in TEST_F() 2697 INST(7U, Opcode::AShrI).Inputs(6U).Imm(2U); // log2(4) in TEST_F() [all …]
|
| D | graph_comparator.h | 160 CHECK_OR_RETURN(AShrI, GetImm) in InstPropertiesCompare()
|
| D | inst_generator.h | 250 {Opcode::AShrI, integerTypes_},
|
| /arkcompiler/runtime_core/libabckit/src/adapter_static/ |
| D | helpers_static.h | 180 case ark::compiler::Opcode::AShrI: in GetBinaryImmOperationSize()
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | PBC2IR.md | 100 | ashri | i64 Constant, i32 Ashr |
|
| /arkcompiler/runtime_core/docs/ |
| D | PBC2IR.md | 100 | ashri | i64 Constant, i32 Ashr |
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | inst_generator.h | 205 {Opcode::AShrI, integer_types_},
|
| /arkcompiler/runtime_core/libabckit/src/codegen/ |
| D | codegen_static_isapi.rb | 552 %w[MulI DivI ModI ShlI ShrI AShrI AndI OrI XorI].each do |op|
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | bytecode_optimizer_isapi.rb | 556 %w[MulI DivI ModI ShlI ShrI AShrI AndI OrI XorI].each do |op|
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
| D | bc_lowering_test.cpp | 363 INST(34U, Opcode::AShrI).u32().Inputs(0U).Imm(0xcU); in TEST_F()
|
12