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

Unified Diff: src/compiler/instruction-selector.cc

Issue 1193543002: [turbofan] Add test to keep generic pipeline on life support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove includes. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/instruction-selector.cc
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
index 13a76da12ae0c6f090b288395dec147cf707b45e..3ea316fd95f0525421440e71ca533543b2c13646 100644
--- a/src/compiler/instruction-selector.cc
+++ b/src/compiler/instruction-selector.cc
@@ -1037,12 +1037,6 @@ FrameStateDescriptor* InstructionSelector::GetFrameStateDescriptor(
Node* state) {
DCHECK(state->opcode() == IrOpcode::kFrameState);
DCHECK_EQ(kFrameStateInputCount, state->InputCount());
- DCHECK_EQ(IrOpcode::kTypedStateValues,
- state->InputAt(kFrameStateParametersInput)->opcode());
- DCHECK_EQ(IrOpcode::kTypedStateValues,
- state->InputAt(kFrameStateLocalsInput)->opcode());
- DCHECK_EQ(IrOpcode::kTypedStateValues,
- state->InputAt(kFrameStateStackInput)->opcode());
FrameStateCallInfo state_info = OpParameter<FrameStateCallInfo>(state);
int parameters = static_cast<int>(
@@ -1094,10 +1088,6 @@ void InstructionSelector::AddFrameStateInputs(
Node* context = state->InputAt(kFrameStateContextInput);
Node* function = state->InputAt(kFrameStateFunctionInput);
- DCHECK_EQ(IrOpcode::kTypedStateValues, parameters->op()->opcode());
- DCHECK_EQ(IrOpcode::kTypedStateValues, locals->op()->opcode());
- DCHECK_EQ(IrOpcode::kTypedStateValues, stack->op()->opcode());
-
DCHECK_EQ(descriptor->parameters_count(),
StateValuesAccess(parameters).size());
DCHECK_EQ(descriptor->locals_count(), StateValuesAccess(locals).size());
« no previous file with comments | « no previous file | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698