OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 // Review notes: | 5 // Review notes: |
6 // | 6 // |
7 // - The use of macros in these inline functions may seem superfluous | 7 // - The use of macros in these inline functions may seem superfluous |
8 // but it is absolutely needed to make sure gcc generates optimal | 8 // but it is absolutely needed to make sure gcc generates optimal |
9 // code. gcc is not happy when attempting to inline too deep. | 9 // code. gcc is not happy when attempting to inline too deep. |
10 // | 10 // |
(...skipping 2297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2308 | 2308 |
2309 Object* FixedArray::get(int index) const { | 2309 Object* FixedArray::get(int index) const { |
2310 SLOW_DCHECK(index >= 0 && index < this->length()); | 2310 SLOW_DCHECK(index >= 0 && index < this->length()); |
2311 return READ_FIELD(this, kHeaderSize + index * kPointerSize); | 2311 return READ_FIELD(this, kHeaderSize + index * kPointerSize); |
2312 } | 2312 } |
2313 | 2313 |
2314 Handle<Object> FixedArray::get(FixedArray* array, int index, Isolate* isolate) { | 2314 Handle<Object> FixedArray::get(FixedArray* array, int index, Isolate* isolate) { |
2315 return handle(array->get(index), isolate); | 2315 return handle(array->get(index), isolate); |
2316 } | 2316 } |
2317 | 2317 |
2318 | 2318 bool FixedArray::is_the_hole(Isolate* isolate, int index) { |
2319 bool FixedArray::is_the_hole(int index) { | 2319 return get(index)->IsTheHole(isolate); |
2320 return get(index) == GetHeap()->the_hole_value(); | |
2321 } | 2320 } |
2322 | 2321 |
2323 | 2322 |
2324 void FixedArray::set(int index, Smi* value) { | 2323 void FixedArray::set(int index, Smi* value) { |
2325 DCHECK(map() != GetHeap()->fixed_cow_array_map()); | 2324 DCHECK(map() != GetHeap()->fixed_cow_array_map()); |
2326 DCHECK(index >= 0 && index < this->length()); | 2325 DCHECK(index >= 0 && index < this->length()); |
2327 DCHECK(reinterpret_cast<Object*>(value)->IsSmi()); | 2326 DCHECK(reinterpret_cast<Object*>(value)->IsSmi()); |
2328 int offset = kHeaderSize + index * kPointerSize; | 2327 int offset = kHeaderSize + index * kPointerSize; |
2329 WRITE_FIELD(this, offset, value); | 2328 WRITE_FIELD(this, offset, value); |
2330 } | 2329 } |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2381 } | 2380 } |
2382 | 2381 |
2383 | 2382 |
2384 void FixedDoubleArray::set_the_hole(int index) { | 2383 void FixedDoubleArray::set_the_hole(int index) { |
2385 DCHECK(map() != GetHeap()->fixed_cow_array_map() && | 2384 DCHECK(map() != GetHeap()->fixed_cow_array_map() && |
2386 map() != GetHeap()->fixed_array_map()); | 2385 map() != GetHeap()->fixed_array_map()); |
2387 int offset = kHeaderSize + index * kDoubleSize; | 2386 int offset = kHeaderSize + index * kDoubleSize; |
2388 WRITE_UINT64_FIELD(this, offset, kHoleNanInt64); | 2387 WRITE_UINT64_FIELD(this, offset, kHoleNanInt64); |
2389 } | 2388 } |
2390 | 2389 |
| 2390 bool FixedDoubleArray::is_the_hole(Isolate* isolate, int index) { |
| 2391 return is_the_hole(index); |
| 2392 } |
2391 | 2393 |
2392 bool FixedDoubleArray::is_the_hole(int index) { | 2394 bool FixedDoubleArray::is_the_hole(int index) { |
2393 return get_representation(index) == kHoleNanInt64; | 2395 return get_representation(index) == kHoleNanInt64; |
2394 } | 2396 } |
2395 | 2397 |
2396 | 2398 |
2397 double* FixedDoubleArray::data_start() { | 2399 double* FixedDoubleArray::data_start() { |
2398 return reinterpret_cast<double*>(FIELD_ADDR(this, kHeaderSize)); | 2400 return reinterpret_cast<double*>(FIELD_ADDR(this, kHeaderSize)); |
2399 } | 2401 } |
2400 | 2402 |
(...skipping 5526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7927 #undef WRITE_INT64_FIELD | 7929 #undef WRITE_INT64_FIELD |
7928 #undef READ_BYTE_FIELD | 7930 #undef READ_BYTE_FIELD |
7929 #undef WRITE_BYTE_FIELD | 7931 #undef WRITE_BYTE_FIELD |
7930 #undef NOBARRIER_READ_BYTE_FIELD | 7932 #undef NOBARRIER_READ_BYTE_FIELD |
7931 #undef NOBARRIER_WRITE_BYTE_FIELD | 7933 #undef NOBARRIER_WRITE_BYTE_FIELD |
7932 | 7934 |
7933 } // namespace internal | 7935 } // namespace internal |
7934 } // namespace v8 | 7936 } // namespace v8 |
7935 | 7937 |
7936 #endif // V8_OBJECTS_INL_H_ | 7938 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |