OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef V8_CODE_FACTORY_H_ | 5 #ifndef V8_CODE_FACTORY_H_ |
6 #define V8_CODE_FACTORY_H_ | 6 #define V8_CODE_FACTORY_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 // CEntryStub has var-args semantics (all the arguments are passed on the | 33 // CEntryStub has var-args semantics (all the arguments are passed on the |
34 // stack and the arguments count is passed via register) which currently | 34 // stack and the arguments count is passed via register) which currently |
35 // can't be expressed in CallInterfaceDescriptor. Therefore only the code | 35 // can't be expressed in CallInterfaceDescriptor. Therefore only the code |
36 // is exported here. | 36 // is exported here. |
37 static Handle<Code> RuntimeCEntry(Isolate* isolate, int result_size = 1); | 37 static Handle<Code> RuntimeCEntry(Isolate* isolate, int result_size = 1); |
38 | 38 |
39 // Initial states for ICs. | 39 // Initial states for ICs. |
40 static Callable LoadIC(Isolate* isolate); | 40 static Callable LoadIC(Isolate* isolate); |
41 static Callable LoadIC_Uninitialized(Isolate* isolate); | 41 static Callable LoadIC_Uninitialized(Isolate* isolate); |
42 static Callable LoadICInOptimizedCode(Isolate* isolate); | 42 static Callable LoadICInOptimizedCode(Isolate* isolate); |
| 43 static Callable LoadICInOptimizedCode_Noninlined(Isolate* isolate); |
43 static Callable LoadICProtoArray(Isolate* isolate, bool throw_if_nonexistent); | 44 static Callable LoadICProtoArray(Isolate* isolate, bool throw_if_nonexistent); |
44 static Callable LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode); | 45 static Callable LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode); |
45 static Callable LoadGlobalICInOptimizedCode(Isolate* isolate, | 46 static Callable LoadGlobalICInOptimizedCode(Isolate* isolate, |
46 TypeofMode typeof_mode); | 47 TypeofMode typeof_mode); |
47 static Callable KeyedLoadIC(Isolate* isolate); | 48 static Callable KeyedLoadIC(Isolate* isolate); |
48 static Callable KeyedLoadICInOptimizedCode(Isolate* isolate); | 49 static Callable KeyedLoadICInOptimizedCode(Isolate* isolate); |
49 static Callable KeyedLoadIC_Megamorphic(Isolate* isolate); | 50 static Callable KeyedLoadIC_Megamorphic(Isolate* isolate); |
50 static Callable CallIC(Isolate* isolate, | 51 static Callable CallIC(Isolate* isolate, |
51 ConvertReceiverMode mode = ConvertReceiverMode::kAny, | 52 ConvertReceiverMode mode = ConvertReceiverMode::kAny, |
52 TailCallMode tail_call_mode = TailCallMode::kDisallow); | 53 TailCallMode tail_call_mode = TailCallMode::kDisallow); |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 static Callable ArrayConstructor(Isolate* isolate); | 196 static Callable ArrayConstructor(Isolate* isolate); |
196 static Callable ArrayPush(Isolate* isolate); | 197 static Callable ArrayPush(Isolate* isolate); |
197 static Callable FunctionPrototypeBind(Isolate* isolate); | 198 static Callable FunctionPrototypeBind(Isolate* isolate); |
198 static Callable PromiseHandleReject(Isolate* isolate); | 199 static Callable PromiseHandleReject(Isolate* isolate); |
199 }; | 200 }; |
200 | 201 |
201 } // namespace internal | 202 } // namespace internal |
202 } // namespace v8 | 203 } // namespace v8 |
203 | 204 |
204 #endif // V8_CODE_FACTORY_H_ | 205 #endif // V8_CODE_FACTORY_H_ |
OLD | NEW |