Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: test/cctest/test-assembler-mips64.cc

Issue 2799923002: MIPS[64]: Implement fill.df, copy_u.df, copy_s.df instructions in simulator (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 6041 matching lines...) Expand 10 before | Expand all | Expand 10 after
6052 TEST(maddf_msubf_d) { 6052 TEST(maddf_msubf_d) {
6053 if (kArchVariant != kMips64r6) return; 6053 if (kArchVariant != kMips64r6) return;
6054 helper_madd_msub_maddf_msubf<double>([](MacroAssembler& assm) { 6054 helper_madd_msub_maddf_msubf<double>([](MacroAssembler& assm) {
6055 __ maddf_d(f4, f6, f8); 6055 __ maddf_d(f4, f6, f8);
6056 __ sdc1(f4, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_add))); 6056 __ sdc1(f4, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_add)));
6057 __ msubf_d(f16, f6, f8); 6057 __ msubf_d(f16, f6, f8);
6058 __ sdc1(f16, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_sub))); 6058 __ sdc1(f16, MemOperand(a0, offsetof(TestCaseMaddMsub<double>, fd_sub)));
6059 }); 6059 });
6060 } 6060 }
6061 6061
6062 TEST(MSA_fill_copy) {
6063 CcTest::InitializeVM();
6064 Isolate* isolate = CcTest::i_isolate();
6065 HandleScope scope(isolate);
6066
6067 typedef struct {
6068 uint64_t u8;
6069 uint64_t u16;
6070 uint64_t u32;
6071 uint64_t s8;
6072 uint64_t s16;
6073 uint64_t s32;
6074 uint64_t s64;
6075 } T;
6076 T t;
6077
6078 MacroAssembler assm(isolate, NULL, 0, v8::internal::CodeObjectRequired::kYes);
6079 if ((kArchVariant != kMips64r6) || !CpuFeatures::IsSupported(MIPS_SIMD))
6080 return;
6081
6082 {
6083 CpuFeatureScope fscope(&assm, MIPS_SIMD);
6084
6085 __ li(t0, 0x9e7689aca512b683);
6086
6087 __ fill_b(w0, t0);
6088 __ fill_h(w2, t0);
6089 __ fill_w(w4, t0);
6090 __ fill_d(w6, t0);
6091 __ copy_u_b(t1, w0, 11);
6092 __ sd(t1, MemOperand(a0, offsetof(T, u8)));
6093 __ copy_u_h(t1, w2, 6);
6094 __ sd(t1, MemOperand(a0, offsetof(T, u16)));
6095 __ copy_u_w(t1, w4, 3);
6096 __ sd(t1, MemOperand(a0, offsetof(T, u32)));
6097
6098 __ copy_s_b(t1, w0, 8);
6099 __ sd(t1, MemOperand(a0, offsetof(T, s8)));
6100 __ copy_s_h(t1, w2, 5);
6101 __ sd(t1, MemOperand(a0, offsetof(T, s16)));
6102 __ copy_s_w(t1, w4, 1);
6103 __ sd(t1, MemOperand(a0, offsetof(T, s32)));
6104 __ copy_s_d(t1, w6, 0);
6105 __ sd(t1, MemOperand(a0, offsetof(T, s64)));
6106
6107 __ jr(ra);
6108 __ nop();
6109 }
6110
6111 CodeDesc desc;
6112 assm.GetCode(&desc);
6113 Handle<Code> code = isolate->factory()->NewCode(
6114 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
6115 #ifdef OBJECT_PRINT
6116 code->Print(std::cout);
6117 #endif
6118 F1 f = FUNCTION_CAST<F1>(code->entry());
6119
6120 Object* dummy = CALL_GENERATED_CODE(isolate, f, &t, 0, 0, 0, 0);
6121 USE(dummy);
6122
6123 CHECK_EQ(0x83u, t.u8);
6124 CHECK_EQ(0xb683u, t.u16);
6125 CHECK_EQ(0xa512b683u, t.u32);
6126 CHECK_EQ(0xffffffffffffff83u, t.s8);
6127 CHECK_EQ(0xffffffffffffb683u, t.s16);
6128 CHECK_EQ(0xffffffffa512b683u, t.s32);
6129 CHECK_EQ(0x9e7689aca512b683u, t.s64);
6130 }
6131
6062 #undef __ 6132 #undef __
OLDNEW
« src/mips64/simulator-mips64.h ('K') | « test/cctest/test-assembler-mips.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698