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

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

Issue 850013003: [turbofan] Fix truncation/representation sloppiness wrt. bool/bit. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes/Cleanups Created 5 years, 11 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/simplified-operator.h ('k') | src/compiler/simplified-operator-reducer.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/simplified-operator.h" 5 #include "src/compiler/simplified-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 #include "src/types-inl.h" 10 #include "src/types-inl.h"
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 V(StringEqual, Operator::kCommutative, 2) \ 175 V(StringEqual, Operator::kCommutative, 2) \
176 V(StringLessThan, Operator::kNoProperties, 2) \ 176 V(StringLessThan, Operator::kNoProperties, 2) \
177 V(StringLessThanOrEqual, Operator::kNoProperties, 2) \ 177 V(StringLessThanOrEqual, Operator::kNoProperties, 2) \
178 V(StringAdd, Operator::kNoProperties, 2) \ 178 V(StringAdd, Operator::kNoProperties, 2) \
179 V(ChangeTaggedToInt32, Operator::kNoProperties, 1) \ 179 V(ChangeTaggedToInt32, Operator::kNoProperties, 1) \
180 V(ChangeTaggedToUint32, Operator::kNoProperties, 1) \ 180 V(ChangeTaggedToUint32, Operator::kNoProperties, 1) \
181 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1) \ 181 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1) \
182 V(ChangeInt32ToTagged, Operator::kNoProperties, 1) \ 182 V(ChangeInt32ToTagged, Operator::kNoProperties, 1) \
183 V(ChangeUint32ToTagged, Operator::kNoProperties, 1) \ 183 V(ChangeUint32ToTagged, Operator::kNoProperties, 1) \
184 V(ChangeFloat64ToTagged, Operator::kNoProperties, 1) \ 184 V(ChangeFloat64ToTagged, Operator::kNoProperties, 1) \
185 V(ChangeBoolToBit, Operator::kNoProperties, 1) \
185 V(ChangeBitToBool, Operator::kNoProperties, 1) \ 186 V(ChangeBitToBool, Operator::kNoProperties, 1) \
186 V(ChangeBoolToBit, Operator::kNoProperties, 1) \
187 V(ChangeWord32ToBit, Operator::kNoProperties, 1) \
188 V(ChangeWord64ToBit, Operator::kNoProperties, 1) \
189 V(ObjectIsSmi, Operator::kNoProperties, 1) \ 187 V(ObjectIsSmi, Operator::kNoProperties, 1) \
190 V(ObjectIsNonNegativeSmi, Operator::kNoProperties, 1) 188 V(ObjectIsNonNegativeSmi, Operator::kNoProperties, 1)
191 189
192 190
193 struct SimplifiedOperatorGlobalCache FINAL { 191 struct SimplifiedOperatorGlobalCache FINAL {
194 #define PURE(Name, properties, input_count) \ 192 #define PURE(Name, properties, input_count) \
195 struct Name##Operator FINAL : public Operator { \ 193 struct Name##Operator FINAL : public Operator { \
196 Name##Operator() \ 194 Name##Operator() \
197 : Operator(IrOpcode::k##Name, Operator::kPure | properties, #Name, \ 195 : Operator(IrOpcode::k##Name, Operator::kPure | properties, #Name, \
198 input_count, 0, 0, 1, 0, 0) {} \ 196 input_count, 0, 0, 1, 0, 0) {} \
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ 283 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \
286 #Name, value_input_count, 1, control_input_count, \ 284 #Name, value_input_count, 1, control_input_count, \
287 output_count, 1, 0, access); \ 285 output_count, 1, 0, access); \
288 } 286 }
289 ACCESS_OP_LIST(ACCESS) 287 ACCESS_OP_LIST(ACCESS)
290 #undef ACCESS 288 #undef ACCESS
291 289
292 } // namespace compiler 290 } // namespace compiler
293 } // namespace internal 291 } // namespace internal
294 } // namespace v8 292 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-operator.h ('k') | src/compiler/simplified-operator-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698