OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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_COMPILER_FAST_ACCESSOR_ASSEMBLER_H_ | |
6 #define V8_COMPILER_FAST_ACCESSOR_ASSEMBLER_H_ | |
7 | |
8 #include <stdint.h> | |
9 #include <vector> | |
10 | |
11 // Clients of this interface shouldn't depend on lots of compiler internals. | |
12 // Do not include anything from src/compiler here! | |
13 #include "include/v8-experimental.h" | |
14 #include "src/base/macros.h" | |
15 #include "src/base/smart-pointers.h" | |
16 #include "src/handles.h" | |
17 | |
18 | |
19 namespace v8 { | |
20 namespace internal { | |
21 | |
22 class Code; | |
23 class Isolate; | |
24 class Zone; | |
25 | |
26 namespace compiler { | |
27 | |
28 class CallDescriptor; | |
29 class Node; | |
30 class RawMachineAssembler; | |
31 class RawMachineLabel; | |
32 | |
33 | |
34 // This interface "exports" an aggregated subset of RawMachineAssembler, for | |
35 // use by the API to implement Fast Dom Accessors. | |
36 // | |
37 // This interface is made for this single purpose only and does not attempt | |
38 // to implement a general purpose solution. If you need one, please look at | |
39 // RawMachineAssembler instead. | |
40 // | |
41 // The life cycle of a FastAccessorAssembler has two phases: | |
42 // - After creating the instance, you can call an arbitrary sequence of | |
43 // builder functions to build the desired function. | |
44 // - When done, you can Build() the accessor and query for the build results. | |
45 // | |
46 // You cannot call any result getters before Build() was called & successful; | |
47 // and you cannot call any builder functions after Build() was called. | |
48 class FastAccessorAssembler { | |
49 public: | |
50 typedef v8::experimental::FastAccessorBuilder::ValueId ValueId; | |
51 typedef v8::experimental::FastAccessorBuilder::LabelId LabelId; | |
52 | |
53 explicit FastAccessorAssembler(Isolate* isolate); | |
54 ~FastAccessorAssembler(); | |
55 | |
56 // Builder / assembler functions: | |
57 ValueId IntegerConstant(int int_constant); | |
58 ValueId GetCallTarget(); | |
59 ValueId GetInternalField(ValueId value_id, int field_no); | |
60 ValueId LoadValue(ValueId value_id, int offset); | |
61 ValueId LoadObject(ValueId value_id, int offset); | |
62 // .. call native. | |
Michael Starzinger
2015/12/02 19:28:06
nit: Can we change these two comments into TODOs?
| |
63 // .. throw exception | |
64 | |
65 // Builder / assembler functions for control flow. | |
66 void ReturnValue(ValueId value_id); | |
67 void CheckFlagSetOrReturnNull(ValueId value_id, int mask); | |
68 void CheckNotNullOrReturnNull(ValueId value_id); | |
69 // void CheckNotNullOrCallback(ValueId value_id, ..c++-callback type..., | |
70 // ValueId arg1, ValueId arg2, ...); | |
71 LabelId MakeLabel(); | |
72 void SetLabel(LabelId label_id); | |
73 void CheckNotNullOrJump(ValueId value_id, LabelId label_id); | |
74 | |
75 // Assemble the code. | |
76 MaybeHandle<Code> Build(); | |
77 | |
78 private: | |
79 ValueId FromRaw(Node* node); | |
80 LabelId FromRaw(RawMachineLabel* label); | |
81 Node* FromId(ValueId value) const; | |
82 RawMachineLabel* FromId(LabelId value) const; | |
83 | |
84 Zone* zone() { return &zone_; } | |
85 | |
86 Zone zone_; | |
87 base::SmartPointer<RawMachineAssembler> assembler_; | |
88 | |
89 // To prevent exposing the RMA internals to the outside world, we'll map | |
90 // Node + Label pointers to ValueId integers, and use two vectors to | |
91 // remember + check them. | |
92 // Since ValueIds can map to either nodes_ or labels_, we can't use the | |
93 // same slot for both. | |
94 std::vector<Node*> nodes_; | |
95 std::vector<RawMachineLabel*> labels_; | |
96 | |
97 // Remember the current state for easy error checking. (We prefer to be | |
98 // strict as this class will be exposed at the API.) | |
99 enum { kBuilding, kBuilt, kError } state_; | |
100 | |
101 DISALLOW_COPY_AND_ASSIGN(FastAccessorAssembler); | |
102 }; | |
103 | |
104 } // namespace compiler | |
105 } // namespace internal | |
106 } // namespace v8 | |
107 | |
108 #endif // V8_COMPILER_FAST_ACCESSOR_ASSEMBLER_H_ | |
OLD | NEW |