| 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/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 | 9 |
| 10 #include "lib/error.h" | 10 #include "lib/error.h" |
| (...skipping 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2169 UNIMPLEMENTED(); | 2169 UNIMPLEMENTED(); |
| 2170 return NULL; | 2170 return NULL; |
| 2171 } | 2171 } |
| 2172 | 2172 |
| 2173 | 2173 |
| 2174 void UnboxedMintBinaryOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 2174 void UnboxedMintBinaryOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 2175 UNIMPLEMENTED(); | 2175 UNIMPLEMENTED(); |
| 2176 } | 2176 } |
| 2177 | 2177 |
| 2178 | 2178 |
| 2179 LocationSummary* UnboxedMintUnaryOpInstr::MakeLocationSummary() const { |
| 2180 UNIMPLEMENTED(); |
| 2181 return NULL; |
| 2182 } |
| 2183 |
| 2184 |
| 2185 void UnboxedMintUnaryOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 2186 UNIMPLEMENTED(); |
| 2187 } |
| 2188 |
| 2189 |
| 2179 } // namespace dart | 2190 } // namespace dart |
| 2180 | 2191 |
| 2181 #undef __ | 2192 #undef __ |
| 2182 | 2193 |
| 2183 #endif // defined TARGET_ARCH_X64 | 2194 #endif // defined TARGET_ARCH_X64 |
| OLD | NEW |