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

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

Issue 1516753006: [turbofan] Some more cleanup on the intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « src/code-factory.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/compiler/simplified-operator.h" 8 #include "src/compiler/simplified-operator.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 // Provides access to JSArrayBuffer::bit_field() field. 49 // Provides access to JSArrayBuffer::bit_field() field.
50 static FieldAccess ForJSArrayBufferBitField(); 50 static FieldAccess ForJSArrayBufferBitField();
51 51
52 // Provides access to JSArrayBufferView::buffer() field. 52 // Provides access to JSArrayBufferView::buffer() field.
53 static FieldAccess ForJSArrayBufferViewBuffer(); 53 static FieldAccess ForJSArrayBufferViewBuffer();
54 54
55 // Provides access to JSDate fields. 55 // Provides access to JSDate fields.
56 static FieldAccess ForJSDateField(JSDate::FieldIndex index); 56 static FieldAccess ForJSDateField(JSDate::FieldIndex index);
57 57
58 // Provides access to JSRegExp::flags() field.
59 static FieldAccess ForJSRegExpFlags();
60
61 // Provides access to JSRegExp::source() field.
62 static FieldAccess ForJSRegExpSource();
63
58 // Provides access to FixedArray::length() field. 64 // Provides access to FixedArray::length() field.
59 static FieldAccess ForFixedArrayLength(); 65 static FieldAccess ForFixedArrayLength();
60 66
61 // Provides access to DescriptorArray::enum_cache() field. 67 // Provides access to DescriptorArray::enum_cache() field.
62 static FieldAccess ForDescriptorArrayEnumCache(); 68 static FieldAccess ForDescriptorArrayEnumCache();
63 69
64 // Provides access to DescriptorArray::enum_cache_bridge_cache() field. 70 // Provides access to DescriptorArray::enum_cache_bridge_cache() field.
65 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache(); 71 static FieldAccess ForDescriptorArrayEnumCacheBridgeCache();
66 72
67 // Provides access to Map::bit_field3() field. 73 // Provides access to Map::bit_field3() field.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 129
124 private: 130 private:
125 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); 131 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder);
126 }; 132 };
127 133
128 } // namespace compiler 134 } // namespace compiler
129 } // namespace internal 135 } // namespace internal
130 } // namespace v8 136 } // namespace v8
131 137
132 #endif // V8_COMPILER_ACCESS_BUILDER_H_ 138 #endif // V8_COMPILER_ACCESS_BUILDER_H_
OLDNEW
« no previous file with comments | « src/code-factory.cc ('k') | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698