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

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

Issue 10380019: Stop postponing instantiation of Type and remove InstantiatedType VM class. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | runtime/vm/object.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 #include "vm/compiler.h" 5 #include "vm/compiler.h"
6 6
7 #include "vm/assembler.h" 7 #include "vm/assembler.h"
8 #include "vm/ast_printer.h" 8 #include "vm/ast_printer.h"
9 #include "vm/code_generator.h" 9 #include "vm/code_generator.h"
10 #include "vm/code_patcher.h" 10 #include "vm/code_patcher.h"
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 isolate->set_long_jump_base(base); 435 isolate->set_long_jump_base(base);
436 return result.raw(); 436 return result.raw();
437 } else { 437 } else {
438 Object& result = Object::Handle(); 438 Object& result = Object::Handle();
439 result = isolate->object_store()->sticky_error(); 439 result = isolate->object_store()->sticky_error();
440 isolate->object_store()->clear_sticky_error(); 440 isolate->object_store()->clear_sticky_error();
441 isolate->set_long_jump_base(base); 441 isolate->set_long_jump_base(base);
442 return result.raw(); 442 return result.raw();
443 } 443 }
444 UNREACHABLE(); 444 UNREACHABLE();
445 return Error::null(); 445 return Object::null();
446 } 446 }
447 447
448 448
449 } // namespace dart 449 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698