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

Side by Side Diff: vm/flow_graph_compiler_ia32.cc

Issue 10783035: Create frequently used symbols in the vm isolate (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 5 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
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/globals.h" // Needed here to get TARGET_ARCH_IA32. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32.
6 #if defined(TARGET_ARCH_IA32) 6 #if defined(TARGET_ARCH_IA32)
7 7
8 #include "vm/flow_graph_compiler.h" 8 #include "vm/flow_graph_compiler.h"
9 9
10 #include "lib/error.h" 10 #include "lib/error.h"
11 #include "vm/ast_printer.h" 11 #include "vm/ast_printer.h"
12 #include "vm/il_printer.h" 12 #include "vm/il_printer.h"
13 #include "vm/locations.h" 13 #include "vm/locations.h"
14 #include "vm/object_store.h" 14 #include "vm/object_store.h"
15 #include "vm/parser.h" 15 #include "vm/parser.h"
16 #include "vm/stub_code.h" 16 #include "vm/stub_code.h"
17 #include "vm/symbols.h"
17 18
18 namespace dart { 19 namespace dart {
19 20
20 DECLARE_FLAG(bool, enable_type_checks); 21 DECLARE_FLAG(bool, enable_type_checks);
21 DECLARE_FLAG(bool, print_ast); 22 DECLARE_FLAG(bool, print_ast);
22 DECLARE_FLAG(bool, print_scopes); 23 DECLARE_FLAG(bool, print_scopes);
23 DECLARE_FLAG(bool, trace_functions); 24 DECLARE_FLAG(bool, trace_functions);
24 25
25 26
26 void DeoptimizationStub::GenerateCode(FlowGraphCompiler* compiler) { 27 void DeoptimizationStub::GenerateCode(FlowGraphCompiler* compiler) {
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 const Immediate raw_null = 579 const Immediate raw_null =
579 Immediate(reinterpret_cast<intptr_t>(Object::null())); 580 Immediate(reinterpret_cast<intptr_t>(Object::null()));
580 Label is_assignable, runtime_call; 581 Label is_assignable, runtime_call;
581 __ cmpl(EAX, raw_null); 582 __ cmpl(EAX, raw_null);
582 __ j(EQUAL, &is_assignable); 583 __ j(EQUAL, &is_assignable);
583 584
584 // Generate throw new TypeError() if the type is malformed. 585 // Generate throw new TypeError() if the type is malformed.
585 if (dst_type.IsMalformed()) { 586 if (dst_type.IsMalformed()) {
586 const Error& error = Error::Handle(dst_type.malformed_error()); 587 const Error& error = Error::Handle(dst_type.malformed_error());
587 const String& error_message = String::ZoneHandle( 588 const String& error_message = String::ZoneHandle(
588 String::NewSymbol(error.ToErrorCString())); 589 Symbols::New(error.ToErrorCString()));
589 __ PushObject(Object::ZoneHandle()); // Make room for the result. 590 __ PushObject(Object::ZoneHandle()); // Make room for the result.
590 __ pushl(EAX); // Push the source object. 591 __ pushl(EAX); // Push the source object.
591 __ PushObject(dst_name); // Push the name of the destination. 592 __ PushObject(dst_name); // Push the name of the destination.
592 __ PushObject(error_message); 593 __ PushObject(error_message);
593 GenerateCallRuntime(cid, 594 GenerateCallRuntime(cid,
594 token_pos, 595 token_pos,
595 try_index, 596 try_index,
596 kMalformedTypeErrorRuntimeEntry); 597 kMalformedTypeErrorRuntimeEntry);
597 // We should never return here. 598 // We should never return here.
598 __ int3(); 599 __ int3();
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 } 1149 }
1149 } 1150 }
1150 } 1151 }
1151 1152
1152 1153
1153 #undef __ 1154 #undef __
1154 1155
1155 } // namespace dart 1156 } // namespace dart
1156 1157
1157 #endif // defined TARGET_ARCH_IA32 1158 #endif // defined TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698