5fd1646d5230cab0e89c39791f303f0320f5e451
[platform/upstream/nodejs.git] / deps / v8 / src / code-factory.h
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
3 // found in the LICENSE file.
4
5 #ifndef V8_CODE_FACTORY_H_
6 #define V8_CODE_FACTORY_H_
7
8 #include "src/allocation.h"
9 #include "src/assembler.h"
10 #include "src/codegen.h"
11 #include "src/globals.h"
12 #include "src/interface-descriptors.h"
13
14 namespace v8 {
15 namespace internal {
16
17 // Associates a body of code with an interface descriptor.
18 class Callable FINAL BASE_EMBEDDED {
19  public:
20   Callable(Handle<Code> code, CallInterfaceDescriptor descriptor)
21       : code_(code), descriptor_(descriptor) {}
22
23   Handle<Code> code() const { return code_; }
24   CallInterfaceDescriptor descriptor() const { return descriptor_; }
25
26  private:
27   const Handle<Code> code_;
28   const CallInterfaceDescriptor descriptor_;
29 };
30
31
32 class CodeFactory FINAL {
33  public:
34   // Initial states for ICs.
35   static Callable LoadIC(Isolate* isolate, ContextualMode mode);
36   static Callable LoadICInOptimizedCode(Isolate* isolate, ContextualMode mode);
37   static Callable KeyedLoadIC(Isolate* isolate);
38   static Callable KeyedLoadICInOptimizedCode(Isolate* isolate);
39   static Callable CallIC(Isolate* isolate, int argc,
40                          CallICState::CallType call_type);
41   static Callable CallICInOptimizedCode(Isolate* isolate, int argc,
42                                         CallICState::CallType call_type);
43   static Callable StoreIC(Isolate* isolate, LanguageMode mode);
44   static Callable KeyedStoreIC(Isolate* isolate, LanguageMode mode);
45
46   static Callable CompareIC(Isolate* isolate, Token::Value op);
47
48   static Callable BinaryOpIC(Isolate* isolate, Token::Value op);
49
50   // Code stubs. Add methods here as needed to reduce dependency on
51   // code-stubs.h.
52   static Callable ToBoolean(
53       Isolate* isolate, ToBooleanStub::ResultMode mode,
54       ToBooleanStub::Types types = ToBooleanStub::Types());
55
56   static Callable ToNumber(Isolate* isolate);
57
58   static Callable StringAdd(Isolate* isolate, StringAddFlags flags,
59                             PretenureFlag pretenure_flag);
60
61   static Callable AllocateHeapNumber(Isolate* isolate);
62
63   static Callable CallFunction(Isolate* isolate, int argc,
64                                CallFunctionFlags flags);
65 };
66
67 }  // namespace internal
68 }  // namespace v8
69
70 #endif  // V8_CODE_FACTORY_H_