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

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

Issue 253873010: Fix android_arm64 build after r21001. (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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 CPU::SetUp(); 177 CpuFeatures::Probe(false);
178 178
179 #define RESET() \ 179 #define RESET() \
180 __ Reset(); 180 __ Reset();
181 181
182 #define START_AFTER_RESET() \ 182 #define START_AFTER_RESET() \
183 __ SetStackPointer(csp); \ 183 __ SetStackPointer(csp); \
184 __ PushCalleeSavedRegisters(); 184 __ PushCalleeSavedRegisters();
185 185
186 #define START() \ 186 #define START() \
187 RESET(); \ 187 RESET(); \
(...skipping 10766 matching lines...) Expand 10 before | Expand all | Expand 10 after
10954 if (RelocInfo::IsVeneerPool(info->rmode())) { 10954 if (RelocInfo::IsVeneerPool(info->rmode())) {
10955 ASSERT(info->data() == veneer_pool_size); 10955 ASSERT(info->data() == veneer_pool_size);
10956 ++pool_count; 10956 ++pool_count;
10957 } 10957 }
10958 } 10958 }
10959 10959
10960 ASSERT(pool_count == 2); 10960 ASSERT(pool_count == 2);
10961 10961
10962 TEARDOWN(); 10962 TEARDOWN();
10963 } 10963 }
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