OLD | NEW |
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_X64. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_X64. |
6 #if defined(TARGET_ARCH_X64) | 6 #if defined(TARGET_ARCH_X64) |
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 Loading... |
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 __ cmpq(RAX, raw_null); | 582 __ cmpq(RAX, 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 __ pushq(RAX); // Push the source object. | 591 __ pushq(RAX); // 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 } | 1152 } |
1152 } | 1153 } |
1153 } | 1154 } |
1154 | 1155 |
1155 | 1156 |
1156 #undef __ | 1157 #undef __ |
1157 | 1158 |
1158 } // namespace dart | 1159 } // namespace dart |
1159 | 1160 |
1160 #endif // defined TARGET_ARCH_X64 | 1161 #endif // defined TARGET_ARCH_X64 |
OLD | NEW |