Home
last modified time | relevance | path

Searched refs:u8 (Results 1 - 25 of 25) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/perf/benchmarks/
H A Dcaller.js66 let u8 = 'foo8';
69 PassStrings(u0, u1, u2, u3, u4, u5, u6, u7, u8, u9);
83 let u8 = 0.8;
86 PassNumbers(u0, u1, u2, u3, u4, u5, u6, u7, u8, u9);
100 let u8 = [0.8];
103 PassArrays(u0, u1, u2, u3, u4, u5, u6, u7, u8, u9);
/arkcompiler/runtime_core/compiler/tests/
H A Dencoder_operands.cpp33 uint8_t u8; in TEST() local
46 TypeInfo(u8), // 0 in TEST()
135 ASSERT_EQ(TypeInfo(u8), INT8_TYPE); in TEST()
175 uint8_t u8 = random_gen(), u8_z = 0, u8_min = std::numeric_limits<uint8_t>::min(), in TEST() local
200 Imm imm_u8(u8), imm_u8_z(u8_z), imm_u8_min(u8_min), imm_u8_max(u8_max); in TEST()
201 ASSERT_EQ(imm_u8.GetValue<int8_t>(), static_cast<int8_t>(u8)); in TEST()
H A Dinst_test.cpp373 PARAMETER(3, 5).u8(); in TEST_F()
410 PARAMETER(3, 5).u8(); in TEST_F()
H A Dir_builder_test.cpp3569 .function u8 main(i32 a0, u8[] a1){ in TEST_F()
3588 INST(6, Opcode::LoadArray).u8().Inputs(3, 5); in TEST_F()
3589 INST(7, Opcode::Return).u8().Inputs(6); in TEST_F()
3810 .function void main(i32 a0, u8[] a1, u8 a2){ in TEST_F()
3822 PARAMETER(2, 2).u8(); in TEST_F()
/arkcompiler/runtime_core/compiler/optimizer/templates/
H A Dinstructions.rb26 UINT8 = 'u8'
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]
228 'u8' => 'DataType::UINT8',
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/
H A Dinstructions.rb26 UINT8 = 'u8'
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]
232 'u8' => 'DataType::UINT8',
/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dencoder_operands.cpp196 uint8_t u8 = g_randomGen(), u8Z = 0U, u8Min = std::numeric_limits<uint8_t>::min(), in TEST() local
202 Imm immU8(u8), immU8Z(u8Z), immU8Min(u8Min), immU8Max(u8Max); in TEST()
203 ASSERT_EQ(immU8.GetAsInt(), u8); in TEST()
208 TypedImm typedImmU8(u8), typedImmU8Z(u8Z); in TEST()
212 ASSERT_EQ(typedImmU8.GetImm().GetAsInt(), u8); in TEST()
H A Dadjust_arefs_test.cpp393 PARAMETER(3U, 3U).u8(); in BuildGraphProcessIndex()
400 INST(9U, Opcode::StoreArray).u8().Inputs(0U, 8U, 3U); in BuildGraphProcessIndex()
426 PARAMETER(3U, 3U).u8(); in TEST_F()
433 INST(59U, Opcode::Store).u8().Inputs(58U, 1U, 3U); in TEST_F()
H A Dpeepholes_test.cpp2162 PARAMETER(3U, 3U).u8(); in SRC_GRAPH()
2170 INST(8U, Opcode::Shl).u8().Inputs(3U, 4U); in SRC_GRAPH()
2410 PARAMETER(3U, 3U).u8(); in SRC_GRAPH()
2418 INST(8U, Opcode::Shr).u8().Inputs(3U, 4U); in SRC_GRAPH()
2560 PARAMETER(3U, 3U).u8(); in SRC_GRAPH()
2568 INST(8U, Opcode::AShr).u8().Inputs(3U, 4U); in SRC_GRAPH()
5002 INST(34U, Opcode::Cast).u8().SrcType(DataType::INT32).Inputs(10U); in SRC_GRAPH()
5003 INST(35U, Opcode::Cast).u8().SrcType(DataType::INT32).Inputs(11U); in SRC_GRAPH()
5004 INST(36U, Opcode::Cast).u8().SrcType(DataType::INT32).Inputs(12U); in SRC_GRAPH()
5005 INST(37U, Opcode::Cast).u8() in SRC_GRAPH()
[all...]
H A Dlowering_test.cpp242 INST(12U, Opcode::Or).u8().Inputs(0U, 1U); in BuildGraphLoweringLogic()
321 INST(12U, Opcode::Shl).u8().Inputs(0U, 1U); in TEST_F()
1283 PARAMETER(0U, 0U).u8(); in TEST_F()
1284 PARAMETER(1U, 1U).u8(); in TEST_F()
1299 INST(8U, Opcode::Neg).u8().Inputs(0U); in TEST_F()
1304 INST(11U, Opcode::Neg).u8().Inputs(1U); in TEST_F()
2562 INST(2U, Opcode::Load).u8().Inputs(0U, 1U); in BuildGraphLowerUnsignedCast()
2572 INST(12U, Opcode::Load).u8().Inputs(0U, 11U); in BuildGraphLowerUnsignedCast()
2576 INST(16U, Opcode::Mul).u8().Inputs(15U, 15U); in BuildGraphLowerUnsignedCast()
2596 INST(2U, Opcode::Load).u8() in TEST_F()
[all...]
H A Dinst_test.cpp379 PARAMETER(3U, 5U).u8(); in TEST_F()
416 PARAMETER(3U, 5U).u8(); in TEST_F()
H A Dconst_folding_test.cpp610 INST(2U, Opcode::Add).u8().Inputs(0U, 1U); in TEST_F()
611 INST(3U, Opcode::Return).u8().Inputs(2U); in TEST_F()
631 INST(2U, Opcode::Add).u8().Inputs(0U, 1U); in TEST_F()
632 INST(3U, Opcode::Return).u8().Inputs(2U); in TEST_F()
732 INST(2U, Opcode::Sub).u8().Inputs(0U, 1U); in TEST_F()
733 INST(3U, Opcode::Return).u8().Inputs(2U); in TEST_F()
753 INST(2U, Opcode::Sub).u8().Inputs(0U, 1U); in TEST_F()
754 INST(3U, Opcode::Return).u8().Inputs(2U); in TEST_F()
H A Descape_analysis_test.cpp2709 INST(5U, Opcode::StoreObject).u8().Inputs(4U, 0U).ObjField(UINT8_FIELD); in TEST_F()
2710 INST(6U, Opcode::LoadObject).u8().Inputs(4U).ObjField(UINT8_FIELD); in TEST_F()
2730 INST(4U, Opcode::Cast).u8().SrcType(DataType::UINT32).Inputs(0U); in TEST_F()
H A Dir_builder_test.cpp3591 .function u8 main(i32 a0, u8[] a1) { in TEST_F()
3610 INST(6U, Opcode::LoadArray).u8().Inputs(3U, 5U); in TEST_F()
3611 INST(7U, Opcode::Return).u8().Inputs(6U); in TEST_F()
3832 .function void main(i32 a0, u8[] a1, u8 a2) { in TEST_F()
3844 PARAMETER(2U, 2U).u8(); in TEST_F()
/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]
392 %i[u1 u2 u8 u16 u32 u64].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/bytecode_optimizer/tests/
H A Dbc_lowering_test.cpp251 INST(12U, Opcode::Or).u8().Inputs(0U, 1U); in TEST_F()
289 INST(12U, Opcode::Or).u8().Inputs(0U, 1U); in TEST_F()
328 INST(12U, Opcode::Shl).u8().Inputs(0U, 1U); in TEST_F()
367 INST(12U, Opcode::Shl).u8().Inputs(0U, 1U); in TEST_F()
H A Dcodegen_test.cpp993 INST(1U, Opcode::Cast).u8().SrcType(compiler::DataType::INT32).Inputs(0U); in TEST_F()
994 INST(2U, Opcode::Return).u8().Inputs(1U); in TEST_F()
1126 INST(1U, Opcode::Cast).u8().SrcType(compiler::DataType::INT64).Inputs(0U); in TEST_F()
1127 INST(2U, Opcode::Return).u8().Inputs(1U); in TEST_F()
/arkcompiler/toolchain/tooling/test/
H A Dpt_base64_test.cpp230 std::string src = u8"?"; in HWTEST_F_L0()
242 EXPECT_EQ(dest, u8"?"); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/irtoc/lang/
H A Dinstruction.rb198 :u8 => :UINT8,
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dir_constructor.h484 IrConstructor &u8() // NOLINT(readability-identifier-naming) in u8() function in panda::compiler::final
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dir_constructor.h601 IrConstructor &u8() // NOLINT(readability-identifier-naming) in u8() function in ark::compiler::final
/arkcompiler/runtime_core/assembler/tests/
H A Dassembler_parser_test.cpp43 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
65 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
88 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
105 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
122 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
142 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
162 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
179 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
271 v.push_back(l.TokenizeString(".function u8 main(){").first); in HWTEST_F()
291 v.push_back(l.TokenizeString(".function u8 mai in HWTEST_F()
1847 int8_t u8 = 2; HWTEST_F() local
[all...]

Completed in 59 milliseconds