| 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 #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 "vm/ast_printer.h" | 10 #include "vm/ast_printer.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 | 41 |
| 42 | 42 |
| 43 bool FlowGraphCompiler::SupportsUnboxedMints() { | 43 bool FlowGraphCompiler::SupportsUnboxedMints() { |
| 44 // Support unboxed mints when SSE 4.1 is available. | 44 // Support unboxed mints when SSE 4.1 is available. |
| 45 return FLAG_unbox_mints && CPUFeatures::sse4_1_supported(); | 45 return FLAG_unbox_mints && CPUFeatures::sse4_1_supported(); |
| 46 } | 46 } |
| 47 | 47 |
| 48 | 48 |
| 49 bool FlowGraphCompiler::SupportsSinCos() { |
| 50 return true; |
| 51 } |
| 52 |
| 53 |
| 49 RawDeoptInfo* CompilerDeoptInfo::CreateDeoptInfo(FlowGraphCompiler* compiler, | 54 RawDeoptInfo* CompilerDeoptInfo::CreateDeoptInfo(FlowGraphCompiler* compiler, |
| 50 DeoptInfoBuilder* builder, | 55 DeoptInfoBuilder* builder, |
| 51 const Array& deopt_table) { | 56 const Array& deopt_table) { |
| 52 if (deopt_env_ == NULL) return DeoptInfo::null(); | 57 if (deopt_env_ == NULL) return DeoptInfo::null(); |
| 53 | 58 |
| 54 intptr_t stack_height = compiler->StackSize(); | 59 intptr_t stack_height = compiler->StackSize(); |
| 55 AllocateIncomingParametersRecursive(deopt_env_, &stack_height); | 60 AllocateIncomingParametersRecursive(deopt_env_, &stack_height); |
| 56 | 61 |
| 57 intptr_t slot_ix = 0; | 62 intptr_t slot_ix = 0; |
| 58 Environment* current = deopt_env_; | 63 Environment* current = deopt_env_; |
| (...skipping 1825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1884 __ movups(reg, Address(ESP, 0)); | 1889 __ movups(reg, Address(ESP, 0)); |
| 1885 __ addl(ESP, Immediate(kFpuRegisterSize)); | 1890 __ addl(ESP, Immediate(kFpuRegisterSize)); |
| 1886 } | 1891 } |
| 1887 | 1892 |
| 1888 | 1893 |
| 1889 #undef __ | 1894 #undef __ |
| 1890 | 1895 |
| 1891 } // namespace dart | 1896 } // namespace dart |
| 1892 | 1897 |
| 1893 #endif // defined TARGET_ARCH_IA32 | 1898 #endif // defined TARGET_ARCH_IA32 |
| OLD | NEW |