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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |