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

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

Issue 2814773005: [js] Avoid %_ClassOf for collection builtins. (Closed)
Patch Set: Disable the failing test for CS again. Created 3 years, 7 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/compiler/linkage.h" 5 #include "src/compiler/linkage.h"
6 6
7 #include "src/assembler-inl.h" 7 #include "src/assembler-inl.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/compilation-info.h" 9 #include "src/compilation-info.h"
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 172
173 // Some inline intrinsics are also safe to call without a FrameState. 173 // Some inline intrinsics are also safe to call without a FrameState.
174 case Runtime::kInlineClassOf: 174 case Runtime::kInlineClassOf:
175 case Runtime::kInlineCreateIterResultObject: 175 case Runtime::kInlineCreateIterResultObject:
176 case Runtime::kInlineFixedArrayGet: 176 case Runtime::kInlineFixedArrayGet:
177 case Runtime::kInlineFixedArraySet: 177 case Runtime::kInlineFixedArraySet:
178 case Runtime::kInlineGeneratorClose: 178 case Runtime::kInlineGeneratorClose:
179 case Runtime::kInlineGeneratorGetInputOrDebugPos: 179 case Runtime::kInlineGeneratorGetInputOrDebugPos:
180 case Runtime::kInlineGeneratorGetResumeMode: 180 case Runtime::kInlineGeneratorGetResumeMode:
181 case Runtime::kInlineIsArray: 181 case Runtime::kInlineIsArray:
182 case Runtime::kInlineIsJSMap:
183 case Runtime::kInlineIsJSSet:
184 case Runtime::kInlineIsJSMapIterator:
185 case Runtime::kInlineIsJSSetIterator:
186 case Runtime::kInlineIsJSWeakMap:
187 case Runtime::kInlineIsJSWeakSet:
182 case Runtime::kInlineIsJSReceiver: 188 case Runtime::kInlineIsJSReceiver:
183 case Runtime::kInlineIsRegExp: 189 case Runtime::kInlineIsRegExp:
184 case Runtime::kInlineIsSmi: 190 case Runtime::kInlineIsSmi:
185 case Runtime::kInlineIsTypedArray: 191 case Runtime::kInlineIsTypedArray:
186 return false; 192 return false;
187 193
188 default: 194 default:
189 break; 195 break;
190 } 196 }
191 197
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 DCHECK(loc == regloc(kContextRegister, MachineType::AnyTagged())); 511 DCHECK(loc == regloc(kContextRegister, MachineType::AnyTagged()));
506 return LinkageLocation::ForCalleeFrameSlot(Frame::kContextSlot, 512 return LinkageLocation::ForCalleeFrameSlot(Frame::kContextSlot,
507 MachineType::AnyTagged()); 513 MachineType::AnyTagged());
508 } 514 }
509 } 515 }
510 516
511 517
512 } // namespace compiler 518 } // namespace compiler
513 } // namespace internal 519 } // namespace internal
514 } // namespace v8 520 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698