OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 6039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6050 TEST(maddf_msubf_d) { | 6050 TEST(maddf_msubf_d) { |
6051 if (kArchVariant != kMips64r6) return; | 6051 if (kArchVariant != kMips64r6) return; |
6052 helper_madd_msub_maddf_msubf<double>([](MacroAssembler& assm) { | 6052 helper_madd_msub_maddf_msubf<double>([](MacroAssembler& assm) { |
6053 __ maddf_d(f4, f6, f8); | 6053 __ maddf_d(f4, f6, f8); |
6054 __ Sdc1(f4, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_add))); | 6054 __ Sdc1(f4, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_add))); |
6055 __ msubf_d(f16, f6, f8); | 6055 __ msubf_d(f16, f6, f8); |
6056 __ Sdc1(f16, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_sub))); | 6056 __ Sdc1(f16, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_sub))); |
6057 }); | 6057 }); |
6058 } | 6058 } |
6059 | 6059 |
| 6060 TEST(MSA_fill_copy) { |
| 6061 CcTest::InitializeVM(); |
| 6062 Isolate* isolate = CcTest::i_isolate(); |
| 6063 HandleScope scope(isolate); |
| 6064 |
| 6065 typedef struct { |
| 6066 uint64_t u8; |
| 6067 uint64_t u16; |
| 6068 uint64_t u32; |
| 6069 uint64_t s8; |
| 6070 uint64_t s16; |
| 6071 uint64_t s32; |
| 6072 uint64_t s64; |
| 6073 } T; |
| 6074 T t; |
| 6075 |
| 6076 MacroAssembler assm(isolate, NULL, 0, v8::internal::CodeObjectRequired::kYes); |
| 6077 if ((kArchVariant != kMips64r6) || !CpuFeatures::IsSupported(MIPS_SIMD)) |
| 6078 return; |
| 6079 |
| 6080 { |
| 6081 CpuFeatureScope fscope(&assm, MIPS_SIMD); |
| 6082 |
| 6083 __ li(t0, 0x9e7689aca512b683); |
| 6084 |
| 6085 __ fill_b(w0, t0); |
| 6086 __ fill_h(w2, t0); |
| 6087 __ fill_w(w4, t0); |
| 6088 __ fill_d(w6, t0); |
| 6089 __ copy_u_b(t1, w0, 11); |
| 6090 __ sd(t1, MemOperand(a0, offsetof(T, u8))); |
| 6091 __ copy_u_h(t1, w2, 6); |
| 6092 __ sd(t1, MemOperand(a0, offsetof(T, u16))); |
| 6093 __ copy_u_w(t1, w4, 3); |
| 6094 __ sd(t1, MemOperand(a0, offsetof(T, u32))); |
| 6095 |
| 6096 __ copy_s_b(t1, w0, 8); |
| 6097 __ sd(t1, MemOperand(a0, offsetof(T, s8))); |
| 6098 __ copy_s_h(t1, w2, 5); |
| 6099 __ sd(t1, MemOperand(a0, offsetof(T, s16))); |
| 6100 __ copy_s_w(t1, w4, 1); |
| 6101 __ sd(t1, MemOperand(a0, offsetof(T, s32))); |
| 6102 __ copy_s_d(t1, w6, 0); |
| 6103 __ sd(t1, MemOperand(a0, offsetof(T, s64))); |
| 6104 |
| 6105 __ jr(ra); |
| 6106 __ nop(); |
| 6107 } |
| 6108 |
| 6109 CodeDesc desc; |
| 6110 assm.GetCode(&desc); |
| 6111 Handle<Code> code = isolate->factory()->NewCode( |
| 6112 desc, Code::ComputeFlags(Code::STUB), Handle<Code>()); |
| 6113 #ifdef OBJECT_PRINT |
| 6114 code->Print(std::cout); |
| 6115 #endif |
| 6116 F1 f = FUNCTION_CAST<F1>(code->entry()); |
| 6117 |
| 6118 Object* dummy = CALL_GENERATED_CODE(isolate, f, &t, 0, 0, 0, 0); |
| 6119 USE(dummy); |
| 6120 |
| 6121 CHECK_EQ(0x83u, t.u8); |
| 6122 CHECK_EQ(0xb683u, t.u16); |
| 6123 CHECK_EQ(0xa512b683u, t.u32); |
| 6124 CHECK_EQ(0xffffffffffffff83u, t.s8); |
| 6125 CHECK_EQ(0xffffffffffffb683u, t.s16); |
| 6126 CHECK_EQ(0xffffffffa512b683u, t.s32); |
| 6127 CHECK_EQ(0x9e7689aca512b683u, t.s64); |
| 6128 } |
| 6129 |
6060 #undef __ | 6130 #undef __ |
OLD | NEW |