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

Side by Side Diff: runtime/vm/deopt_instructions.cc

Issue 2997993002: Revert "Reapply "Eliminate dependencies on assemblers and code stubs in precompiled runtime."" (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « runtime/vm/deferred_objects.cc ('k') | runtime/vm/disassembler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « runtime/vm/deferred_objects.cc ('k') | runtime/vm/disassembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698