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

Side by Side Diff: src/arm64/assembler-arm64.h

Issue 223843002: ARM64: Fixes and more support for FRINT<X> instructions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 1577
1578 // FP negate. 1578 // FP negate.
1579 void fneg(const FPRegister& fd, const FPRegister& fn); 1579 void fneg(const FPRegister& fd, const FPRegister& fn);
1580 1580
1581 // FP square root. 1581 // FP square root.
1582 void fsqrt(const FPRegister& fd, const FPRegister& fn); 1582 void fsqrt(const FPRegister& fd, const FPRegister& fn);
1583 1583
1584 // FP round to integer (nearest with ties to away). 1584 // FP round to integer (nearest with ties to away).
1585 void frinta(const FPRegister& fd, const FPRegister& fn); 1585 void frinta(const FPRegister& fd, const FPRegister& fn);
1586 1586
1587 // FP round to integer (toward minus infinity).
1588 void frintm(const FPRegister& fd, const FPRegister& fn);
1589
1587 // FP round to integer (nearest with ties to even). 1590 // FP round to integer (nearest with ties to even).
1588 void frintn(const FPRegister& fd, const FPRegister& fn); 1591 void frintn(const FPRegister& fd, const FPRegister& fn);
1589 1592
1590 // FP round to integer (towards zero.) 1593 // FP round to integer (towards zero.)
1591 void frintz(const FPRegister& fd, const FPRegister& fn); 1594 void frintz(const FPRegister& fd, const FPRegister& fn);
1592 1595
1593 // FP compare registers. 1596 // FP compare registers.
1594 void fcmp(const FPRegister& fn, const FPRegister& fm); 1597 void fcmp(const FPRegister& fn, const FPRegister& fm);
1595 1598
1596 // FP compare immediate. 1599 // FP compare immediate.
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 class EnsureSpace BASE_EMBEDDED { 2229 class EnsureSpace BASE_EMBEDDED {
2227 public: 2230 public:
2228 explicit EnsureSpace(Assembler* assembler) { 2231 explicit EnsureSpace(Assembler* assembler) {
2229 assembler->CheckBuffer(); 2232 assembler->CheckBuffer();
2230 } 2233 }
2231 }; 2234 };
2232 2235
2233 } } // namespace v8::internal 2236 } } // namespace v8::internal
2234 2237
2235 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ 2238 #endif // V8_ARM64_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698