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

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

Issue 1269323003: Cleanup unnecessary duplication of runtime functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Adapt test case. 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
« no previous file with comments | « src/code-stubs.cc ('k') | src/compiler/simplified-lowering.cc » ('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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 206 case Runtime::kNewRestParamSlow:
207 case Runtime::kPushBlockContext: 207 case Runtime::kPushBlockContext:
208 case Runtime::kPushCatchContext: 208 case Runtime::kPushCatchContext:
209 case Runtime::kReThrow: 209 case Runtime::kReThrow:
210 case Runtime::kStringCompareRT: 210 case Runtime::kStringCompare:
211 case Runtime::kStringEquals: 211 case Runtime::kStringEquals:
212 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? 212 case Runtime::kToFastProperties: // TODO(jarin): Is it safe?
213 case Runtime::kTraceEnter: 213 case Runtime::kTraceEnter:
214 case Runtime::kTraceExit: 214 case Runtime::kTraceExit:
215 return 0; 215 return 0;
216 case Runtime::kInlineArguments: 216 case Runtime::kInlineArguments:
217 case Runtime::kInlineCallFunction: 217 case Runtime::kInlineCallFunction:
218 case Runtime::kInlineDefaultConstructorCallSuper: 218 case Runtime::kInlineDefaultConstructorCallSuper:
219 case Runtime::kInlineGetCallerJSFunction: 219 case Runtime::kInlineGetCallerJSFunction:
220 case Runtime::kInlineGetPrototype: 220 case Runtime::kInlineGetPrototype:
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 Operator::Properties properties, MachineType return_type) { 280 Operator::Properties properties, MachineType return_type) {
281 UNIMPLEMENTED(); 281 UNIMPLEMENTED();
282 return NULL; 282 return NULL;
283 } 283 }
284 284
285 285
286 #endif // !V8_TURBOFAN_BACKEND 286 #endif // !V8_TURBOFAN_BACKEND
287 } // namespace compiler 287 } // namespace compiler
288 } // namespace internal 288 } // namespace internal
289 } // namespace v8 289 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698