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

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

Issue 2763533002: [WIP] JSForInLowering and JSForInHasOwnProperty.
Patch Set: Hack around the issue with indices not being available always. Created 3 years, 9 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 | « BUILD.gn ('k') | 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/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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 135
136 // Provides access to FixedTypedArrayBase::external_pointer() field. 136 // Provides access to FixedTypedArrayBase::external_pointer() field.
137 static FieldAccess ForFixedTypedArrayBaseExternalPointer(); 137 static FieldAccess ForFixedTypedArrayBaseExternalPointer();
138 138
139 // Provides access to DescriptorArray::enum_cache() field. 139 // Provides access to DescriptorArray::enum_cache() field.
140 static FieldAccess ForDescriptorArrayEnumCache(); 140 static FieldAccess ForDescriptorArrayEnumCache();
141 141
142 // Provides access to DescriptorArray::enum_cache_bridge_cache() field. 142 // Provides access to DescriptorArray::enum_cache_bridge_cache() field.
143 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache(); 143 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache();
144 144
145 // Provides access to DescriptorArray::enum_cache_bridge_indices_cache()
146 // field.
147 static FieldAccess ForDescriptorArrayEnumCacheBridgeIndicesCache();
148
145 // Provides access to Map::bit_field() byte. 149 // Provides access to Map::bit_field() byte.
146 static FieldAccess ForMapBitField(); 150 static FieldAccess ForMapBitField();
147 151
148 // Provides access to Map::bit_field3() field. 152 // Provides access to Map::bit_field3() field.
149 static FieldAccess ForMapBitField3(); 153 static FieldAccess ForMapBitField3();
150 154
151 // Provides access to Map::descriptors() field. 155 // Provides access to Map::descriptors() field.
152 static FieldAccess ForMapDescriptors(); 156 static FieldAccess ForMapDescriptors();
153 157
154 // Provides access to Map::instance_type() field. 158 // Provides access to Map::instance_type() field.
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 268
265 private: 269 private:
266 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); 270 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder);
267 }; 271 };
268 272
269 } // namespace compiler 273 } // namespace compiler
270 } // namespace internal 274 } // namespace internal
271 } // namespace v8 275 } // namespace v8
272 276
273 #endif // V8_COMPILER_ACCESS_BUILDER_H_ 277 #endif // V8_COMPILER_ACCESS_BUILDER_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698