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

Side by Side Diff: test/cctest/test-disasm-mips.cc

Issue 1481493002: (mips) adding simulator support for AUI/DAUI/DAHI/DATI instructions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: adding disasm tests. Created 5 years 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 COMPARE(xori(a0, a1, 0x1), 561 COMPARE(xori(a0, a1, 0x1),
562 "38a40001 xori a0, a1, 0x1"); 562 "38a40001 xori a0, a1, 0x1");
563 COMPARE(xori(v0, v1, 0xffff), 563 COMPARE(xori(v0, v1, 0xffff),
564 "3862ffff xori v0, v1, 0xffff"); 564 "3862ffff xori v0, v1, 0xffff");
565 565
566 COMPARE(lui(a0, 0x1), 566 COMPARE(lui(a0, 0x1),
567 "3c040001 lui a0, 0x1"); 567 "3c040001 lui a0, 0x1");
568 COMPARE(lui(v0, 0xffff), 568 COMPARE(lui(v0, 0xffff),
569 "3c02ffff lui v0, 0xffff"); 569 "3c02ffff lui v0, 0xffff");
570 570
571 if (IsMipsArchVariant(kMips32r6)) {
572 COMPARE(aui(a0, a1, 0x1), "3ca40001 aui a0, a1, 0x1");
573 COMPARE(aui(v0, v1, 0xffff), "3c62ffff aui v0, v1, 0xffff");
574 }
575
571 COMPARE(sll(a0, a1, 0), 576 COMPARE(sll(a0, a1, 0),
572 "00052000 sll a0, a1, 0"); 577 "00052000 sll a0, a1, 0");
573 COMPARE(sll(s0, s1, 8), 578 COMPARE(sll(s0, s1, 8),
574 "00118200 sll s0, s1, 8"); 579 "00118200 sll s0, s1, 8");
575 COMPARE(sll(t2, t3, 24), 580 COMPARE(sll(t2, t3, 24),
576 "000b5600 sll t2, t3, 24"); 581 "000b5600 sll t2, t3, 24");
577 COMPARE(sll(v0, v1, 31), 582 COMPARE(sll(v0, v1, 31),
578 "000317c0 sll v0, v1, 31"); 583 "000317c0 sll v0, v1, 31");
579 584
580 COMPARE(sllv(a0, a1, a2), 585 COMPARE(sllv(a0, a1, a2),
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 IsFp64Mode()) { 1064 IsFp64Mode()) {
1060 COMPARE(cvt_d_l(f22, f24), "46a0c5a1 cvt.d.l f22, f24"); 1065 COMPARE(cvt_d_l(f22, f24), "46a0c5a1 cvt.d.l f22, f24");
1061 COMPARE(cvt_l_d(f22, f24), "4620c5a5 cvt.l.d f22, f24"); 1066 COMPARE(cvt_l_d(f22, f24), "4620c5a5 cvt.l.d f22, f24");
1062 1067
1063 COMPARE(cvt_s_l(f22, f24), "46a0c5a0 cvt.s.l f22, f24"); 1068 COMPARE(cvt_s_l(f22, f24), "46a0c5a0 cvt.s.l f22, f24");
1064 COMPARE(cvt_l_s(f22, f24), "4600c5a5 cvt.l.s f22, f24"); 1069 COMPARE(cvt_l_s(f22, f24), "4600c5a5 cvt.l.s f22, f24");
1065 } 1070 }
1066 1071
1067 VERIFY_RUN(); 1072 VERIFY_RUN();
1068 } 1073 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698