OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |