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

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

Issue 2994113003: [vm] Rename *MintOp to *Int64Op to emphasis that they operate on unboxed values. (Closed)
Patch Set: il-printer Created 3 years, 4 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 | « runtime/vm/intermediate_language_arm64.cc ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | 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/compiler.h" 10 #include "vm/compiler.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 // Things we aren't planning to implement for DBC: 49 // Things we aren't planning to implement for DBC:
50 // - Unboxed SIMD, 50 // - Unboxed SIMD,
51 // - Unboxed Mint, 51 // - Unboxed Mint,
52 // - Optimized RegExps, 52 // - Optimized RegExps,
53 // - Precompilation. 53 // - Precompilation.
54 #define FOR_EACH_UNREACHABLE_INSTRUCTION(M) \ 54 #define FOR_EACH_UNREACHABLE_INSTRUCTION(M) \
55 M(CaseInsensitiveCompareUC16) \ 55 M(CaseInsensitiveCompareUC16) \
56 M(GenericCheckBound) \ 56 M(GenericCheckBound) \
57 M(IndirectGoto) \ 57 M(IndirectGoto) \
58 M(MintToDouble) \ 58 M(MintToDouble) \
59 M(BinaryMintOp) \ 59 M(BinaryInt64Op) \
60 M(ShiftMintOp) \ 60 M(ShiftInt64Op) \
61 M(UnaryMintOp) \ 61 M(UnaryInt64Op) \
62 M(BinaryFloat32x4Op) \ 62 M(BinaryFloat32x4Op) \
63 M(Simd32x4Shuffle) \ 63 M(Simd32x4Shuffle) \
64 M(Simd32x4ShuffleMix) \ 64 M(Simd32x4ShuffleMix) \
65 M(Simd32x4GetSignMask) \ 65 M(Simd32x4GetSignMask) \
66 M(Float32x4Constructor) \ 66 M(Float32x4Constructor) \
67 M(Float32x4Zero) \ 67 M(Float32x4Zero) \
68 M(Float32x4Splat) \ 68 M(Float32x4Splat) \
69 M(Float32x4Comparison) \ 69 M(Float32x4Comparison) \
70 M(Float32x4MinMax) \ 70 M(Float32x4MinMax) \
71 M(Float32x4Scale) \ 71 M(Float32x4Scale) \
(...skipping 1895 matching lines...) Expand 10 before | Expand all | Expand 10 after
1967 } 1967 }
1968 __ IfULe(length, index); 1968 __ IfULe(length, index);
1969 compiler->EmitDeopt(deopt_id(), ICData::kDeoptCheckArrayBound, 1969 compiler->EmitDeopt(deopt_id(), ICData::kDeoptCheckArrayBound,
1970 (generalized_ ? ICData::kGeneralized : 0) | 1970 (generalized_ ? ICData::kGeneralized : 0) |
1971 (licm_hoisted_ ? ICData::kHoisted : 0)); 1971 (licm_hoisted_ ? ICData::kHoisted : 0));
1972 } 1972 }
1973 1973
1974 } // namespace dart 1974 } // namespace dart
1975 1975
1976 #endif // defined TARGET_ARCH_DBC 1976 #endif // defined TARGET_ARCH_DBC
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language_arm64.cc ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698