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

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

Issue 1744163002: [stubs] Introduce a proper ToBooleanStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix mips 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 | « include/v8.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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 // static 128 // static
129 Callable CodeFactory::InstanceOf(Isolate* isolate) { 129 Callable CodeFactory::InstanceOf(Isolate* isolate) {
130 InstanceOfStub stub(isolate); 130 InstanceOfStub stub(isolate);
131 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 131 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
132 } 132 }
133 133
134 134
135 // static 135 // static
136 Callable CodeFactory::ToBoolean(Isolate* isolate) { 136 Callable CodeFactory::ToBoolean(Isolate* isolate) {
137 Handle<Code> code = ToBooleanStub::GetUninitialized(isolate); 137 ToBooleanStub stub(isolate);
138 return Callable(code, ToBooleanDescriptor(isolate)); 138 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
139 } 139 }
140 140
141 141
142 // static 142 // static
143 Callable CodeFactory::ToNumber(Isolate* isolate) { 143 Callable CodeFactory::ToNumber(Isolate* isolate) {
144 ToNumberStub stub(isolate); 144 ToNumberStub stub(isolate);
145 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); 145 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
146 } 146 }
147 147
148 148
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 // static 365 // static
366 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) { 366 Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
367 // Note: If we ever use fpregs in the interpreter then we will need to 367 // Note: If we ever use fpregs in the interpreter then we will need to
368 // save fpregs too. 368 // save fpregs too.
369 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); 369 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister);
370 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); 370 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate));
371 } 371 }
372 372
373 } // namespace internal 373 } // namespace internal
374 } // namespace v8 374 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698