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

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

Issue 255343004: ARM64: Use default-NaN mode to canonicalize NaNs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address Ulan's comments. Created 6 years, 7 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 | « src/arm64/macro-assembler-arm64.cc ('k') | src/objects.h » ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_INL_H_ 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_INL_H_
6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_INL_H_ 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_INL_H_
7 7
8 #include <ctype.h> 8 #include <ctype.h>
9 9
10 #include "v8globals.h" 10 #include "v8globals.h"
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 970
971 void MacroAssembler::Mrs(const Register& rt, SystemRegister sysreg) { 971 void MacroAssembler::Mrs(const Register& rt, SystemRegister sysreg) {
972 ASSERT(allow_macro_instructions_); 972 ASSERT(allow_macro_instructions_);
973 ASSERT(!rt.IsZero()); 973 ASSERT(!rt.IsZero());
974 mrs(rt, sysreg); 974 mrs(rt, sysreg);
975 } 975 }
976 976
977 977
978 void MacroAssembler::Msr(SystemRegister sysreg, const Register& rt) { 978 void MacroAssembler::Msr(SystemRegister sysreg, const Register& rt) {
979 ASSERT(allow_macro_instructions_); 979 ASSERT(allow_macro_instructions_);
980 ASSERT(!rt.IsZero());
981 msr(sysreg, rt); 980 msr(sysreg, rt);
982 } 981 }
983 982
984 983
985 void MacroAssembler::Msub(const Register& rd, 984 void MacroAssembler::Msub(const Register& rd,
986 const Register& rn, 985 const Register& rn,
987 const Register& rm, 986 const Register& rm,
988 const Register& ra) { 987 const Register& ra) {
989 ASSERT(allow_macro_instructions_); 988 ASSERT(allow_macro_instructions_);
990 ASSERT(!rd.IsZero()); 989 ASSERT(!rd.IsZero());
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1662 // characters are reserved for controlling features of the instrumentation. 1661 // characters are reserved for controlling features of the instrumentation.
1663 ASSERT(isprint(marker_name[0]) && isprint(marker_name[1])); 1662 ASSERT(isprint(marker_name[0]) && isprint(marker_name[1]));
1664 1663
1665 InstructionAccurateScope scope(this, 1); 1664 InstructionAccurateScope scope(this, 1);
1666 movn(xzr, (marker_name[1] << 8) | marker_name[0]); 1665 movn(xzr, (marker_name[1] << 8) | marker_name[0]);
1667 } 1666 }
1668 1667
1669 } } // namespace v8::internal 1668 } } // namespace v8::internal
1670 1669
1671 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_INL_H_ 1670 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_INL_H_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698