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

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

Issue 1212813008: [turbofan] Port initialization of new.target variable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix comment. Created 5 years, 5 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/frames.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-stubs.h" 5 #include "src/code-stubs.h"
6 #include "src/compiler.h" 6 #include "src/compiler.h"
7 #include "src/compiler/common-operator.h" 7 #include "src/compiler/common-operator.h"
8 #include "src/compiler/linkage.h" 8 #include "src/compiler/linkage.h"
9 #include "src/compiler/node.h" 9 #include "src/compiler/node.h"
10 #include "src/compiler/pipeline.h" 10 #include "src/compiler/pipeline.h"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 // not to call into arbitrary JavaScript, not to throw, and not to deoptimize 168 // not to call into arbitrary JavaScript, not to throw, and not to deoptimize
169 // are blacklisted here and can be called without a FrameState. 169 // are blacklisted here and can be called without a FrameState.
170 switch (function) { 170 switch (function) {
171 case Runtime::kAllocateInTargetSpace: 171 case Runtime::kAllocateInTargetSpace:
172 case Runtime::kDateField: 172 case Runtime::kDateField:
173 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? 173 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe?
174 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? 174 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe?
175 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? 175 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe?
176 case Runtime::kForInDone: 176 case Runtime::kForInDone:
177 case Runtime::kForInStep: 177 case Runtime::kForInStep:
178 case Runtime::kGetOriginalConstructor:
178 case Runtime::kNewArguments: 179 case Runtime::kNewArguments:
179 case Runtime::kNewClosure: 180 case Runtime::kNewClosure:
180 case Runtime::kNewFunctionContext: 181 case Runtime::kNewFunctionContext:
181 case Runtime::kNewRestParamSlow: 182 case Runtime::kNewRestParamSlow:
182 case Runtime::kPushBlockContext: 183 case Runtime::kPushBlockContext:
183 case Runtime::kPushCatchContext: 184 case Runtime::kPushCatchContext:
184 case Runtime::kReThrow: 185 case Runtime::kReThrow:
185 case Runtime::kStringCompareRT: 186 case Runtime::kStringCompareRT:
186 case Runtime::kStringEquals: 187 case Runtime::kStringEquals:
187 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? 188 case Runtime::kToFastProperties: // TODO(jarin): Is it safe?
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 259
259 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 260 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
260 const MachineSignature* sig) { 261 const MachineSignature* sig) {
261 UNIMPLEMENTED(); 262 UNIMPLEMENTED();
262 return NULL; 263 return NULL;
263 } 264 }
264 #endif // !V8_TURBOFAN_BACKEND 265 #endif // !V8_TURBOFAN_BACKEND
265 } // namespace compiler 266 } // namespace compiler
266 } // namespace internal 267 } // namespace internal
267 } // namespace v8 268 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698