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

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

Issue 1758003003: [turbofan] ARM: Reduce out-of-line NaN code size (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 COMPARE(vsqrt(s0, s0), 559 COMPARE(vsqrt(s0, s0),
560 "eeb10ac0 vsqrt.f32 s0, s0"); 560 "eeb10ac0 vsqrt.f32 s0, s0");
561 COMPARE(vsqrt(s2, s3, ne), 561 COMPARE(vsqrt(s2, s3, ne),
562 "1eb11ae1 vsqrtne.f32 s2, s3"); 562 "1eb11ae1 vsqrtne.f32 s2, s3");
563 563
564 COMPARE(vmov(d0, 1.0), 564 COMPARE(vmov(d0, 1.0),
565 "eeb70b00 vmov.f64 d0, #1"); 565 "eeb70b00 vmov.f64 d0, #1");
566 COMPARE(vmov(d2, -13.0), 566 COMPARE(vmov(d2, -13.0),
567 "eeba2b0a vmov.f64 d2, #-13"); 567 "eeba2b0a vmov.f64 d2, #-13");
568 568
569 COMPARE(vmov(s1, -1.0),
570 "eeff0a00 vmov.f32 s1, #-1");
571 COMPARE(vmov(s3, 13.0),
572 "eef21a0a vmov.f32 s3, #13");
573
569 COMPARE(vmov(d0, VmovIndexLo, r0), 574 COMPARE(vmov(d0, VmovIndexLo, r0),
570 "ee000b10 vmov.32 d0[0], r0"); 575 "ee000b10 vmov.32 d0[0], r0");
571 COMPARE(vmov(d0, VmovIndexHi, r0), 576 COMPARE(vmov(d0, VmovIndexHi, r0),
572 "ee200b10 vmov.32 d0[1], r0"); 577 "ee200b10 vmov.32 d0[1], r0");
573 578
574 COMPARE(vmov(r2, VmovIndexLo, d15), 579 COMPARE(vmov(r2, VmovIndexLo, d15),
575 "ee1f2b10 vmov.32 r2, d15[0]"); 580 "ee1f2b10 vmov.32 r2, d15[0]");
576 COMPARE(vmov(r3, VmovIndexHi, d14), 581 COMPARE(vmov(r3, VmovIndexHi, d14),
577 "ee3e3b10 vmov.32 r3, d14[1]"); 582 "ee3e3b10 vmov.32 r3, d14[1]");
578 583
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
1066 1071
1067 COMPARE(dsb(ISH), 1072 COMPARE(dsb(ISH),
1068 "f57ff04b dsb ish"); 1073 "f57ff04b dsb ish");
1069 1074
1070 COMPARE(isb(ISH), 1075 COMPARE(isb(ISH),
1071 "f57ff06b isb ish"); 1076 "f57ff06b isb ish");
1072 } 1077 }
1073 1078
1074 VERIFY_RUN(); 1079 VERIFY_RUN();
1075 } 1080 }
OLDNEW
« no previous file with comments | « test/cctest/test-assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698