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

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

Issue 790413005: Add missing FrameState for Runtime_DeliverObservationChangeRecords. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | test/cctest/cctest.status » ('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-stubs.h" 5 #include "src/code-stubs.h"
6 #include "src/compiler.h" 6 #include "src/compiler.h"
7 #include "src/compiler/linkage.h" 7 #include "src/compiler/linkage.h"
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/compiler/pipeline.h" 9 #include "src/compiler/pipeline.h"
10 #include "src/scopes.h" 10 #include "src/scopes.h"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 case Runtime::kDataViewGetFloat32: 148 case Runtime::kDataViewGetFloat32:
149 case Runtime::kDataViewGetFloat64: 149 case Runtime::kDataViewGetFloat64:
150 case Runtime::kDebugEvaluate: 150 case Runtime::kDebugEvaluate:
151 case Runtime::kDebugEvaluateGlobal: 151 case Runtime::kDebugEvaluateGlobal:
152 case Runtime::kDebugGetLoadedScripts: 152 case Runtime::kDebugGetLoadedScripts:
153 case Runtime::kDebugGetPropertyDetails: 153 case Runtime::kDebugGetPropertyDetails:
154 case Runtime::kDebugPromiseEvent: 154 case Runtime::kDebugPromiseEvent:
155 case Runtime::kDefineAccessorPropertyUnchecked: 155 case Runtime::kDefineAccessorPropertyUnchecked:
156 case Runtime::kDefineDataPropertyUnchecked: 156 case Runtime::kDefineDataPropertyUnchecked:
157 case Runtime::kDeleteProperty: 157 case Runtime::kDeleteProperty:
158 case Runtime::kDeliverObservationChangeRecords:
158 case Runtime::kDeoptimizeFunction: 159 case Runtime::kDeoptimizeFunction:
159 case Runtime::kFunctionBindArguments: 160 case Runtime::kFunctionBindArguments:
160 case Runtime::kGetDefaultReceiver: 161 case Runtime::kGetDefaultReceiver:
161 case Runtime::kGetFrameCount: 162 case Runtime::kGetFrameCount:
162 case Runtime::kGetOwnProperty: 163 case Runtime::kGetOwnProperty:
163 case Runtime::kGetOwnPropertyNames: 164 case Runtime::kGetOwnPropertyNames:
164 case Runtime::kGetPropertyNamesFast: 165 case Runtime::kGetPropertyNamesFast:
165 case Runtime::kGetPrototype: 166 case Runtime::kGetPrototype:
166 case Runtime::kInlineArguments: 167 case Runtime::kInlineArguments:
167 case Runtime::kInlineCallFunction: 168 case Runtime::kInlineCallFunction:
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 258
258 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 259 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
259 MachineSignature* sig) { 260 MachineSignature* sig) {
260 UNIMPLEMENTED(); 261 UNIMPLEMENTED();
261 return NULL; 262 return NULL;
262 } 263 }
263 #endif // !V8_TURBOFAN_BACKEND 264 #endif // !V8_TURBOFAN_BACKEND
264 } 265 }
265 } 266 }
266 } // namespace v8::internal::compiler 267 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « no previous file | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698