/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/perf/benchmarks/ |
H A D | caller.js | 66 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 D | encoder_operands.cpp | 33 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 D | inst_test.cpp | 373 PARAMETER(3, 5).u8(); in TEST_F() 410 PARAMETER(3, 5).u8(); in TEST_F()
|
H A D | ir_builder_test.cpp | 3569 .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 D | instructions.rb | 26 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 D | instructions.rb | 26 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 D | encoder_operands.cpp | 196 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 D | adjust_arefs_test.cpp | 393 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 D | peepholes_test.cpp | 2162 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 D | lowering_test.cpp | 242 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 D | inst_test.cpp | 379 PARAMETER(3U, 5U).u8(); in TEST_F() 416 PARAMETER(3U, 5U).u8(); in TEST_F()
|
H A D | const_folding_test.cpp | 610 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 D | escape_analysis_test.cpp | 2709 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 D | ir_builder_test.cpp | 3591 .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 D | asserts.rb | 157 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 D | isapi.rb | 363 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 D | asserts.rb | 157 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 D | isapi.rb | 336 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 D | bc_lowering_test.cpp | 251 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 D | codegen_test.cpp | 993 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 D | pt_base64_test.cpp | 230 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 D | instruction.rb | 198 :u8 => :UINT8,
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | ir_constructor.h | 484 IrConstructor &u8() // NOLINT(readability-identifier-naming) in u8() function in panda::compiler::final
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | ir_constructor.h | 601 IrConstructor &u8() // NOLINT(readability-identifier-naming) in u8() function in ark::compiler::final
|
/arkcompiler/runtime_core/assembler/tests/ |
H A D | assembler_parser_test.cpp | 43 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...] |