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

Side by Side Diff: src/compiler/machine-operator.cc

Issue 2060233002: [turbofan] Prevent storing signalling NaNs into holey double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix spelling, rebase Created 4 years, 6 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 | « src/compiler/machine-operator.h ('k') | src/compiler/mips/code-generator-mips.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/machine-operator.h" 5 #include "src/compiler/machine-operator.h"
6 6
7 #include "src/base/lazy-instance.h" 7 #include "src/base/lazy-instance.h"
8 #include "src/compiler/opcodes.h" 8 #include "src/compiler/opcodes.h"
9 #include "src/compiler/operator.h" 9 #include "src/compiler/operator.h"
10 10
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ 123 V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \
124 V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ 124 V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \
125 V(TruncateFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ 125 V(TruncateFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \
126 V(TruncateFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ 126 V(TruncateFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \
127 V(TruncateFloat32ToUint32, Operator::kNoProperties, 1, 0, 1) \ 127 V(TruncateFloat32ToUint32, Operator::kNoProperties, 1, 0, 1) \
128 V(TryTruncateFloat32ToInt64, Operator::kNoProperties, 1, 0, 2) \ 128 V(TryTruncateFloat32ToInt64, Operator::kNoProperties, 1, 0, 2) \
129 V(TryTruncateFloat64ToInt64, Operator::kNoProperties, 1, 0, 2) \ 129 V(TryTruncateFloat64ToInt64, Operator::kNoProperties, 1, 0, 2) \
130 V(TryTruncateFloat32ToUint64, Operator::kNoProperties, 1, 0, 2) \ 130 V(TryTruncateFloat32ToUint64, Operator::kNoProperties, 1, 0, 2) \
131 V(TryTruncateFloat64ToUint64, Operator::kNoProperties, 1, 0, 2) \ 131 V(TryTruncateFloat64ToUint64, Operator::kNoProperties, 1, 0, 2) \
132 V(ChangeInt32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ 132 V(ChangeInt32ToFloat64, Operator::kNoProperties, 1, 0, 1) \
133 V(Float64SilenceNaN, Operator::kNoProperties, 1, 0, 1) \
133 V(RoundFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ 134 V(RoundFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \
134 V(RoundInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ 135 V(RoundInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \
135 V(RoundInt64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ 136 V(RoundInt64ToFloat32, Operator::kNoProperties, 1, 0, 1) \
136 V(RoundInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ 137 V(RoundInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \
137 V(RoundUint32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ 138 V(RoundUint32ToFloat32, Operator::kNoProperties, 1, 0, 1) \
138 V(RoundUint64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ 139 V(RoundUint64ToFloat32, Operator::kNoProperties, 1, 0, 1) \
139 V(RoundUint64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ 140 V(RoundUint64ToFloat64, Operator::kNoProperties, 1, 0, 1) \
140 V(ChangeInt32ToInt64, Operator::kNoProperties, 1, 0, 1) \ 141 V(ChangeInt32ToInt64, Operator::kNoProperties, 1, 0, 1) \
141 V(ChangeUint32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ 142 V(ChangeUint32ToFloat64, Operator::kNoProperties, 1, 0, 1) \
142 V(ChangeUint32ToUint64, Operator::kNoProperties, 1, 0, 1) \ 143 V(ChangeUint32ToUint64, Operator::kNoProperties, 1, 0, 1) \
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 } 695 }
695 ATOMIC_REPRESENTATION_LIST(STORE) 696 ATOMIC_REPRESENTATION_LIST(STORE)
696 #undef STORE 697 #undef STORE
697 UNREACHABLE(); 698 UNREACHABLE();
698 return nullptr; 699 return nullptr;
699 } 700 }
700 701
701 } // namespace compiler 702 } // namespace compiler
702 } // namespace internal 703 } // namespace internal
703 } // namespace v8 704 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.h ('k') | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698