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

Side by Side Diff: test/unittests/compiler/machine-operator-unittest.cc

Issue 1066393002: [turbofan] Add new Float32Abs and Float64Abs operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix comment. Created 5 years, 8 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
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 #include "src/compiler/opcodes.h" 6 #include "src/compiler/opcodes.h"
7 #include "src/compiler/operator.h" 7 #include "src/compiler/operator.h"
8 #include "src/compiler/operator-properties.h" 8 #include "src/compiler/operator-properties.h"
9 #include "test/unittests/test-utils.h" 9 #include "test/unittests/test-utils.h"
10 10
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 PURE(Int64Div, 2, 0, 1), PURE(Uint64Div, 2, 0, 1), PURE(Int64Mod, 2, 0, 1), 195 PURE(Int64Div, 2, 0, 1), PURE(Uint64Div, 2, 0, 1), PURE(Int64Mod, 2, 0, 1),
196 PURE(Uint64Mod, 2, 0, 1), PURE(Int64LessThan, 2, 0, 1), 196 PURE(Uint64Mod, 2, 0, 1), PURE(Int64LessThan, 2, 0, 1),
197 PURE(Int64LessThanOrEqual, 2, 0, 1), PURE(Uint64LessThan, 2, 0, 1), 197 PURE(Int64LessThanOrEqual, 2, 0, 1), PURE(Uint64LessThan, 2, 0, 1),
198 PURE(ChangeFloat32ToFloat64, 1, 0, 1), PURE(ChangeFloat64ToInt32, 1, 0, 1), 198 PURE(ChangeFloat32ToFloat64, 1, 0, 1), PURE(ChangeFloat64ToInt32, 1, 0, 1),
199 PURE(ChangeFloat64ToUint32, 1, 0, 1), PURE(ChangeInt32ToInt64, 1, 0, 1), 199 PURE(ChangeFloat64ToUint32, 1, 0, 1), PURE(ChangeInt32ToInt64, 1, 0, 1),
200 PURE(ChangeUint32ToFloat64, 1, 0, 1), PURE(ChangeUint32ToUint64, 1, 0, 1), 200 PURE(ChangeUint32ToFloat64, 1, 0, 1), PURE(ChangeUint32ToUint64, 1, 0, 1),
201 PURE(TruncateFloat64ToFloat32, 1, 0, 1), 201 PURE(TruncateFloat64ToFloat32, 1, 0, 1),
202 PURE(TruncateFloat64ToInt32, 1, 0, 1), PURE(TruncateInt64ToInt32, 1, 0, 1), 202 PURE(TruncateFloat64ToInt32, 1, 0, 1), PURE(TruncateInt64ToInt32, 1, 0, 1),
203 PURE(Float32Add, 2, 0, 1), PURE(Float32Sub, 2, 0, 1), 203 PURE(Float32Add, 2, 0, 1), PURE(Float32Sub, 2, 0, 1),
204 PURE(Float32Mul, 2, 0, 1), PURE(Float32Div, 2, 0, 1), 204 PURE(Float32Mul, 2, 0, 1), PURE(Float32Div, 2, 0, 1),
205 PURE(Float32Sqrt, 1, 0, 1), PURE(Float32Equal, 2, 0, 1), 205 PURE(Float32Abs, 1, 0, 1), PURE(Float32Sqrt, 1, 0, 1),
206 PURE(Float32LessThan, 2, 0, 1), PURE(Float32LessThanOrEqual, 2, 0, 1), 206 PURE(Float32Equal, 2, 0, 1), PURE(Float32LessThan, 2, 0, 1),
207 PURE(Float32Max, 2, 0, 1), PURE(Float32Min, 2, 0, 1), 207 PURE(Float32LessThanOrEqual, 2, 0, 1), PURE(Float32Max, 2, 0, 1),
208 PURE(Float64Add, 2, 0, 1), PURE(Float64Sub, 2, 0, 1), 208 PURE(Float32Min, 2, 0, 1), PURE(Float64Add, 2, 0, 1),
209 PURE(Float64Mul, 2, 0, 1), PURE(Float64Div, 2, 0, 1), 209 PURE(Float64Sub, 2, 0, 1), PURE(Float64Mul, 2, 0, 1),
210 PURE(Float64Mod, 2, 0, 1), PURE(Float64Sqrt, 1, 0, 1), 210 PURE(Float64Div, 2, 0, 1), PURE(Float64Mod, 2, 0, 1),
211 PURE(Float64Abs, 1, 0, 1), PURE(Float64Sqrt, 1, 0, 1),
211 PURE(Float64Equal, 2, 0, 1), PURE(Float64LessThan, 2, 0, 1), 212 PURE(Float64Equal, 2, 0, 1), PURE(Float64LessThan, 2, 0, 1),
212 PURE(Float64LessThanOrEqual, 2, 0, 1), PURE(Float64Max, 2, 0, 1), 213 PURE(Float64LessThanOrEqual, 2, 0, 1), PURE(Float64Max, 2, 0, 1),
213 PURE(Float64Min, 2, 0, 1), PURE(LoadStackPointer, 0, 0, 1), 214 PURE(Float64Min, 2, 0, 1), PURE(LoadStackPointer, 0, 0, 1),
214 PURE(Float64RoundDown, 1, 0, 1), PURE(Float64RoundTruncate, 1, 0, 1), 215 PURE(Float64RoundDown, 1, 0, 1), PURE(Float64RoundTruncate, 1, 0, 1),
215 PURE(Float64RoundTiesAway, 1, 0, 1), PURE(Float64ExtractLowWord32, 1, 0, 1), 216 PURE(Float64RoundTiesAway, 1, 0, 1), PURE(Float64ExtractLowWord32, 1, 0, 1),
216 PURE(Float64ExtractHighWord32, 1, 0, 1), 217 PURE(Float64ExtractHighWord32, 1, 0, 1),
217 PURE(Float64InsertLowWord32, 2, 0, 1), 218 PURE(Float64InsertLowWord32, 2, 0, 1),
218 PURE(Float64InsertHighWord32, 2, 0, 1) 219 PURE(Float64InsertHighWord32, 2, 0, 1)
219 #undef PURE 220 #undef PURE
220 }; 221 };
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 EXPECT_EQ(machine.Uint64Div(), machine.UintDiv()); 325 EXPECT_EQ(machine.Uint64Div(), machine.UintDiv());
325 EXPECT_EQ(machine.Int64Mod(), machine.IntMod()); 326 EXPECT_EQ(machine.Int64Mod(), machine.IntMod());
326 EXPECT_EQ(machine.Uint64Mod(), machine.UintMod()); 327 EXPECT_EQ(machine.Uint64Mod(), machine.UintMod());
327 EXPECT_EQ(machine.Int64LessThan(), machine.IntLessThan()); 328 EXPECT_EQ(machine.Int64LessThan(), machine.IntLessThan());
328 EXPECT_EQ(machine.Int64LessThanOrEqual(), machine.IntLessThanOrEqual()); 329 EXPECT_EQ(machine.Int64LessThanOrEqual(), machine.IntLessThanOrEqual());
329 } 330 }
330 331
331 } // namespace compiler 332 } // namespace compiler
332 } // namespace internal 333 } // namespace internal
333 } // namespace v8 334 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/ia32/instruction-selector-ia32-unittest.cc ('k') | test/unittests/compiler/node-test-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698