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

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

Issue 1084533003: Revert of [turbofan] Optimize loads from the global object in JSTypeFeedbackSpecializer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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/compiler/access-builder.h ('k') | src/compiler/js-type-feedback.h » ('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 #include "src/compiler/access-builder.h" 5 #include "src/compiler/access-builder.h"
6 #include "src/types-inl.h" 6 #include "src/types-inl.h"
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 } 81 }
82 82
83 83
84 // static 84 // static
85 FieldAccess AccessBuilder::ForStatsCounter() { 85 FieldAccess AccessBuilder::ForStatsCounter() {
86 return {kUntaggedBase, 0, MaybeHandle<Name>(), Type::Signed32(), kMachInt32}; 86 return {kUntaggedBase, 0, MaybeHandle<Name>(), Type::Signed32(), kMachInt32};
87 } 87 }
88 88
89 89
90 // static 90 // static
91 FieldAccess AccessBuilder::ForPropertyCellValue() {
92 return {kTaggedBase, PropertyCell::kValueOffset, Handle<Name>(), Type::Any(),
93 kMachAnyTagged};
94 }
95
96
97 // static
98 ElementAccess AccessBuilder::ForFixedArrayElement() { 91 ElementAccess AccessBuilder::ForFixedArrayElement() {
99 return {kTaggedBase, FixedArray::kHeaderSize, Type::Any(), kMachAnyTagged}; 92 return {kTaggedBase, FixedArray::kHeaderSize, Type::Any(), kMachAnyTagged};
100 } 93 }
101 94
102 95
103 // static 96 // static
104 ElementAccess AccessBuilder::ForTypedArrayElement(ExternalArrayType type, 97 ElementAccess AccessBuilder::ForTypedArrayElement(ExternalArrayType type,
105 bool is_external) { 98 bool is_external) {
106 BaseTaggedness taggedness = is_external ? kUntaggedBase : kTaggedBase; 99 BaseTaggedness taggedness = is_external ? kUntaggedBase : kTaggedBase;
107 int header_size = is_external ? 0 : FixedTypedArrayBase::kDataOffset; 100 int header_size = is_external ? 0 : FixedTypedArrayBase::kDataOffset;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 return {kTaggedBase, SeqString::kHeaderSize, Type::Unsigned32(), 132 return {kTaggedBase, SeqString::kHeaderSize, Type::Unsigned32(),
140 kMachUint16}; 133 kMachUint16};
141 } 134 }
142 UNREACHABLE(); 135 UNREACHABLE();
143 return {kUntaggedBase, 0, Type::None(), kMachNone}; 136 return {kUntaggedBase, 0, Type::None(), kMachNone};
144 } 137 }
145 138
146 } // namespace compiler 139 } // namespace compiler
147 } // namespace internal 140 } // namespace internal
148 } // namespace v8 141 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/access-builder.h ('k') | src/compiler/js-type-feedback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698