OLD | NEW |
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 #ifndef V8_COMPILER_ACCESS_BUILDER_H_ | 5 #ifndef V8_COMPILER_ACCESS_BUILDER_H_ |
6 #define V8_COMPILER_ACCESS_BUILDER_H_ | 6 #define V8_COMPILER_ACCESS_BUILDER_H_ |
7 | 7 |
8 #include "src/compiler/simplified-operator.h" | 8 #include "src/compiler/simplified-operator.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 // Provides access to Map::bit_field3() field. | 55 // Provides access to Map::bit_field3() field. |
56 static FieldAccess ForMapBitField3(); | 56 static FieldAccess ForMapBitField3(); |
57 | 57 |
58 // Provides access to Map::descriptors() field. | 58 // Provides access to Map::descriptors() field. |
59 static FieldAccess ForMapDescriptors(); | 59 static FieldAccess ForMapDescriptors(); |
60 | 60 |
61 // Provides access to Map::instance_type() field. | 61 // Provides access to Map::instance_type() field. |
62 static FieldAccess ForMapInstanceType(); | 62 static FieldAccess ForMapInstanceType(); |
63 | 63 |
| 64 // Provides access to Map::prototype() field. |
| 65 static FieldAccess ForMapPrototype(); |
| 66 |
64 // Provides access to String::length() field. | 67 // Provides access to String::length() field. |
65 static FieldAccess ForStringLength(); | 68 static FieldAccess ForStringLength(); |
66 | 69 |
67 // Provides access to JSGlobalObject::global_proxy() field. | 70 // Provides access to JSGlobalObject::global_proxy() field. |
68 static FieldAccess ForJSGlobalObjectGlobalProxy(); | 71 static FieldAccess ForJSGlobalObjectGlobalProxy(); |
69 | 72 |
70 // Provides access to JSGlobalObject::native_context() field. | 73 // Provides access to JSGlobalObject::native_context() field. |
71 static FieldAccess ForJSGlobalObjectNativeContext(); | 74 static FieldAccess ForJSGlobalObjectNativeContext(); |
72 | 75 |
73 // Provides access to JSValue::value() field. | 76 // Provides access to JSValue::value() field. |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 | 120 |
118 private: | 121 private: |
119 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); | 122 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); |
120 }; | 123 }; |
121 | 124 |
122 } // namespace compiler | 125 } // namespace compiler |
123 } // namespace internal | 126 } // namespace internal |
124 } // namespace v8 | 127 } // namespace v8 |
125 | 128 |
126 #endif // V8_COMPILER_ACCESS_BUILDER_H_ | 129 #endif // V8_COMPILER_ACCESS_BUILDER_H_ |
OLD | NEW |