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

Side by Side Diff: src/compiler/verifier.cc

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: [Atomics] Make Atomics.exchange a builtin using TF Created 3 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
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/verifier.h" 5 #include "src/compiler/verifier.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <sstream> 10 #include <sstream>
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after
1345 case IrOpcode::kWord32PairSar: 1345 case IrOpcode::kWord32PairSar:
1346 case IrOpcode::kLoadStackPointer: 1346 case IrOpcode::kLoadStackPointer:
1347 case IrOpcode::kLoadFramePointer: 1347 case IrOpcode::kLoadFramePointer:
1348 case IrOpcode::kLoadParentFramePointer: 1348 case IrOpcode::kLoadParentFramePointer:
1349 case IrOpcode::kUnalignedLoad: 1349 case IrOpcode::kUnalignedLoad:
1350 case IrOpcode::kUnalignedStore: 1350 case IrOpcode::kUnalignedStore:
1351 case IrOpcode::kCheckedLoad: 1351 case IrOpcode::kCheckedLoad:
1352 case IrOpcode::kCheckedStore: 1352 case IrOpcode::kCheckedStore:
1353 case IrOpcode::kAtomicLoad: 1353 case IrOpcode::kAtomicLoad:
1354 case IrOpcode::kAtomicStore: 1354 case IrOpcode::kAtomicStore:
1355 case IrOpcode::kAtomicExchange:
1355 1356
1356 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: 1357 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name:
1357 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) 1358 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE)
1358 #undef SIMD_MACHINE_OP_CASE 1359 #undef SIMD_MACHINE_OP_CASE
1359 1360
1360 // TODO(rossberg): Check. 1361 // TODO(rossberg): Check.
1361 break; 1362 break;
1362 } 1363 }
1363 } // NOLINT(readability/fn_size) 1364 } // NOLINT(readability/fn_size)
1364 1365
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1678 replacement->op()->EffectOutputCount() > 0); 1679 replacement->op()->EffectOutputCount() > 0);
1679 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1680 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1680 replacement->opcode() == IrOpcode::kFrameState); 1681 replacement->opcode() == IrOpcode::kFrameState);
1681 } 1682 }
1682 1683
1683 #endif // DEBUG 1684 #endif // DEBUG
1684 1685
1685 } // namespace compiler 1686 } // namespace compiler
1686 } // namespace internal 1687 } // namespace internal
1687 } // namespace v8 1688 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698