| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #if !defined(DART_PRECOMPILED_RUNTIME) | |
| 6 | |
| 7 #include "vm/deopt_instructions.h" | 5 #include "vm/deopt_instructions.h" |
| 8 | 6 |
| 9 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
| 10 #include "vm/code_patcher.h" | 8 #include "vm/code_patcher.h" |
| 11 #include "vm/compiler.h" | 9 #include "vm/compiler.h" |
| 12 #include "vm/disassembler.h" | 10 #include "vm/disassembler.h" |
| 13 #include "vm/intermediate_language.h" | 11 #include "vm/intermediate_language.h" |
| 14 #include "vm/locations.h" | 12 #include "vm/locations.h" |
| 15 #include "vm/parser.h" | 13 #include "vm/parser.h" |
| 16 #include "vm/stack_frame.h" | 14 #include "vm/stack_frame.h" |
| (...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1426 GrowableArray<DeoptInstr*> unpacked; | 1424 GrowableArray<DeoptInstr*> unpacked; |
| 1427 Unpack(deopt_table, packed, &unpacked); | 1425 Unpack(deopt_table, packed, &unpacked); |
| 1428 ASSERT(unpacked.length() == original.length()); | 1426 ASSERT(unpacked.length() == original.length()); |
| 1429 for (intptr_t i = 0; i < unpacked.length(); ++i) { | 1427 for (intptr_t i = 0; i < unpacked.length(); ++i) { |
| 1430 ASSERT(unpacked[i]->Equals(*original[i])); | 1428 ASSERT(unpacked[i]->Equals(*original[i])); |
| 1431 } | 1429 } |
| 1432 return true; | 1430 return true; |
| 1433 } | 1431 } |
| 1434 | 1432 |
| 1435 } // namespace dart | 1433 } // namespace dart |
| 1436 | |
| 1437 #endif // !defined(DART_PRECOMPILED_RUNTIME) | |
| OLD | NEW |