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/isolate-inl.h

Issue 2504163002: [turbofan] Don't check for neutered array buffers eagerly. (Closed)
Patch Set: Created 4 years, 1 month 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/isolate.cc ('k') | src/objects.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_ISOLATE_INL_H_ 5 #ifndef V8_ISOLATE_INL_H_
6 #define V8_ISOLATE_INL_H_ 6 #define V8_ISOLATE_INL_H_
7 7
8 #include "src/isolate.h" 8 #include "src/isolate.h"
9 #include "src/objects-inl.h" 9 #include "src/objects-inl.h"
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 bool Isolate::IsStringLengthOverflowIntact() { 141 bool Isolate::IsStringLengthOverflowIntact() {
142 PropertyCell* has_instance_cell = heap()->string_length_protector(); 142 PropertyCell* has_instance_cell = heap()->string_length_protector();
143 return has_instance_cell->value() == Smi::FromInt(kProtectorValid); 143 return has_instance_cell->value() == Smi::FromInt(kProtectorValid);
144 } 144 }
145 145
146 bool Isolate::IsFastArrayIterationIntact() { 146 bool Isolate::IsFastArrayIterationIntact() {
147 Cell* fast_iteration = heap()->fast_array_iteration_protector(); 147 Cell* fast_iteration = heap()->fast_array_iteration_protector();
148 return fast_iteration->value() == Smi::FromInt(kProtectorValid); 148 return fast_iteration->value() == Smi::FromInt(kProtectorValid);
149 } 149 }
150 150
151 bool Isolate::IsArrayBufferNeuteringIntact() {
152 PropertyCell* fast_iteration = heap()->array_buffer_neutering_protector();
153 return fast_iteration->value() == Smi::FromInt(kProtectorValid);
154 }
155
151 bool Isolate::IsArrayIteratorLookupChainIntact() { 156 bool Isolate::IsArrayIteratorLookupChainIntact() {
152 Cell* array_iterator_cell = heap()->array_iterator_protector(); 157 Cell* array_iterator_cell = heap()->array_iterator_protector();
153 return array_iterator_cell->value() == Smi::FromInt(kProtectorValid); 158 return array_iterator_cell->value() == Smi::FromInt(kProtectorValid);
154 } 159 }
155 160
156 } // namespace internal 161 } // namespace internal
157 } // namespace v8 162 } // namespace v8
158 163
159 #endif // V8_ISOLATE_INL_H_ 164 #endif // V8_ISOLATE_INL_H_
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698