| 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_ARM. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. |
| 6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 7 | 7 |
| 8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 | 9 |
| 10 #include "lib/error.h" | 10 #include "lib/error.h" |
| (...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1940 UNIMPLEMENTED(); | 1940 UNIMPLEMENTED(); |
| 1941 return NULL; | 1941 return NULL; |
| 1942 } | 1942 } |
| 1943 | 1943 |
| 1944 | 1944 |
| 1945 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1945 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1946 UNIMPLEMENTED(); | 1946 UNIMPLEMENTED(); |
| 1947 } | 1947 } |
| 1948 | 1948 |
| 1949 | 1949 |
| 1950 LocationSummary* BoxUint32x4Instr::MakeLocationSummary() const { |
| 1951 UNIMPLEMENTED(); |
| 1952 return NULL; |
| 1953 } |
| 1954 |
| 1955 |
| 1956 void BoxUint32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1957 UNIMPLEMENTED(); |
| 1958 } |
| 1959 |
| 1960 |
| 1961 LocationSummary* UnboxUint32x4Instr::MakeLocationSummary() const { |
| 1962 UNIMPLEMENTED(); |
| 1963 return NULL; |
| 1964 } |
| 1965 |
| 1966 |
| 1967 void UnboxUint32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1968 UNIMPLEMENTED(); |
| 1969 } |
| 1970 |
| 1971 |
| 1950 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { | 1972 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { |
| 1951 UNIMPLEMENTED(); | 1973 UNIMPLEMENTED(); |
| 1952 return NULL; | 1974 return NULL; |
| 1953 } | 1975 } |
| 1954 | 1976 |
| 1955 | 1977 |
| 1956 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1978 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1957 UNIMPLEMENTED(); | 1979 UNIMPLEMENTED(); |
| 1958 } | 1980 } |
| 1959 | 1981 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2006 UNIMPLEMENTED(); | 2028 UNIMPLEMENTED(); |
| 2007 return NULL; | 2029 return NULL; |
| 2008 } | 2030 } |
| 2009 | 2031 |
| 2010 | 2032 |
| 2011 void Float32x4SplatInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 2033 void Float32x4SplatInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 2012 UNIMPLEMENTED(); | 2034 UNIMPLEMENTED(); |
| 2013 } | 2035 } |
| 2014 | 2036 |
| 2015 | 2037 |
| 2038 LocationSummary* Float32x4ComparisonInstr::MakeLocationSummary() const { |
| 2039 UNIMPLEMENTED(); |
| 2040 return NULL; |
| 2041 } |
| 2042 |
| 2043 |
| 2044 void Float32x4ComparisonInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 2045 UNIMPLEMENTED(); |
| 2046 } |
| 2047 |
| 2048 |
| 2016 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { | 2049 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { |
| 2017 UNIMPLEMENTED(); | 2050 UNIMPLEMENTED(); |
| 2018 return NULL; | 2051 return NULL; |
| 2019 } | 2052 } |
| 2020 | 2053 |
| 2021 | 2054 |
| 2022 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 2055 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 2023 UNIMPLEMENTED(); | 2056 UNIMPLEMENTED(); |
| 2024 } | 2057 } |
| 2025 | 2058 |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2580 &label, | 2613 &label, |
| 2581 PcDescriptors::kOther, | 2614 PcDescriptors::kOther, |
| 2582 locs()); | 2615 locs()); |
| 2583 __ Drop(2); // Discard type arguments and receiver. | 2616 __ Drop(2); // Discard type arguments and receiver. |
| 2584 } | 2617 } |
| 2585 | 2618 |
| 2586 } // namespace dart | 2619 } // namespace dart |
| 2587 | 2620 |
| 2588 #endif // defined TARGET_ARCH_ARM | 2621 #endif // defined TARGET_ARCH_ARM |
| 2589 | 2622 |
| OLD | NEW |