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

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

Issue 1644283002: Revert of [turbofan] Add the StackSlot operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 // TODO(rossberg): activate once machine ops are typed. 824 // TODO(rossberg): activate once machine ops are typed.
825 // CheckValueInputIs(node, 0, Type::Object()); 825 // CheckValueInputIs(node, 0, Type::Object());
826 // CheckValueInputIs(node, 1, ElementAccessOf(node->op()).type)); 826 // CheckValueInputIs(node, 1, ElementAccessOf(node->op()).type));
827 CheckNotTyped(node); 827 CheckNotTyped(node);
828 break; 828 break;
829 829
830 // Machine operators 830 // Machine operators
831 // ----------------------- 831 // -----------------------
832 case IrOpcode::kLoad: 832 case IrOpcode::kLoad:
833 case IrOpcode::kStore: 833 case IrOpcode::kStore:
834 case IrOpcode::kStackSlot:
835 case IrOpcode::kWord32And: 834 case IrOpcode::kWord32And:
836 case IrOpcode::kWord32Or: 835 case IrOpcode::kWord32Or:
837 case IrOpcode::kWord32Xor: 836 case IrOpcode::kWord32Xor:
838 case IrOpcode::kWord32Shl: 837 case IrOpcode::kWord32Shl:
839 case IrOpcode::kWord32Shr: 838 case IrOpcode::kWord32Shr:
840 case IrOpcode::kWord32Sar: 839 case IrOpcode::kWord32Sar:
841 case IrOpcode::kWord32Ror: 840 case IrOpcode::kWord32Ror:
842 case IrOpcode::kWord32Equal: 841 case IrOpcode::kWord32Equal:
843 case IrOpcode::kWord32Clz: 842 case IrOpcode::kWord32Clz:
844 case IrOpcode::kWord32Ctz: 843 case IrOpcode::kWord32Ctz:
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 replacement->op()->EffectOutputCount() > 0); 1268 replacement->op()->EffectOutputCount() > 0);
1270 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1269 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1271 replacement->opcode() == IrOpcode::kFrameState); 1270 replacement->opcode() == IrOpcode::kFrameState);
1272 } 1271 }
1273 1272
1274 #endif // DEBUG 1273 #endif // DEBUG
1275 1274
1276 } // namespace compiler 1275 } // namespace compiler
1277 } // namespace internal 1276 } // namespace internal
1278 } // namespace v8 1277 } // 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