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

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

Issue 2649703002: [Atomics] Make Atomics.compareExchange a builtin using TF (Closed)
Patch Set: rebase and move cmpxchg to builtins-sharedarraybuffer-gen.cc Created 3 years, 9 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 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 case IrOpcode::kLoadStackPointer: 1411 case IrOpcode::kLoadStackPointer:
1412 case IrOpcode::kLoadFramePointer: 1412 case IrOpcode::kLoadFramePointer:
1413 case IrOpcode::kLoadParentFramePointer: 1413 case IrOpcode::kLoadParentFramePointer:
1414 case IrOpcode::kUnalignedLoad: 1414 case IrOpcode::kUnalignedLoad:
1415 case IrOpcode::kUnalignedStore: 1415 case IrOpcode::kUnalignedStore:
1416 case IrOpcode::kCheckedLoad: 1416 case IrOpcode::kCheckedLoad:
1417 case IrOpcode::kCheckedStore: 1417 case IrOpcode::kCheckedStore:
1418 case IrOpcode::kAtomicLoad: 1418 case IrOpcode::kAtomicLoad:
1419 case IrOpcode::kAtomicStore: 1419 case IrOpcode::kAtomicStore:
1420 case IrOpcode::kAtomicExchange: 1420 case IrOpcode::kAtomicExchange:
1421 case IrOpcode::kAtomicCompareExchange:
1421 1422
1422 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: 1423 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name:
1423 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) 1424 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE)
1424 #undef SIMD_MACHINE_OP_CASE 1425 #undef SIMD_MACHINE_OP_CASE
1425 1426
1426 // TODO(rossberg): Check. 1427 // TODO(rossberg): Check.
1427 break; 1428 break;
1428 } 1429 }
1429 } // NOLINT(readability/fn_size) 1430 } // NOLINT(readability/fn_size)
1430 1431
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 replacement->op()->EffectOutputCount() > 0); 1745 replacement->op()->EffectOutputCount() > 0);
1745 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1746 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1746 replacement->opcode() == IrOpcode::kFrameState); 1747 replacement->opcode() == IrOpcode::kFrameState);
1747 } 1748 }
1748 1749
1749 #endif // DEBUG 1750 #endif // DEBUG
1750 1751
1751 } // namespace compiler 1752 } // namespace compiler
1752 } // namespace internal 1753 } // namespace internal
1753 } // namespace v8 1754 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698