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

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

Issue 2624203002: Version 5.7.440.1 (cherry-pick) (Closed)
Patch Set: Created 3 years, 11 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 | « src/code-stubs.cc ('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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 // Provides access to String::length() field. 161 // Provides access to String::length() field.
162 static FieldAccess ForStringLength(); 162 static FieldAccess ForStringLength();
163 163
164 // Provides access to ConsString::first() field. 164 // Provides access to ConsString::first() field.
165 static FieldAccess ForConsStringFirst(); 165 static FieldAccess ForConsStringFirst();
166 166
167 // Provides access to ConsString::second() field. 167 // Provides access to ConsString::second() field.
168 static FieldAccess ForConsStringSecond(); 168 static FieldAccess ForConsStringSecond();
169 169
170 // Provides access to ThinString::actual() field.
171 static FieldAccess ForThinStringActual();
172
173 // Provides access to SlicedString::offset() field. 170 // Provides access to SlicedString::offset() field.
174 static FieldAccess ForSlicedStringOffset(); 171 static FieldAccess ForSlicedStringOffset();
175 172
176 // Provides access to SlicedString::parent() field. 173 // Provides access to SlicedString::parent() field.
177 static FieldAccess ForSlicedStringParent(); 174 static FieldAccess ForSlicedStringParent();
178 175
179 // Provides access to ExternalString::resource_data() field. 176 // Provides access to ExternalString::resource_data() field.
180 static FieldAccess ForExternalStringResourceData(); 177 static FieldAccess ForExternalStringResourceData();
181 178
182 // Provides access to ExternalOneByteString characters. 179 // Provides access to ExternalOneByteString characters.
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 243
247 private: 244 private:
248 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); 245 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder);
249 }; 246 };
250 247
251 } // namespace compiler 248 } // namespace compiler
252 } // namespace internal 249 } // namespace internal
253 } // namespace v8 250 } // namespace v8
254 251
255 #endif // V8_COMPILER_ACCESS_BUILDER_H_ 252 #endif // V8_COMPILER_ACCESS_BUILDER_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698