| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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_DBC. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_DBC. |
| 6 #if defined(TARGET_ARCH_DBC) | 6 #if defined(TARGET_ARCH_DBC) |
| 7 | 7 |
| 8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 | 9 |
| 10 #include "vm/cpu.h" | 10 #include "vm/cpu.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 M(MathUnary) \ | 53 M(MathUnary) \ |
| 54 M(MathMinMax) \ | 54 M(MathMinMax) \ |
| 55 M(Box) \ | 55 M(Box) \ |
| 56 M(Unbox) \ | 56 M(Unbox) \ |
| 57 M(BoxInt64) \ | 57 M(BoxInt64) \ |
| 58 M(CaseInsensitiveCompareUC16) \ | 58 M(CaseInsensitiveCompareUC16) \ |
| 59 M(BinaryMintOp) \ | 59 M(BinaryMintOp) \ |
| 60 M(ShiftMintOp) \ | 60 M(ShiftMintOp) \ |
| 61 M(UnaryMintOp) \ | 61 M(UnaryMintOp) \ |
| 62 M(StringToCharCode) \ | 62 M(StringToCharCode) \ |
| 63 M(StringFromCharCode) \ | 63 M(OneByteStringFromCharCode) \ |
| 64 M(InvokeMathCFunction) \ | 64 M(InvokeMathCFunction) \ |
| 65 M(MergedMath) \ | 65 M(MergedMath) \ |
| 66 M(GuardFieldClass) \ | 66 M(GuardFieldClass) \ |
| 67 M(GuardFieldLength) \ | 67 M(GuardFieldLength) \ |
| 68 M(IfThenElse) \ | 68 M(IfThenElse) \ |
| 69 M(BinaryFloat32x4Op) \ | 69 M(BinaryFloat32x4Op) \ |
| 70 M(Simd32x4Shuffle) \ | 70 M(Simd32x4Shuffle) \ |
| 71 M(Simd32x4ShuffleMix) \ | 71 M(Simd32x4ShuffleMix) \ |
| 72 M(Simd32x4GetSignMask) \ | 72 M(Simd32x4GetSignMask) \ |
| 73 M(Float32x4Constructor) \ | 73 M(Float32x4Constructor) \ |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 return kUnboxedFloat64x2; | 703 return kUnboxedFloat64x2; |
| 704 default: | 704 default: |
| 705 UNREACHABLE(); | 705 UNREACHABLE(); |
| 706 return kTagged; | 706 return kTagged; |
| 707 } | 707 } |
| 708 } | 708 } |
| 709 | 709 |
| 710 } // namespace dart | 710 } // namespace dart |
| 711 | 711 |
| 712 #endif // defined TARGET_ARCH_DBC | 712 #endif // defined TARGET_ARCH_DBC |
| OLD | NEW |