Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: runtime/vm/intermediate_language_dbc.cc

Issue 1973493002: Fix DBC build after my last change. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698