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/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
9 #include "src/compiler/simplified-operator.h" | 9 #include "src/compiler/simplified-operator.h" |
10 #include "src/elements-kind.h" | 10 #include "src/elements-kind.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 // Provides access to JSFunction::prototype_or_initial_map() field. | 58 // Provides access to JSFunction::prototype_or_initial_map() field. |
59 static FieldAccess ForJSFunctionPrototypeOrInitialMap(); | 59 static FieldAccess ForJSFunctionPrototypeOrInitialMap(); |
60 | 60 |
61 // Provides access to JSFunction::context() field. | 61 // Provides access to JSFunction::context() field. |
62 static FieldAccess ForJSFunctionContext(); | 62 static FieldAccess ForJSFunctionContext(); |
63 | 63 |
64 // Provides access to JSFunction::shared() field. | 64 // Provides access to JSFunction::shared() field. |
65 static FieldAccess ForJSFunctionSharedFunctionInfo(); | 65 static FieldAccess ForJSFunctionSharedFunctionInfo(); |
66 | 66 |
67 // Provides access to JSFunction::literals() field. | 67 // Provides access to JSFunction::feedback_vector() field. |
68 static FieldAccess ForJSFunctionLiterals(); | 68 static FieldAccess ForJSFunctionFeedbackVector(); |
69 | 69 |
70 // Provides access to JSFunction::code() field. | 70 // Provides access to JSFunction::code() field. |
71 static FieldAccess ForJSFunctionCodeEntry(); | 71 static FieldAccess ForJSFunctionCodeEntry(); |
72 | 72 |
73 // Provides access to JSFunction::next_function_link() field. | 73 // Provides access to JSFunction::next_function_link() field. |
74 static FieldAccess ForJSFunctionNextFunctionLink(); | 74 static FieldAccess ForJSFunctionNextFunctionLink(); |
75 | 75 |
76 // Provides access to JSGeneratorObject::context() field. | 76 // Provides access to JSGeneratorObject::context() field. |
77 static FieldAccess ForJSGeneratorObjectContext(); | 77 static FieldAccess ForJSGeneratorObjectContext(); |
78 | 78 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 | 264 |
265 private: | 265 private: |
266 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); | 266 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); |
267 }; | 267 }; |
268 | 268 |
269 } // namespace compiler | 269 } // namespace compiler |
270 } // namespace internal | 270 } // namespace internal |
271 } // namespace v8 | 271 } // namespace v8 |
272 | 272 |
273 #endif // V8_COMPILER_ACCESS_BUILDER_H_ | 273 #endif // V8_COMPILER_ACCESS_BUILDER_H_ |
OLD | NEW |