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

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

Issue 285273003: ARM64: Fix native cctest (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | « no previous file | 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 delete[] buf; 166 delete[] buf;
167 167
168 #else // ifdef USE_SIMULATOR. 168 #else // ifdef USE_SIMULATOR.
169 // Run the test on real hardware or models. 169 // Run the test on real hardware or models.
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);
178 177
179 #define RESET() \ 178 #define RESET() \
180 __ Reset(); \ 179 __ Reset(); \
181 /* Reset the machine state (like simulator.ResetState()). */ \ 180 /* Reset the machine state (like simulator.ResetState()). */ \
182 __ Msr(NZCV, xzr); \ 181 __ Msr(NZCV, xzr); \
183 __ Msr(FPCR, xzr); 182 __ Msr(FPCR, xzr);
184 183
185 184
186 #define START_AFTER_RESET() \ 185 #define START_AFTER_RESET() \
187 __ SetStackPointer(csp); \ 186 __ SetStackPointer(csp); \
(...skipping 10789 matching lines...) Expand 10 before | Expand all | Expand 10 after
10977 if (RelocInfo::IsVeneerPool(info->rmode())) { 10976 if (RelocInfo::IsVeneerPool(info->rmode())) {
10978 ASSERT(info->data() == veneer_pool_size); 10977 ASSERT(info->data() == veneer_pool_size);
10979 ++pool_count; 10978 ++pool_count;
10980 } 10979 }
10981 } 10980 }
10982 10981
10983 ASSERT(pool_count == 2); 10982 ASSERT(pool_count == 2);
10984 10983
10985 TEARDOWN(); 10984 TEARDOWN();
10986 } 10985 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698