Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Side by Side Diff: src/compiler/access-builder.h

Issue 2203693002: [turbofan] Introduce initial support for TypedArrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5254
Patch Set: Fix Retain Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 // Provides access to JSRegExp::flags() field. 100 // Provides access to JSRegExp::flags() field.
101 static FieldAccess ForJSRegExpFlags(); 101 static FieldAccess ForJSRegExpFlags();
102 102
103 // Provides access to JSRegExp::source() field. 103 // Provides access to JSRegExp::source() field.
104 static FieldAccess ForJSRegExpSource(); 104 static FieldAccess ForJSRegExpSource();
105 105
106 // Provides access to FixedArray::length() field. 106 // Provides access to FixedArray::length() field.
107 static FieldAccess ForFixedArrayLength(); 107 static FieldAccess ForFixedArrayLength();
108 108
109 // Provides access to FixedTypedArrayBase::base_pointer() field.
110 static FieldAccess ForFixedTypedArrayBaseBasePointer();
111
112 // Provides access to FixedTypedArrayBase::external_pointer() field.
113 static FieldAccess ForFixedTypedArrayBaseExternalPointer();
114
109 // Provides access to DescriptorArray::enum_cache() field. 115 // Provides access to DescriptorArray::enum_cache() field.
110 static FieldAccess ForDescriptorArrayEnumCache(); 116 static FieldAccess ForDescriptorArrayEnumCache();
111 117
112 // Provides access to DescriptorArray::enum_cache_bridge_cache() field. 118 // Provides access to DescriptorArray::enum_cache_bridge_cache() field.
113 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache(); 119 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache();
114 120
115 // Provides access to Map::bit_field() byte. 121 // Provides access to Map::bit_field() byte.
116 static FieldAccess ForMapBitField(); 122 static FieldAccess ForMapBitField();
117 123
118 // Provides access to Map::bit_field3() field. 124 // Provides access to Map::bit_field3() field.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 201
196 private: 202 private:
197 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); 203 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder);
198 }; 204 };
199 205
200 } // namespace compiler 206 } // namespace compiler
201 } // namespace internal 207 } // namespace internal
202 } // namespace v8 208 } // namespace v8
203 209
204 #endif // V8_COMPILER_ACCESS_BUILDER_H_ 210 #endif // V8_COMPILER_ACCESS_BUILDER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698