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 "src/base/macros.h" |
| 14 #include "src/base/smart-pointers.h" |
| 15 #include "src/compiler/raw-machine-assembler.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 Label; |
| 30 class Node; |
| 31 |
| 32 |
| 33 // This interface "exports" an aggregated subset of RawMachineAssembler, for |
| 34 // use by the API to implement Fast Dom Accessors. |
| 35 // |
| 36 // This interface is made for this single purpose only and does not attempt |
| 37 // to implement a general purpose solution. If you need one, please look at |
| 38 // RawMachineAssembler instead. |
| 39 // |
| 40 // The life cycle of a FastAccessorAssembler has two phases: |
| 41 // - After creating the instance, you can call an arbitrary sequence of |
| 42 // builder functions to build the desired function. |
| 43 // - When done, you can Build() the accessor and query for the build results. |
| 44 // |
| 45 // You cannot call any result getters before Build() was called & successful; |
| 46 // and you cannot call any builder functions after Build() was called. |
| 47 class FastAccessorAssembler { |
| 48 public: |
| 49 typedef v8::experimental::FastAccessorBuilder::ValueId ValueId; |
| 50 typedef v8::experimental::FastAccessorBuilder::LabelId LabelId; |
| 51 |
| 52 explicit FastAccessorAssembler(Isolate* isolate); |
| 53 ~FastAccessorAssembler(); |
| 54 |
| 55 // Builder / assembler functions: |
| 56 ValueId IntegerConstant(int int_constant); |
| 57 ValueId GetCallTarget(); |
| 58 ValueId GetParameter(size_t parameter_no); |
| 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. |
| 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 Handle<Code> Build(); |
| 77 |
| 78 private: |
| 79 ValueId FromRaw(Node* node); |
| 80 LabelId FromRaw(RawMachineAssembler::Label* label); |
| 81 Node* FromId(ValueId value) const; |
| 82 RawMachineAssembler::Label* 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<RawMachineAssembler::Label*> 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 |