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

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

Issue 1272673003: [es6] Re-implement rest parameters via desugaring. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 case Runtime::kFinalizeClassDefinitionStrong: // TODO(conradw): Is it safe? 196 case Runtime::kFinalizeClassDefinitionStrong: // TODO(conradw): Is it safe?
197 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? 197 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe?
198 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? 198 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe?
199 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? 199 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe?
200 case Runtime::kForInDone: 200 case Runtime::kForInDone:
201 case Runtime::kForInStep: 201 case Runtime::kForInStep:
202 case Runtime::kGetOriginalConstructor: 202 case Runtime::kGetOriginalConstructor:
203 case Runtime::kNewArguments: 203 case Runtime::kNewArguments:
204 case Runtime::kNewClosure: 204 case Runtime::kNewClosure:
205 case Runtime::kNewFunctionContext: 205 case Runtime::kNewFunctionContext:
206 case Runtime::kNewRestParamSlow:
207 case Runtime::kPushBlockContext: 206 case Runtime::kPushBlockContext:
208 case Runtime::kPushCatchContext: 207 case Runtime::kPushCatchContext:
209 case Runtime::kReThrow: 208 case Runtime::kReThrow:
210 case Runtime::kStringCompare: 209 case Runtime::kStringCompare:
211 case Runtime::kStringEquals: 210 case Runtime::kStringEquals:
212 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? 211 case Runtime::kToFastProperties: // TODO(jarin): Is it safe?
213 case Runtime::kTraceEnter: 212 case Runtime::kTraceEnter:
214 case Runtime::kTraceExit: 213 case Runtime::kTraceExit:
215 return 0; 214 return 0;
216 case Runtime::kInlineArguments: 215 case Runtime::kInlineArguments:
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 Operator::Properties properties, MachineType return_type) { 279 Operator::Properties properties, MachineType return_type) {
281 UNIMPLEMENTED(); 280 UNIMPLEMENTED();
282 return NULL; 281 return NULL;
283 } 282 }
284 283
285 284
286 #endif // !V8_TURBOFAN_BACKEND 285 #endif // !V8_TURBOFAN_BACKEND
287 } // namespace compiler 286 } // namespace compiler
288 } // namespace internal 287 } // namespace internal
289 } // namespace v8 288 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698