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

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

Issue 1479233002: Deprecate the %IsConstructCall intrinsic completely. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_js-use-new-target-3
Patch Set: Rebased. Created 5 years 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 | src/crankshaft/arm/lithium-arm.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/ast/scopes.h" 5 #include "src/ast/scopes.h"
6 #include "src/code-stubs.h" 6 #include "src/code-stubs.h"
7 #include "src/compiler.h" 7 #include "src/compiler.h"
8 #include "src/compiler/common-operator.h" 8 #include "src/compiler/common-operator.h"
9 #include "src/compiler/frame.h" 9 #include "src/compiler/frame.h"
10 #include "src/compiler/linkage.h" 10 #include "src/compiler/linkage.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 case Runtime::kStringEquals: 171 case Runtime::kStringEquals:
172 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? 172 case Runtime::kToFastProperties: // TODO(jarin): Is it safe?
173 case Runtime::kTraceEnter: 173 case Runtime::kTraceEnter:
174 case Runtime::kTraceExit: 174 case Runtime::kTraceExit:
175 return 0; 175 return 0;
176 case Runtime::kInlineArguments: 176 case Runtime::kInlineArguments:
177 case Runtime::kInlineArgumentsLength: 177 case Runtime::kInlineArgumentsLength:
178 case Runtime::kInlineDefaultConstructorCallSuper: 178 case Runtime::kInlineDefaultConstructorCallSuper:
179 case Runtime::kInlineGetCallerJSFunction: 179 case Runtime::kInlineGetCallerJSFunction:
180 case Runtime::kInlineGetPrototype: 180 case Runtime::kInlineGetPrototype:
181 case Runtime::kInlineIsConstructCall:
182 case Runtime::kInlineRegExpExec: 181 case Runtime::kInlineRegExpExec:
183 case Runtime::kInlineSubString: 182 case Runtime::kInlineSubString:
184 case Runtime::kInlineToInteger: 183 case Runtime::kInlineToInteger:
185 case Runtime::kInlineToLength: 184 case Runtime::kInlineToLength:
186 case Runtime::kInlineToName: 185 case Runtime::kInlineToName:
187 case Runtime::kInlineToNumber: 186 case Runtime::kInlineToNumber:
188 case Runtime::kInlineToObject: 187 case Runtime::kInlineToObject:
189 case Runtime::kInlineToPrimitive_Number: 188 case Runtime::kInlineToPrimitive_Number:
190 case Runtime::kInlineToPrimitive_String: 189 case Runtime::kInlineToPrimitive_String:
191 case Runtime::kInlineToPrimitive: 190 case Runtime::kInlineToPrimitive:
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 } else { 523 } else {
525 DCHECK(loc == regloc(kContextRegister)); 524 DCHECK(loc == regloc(kContextRegister));
526 return LinkageLocation::ForCalleeFrameSlot(Frame::kContextSlot); 525 return LinkageLocation::ForCalleeFrameSlot(Frame::kContextSlot);
527 } 526 }
528 } 527 }
529 528
530 529
531 } // namespace compiler 530 } // namespace compiler
532 } // namespace internal 531 } // namespace internal
533 } // namespace v8 532 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/crankshaft/arm/lithium-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698