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

Side by Side Diff: test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc

Issue 1176393002: Revert of [arm64][turbofan]: Handle any immediate shift. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/arm64/instruction-selector-arm64.cc ('k') | 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 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 "test/unittests/compiler/instruction-selector-unittest.h" 5 #include "test/unittests/compiler/instruction-selector-unittest.h"
6 6
7 namespace v8 { 7 namespace v8 {
8 namespace internal { 8 namespace internal {
9 namespace compiler { 9 namespace compiler {
10 10
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 } 635 }
636 636
637 637
638 TEST_F(InstructionSelectorTest, AddShiftByImmediateOnLeft) { 638 TEST_F(InstructionSelectorTest, AddShiftByImmediateOnLeft) {
639 // 32-bit add. 639 // 32-bit add.
640 TRACED_FOREACH(Shift, shift, kShiftInstructions) { 640 TRACED_FOREACH(Shift, shift, kShiftInstructions) {
641 // Only test relevant shifted operands. 641 // Only test relevant shifted operands.
642 if (shift.mi.machine_type != kMachInt32) continue; 642 if (shift.mi.machine_type != kMachInt32) continue;
643 if (shift.mi.arch_opcode == kArm64Ror32) continue; 643 if (shift.mi.arch_opcode == kArm64Ror32) continue;
644 644
645 // The available shift operand range is `0 <= imm < 32`, but we also test 645 TRACED_FORRANGE(int, imm, 0, 31) {
646 // that immediates outside this range are handled properly (modulo-32).
647 TRACED_FORRANGE(int, imm, -32, 63) {
648 StreamBuilder m(this, kMachInt32, kMachInt32, kMachInt32); 646 StreamBuilder m(this, kMachInt32, kMachInt32, kMachInt32);
649 m.Return((m.Int32Add)( 647 m.Return((m.Int32Add)(
650 (m.*shift.mi.constructor)(m.Parameter(1), m.Int32Constant(imm)), 648 (m.*shift.mi.constructor)(m.Parameter(1), m.Int32Constant(imm)),
651 m.Parameter(0))); 649 m.Parameter(0)));
652 Stream s = m.Build(); 650 Stream s = m.Build();
653 ASSERT_EQ(1U, s.size()); 651 ASSERT_EQ(1U, s.size());
654 EXPECT_EQ(kArm64Add32, s[0]->arch_opcode()); 652 EXPECT_EQ(kArm64Add32, s[0]->arch_opcode());
655 EXPECT_EQ(shift.mode, s[0]->addressing_mode()); 653 EXPECT_EQ(shift.mode, s[0]->addressing_mode());
656 EXPECT_EQ(3U, s[0]->InputCount()); 654 EXPECT_EQ(3U, s[0]->InputCount());
657 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); 655 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2)));
658 EXPECT_EQ(1U, s[0]->OutputCount()); 656 EXPECT_EQ(1U, s[0]->OutputCount());
659 } 657 }
660 } 658 }
661 659
662 // 64-bit add. 660 // 64-bit add.
663 TRACED_FOREACH(Shift, shift, kShiftInstructions) { 661 TRACED_FOREACH(Shift, shift, kShiftInstructions) {
664 // Only test relevant shifted operands. 662 // Only test relevant shifted operands.
665 if (shift.mi.machine_type != kMachInt64) continue; 663 if (shift.mi.machine_type != kMachInt64) continue;
666 if (shift.mi.arch_opcode == kArm64Ror) continue; 664 if (shift.mi.arch_opcode == kArm64Ror) continue;
667 665
668 // The available shift operand range is `0 <= imm < 64`, but we also test 666 TRACED_FORRANGE(int, imm, 0, 63) {
669 // that immediates outside this range are handled properly (modulo-64).
670 TRACED_FORRANGE(int, imm, -64, 127) {
671 StreamBuilder m(this, kMachInt64, kMachInt64, kMachInt64); 667 StreamBuilder m(this, kMachInt64, kMachInt64, kMachInt64);
672 m.Return((m.Int64Add)( 668 m.Return((m.Int64Add)(
673 (m.*shift.mi.constructor)(m.Parameter(1), m.Int64Constant(imm)), 669 (m.*shift.mi.constructor)(m.Parameter(1), m.Int64Constant(imm)),
674 m.Parameter(0))); 670 m.Parameter(0)));
675 Stream s = m.Build(); 671 Stream s = m.Build();
676 ASSERT_EQ(1U, s.size()); 672 ASSERT_EQ(1U, s.size());
677 EXPECT_EQ(kArm64Add, s[0]->arch_opcode()); 673 EXPECT_EQ(kArm64Add, s[0]->arch_opcode());
678 EXPECT_EQ(shift.mode, s[0]->addressing_mode()); 674 EXPECT_EQ(shift.mode, s[0]->addressing_mode());
679 EXPECT_EQ(3U, s[0]->InputCount()); 675 EXPECT_EQ(3U, s[0]->InputCount());
680 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); 676 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2)));
(...skipping 1518 matching lines...) Expand 10 before | Expand all | Expand 10 after
2199 Stream s = m.Build(); 2195 Stream s = m.Build();
2200 ASSERT_EQ(1U, s.size()); 2196 ASSERT_EQ(1U, s.size());
2201 EXPECT_EQ(kArm64Not, s[0]->arch_opcode()); 2197 EXPECT_EQ(kArm64Not, s[0]->arch_opcode());
2202 EXPECT_EQ(1U, s[0]->InputCount()); 2198 EXPECT_EQ(1U, s[0]->InputCount());
2203 EXPECT_EQ(1U, s[0]->OutputCount()); 2199 EXPECT_EQ(1U, s[0]->OutputCount());
2204 } 2200 }
2205 } 2201 }
2206 2202
2207 2203
2208 TEST_F(InstructionSelectorTest, Word32ShrWithWord32AndWithImmediate) { 2204 TEST_F(InstructionSelectorTest, Word32ShrWithWord32AndWithImmediate) {
2209 // The available shift operand range is `0 <= imm < 32`, but we also test 2205 TRACED_FORRANGE(int32_t, lsb, 1, 31) {
2210 // that immediates outside this range are handled properly (modulo-32).
2211 TRACED_FORRANGE(int32_t, shift, -32, 63) {
2212 int32_t lsb = shift & 0x1f;
2213 TRACED_FORRANGE(int32_t, width, 1, 32 - lsb) { 2206 TRACED_FORRANGE(int32_t, width, 1, 32 - lsb) {
2214 uint32_t jnk = rng()->NextInt(); 2207 uint32_t jnk = rng()->NextInt();
2215 jnk >>= 32 - lsb; 2208 jnk >>= 32 - lsb;
2216 uint32_t msk = ((0xffffffffu >> (32 - width)) << lsb) | jnk; 2209 uint32_t msk = ((0xffffffffu >> (32 - width)) << lsb) | jnk;
2217 StreamBuilder m(this, kMachInt32, kMachInt32); 2210 StreamBuilder m(this, kMachInt32, kMachInt32);
2218 m.Return(m.Word32Shr(m.Word32And(m.Parameter(0), m.Int32Constant(msk)), 2211 m.Return(m.Word32Shr(m.Word32And(m.Parameter(0), m.Int32Constant(msk)),
2219 m.Int32Constant(shift))); 2212 m.Int32Constant(lsb)));
2220 Stream s = m.Build(); 2213 Stream s = m.Build();
2221 ASSERT_EQ(1U, s.size()); 2214 ASSERT_EQ(1U, s.size());
2222 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode()); 2215 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode());
2223 ASSERT_EQ(3U, s[0]->InputCount()); 2216 ASSERT_EQ(3U, s[0]->InputCount());
2224 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1))); 2217 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1)));
2225 EXPECT_EQ(width, s.ToInt32(s[0]->InputAt(2))); 2218 EXPECT_EQ(width, s.ToInt32(s[0]->InputAt(2)));
2226 } 2219 }
2227 } 2220 }
2228 TRACED_FORRANGE(int32_t, shift, -32, 63) { 2221 TRACED_FORRANGE(int32_t, lsb, 1, 31) {
2229 int32_t lsb = shift & 0x1f;
2230 TRACED_FORRANGE(int32_t, width, 1, 32 - lsb) { 2222 TRACED_FORRANGE(int32_t, width, 1, 32 - lsb) {
2231 uint32_t jnk = rng()->NextInt(); 2223 uint32_t jnk = rng()->NextInt();
2232 jnk >>= 32 - lsb; 2224 jnk >>= 32 - lsb;
2233 uint32_t msk = ((0xffffffffu >> (32 - width)) << lsb) | jnk; 2225 uint32_t msk = ((0xffffffffu >> (32 - width)) << lsb) | jnk;
2234 StreamBuilder m(this, kMachInt32, kMachInt32); 2226 StreamBuilder m(this, kMachInt32, kMachInt32);
2235 m.Return(m.Word32Shr(m.Word32And(m.Int32Constant(msk), m.Parameter(0)), 2227 m.Return(m.Word32Shr(m.Word32And(m.Int32Constant(msk), m.Parameter(0)),
2236 m.Int32Constant(shift))); 2228 m.Int32Constant(lsb)));
2237 Stream s = m.Build(); 2229 Stream s = m.Build();
2238 ASSERT_EQ(1U, s.size()); 2230 ASSERT_EQ(1U, s.size());
2239 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode()); 2231 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode());
2240 ASSERT_EQ(3U, s[0]->InputCount()); 2232 ASSERT_EQ(3U, s[0]->InputCount());
2241 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1))); 2233 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1)));
2242 EXPECT_EQ(width, s.ToInt32(s[0]->InputAt(2))); 2234 EXPECT_EQ(width, s.ToInt32(s[0]->InputAt(2)));
2243 } 2235 }
2244 } 2236 }
2245 } 2237 }
2246 2238
2247 2239
2248 TEST_F(InstructionSelectorTest, Word64ShrWithWord64AndWithImmediate) { 2240 TEST_F(InstructionSelectorTest, Word64ShrWithWord64AndWithImmediate) {
2249 // The available shift operand range is `0 <= imm < 64`, but we also test 2241 TRACED_FORRANGE(int32_t, lsb, 1, 63) {
2250 // that immediates outside this range are handled properly (modulo-64).
2251 TRACED_FORRANGE(int32_t, shift, -64, 127) {
2252 int32_t lsb = shift & 0x3f;
2253 TRACED_FORRANGE(int32_t, width, 1, 64 - lsb) { 2242 TRACED_FORRANGE(int32_t, width, 1, 64 - lsb) {
2254 uint64_t jnk = rng()->NextInt64(); 2243 uint64_t jnk = rng()->NextInt64();
2255 jnk >>= 64 - lsb; 2244 jnk >>= 64 - lsb;
2256 uint64_t msk = 2245 uint64_t msk =
2257 ((V8_UINT64_C(0xffffffffffffffff) >> (64 - width)) << lsb) | jnk; 2246 ((V8_UINT64_C(0xffffffffffffffff) >> (64 - width)) << lsb) | jnk;
2258 StreamBuilder m(this, kMachInt64, kMachInt64); 2247 StreamBuilder m(this, kMachInt64, kMachInt64);
2259 m.Return(m.Word64Shr(m.Word64And(m.Parameter(0), m.Int64Constant(msk)), 2248 m.Return(m.Word64Shr(m.Word64And(m.Parameter(0), m.Int64Constant(msk)),
2260 m.Int64Constant(shift))); 2249 m.Int64Constant(lsb)));
2261 Stream s = m.Build(); 2250 Stream s = m.Build();
2262 ASSERT_EQ(1U, s.size()); 2251 ASSERT_EQ(1U, s.size());
2263 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode()); 2252 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode());
2264 ASSERT_EQ(3U, s[0]->InputCount()); 2253 ASSERT_EQ(3U, s[0]->InputCount());
2265 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); 2254 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1)));
2266 EXPECT_EQ(width, s.ToInt64(s[0]->InputAt(2))); 2255 EXPECT_EQ(width, s.ToInt64(s[0]->InputAt(2)));
2267 } 2256 }
2268 } 2257 }
2269 TRACED_FORRANGE(int32_t, shift, -64, 127) { 2258 TRACED_FORRANGE(int32_t, lsb, 1, 63) {
2270 int32_t lsb = shift & 0x3f;
2271 TRACED_FORRANGE(int32_t, width, 1, 64 - lsb) { 2259 TRACED_FORRANGE(int32_t, width, 1, 64 - lsb) {
2272 uint64_t jnk = rng()->NextInt64(); 2260 uint64_t jnk = rng()->NextInt64();
2273 jnk >>= 64 - lsb; 2261 jnk >>= 64 - lsb;
2274 uint64_t msk = 2262 uint64_t msk =
2275 ((V8_UINT64_C(0xffffffffffffffff) >> (64 - width)) << lsb) | jnk; 2263 ((V8_UINT64_C(0xffffffffffffffff) >> (64 - width)) << lsb) | jnk;
2276 StreamBuilder m(this, kMachInt64, kMachInt64); 2264 StreamBuilder m(this, kMachInt64, kMachInt64);
2277 m.Return(m.Word64Shr(m.Word64And(m.Int64Constant(msk), m.Parameter(0)), 2265 m.Return(m.Word64Shr(m.Word64And(m.Int64Constant(msk), m.Parameter(0)),
2278 m.Int64Constant(shift))); 2266 m.Int64Constant(lsb)));
2279 Stream s = m.Build(); 2267 Stream s = m.Build();
2280 ASSERT_EQ(1U, s.size()); 2268 ASSERT_EQ(1U, s.size());
2281 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode()); 2269 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode());
2282 ASSERT_EQ(3U, s[0]->InputCount()); 2270 ASSERT_EQ(3U, s[0]->InputCount());
2283 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); 2271 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1)));
2284 EXPECT_EQ(width, s.ToInt64(s[0]->InputAt(2))); 2272 EXPECT_EQ(width, s.ToInt64(s[0]->InputAt(2)));
2285 } 2273 }
2286 } 2274 }
2287 } 2275 }
2288 2276
2289 2277
2290 TEST_F(InstructionSelectorTest, Word32AndWithImmediateWithWord32Shr) { 2278 TEST_F(InstructionSelectorTest, Word32AndWithImmediateWithWord32Shr) {
2291 // The available shift operand range is `0 <= imm < 32`, but we also test 2279 TRACED_FORRANGE(int32_t, lsb, 1, 31) {
2292 // that immediates outside this range are handled properly (modulo-32).
2293 TRACED_FORRANGE(int32_t, shift, -32, 63) {
2294 int32_t lsb = shift & 0x1f;
2295 TRACED_FORRANGE(int32_t, width, 1, 31) { 2280 TRACED_FORRANGE(int32_t, width, 1, 31) {
2296 uint32_t msk = (1 << width) - 1; 2281 uint32_t msk = (1 << width) - 1;
2297 StreamBuilder m(this, kMachInt32, kMachInt32); 2282 StreamBuilder m(this, kMachInt32, kMachInt32);
2298 m.Return(m.Word32And(m.Word32Shr(m.Parameter(0), m.Int32Constant(shift)), 2283 m.Return(m.Word32And(m.Word32Shr(m.Parameter(0), m.Int32Constant(lsb)),
2299 m.Int32Constant(msk))); 2284 m.Int32Constant(msk)));
2300 Stream s = m.Build(); 2285 Stream s = m.Build();
2301 ASSERT_EQ(1U, s.size()); 2286 ASSERT_EQ(1U, s.size());
2302 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode()); 2287 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode());
2303 ASSERT_EQ(3U, s[0]->InputCount()); 2288 ASSERT_EQ(3U, s[0]->InputCount());
2304 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1))); 2289 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1)));
2305 int32_t actual_width = (lsb + width > 32) ? (32 - lsb) : width; 2290 int32_t actual_width = (lsb + width > 32) ? (32 - lsb) : width;
2306 EXPECT_EQ(actual_width, s.ToInt32(s[0]->InputAt(2))); 2291 EXPECT_EQ(actual_width, s.ToInt32(s[0]->InputAt(2)));
2307 } 2292 }
2308 } 2293 }
2309 TRACED_FORRANGE(int32_t, shift, -32, 63) { 2294 TRACED_FORRANGE(int32_t, lsb, 1, 31) {
2310 int32_t lsb = shift & 0x1f;
2311 TRACED_FORRANGE(int32_t, width, 1, 31) { 2295 TRACED_FORRANGE(int32_t, width, 1, 31) {
2312 uint32_t msk = (1 << width) - 1; 2296 uint32_t msk = (1 << width) - 1;
2313 StreamBuilder m(this, kMachInt32, kMachInt32); 2297 StreamBuilder m(this, kMachInt32, kMachInt32);
2314 m.Return( 2298 m.Return(m.Word32And(m.Int32Constant(msk),
2315 m.Word32And(m.Int32Constant(msk), 2299 m.Word32Shr(m.Parameter(0), m.Int32Constant(lsb))));
2316 m.Word32Shr(m.Parameter(0), m.Int32Constant(shift))));
2317 Stream s = m.Build(); 2300 Stream s = m.Build();
2318 ASSERT_EQ(1U, s.size()); 2301 ASSERT_EQ(1U, s.size());
2319 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode()); 2302 EXPECT_EQ(kArm64Ubfx32, s[0]->arch_opcode());
2320 ASSERT_EQ(3U, s[0]->InputCount()); 2303 ASSERT_EQ(3U, s[0]->InputCount());
2321 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1))); 2304 EXPECT_EQ(lsb, s.ToInt32(s[0]->InputAt(1)));
2322 int32_t actual_width = (lsb + width > 32) ? (32 - lsb) : width; 2305 int32_t actual_width = (lsb + width > 32) ? (32 - lsb) : width;
2323 EXPECT_EQ(actual_width, s.ToInt32(s[0]->InputAt(2))); 2306 EXPECT_EQ(actual_width, s.ToInt32(s[0]->InputAt(2)));
2324 } 2307 }
2325 } 2308 }
2326 } 2309 }
2327 2310
2328 2311
2329 TEST_F(InstructionSelectorTest, Word64AndWithImmediateWithWord64Shr) { 2312 TEST_F(InstructionSelectorTest, Word64AndWithImmediateWithWord64Shr) {
2330 // The available shift operand range is `0 <= imm < 64`, but we also test 2313 TRACED_FORRANGE(int64_t, lsb, 1, 63) {
2331 // that immediates outside this range are handled properly (modulo-64).
2332 TRACED_FORRANGE(int64_t, shift, -64, 127) {
2333 int64_t lsb = shift & 0x3f;
2334 TRACED_FORRANGE(int64_t, width, 1, 63) { 2314 TRACED_FORRANGE(int64_t, width, 1, 63) {
2335 uint64_t msk = (V8_UINT64_C(1) << width) - 1; 2315 uint64_t msk = (V8_UINT64_C(1) << width) - 1;
2336 StreamBuilder m(this, kMachInt64, kMachInt64); 2316 StreamBuilder m(this, kMachInt64, kMachInt64);
2337 m.Return(m.Word64And(m.Word64Shr(m.Parameter(0), m.Int64Constant(shift)), 2317 m.Return(m.Word64And(m.Word64Shr(m.Parameter(0), m.Int64Constant(lsb)),
2338 m.Int64Constant(msk))); 2318 m.Int64Constant(msk)));
2339 Stream s = m.Build(); 2319 Stream s = m.Build();
2340 ASSERT_EQ(1U, s.size()); 2320 ASSERT_EQ(1U, s.size());
2341 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode()); 2321 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode());
2342 ASSERT_EQ(3U, s[0]->InputCount()); 2322 ASSERT_EQ(3U, s[0]->InputCount());
2343 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); 2323 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1)));
2344 int64_t actual_width = (lsb + width > 64) ? (64 - lsb) : width; 2324 int64_t actual_width = (lsb + width > 64) ? (64 - lsb) : width;
2345 EXPECT_EQ(actual_width, s.ToInt64(s[0]->InputAt(2))); 2325 EXPECT_EQ(actual_width, s.ToInt64(s[0]->InputAt(2)));
2346 } 2326 }
2347 } 2327 }
2348 TRACED_FORRANGE(int64_t, shift, -64, 127) { 2328 TRACED_FORRANGE(int64_t, lsb, 1, 63) {
2349 int64_t lsb = shift & 0x3f;
2350 TRACED_FORRANGE(int64_t, width, 1, 63) { 2329 TRACED_FORRANGE(int64_t, width, 1, 63) {
2351 uint64_t msk = (V8_UINT64_C(1) << width) - 1; 2330 uint64_t msk = (V8_UINT64_C(1) << width) - 1;
2352 StreamBuilder m(this, kMachInt64, kMachInt64); 2331 StreamBuilder m(this, kMachInt64, kMachInt64);
2353 m.Return( 2332 m.Return(m.Word64And(m.Int64Constant(msk),
2354 m.Word64And(m.Int64Constant(msk), 2333 m.Word64Shr(m.Parameter(0), m.Int64Constant(lsb))));
2355 m.Word64Shr(m.Parameter(0), m.Int64Constant(shift))));
2356 Stream s = m.Build(); 2334 Stream s = m.Build();
2357 ASSERT_EQ(1U, s.size()); 2335 ASSERT_EQ(1U, s.size());
2358 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode()); 2336 EXPECT_EQ(kArm64Ubfx, s[0]->arch_opcode());
2359 ASSERT_EQ(3U, s[0]->InputCount()); 2337 ASSERT_EQ(3U, s[0]->InputCount());
2360 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); 2338 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1)));
2361 int64_t actual_width = (lsb + width > 64) ? (64 - lsb) : width; 2339 int64_t actual_width = (lsb + width > 64) ? (64 - lsb) : width;
2362 EXPECT_EQ(actual_width, s.ToInt64(s[0]->InputAt(2))); 2340 EXPECT_EQ(actual_width, s.ToInt64(s[0]->InputAt(2)));
2363 } 2341 }
2364 } 2342 }
2365 } 2343 }
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
2540 EXPECT_EQ(kArm64Float64Neg, s[0]->arch_opcode()); 2518 EXPECT_EQ(kArm64Float64Neg, s[0]->arch_opcode());
2541 ASSERT_EQ(1U, s[0]->InputCount()); 2519 ASSERT_EQ(1U, s[0]->InputCount());
2542 EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0))); 2520 EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0)));
2543 ASSERT_EQ(1U, s[0]->OutputCount()); 2521 ASSERT_EQ(1U, s[0]->OutputCount());
2544 EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output())); 2522 EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output()));
2545 } 2523 }
2546 2524
2547 } // namespace compiler 2525 } // namespace compiler
2548 } // namespace internal 2526 } // namespace internal
2549 } // namespace v8 2527 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698