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

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

Issue 1521953002: [proxies] fix access issue when having proxies on the prototype-chain of global objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: ppc code mess Created 5 years 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
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 // Provides access to FixedArray::length() field. 64 // Provides access to FixedArray::length() field.
65 static FieldAccess ForFixedArrayLength(); 65 static FieldAccess ForFixedArrayLength();
66 66
67 // Provides access to DescriptorArray::enum_cache() field. 67 // Provides access to DescriptorArray::enum_cache() field.
68 static FieldAccess ForDescriptorArrayEnumCache(); 68 static FieldAccess ForDescriptorArrayEnumCache();
69 69
70 // Provides access to DescriptorArray::enum_cache_bridge_cache() field. 70 // Provides access to DescriptorArray::enum_cache_bridge_cache() field.
71 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache(); 71 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache();
72 72
73 // Provides access to Map::bit_field() byte.
74 static FieldAccess ForMapBitField();
75
73 // Provides access to Map::bit_field3() field. 76 // Provides access to Map::bit_field3() field.
74 static FieldAccess ForMapBitField3(); 77 static FieldAccess ForMapBitField3();
75 78
76 // Provides access to Map::descriptors() field. 79 // Provides access to Map::descriptors() field.
77 static FieldAccess ForMapDescriptors(); 80 static FieldAccess ForMapDescriptors();
78 81
79 // Provides access to Map::instance_type() field. 82 // Provides access to Map::instance_type() field.
80 static FieldAccess ForMapInstanceType(); 83 static FieldAccess ForMapInstanceType();
81 84
82 // Provides access to Map::prototype() field. 85 // Provides access to Map::prototype() field.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 132
130 private: 133 private:
131 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); 134 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder);
132 }; 135 };
133 136
134 } // namespace compiler 137 } // namespace compiler
135 } // namespace internal 138 } // namespace internal
136 } // namespace v8 139 } // namespace v8
137 140
138 #endif // V8_COMPILER_ACCESS_BUILDER_H_ 141 #endif // V8_COMPILER_ACCESS_BUILDER_H_
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/compiler/access-builder.cc » ('j') | src/prototype.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698