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

Side by Side Diff: src/code-factory.cc

Issue 1753173003: [compiler] Introduce initial StrictEqualStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add pseudo-code. Created 4 years, 9 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-factory.h ('k') | src/code-stubs.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-factory.h" 5 #include "src/code-factory.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 187 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
188 } 188 }
189 189
190 190
191 // static 191 // static
192 Callable CodeFactory::RegExpExec(Isolate* isolate) { 192 Callable CodeFactory::RegExpExec(Isolate* isolate) {
193 RegExpExecStub stub(isolate); 193 RegExpExecStub stub(isolate);
194 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 194 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
195 } 195 }
196 196
197 // static
198 Callable CodeFactory::StrictEqual(Isolate* isolate) {
199 StrictEqualStub stub(isolate);
200 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
201 }
197 202
198 // static 203 // static
199 Callable CodeFactory::StringAdd(Isolate* isolate, StringAddFlags flags, 204 Callable CodeFactory::StringAdd(Isolate* isolate, StringAddFlags flags,
200 PretenureFlag pretenure_flag) { 205 PretenureFlag pretenure_flag) {
201 StringAddStub stub(isolate, flags, pretenure_flag); 206 StringAddStub stub(isolate, flags, pretenure_flag);
202 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 207 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
203 } 208 }
204 209
205 210
206 // static 211 // static
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 // static 370 // static
366 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 371 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
367 // Note: If we ever use fpregs in the interpreter then we will need to 372 // Note: If we ever use fpregs in the interpreter then we will need to
368 // save fpregs too. 373 // save fpregs too.
369 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 374 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
370 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 375 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
371 } 376 }
372 377
373 } // namespace internal 378 } // namespace internal
374 } // namespace v8 379 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698