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

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

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/objects.h ('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 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 #define SETUP_SIZE(buf_size) \ 170 #define SETUP_SIZE(buf_size) \
171 Isolate* isolate = Isolate::Current(); \ 171 Isolate* isolate = Isolate::Current(); \
172 HandleScope scope(isolate); \ 172 HandleScope scope(isolate); \
173 ASSERT(isolate != NULL); \ 173 ASSERT(isolate != NULL); \
174 byte* buf = new byte[buf_size]; \ 174 byte* buf = new byte[buf_size]; \
175 MacroAssembler masm(isolate, buf, buf_size); \ 175 MacroAssembler masm(isolate, buf, buf_size); \
176 RegisterDump core; \ 176 RegisterDump core; \
177 CpuFeatures::Probe(false); 177 CpuFeatures::Probe(false);
178 178
179 #define RESET() \ 179 #define RESET() \
180 __ Reset(); 180 __ Reset(); \
181 /* Reset the machine state (like simulator.ResetState()). */ \
182 __ Msr(NZCV, xzr); \
183 __ Msr(FPCR, xzr);
184
181 185
182 #define START_AFTER_RESET() \ 186 #define START_AFTER_RESET() \
183 __ SetStackPointer(csp); \ 187 __ SetStackPointer(csp); \
184 __ PushCalleeSavedRegisters(); 188 __ PushCalleeSavedRegisters();
185 189
186 #define START() \ 190 #define START() \
187 RESET(); \ 191 RESET(); \
188 START_AFTER_RESET(); 192 START_AFTER_RESET();
189 193
190 #define RUN() \ 194 #define RUN() \
(...skipping 10763 matching lines...) Expand 10 before | Expand all | Expand 10 after
10954 if (RelocInfo::IsVeneerPool(info->rmode())) { 10958 if (RelocInfo::IsVeneerPool(info->rmode())) {
10955 ASSERT(info->data() == veneer_pool_size); 10959 ASSERT(info->data() == veneer_pool_size);
10956 ++pool_count; 10960 ++pool_count;
10957 } 10961 }
10958 } 10962 }
10959 10963
10960 ASSERT(pool_count == 2); 10964 ASSERT(pool_count == 2);
10961 10965
10962 TEARDOWN(); 10966 TEARDOWN();
10963 } 10967 }
OLDNEW
« no previous file with comments | « src/objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698