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

Side by Side Diff: src/compiler/js-generic-lowering.cc

Issue 1029583009: [turbofan] Remove obsolete JSDebugger operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_turbofan-debugger-1
Patch Set: Created 5 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
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/compiler/js-operator.h » ('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/code-factory.h" 5 #include "src/code-factory.h"
6 #include "src/code-stubs.h" 6 #include "src/code-stubs.h"
7 #include "src/compiler/common-operator.h" 7 #include "src/compiler/common-operator.h"
8 #include "src/compiler/js-generic-lowering.h" 8 #include "src/compiler/js-generic-lowering.h"
9 #include "src/compiler/js-graph.h" 9 #include "src/compiler/js-graph.h"
10 #include "src/compiler/machine-operator.h" 10 #include "src/compiler/machine-operator.h"
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 REPLACE_RUNTIME_CALL(JSCreateWithContext, Runtime::kPushWithContext) 98 REPLACE_RUNTIME_CALL(JSCreateWithContext, Runtime::kPushWithContext)
99 REPLACE_RUNTIME_CALL(JSCreateBlockContext, Runtime::kPushBlockContext) 99 REPLACE_RUNTIME_CALL(JSCreateBlockContext, Runtime::kPushBlockContext)
100 REPLACE_RUNTIME_CALL(JSCreateModuleContext, Runtime::kPushModuleContext) 100 REPLACE_RUNTIME_CALL(JSCreateModuleContext, Runtime::kPushModuleContext)
101 REPLACE_RUNTIME_CALL(JSCreateScriptContext, Runtime::kAbort) 101 REPLACE_RUNTIME_CALL(JSCreateScriptContext, Runtime::kAbort)
102 #undef REPLACE_RUNTIME 102 #undef REPLACE_RUNTIME
103 103
104 104
105 #define REPLACE_UNIMPLEMENTED(op) \ 105 #define REPLACE_UNIMPLEMENTED(op) \
106 void JSGenericLowering::Lower##op(Node* node) { UNIMPLEMENTED(); } 106 void JSGenericLowering::Lower##op(Node* node) { UNIMPLEMENTED(); }
107 REPLACE_UNIMPLEMENTED(JSYield) 107 REPLACE_UNIMPLEMENTED(JSYield)
108 REPLACE_UNIMPLEMENTED(JSDebugger)
109 #undef REPLACE_UNIMPLEMENTED 108 #undef REPLACE_UNIMPLEMENTED
110 109
111 110
112 static CallDescriptor::Flags FlagsForNode(Node* node) { 111 static CallDescriptor::Flags FlagsForNode(Node* node) {
113 CallDescriptor::Flags result = CallDescriptor::kNoFlags; 112 CallDescriptor::Flags result = CallDescriptor::kNoFlags;
114 if (OperatorProperties::GetFrameStateInputCount(node->op()) > 0) { 113 if (OperatorProperties::GetFrameStateInputCount(node->op()) > 0) {
115 result |= CallDescriptor::kNeedsFrameState; 114 result |= CallDescriptor::kNeedsFrameState;
116 } 115 }
117 return result; 116 return result;
118 } 117 }
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 } 547 }
549 548
550 549
551 MachineOperatorBuilder* JSGenericLowering::machine() const { 550 MachineOperatorBuilder* JSGenericLowering::machine() const {
552 return jsgraph()->machine(); 551 return jsgraph()->machine();
553 } 552 }
554 553
555 } // namespace compiler 554 } // namespace compiler
556 } // namespace internal 555 } // namespace internal
557 } // namespace v8 556 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/compiler/js-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698