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

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

Issue 164793003: A64: Use a scope utility to allocate scratch registers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove Include() and Release(). Created 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 5594 matching lines...) Expand 10 before | Expand all | Expand 10 after
5605 5605
5606 5606
5607 TEST(fcmp) { 5607 TEST(fcmp) {
5608 INIT_V8(); 5608 INIT_V8();
5609 SETUP(); 5609 SETUP();
5610 5610
5611 START(); 5611 START();
5612 5612
5613 // Some of these tests require a floating-point scratch register assigned to 5613 // Some of these tests require a floating-point scratch register assigned to
5614 // the macro assembler, but most do not. 5614 // the macro assembler, but most do not.
5615 __ SetFPScratchRegister(NoFPReg); 5615 {
5616 // We're going to mess around with the available scratch registers in this
5617 // test. A UseScratchRegisterScope will make sure that they are restored to
5618 // the default values once we're finished.
5619 UseScratchRegisterScope temps(&masm);
5620 masm.FPTmpList()->set_list(0);
5616 5621
5617 __ Fmov(s8, 0.0); 5622 __ Fmov(s8, 0.0);
5618 __ Fmov(s9, 0.5); 5623 __ Fmov(s9, 0.5);
5619 __ Mov(w18, 0x7f800001); // Single precision NaN. 5624 __ Mov(w18, 0x7f800001); // Single precision NaN.
5620 __ Fmov(s18, w18); 5625 __ Fmov(s18, w18);
5621 5626
5622 __ Fcmp(s8, s8); 5627 __ Fcmp(s8, s8);
5623 __ Mrs(x0, NZCV); 5628 __ Mrs(x0, NZCV);
5624 __ Fcmp(s8, s9); 5629 __ Fcmp(s8, s9);
5625 __ Mrs(x1, NZCV); 5630 __ Mrs(x1, NZCV);
5626 __ Fcmp(s9, s8); 5631 __ Fcmp(s9, s8);
5627 __ Mrs(x2, NZCV); 5632 __ Mrs(x2, NZCV);
5628 __ Fcmp(s8, s18); 5633 __ Fcmp(s8, s18);
5629 __ Mrs(x3, NZCV); 5634 __ Mrs(x3, NZCV);
5630 __ Fcmp(s18, s18); 5635 __ Fcmp(s18, s18);
5631 __ Mrs(x4, NZCV); 5636 __ Mrs(x4, NZCV);
5632 __ Fcmp(s8, 0.0); 5637 __ Fcmp(s8, 0.0);
5633 __ Mrs(x5, NZCV); 5638 __ Mrs(x5, NZCV);
5634 __ SetFPScratchRegister(d0); 5639 masm.FPTmpList()->set_list(d0.Bit());
5635 __ Fcmp(s8, 255.0); 5640 __ Fcmp(s8, 255.0);
5636 __ SetFPScratchRegister(NoFPReg); 5641 masm.FPTmpList()->set_list(0);
5637 __ Mrs(x6, NZCV); 5642 __ Mrs(x6, NZCV);
5638 5643
5639 __ Fmov(d19, 0.0); 5644 __ Fmov(d19, 0.0);
5640 __ Fmov(d20, 0.5); 5645 __ Fmov(d20, 0.5);
5641 __ Mov(x21, 0x7ff0000000000001UL); // Double precision NaN. 5646 __ Mov(x21, 0x7ff0000000000001UL); // Double precision NaN.
5642 __ Fmov(d21, x21); 5647 __ Fmov(d21, x21);
5643 5648
5644 __ Fcmp(d19, d19); 5649 __ Fcmp(d19, d19);
5645 __ Mrs(x10, NZCV); 5650 __ Mrs(x10, NZCV);
5646 __ Fcmp(d19, d20); 5651 __ Fcmp(d19, d20);
5647 __ Mrs(x11, NZCV); 5652 __ Mrs(x11, NZCV);
5648 __ Fcmp(d20, d19); 5653 __ Fcmp(d20, d19);
5649 __ Mrs(x12, NZCV); 5654 __ Mrs(x12, NZCV);
5650 __ Fcmp(d19, d21); 5655 __ Fcmp(d19, d21);
5651 __ Mrs(x13, NZCV); 5656 __ Mrs(x13, NZCV);
5652 __ Fcmp(d21, d21); 5657 __ Fcmp(d21, d21);
5653 __ Mrs(x14, NZCV); 5658 __ Mrs(x14, NZCV);
5654 __ Fcmp(d19, 0.0); 5659 __ Fcmp(d19, 0.0);
5655 __ Mrs(x15, NZCV); 5660 __ Mrs(x15, NZCV);
5656 __ SetFPScratchRegister(d0); 5661 masm.FPTmpList()->set_list(d0.Bit());
5657 __ Fcmp(d19, 12.3456); 5662 __ Fcmp(d19, 12.3456);
5658 __ SetFPScratchRegister(NoFPReg); 5663 masm.FPTmpList()->set_list(0);
5659 __ Mrs(x16, NZCV); 5664 __ Mrs(x16, NZCV);
5665 }
5666
5660 END(); 5667 END();
5661 5668
5662 RUN(); 5669 RUN();
5663 5670
5664 ASSERT_EQUAL_32(ZCFlag, w0); 5671 ASSERT_EQUAL_32(ZCFlag, w0);
5665 ASSERT_EQUAL_32(NFlag, w1); 5672 ASSERT_EQUAL_32(NFlag, w1);
5666 ASSERT_EQUAL_32(CFlag, w2); 5673 ASSERT_EQUAL_32(CFlag, w2);
5667 ASSERT_EQUAL_32(CVFlag, w3); 5674 ASSERT_EQUAL_32(CVFlag, w3);
5668 ASSERT_EQUAL_32(CVFlag, w4); 5675 ASSERT_EQUAL_32(CVFlag, w4);
5669 ASSERT_EQUAL_32(ZCFlag, w5); 5676 ASSERT_EQUAL_32(ZCFlag, w5);
(...skipping 4344 matching lines...) Expand 10 before | Expand all | Expand 10 after
10014 AbsHelperX(-42); 10021 AbsHelperX(-42);
10015 AbsHelperX(kXMinInt); 10022 AbsHelperX(kXMinInt);
10016 AbsHelperX(kXMaxInt); 10023 AbsHelperX(kXMaxInt);
10017 10024
10018 AbsHelperW(0); 10025 AbsHelperW(0);
10019 AbsHelperW(42); 10026 AbsHelperW(42);
10020 AbsHelperW(-42); 10027 AbsHelperW(-42);
10021 AbsHelperW(kWMinInt); 10028 AbsHelperW(kWMinInt);
10022 AbsHelperW(kWMaxInt); 10029 AbsHelperW(kWMaxInt);
10023 } 10030 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698