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 #include "src/elements-kind.h" | 9 #include "src/elements-kind.h" |
10 | 10 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 // Provides access to JSArrayBufferView::byteLength() field. | 83 // Provides access to JSArrayBufferView::byteLength() field. |
84 static FieldAccess ForJSArrayBufferViewByteLength(); | 84 static FieldAccess ForJSArrayBufferViewByteLength(); |
85 | 85 |
86 // Provides access to JSArrayBufferView::byteOffset() field. | 86 // Provides access to JSArrayBufferView::byteOffset() field. |
87 static FieldAccess ForJSArrayBufferViewByteOffset(); | 87 static FieldAccess ForJSArrayBufferViewByteOffset(); |
88 | 88 |
89 // Provides access to JSTypedArray::length() field. | 89 // Provides access to JSTypedArray::length() field. |
90 static FieldAccess ForJSTypedArrayLength(); | 90 static FieldAccess ForJSTypedArrayLength(); |
91 | 91 |
| 92 // Provides access to JSDate::value() field. |
| 93 static FieldAccess ForJSDateValue(); |
| 94 |
92 // Provides access to JSDate fields. | 95 // Provides access to JSDate fields. |
93 static FieldAccess ForJSDateField(JSDate::FieldIndex index); | 96 static FieldAccess ForJSDateField(JSDate::FieldIndex index); |
94 | 97 |
95 // Provides access to JSIteratorResult::done() field. | 98 // Provides access to JSIteratorResult::done() field. |
96 static FieldAccess ForJSIteratorResultDone(); | 99 static FieldAccess ForJSIteratorResultDone(); |
97 | 100 |
98 // Provides access to JSIteratorResult::value() field. | 101 // Provides access to JSIteratorResult::value() field. |
99 static FieldAccess ForJSIteratorResultValue(); | 102 static FieldAccess ForJSIteratorResultValue(); |
100 | 103 |
101 // Provides access to JSRegExp::flags() field. | 104 // Provides access to JSRegExp::flags() field. |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 | 206 |
204 private: | 207 private: |
205 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); | 208 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); |
206 }; | 209 }; |
207 | 210 |
208 } // namespace compiler | 211 } // namespace compiler |
209 } // namespace internal | 212 } // namespace internal |
210 } // namespace v8 | 213 } // namespace v8 |
211 | 214 |
212 #endif // V8_COMPILER_ACCESS_BUILDER_H_ | 215 #endif // V8_COMPILER_ACCESS_BUILDER_H_ |
OLD | NEW |