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

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

Issue 1695313002: [turbofan] Add an operator to access the parent frame pointer (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 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 case IrOpcode::kTryTruncateFloat32ToInt64: 938 case IrOpcode::kTryTruncateFloat32ToInt64:
939 case IrOpcode::kTryTruncateFloat64ToInt64: 939 case IrOpcode::kTryTruncateFloat64ToInt64:
940 case IrOpcode::kTryTruncateFloat32ToUint64: 940 case IrOpcode::kTryTruncateFloat32ToUint64:
941 case IrOpcode::kTryTruncateFloat64ToUint64: 941 case IrOpcode::kTryTruncateFloat64ToUint64:
942 case IrOpcode::kFloat64ExtractLowWord32: 942 case IrOpcode::kFloat64ExtractLowWord32:
943 case IrOpcode::kFloat64ExtractHighWord32: 943 case IrOpcode::kFloat64ExtractHighWord32:
944 case IrOpcode::kFloat64InsertLowWord32: 944 case IrOpcode::kFloat64InsertLowWord32:
945 case IrOpcode::kFloat64InsertHighWord32: 945 case IrOpcode::kFloat64InsertHighWord32:
946 case IrOpcode::kLoadStackPointer: 946 case IrOpcode::kLoadStackPointer:
947 case IrOpcode::kLoadFramePointer: 947 case IrOpcode::kLoadFramePointer:
948 case IrOpcode::kLoadParentFramePointer:
948 case IrOpcode::kCheckedLoad: 949 case IrOpcode::kCheckedLoad:
949 case IrOpcode::kCheckedStore: 950 case IrOpcode::kCheckedStore:
950 // TODO(rossberg): Check. 951 // TODO(rossberg): Check.
951 break; 952 break;
952 } 953 }
953 } // NOLINT(readability/fn_size) 954 } // NOLINT(readability/fn_size)
954 955
955 956
956 void Verifier::Run(Graph* graph, Typing typing) { 957 void Verifier::Run(Graph* graph, Typing typing) {
957 CHECK_NOT_NULL(graph->start()); 958 CHECK_NOT_NULL(graph->start());
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 replacement->op()->EffectOutputCount() > 0); 1271 replacement->op()->EffectOutputCount() > 0);
1271 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1272 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1272 replacement->opcode() == IrOpcode::kFrameState); 1273 replacement->opcode() == IrOpcode::kFrameState);
1273 } 1274 }
1274 1275
1275 #endif // DEBUG 1276 #endif // DEBUG
1276 1277
1277 } // namespace compiler 1278 } // namespace compiler
1278 } // namespace internal 1279 } // namespace internal
1279 } // namespace v8 1280 } // 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