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

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

Issue 1938213002: [Atomics] Make Atomics.store a builtin using TF (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge again Created 4 years, 7 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/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('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 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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 case IrOpcode::kInt32PairMul: 1025 case IrOpcode::kInt32PairMul:
1026 case IrOpcode::kWord32PairShl: 1026 case IrOpcode::kWord32PairShl:
1027 case IrOpcode::kWord32PairShr: 1027 case IrOpcode::kWord32PairShr:
1028 case IrOpcode::kWord32PairSar: 1028 case IrOpcode::kWord32PairSar:
1029 case IrOpcode::kLoadStackPointer: 1029 case IrOpcode::kLoadStackPointer:
1030 case IrOpcode::kLoadFramePointer: 1030 case IrOpcode::kLoadFramePointer:
1031 case IrOpcode::kLoadParentFramePointer: 1031 case IrOpcode::kLoadParentFramePointer:
1032 case IrOpcode::kCheckedLoad: 1032 case IrOpcode::kCheckedLoad:
1033 case IrOpcode::kCheckedStore: 1033 case IrOpcode::kCheckedStore:
1034 case IrOpcode::kAtomicLoad: 1034 case IrOpcode::kAtomicLoad:
1035 case IrOpcode::kAtomicStore:
1035 1036
1036 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name: 1037 #define SIMD_MACHINE_OP_CASE(Name) case IrOpcode::k##Name:
1037 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE) 1038 MACHINE_SIMD_OP_LIST(SIMD_MACHINE_OP_CASE)
1038 #undef SIMD_MACHINE_OP_CASE 1039 #undef SIMD_MACHINE_OP_CASE
1039 1040
1040 // TODO(rossberg): Check. 1041 // TODO(rossberg): Check.
1041 break; 1042 break;
1042 } 1043 }
1043 } // NOLINT(readability/fn_size) 1044 } // NOLINT(readability/fn_size)
1044 1045
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1359 replacement->op()->EffectOutputCount() > 0); 1360 replacement->op()->EffectOutputCount() > 0);
1360 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1361 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1361 replacement->opcode() == IrOpcode::kFrameState); 1362 replacement->opcode() == IrOpcode::kFrameState);
1362 } 1363 }
1363 1364
1364 #endif // DEBUG 1365 #endif // DEBUG
1365 1366
1366 } // namespace compiler 1367 } // namespace compiler
1367 } // namespace internal 1368 } // namespace internal
1368 } // namespace v8 1369 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698