Home
last modified time | relevance | path

Searched refs:i16 (Results 1 - 18 of 18) sorted by relevance

/arkcompiler/runtime_core/static_core/verification/absint/tests/
H A Dreg_context_test.cpp42 auto i16 = Type {Builtin::I16}; in TEST_F() local
49 AbstractTypedValue av1 {i16, nv()}; in TEST_F()
H A Dexec_context_test.cpp96 auto i16 = Type {Builtin::I16}; in TEST_F() local
103 AbstractTypedValue av1 {i16, nv()}; in TEST_F()
/arkcompiler/runtime_core/static_core/verification/value/tests/
H A Dabstract_typed_value_test.cpp42 auto i16 = Type {Builtin::I16}; in TEST_F() local
50 AbstractTypedValue av1 {i16, nv()}; in TEST_F()
/arkcompiler/runtime_core/compiler/optimizer/templates/
H A Dinstructions.rb23 INT16 = 'i16'
66 "int" => %w[bool i8 i16 i32 i64 u8 u16 u32 u64],
68 "number" => %w[bool i8 i16 i32 i64 u8 u16 u32 u64 f32 f64],
69 "real" => %w[bool i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 ref ptr]
225 'i16' => 'DataType::INT16',
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/
H A Dinstructions.rb23 INT16 = 'i16'
66 "int" => %w[bool i8 i16 i32 i64 u8 u16 u32 u64],
68 "number" => %w[bool i8 i16 i32 i64 u8 u16 u32 u64 f32 f64],
69 "real" => %w[bool i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 ref ptr]
229 'i16' => 'DataType::INT16',
/arkcompiler/runtime_core/compiler/tests/
H A Dencoder_operands.cpp36 int16_t i16; in TEST() local
51 TypeInfo(i16), in TEST()
186 int16_t i16 = random_gen(), i16_z = 0, i16_min = std::numeric_limits<int16_t>::min(), in TEST() local
277 Imm imm_i16(i16), imm_i16_z(i16_z), imm_i16_min(i16_min), imm_i16_max(i16_max); in TEST()
278 ASSERT_EQ(imm_i16.GetValue<int16_t>(), i16); in TEST()
/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dencoder_operands.cpp277 int16_t i16 = g_randomGen(), i16Z = 0U, i16Min = std::numeric_limits<int16_t>::min(), in TEST() local
292 Imm immI16(i16), immI16Z(i16Z), immI16Min(i16Min), immI16Max(i16Max); in TEST()
293 ASSERT_EQ(immI16.GetAsInt(), i16); in TEST()
298 TypedImm typedImmI16(i16), typedImmI16Z(i16Z); in TEST()
302 ASSERT_EQ(typedImmI16.GetImm().GetAsInt(), i16); in TEST()
H A Dpeepholes_test.cpp4987 INST(22U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(10U); in SRC_GRAPH()
4988 INST(23U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(11U); in SRC_GRAPH()
4989 INST(24U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(12U); in SRC_GRAPH()
4990 INST(25U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(13U); in SRC_GRAPH()
5030 INST(22U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(1U); in OUT_GRAPH()
5031 INST(23U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(1U); in OUT_GRAPH()
5032 INST(24U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(12U); in OUT_GRAPH()
5033 INST(25U, Opcode::Cast).i16().SrcType(DataType::INT32).Inputs(13U); in OUT_GRAPH()
5094 INST(18U, Opcode::Store).i16().Inputs(0U, 1U, 6U); in SRC_GRAPH()
5095 INST(19U, Opcode::Store).i16() in SRC_GRAPH()
[all...]
H A Dvn_test.cpp1913 INST(3U, Opcode::Load).i16().Inputs(2U, 1U); in SRC_GRAPH()
1914 INST(4U, Opcode::StoreArray).i16().Inputs(0U, 1U, 3U); in SRC_GRAPH()
1917 INST(7U, Opcode::Load).i16().Inputs(6U, 1U); in SRC_GRAPH()
1919 INST(9U, Opcode::Store).i16().Inputs(8U, 1U, 7U); in SRC_GRAPH()
1921 INST(11U, Opcode::Load).i16().Inputs(10U, 1U); in SRC_GRAPH()
1923 INST(13U, Opcode::Store).i16().Inputs(12U, 1U, 11U); in SRC_GRAPH()
1938 INST(3U, Opcode::Load).i16().Inputs(2U, 1U); in OUT_GRAPH()
1939 INST(4U, Opcode::StoreArray).i16().Inputs(0U, 1U, 3U); in OUT_GRAPH()
1942 INST(7U, Opcode::Load).i16().Inputs(6U, 1U); in OUT_GRAPH()
1944 INST(9U, Opcode::Store).i16() in OUT_GRAPH()
[all...]
/arkcompiler/runtime_core/isa/
H A Dasserts.rb157 assert('Operand type should be one of none, ref, u1, u2, i8, u8, i16, u16, i32, u32, b32, i64, u64, b64, f64, top, any') do
158 types = %w[none ref u1 u2 i8 u8 i16 u16 i32 u32 b32 f32 i64 u64 b64 f64 top any]
H A Disapi.rb363 types = %i[none u1 u2 i8 u8 i16 u16 i32 u32 b32 f32 i64 u64 b64 f64 ref top any]
388 %i[i8 i16 i32 i64].include?(@type.to_sym)
/arkcompiler/runtime_core/static_core/isa/
H A Dasserts.rb157 assert('Operand type should be one of none, ref, u1, u2, i8, u8, i16, u16, i32, u32, b32, i64, u64, b64, f64, top, any') do
158 types = %w[none ref u1 u2 i8 u8 i16 u16 i32 u32 b32 f32 i64 u64 b64 f64 top any]
H A Disapi.rb336 types = %i[none u1 u2 i8 u8 i16 u16 i32 u32 b32 f32 i64 u64 b64 f64 ref top any]
/arkcompiler/runtime_core/static_core/irtoc/lang/
H A Dinstruction.rb195 :i16 => :INT16,
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/
H A Dcodegen_test.cpp1468 PARAMETER(1U, 1U).i16(); in TEST_F()
1474 INST(17U, Opcode::Cast).i16().SrcType(compiler::DataType::INT32).Inputs(11U); in TEST_F()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dir_constructor.h528 IrConstructor &i16() // NOLINT(readability-identifier-naming) in i16() function in panda::compiler::final
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dir_constructor.h645 IrConstructor &i16() // NOLINT(readability-identifier-naming) in i16() function in ark::compiler::final
/arkcompiler/runtime_core/assembler/tests/
H A Dassembler_parser_test.cpp1835 v.push_back(l.TokenizeString("i16 -5000").first); in HWTEST_F()
1856 int16_t i16 = -5000; in HWTEST_F() local
1862 i16); in HWTEST_F()
1998 v.push_back(l.TokenizeString(".array array_short i16 3 { 100 -200 300 }").first); in HWTEST_F()

Completed in 26 milliseconds